From 9ae11c36027cfd5128af6215536cffb8a3203bb9 Mon Sep 17 00:00:00 2001 From: darapan Date: Wed, 23 Jun 2021 22:24:23 -0700 Subject: [PATCH 001/111] "Adding new test" --- .../Gem/PythonTests/smoke/CMakeLists.txt | 36 ++++++ ...st_GameLauncher_EnterExitGameMode_Works.py | 108 ++++++++++++++++++ 2 files changed, 144 insertions(+) create mode 100644 AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 18ffa1944d..f8435df172 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -42,4 +42,40 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) COMPONENT Sandbox ) + + ly_add_pytest( + NAME AutomatedTesting::SmokeTest + TEST_SUITE smoke + TEST_SERIAL + TEST_REQUIRES gpu + PATH ${CMAKE_CURRENT_LIST_DIR}/test_Editor_NewExistingLevels_Works.py + PYTEST_MARKS "SUITE_smoke" + TIMEOUT 500 + RUNTIME_DEPENDENCIES + AZ::AssetProcessor + AZ::PythonBindingsExample + Legacy::Editor + AutomatedTesting.GameLauncher + AutomatedTesting.Assets + COMPONENT + Smoke + ) + + ly_add_pytest( + NAME AutomatedTesting::SmokeTest + TEST_SUITE smoke + TEST_SERIAL + TEST_REQUIRES gpu + PATH ${CMAKE_CURRENT_LIST_DIR}/test_GameLauncher_EnterExitGameMode_Works.py + PYTEST_MARKS "SUITE_smoke" + TIMEOUT 500 + RUNTIME_DEPENDENCIES + AZ::AssetProcessor + AZ::PythonBindingsExample + Legacy::Editor + AutomatedTesting.GameLauncher + AutomatedTesting.Assets + COMPONENT + Smoke + ) endif() \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py new file mode 100644 index 0000000000..1a79944c4e --- /dev/null +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py @@ -0,0 +1,108 @@ +""" +All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or +its licensors. + +For complete copyright and license terms please see the LICENSE at the root of this +distribution (the "License"). All use of this software is governed by the License, +or, if provided, by the license below or the license accompanying this file. Do not +remove or modify any license notices. This file is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + + +UI Apps: AutomatedTesting.GameLauncher +Launch AutomatedTesting.GameLauncher with Simple level +""" + +import pytest +import psutil + +# Bail on the test if ly_test_tools doesn't exist. +pytest.importorskip("ly_test_tools") +import ly_test_tools.environment.waiter as waiter +from ly_remote_console.remote_console_commands import RemoteConsole as RemoteConsole +from ly_remote_console.remote_console_commands import ( + send_command_and_expect_response as send_command_and_expect_response, +) + + +@pytest.mark.parametrize("launcher_platform", ["windows"]) +@pytest.mark.parametrize("project", ["AutomatedTesting"]) +@pytest.mark.parametrize("level", ["Simple"]) +@pytest.mark.SUITE_smoke +class TestGameLauncherEnterExitGameModeWorks(object): + @pytest.fixture + def remote_console_instance(self, request): + console = RemoteConsole() + + def teardown(): + if console.connected: + console.stop() + + request.addfinalizer(teardown) + + return console + + def test_CLITool_PythonBindingsExample_Works(self, launcher, level, remote_console_instance, launcher_platform): + expected_lines = ['Level system is loading "Simple"'] + + self.launch_and_validate_results_launcher(launcher, level, remote_console_instance, expected_lines) + + def launch_and_validate_results_launcher( + self, + launcher, + level, + remote_console_instance, + expected_lines, + null_renderer=True, + port_listener_timeout=120, + log_monitor_timeout=300, + remote_console_port=4600, + ): + """ + Runs the launcher with the specified level, and monitors Game.log for expected lines. + :param launcher: Configured launcher object to run test against. + :param level: The level to load in the launcher. + :param remote_console_instance: Configured Remote Console object. + :param expected_lines: Expected lines to search log for. + :oaram null_renderer: Specifies the test does not require the renderer. Defaults to True. + :param port_listener_timeout: Timeout for verifying successful connection to Remote Console. + :param log_monitor_timeout: Timeout for monitoring for lines in Game.log + :param remote_console_port: The port used to communicate with the Remote Console. + """ + + def _check_for_listening_port(port): + """ + Checks to see if the connection to the designated port was established. + :param port: Port to listen to. + :return: True if port is listening. + """ + port_listening = False + for conn in psutil.net_connections(): + if "port={}".format(port) in str(conn): + port_listening = True + return port_listening + + if null_renderer: + launcher.args.extend(["-NullRenderer"]) + + # Start the Launcher + with launcher.start(): + + # Ensure Remote Console can be reached + waiter.wait_for( + lambda: _check_for_listening_port(remote_console_port), + port_listener_timeout, + exc=AssertionError("Port {} not listening.".format(remote_console_port)), + ) + remote_console_instance.start(timeout=30) + + # Load the specified level in the launcher + send_command_and_expect_response( + remote_console_instance, f"loadlevel {level}", "LEVEL_LOAD_END", timeout=30 + ) + + # Monitor the console for expected lines + for line in expected_lines: + assert remote_console_instance.expect_log_line( + line, log_monitor_timeout + ), f"Expected line not found: {line}" From d443a6f5c2d158556995f3ad8d42267126bd498e Mon Sep 17 00:00:00 2001 From: darapan Date: Wed, 23 Jun 2021 22:28:24 -0700 Subject: [PATCH 002/111] "Adding new line at the end" --- AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index f8435df172..8e5e5e8c32 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -78,4 +78,4 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) COMPONENT Smoke ) -endif() \ No newline at end of file +endif() From 0d600180002ad0fa6769b6ff3c88a8820c15d3a0 Mon Sep 17 00:00:00 2001 From: darapan Date: Thu, 24 Jun 2021 09:29:57 -0700 Subject: [PATCH 003/111] "Updating cmake" --- .../Gem/PythonTests/smoke/CMakeLists.txt | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 8e5e5e8c32..736aa8d8ab 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -44,38 +44,28 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) ) ly_add_pytest( - NAME AutomatedTesting::SmokeTest - TEST_SUITE smoke - TEST_SERIAL + NAME AutomatedTesting::EditorTestWithGPU TEST_REQUIRES gpu PATH ${CMAKE_CURRENT_LIST_DIR}/test_Editor_NewExistingLevels_Works.py - PYTEST_MARKS "SUITE_smoke" - TIMEOUT 500 + TIMEOUT 100 RUNTIME_DEPENDENCIES AZ::AssetProcessor AZ::PythonBindingsExample Legacy::Editor AutomatedTesting.GameLauncher AutomatedTesting.Assets - COMPONENT - Smoke ) ly_add_pytest( - NAME AutomatedTesting::SmokeTest - TEST_SUITE smoke - TEST_SERIAL + NAME AutomatedTesting::GameLauncherWithGPU TEST_REQUIRES gpu PATH ${CMAKE_CURRENT_LIST_DIR}/test_GameLauncher_EnterExitGameMode_Works.py - PYTEST_MARKS "SUITE_smoke" - TIMEOUT 500 + TIMEOUT 100 RUNTIME_DEPENDENCIES AZ::AssetProcessor AZ::PythonBindingsExample Legacy::Editor AutomatedTesting.GameLauncher AutomatedTesting.Assets - COMPONENT - Smoke ) endif() From d3516053f3df76f5956bfb149f7c2855b177904d Mon Sep 17 00:00:00 2001 From: darapan Date: Thu, 24 Jun 2021 11:06:20 -0700 Subject: [PATCH 004/111] "Fixing review comments" --- .../PythonTests/smoke/test_Editor_NewExistingLevels_Works.py | 2 ++ .../smoke/test_GameLauncher_EnterExitGameMode_Works.py | 1 + 2 files changed, 3 insertions(+) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py index 985740307f..8bdd0b8fad 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py @@ -7,6 +7,8 @@ distribution (the "License"). All use of this software is governed by the Licens or, if provided, by the license below or the license accompanying this file. Do not remove or modify any license notices. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +Test should run in both gpu and non gpu """ import pytest diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py index 1a79944c4e..5f1e5f866e 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py @@ -11,6 +11,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. UI Apps: AutomatedTesting.GameLauncher Launch AutomatedTesting.GameLauncher with Simple level +Test should run in both gpu and non gpu """ import pytest From aaf3edb467c923e06164d2908bcdf007f09a7849 Mon Sep 17 00:00:00 2001 From: darapan Date: Thu, 24 Jun 2021 23:02:11 -0700 Subject: [PATCH 005/111] "Fixing review comments" --- ...eMode_Works.py => test_RemoteConsole_LoadLevel_Works.py} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename AutomatedTesting/Gem/PythonTests/smoke/{test_GameLauncher_EnterExitGameMode_Works.py => test_RemoteConsole_LoadLevel_Works.py} (95%) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py similarity index 95% rename from AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py rename to AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py index 5f1e5f866e..ba23b2d523 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_GameLauncher_EnterExitGameMode_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py @@ -30,7 +30,7 @@ from ly_remote_console.remote_console_commands import ( @pytest.mark.parametrize("project", ["AutomatedTesting"]) @pytest.mark.parametrize("level", ["Simple"]) @pytest.mark.SUITE_smoke -class TestGameLauncherEnterExitGameModeWorks(object): +class TestRemoteConsoleLoadLevelWorks(object): @pytest.fixture def remote_console_instance(self, request): console = RemoteConsole() @@ -43,7 +43,7 @@ class TestGameLauncherEnterExitGameModeWorks(object): return console - def test_CLITool_PythonBindingsExample_Works(self, launcher, level, remote_console_instance, launcher_platform): + def test_RemoteConsole_LoadLevel_Works(self, launcher, level, remote_console_instance, launcher_platform): expected_lines = ['Level system is loading "Simple"'] self.launch_and_validate_results_launcher(launcher, level, remote_console_instance, expected_lines) @@ -54,7 +54,7 @@ class TestGameLauncherEnterExitGameModeWorks(object): level, remote_console_instance, expected_lines, - null_renderer=True, + null_renderer=False, port_listener_timeout=120, log_monitor_timeout=300, remote_console_port=4600, From 72ed95f09501d7db5bec1126f2b328878ff60c03 Mon Sep 17 00:00:00 2001 From: darapan Date: Fri, 25 Jun 2021 08:17:36 -0700 Subject: [PATCH 006/111] "Resolving merge conflicts" --- .../Gem/PythonTests/smoke/CMakeLists.txt | 30 ++----------------- .../test_Editor_NewExistingLevels_Works.py | 2 -- 2 files changed, 2 insertions(+), 30 deletions(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 736aa8d8ab..a3b6e36250 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -40,32 +40,6 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) AutomatedTesting.GameLauncher AutomatedTesting.Assets COMPONENT - Sandbox - ) - - ly_add_pytest( - NAME AutomatedTesting::EditorTestWithGPU - TEST_REQUIRES gpu - PATH ${CMAKE_CURRENT_LIST_DIR}/test_Editor_NewExistingLevels_Works.py - TIMEOUT 100 - RUNTIME_DEPENDENCIES - AZ::AssetProcessor - AZ::PythonBindingsExample - Legacy::Editor - AutomatedTesting.GameLauncher - AutomatedTesting.Assets - ) - - ly_add_pytest( - NAME AutomatedTesting::GameLauncherWithGPU - TEST_REQUIRES gpu - PATH ${CMAKE_CURRENT_LIST_DIR}/test_GameLauncher_EnterExitGameMode_Works.py - TIMEOUT 100 - RUNTIME_DEPENDENCIES - AZ::AssetProcessor - AZ::PythonBindingsExample - Legacy::Editor - AutomatedTesting.GameLauncher - AutomatedTesting.Assets + Smoke ) -endif() +endif() \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py index 8bdd0b8fad..985740307f 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py @@ -7,8 +7,6 @@ distribution (the "License"). All use of this software is governed by the Licens or, if provided, by the license below or the license accompanying this file. Do not remove or modify any license notices. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - -Test should run in both gpu and non gpu """ import pytest From 7d833b87a5a5d89e93abb4fc77b2de8dca49eb1b Mon Sep 17 00:00:00 2001 From: darapan Date: Fri, 25 Jun 2021 08:19:23 -0700 Subject: [PATCH 007/111] "Resoving merge conflcts" --- AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index a3b6e36250..141dfa0a45 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -40,6 +40,6 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) AutomatedTesting.GameLauncher AutomatedTesting.Assets COMPONENT - Smoke + Sandbox ) -endif() \ No newline at end of file +endif() From ae9e3737c17b3cf44c2c4ee802edc2d512992a2d Mon Sep 17 00:00:00 2001 From: darapan Date: Fri, 25 Jun 2021 08:21:44 -0700 Subject: [PATCH 008/111] "" --- AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 141dfa0a45..18ffa1944d 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -42,4 +42,4 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) COMPONENT Sandbox ) -endif() +endif() \ No newline at end of file From 0ef72afdbad053a295000250103536318fd2c19e Mon Sep 17 00:00:00 2001 From: darapan Date: Fri, 25 Jun 2021 09:03:53 -0700 Subject: [PATCH 009/111] "Resoved Merge Conflicts" --- .../Gem/PythonTests/smoke/CMakeLists.txt | 26 +++++++++++++++++++ .../test_Editor_NewExistingLevels_Works.py | 3 +++ .../test_RemoteConsole_LoadLevel_Works.py | 11 +++----- 3 files changed, 32 insertions(+), 8 deletions(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 7ef1d56ad1..0168e64b52 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -38,4 +38,30 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) COMPONENT Sandbox ) + + ly_add_pytest( + NAME AutomatedTesting::EditorTestWithGPU + TEST_REQUIRES gpu + PATH ${CMAKE_CURRENT_LIST_DIR}/test_Editor_NewExistingLevels_Works.py + TIMEOUT 100 + RUNTIME_DEPENDENCIES + AZ::AssetProcessor + AZ::PythonBindingsExample + Legacy::Editor + AutomatedTesting.GameLauncher + AutomatedTesting.Assets + ) + + ly_add_pytest( + NAME AutomatedTesting::GameLauncherWithGPU + TEST_REQUIRES gpu + PATH ${CMAKE_CURRENT_LIST_DIR}/test_GameLauncher_EnterExitGameMode_Works.py + TIMEOUT 100 + RUNTIME_DEPENDENCIES + AZ::AssetProcessor + AZ::PythonBindingsExample + Legacy::Editor + AutomatedTesting.GameLauncher + AutomatedTesting.Assets + ) endif() \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py index 56cd0e2f6e..394a6c8336 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py @@ -2,6 +2,9 @@ Copyright (c) Contributors to the Open 3D Engine Project SPDX-License-Identifier: Apache-2.0 OR MIT + + +Test should run in both gpu and non gpu """ import pytest diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py index ba23b2d523..4b464817b2 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py @@ -1,12 +1,7 @@ """ -All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or -its licensors. - -For complete copyright and license terms please see the LICENSE at the root of this -distribution (the "License"). All use of this software is governed by the License, -or, if provided, by the license below or the license accompanying this file. Do not -remove or modify any license notices. This file is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +Copyright (c) Contributors to the Open 3D Engine Project + +SPDX-License-Identifier: Apache-2.0 OR MIT UI Apps: AutomatedTesting.GameLauncher From 0c468e4c31a4dd3353db68f748773357fd581d00 Mon Sep 17 00:00:00 2001 From: darapan Date: Fri, 25 Jun 2021 09:05:37 -0700 Subject: [PATCH 010/111] "Adding new line" --- AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 0168e64b52..0c6baff6b6 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -64,4 +64,4 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED AND PAL_TRAIT_BUILD_HOST_TOOLS) AutomatedTesting.GameLauncher AutomatedTesting.Assets ) -endif() \ No newline at end of file +endif() From 1f68d5821305d357667d3f973854372634cd69be Mon Sep 17 00:00:00 2001 From: scottr Date: Fri, 25 Jun 2021 16:36:41 -0700 Subject: [PATCH 011/111] [cpack/2106-launch-opt] add option to launch the project manager after install --- cmake/Platform/Windows/Packaging/Bootstrapper.wxs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmake/Platform/Windows/Packaging/Bootstrapper.wxs b/cmake/Platform/Windows/Packaging/Bootstrapper.wxs index cb9d86ede8..847fcdad0c 100644 --- a/cmake/Platform/Windows/Packaging/Bootstrapper.wxs +++ b/cmake/Platform/Windows/Packaging/Bootstrapper.wxs @@ -17,6 +17,11 @@ Value="[ProgramFiles64Folder]$(var.CPACK_PACKAGE_INSTALL_DIRECTORY)" bal:Overridable="yes"/> + + + From 196abb4af7ddcd2ff42f9a8cf903f254092d2282 Mon Sep 17 00:00:00 2001 From: pconroy Date: Fri, 25 Jun 2021 20:53:41 -0700 Subject: [PATCH 012/111] Fix gem name and author bounding rects and make headings readable --- .../ProjectManager/Source/GemCatalog/GemItemDelegate.cpp | 5 +++-- .../Source/GemCatalog/GemListHeaderWidget.cpp | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp index 04540f891a..ca0ec2faff 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp @@ -77,14 +77,14 @@ namespace O3DE::ProjectManager QString gemName = GemModel::GetName(modelIndex); QFont gemNameFont(options.font); const int firstColumnMaxTextWidth = s_summaryStartX - 30; - gemName = QFontMetrics(gemNameFont).elidedText(gemName, Qt::TextElideMode::ElideRight, firstColumnMaxTextWidth); gemNameFont.setPixelSize(s_gemNameFontSize); gemNameFont.setBold(true); + gemName = QFontMetrics(gemNameFont).elidedText(gemName, Qt::TextElideMode::ElideRight, firstColumnMaxTextWidth); QRect gemNameRect = GetTextRect(gemNameFont, gemName, s_gemNameFontSize); gemNameRect.moveTo(contentRect.left(), contentRect.top()); - painter->setFont(gemNameFont); painter->setPen(m_textColor); + gemNameRect = painter->boundingRect(gemNameRect, Qt::TextSingleLine, gemName); painter->drawText(gemNameRect, Qt::TextSingleLine, gemName); // Gem creator @@ -95,6 +95,7 @@ namespace O3DE::ProjectManager painter->setFont(standardFont); painter->setPen(m_linkColor); + gemCreatorRect = painter->boundingRect(gemCreatorRect, Qt::TextSingleLine, gemCreator); painter->drawText(gemCreatorRect, Qt::TextSingleLine, gemCreator); // Gem summary diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp index d2586bb62b..cabcc34aaa 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp @@ -31,7 +31,7 @@ namespace O3DE::ProjectManager topLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding)); QLabel* showCountLabel = new QLabel(); - showCountLabel->setStyleSheet("font-size: 12px; font: italic;"); + showCountLabel->setStyleSheet("font-size: 12px; font: italic; color: #FFFFFF;"); topLayout->addWidget(showCountLabel); connect(proxyModel, &GemSortFilterProxyModel::OnInvalidated, this, [=] { @@ -61,20 +61,20 @@ namespace O3DE::ProjectManager columnHeaderLayout->addSpacing(gemNameStartX); QLabel* gemNameLabel = new QLabel(tr("Gem Name")); - gemNameLabel->setStyleSheet("font-size: 12px;"); + gemNameLabel->setStyleSheet("font-size: 12px; color: #FFFFFF;"); columnHeaderLayout->addWidget(gemNameLabel); columnHeaderLayout->addSpacing(77); QLabel* gemSummaryLabel = new QLabel(tr("Gem Summary")); - gemSummaryLabel->setStyleSheet("font-size: 12px;"); + gemSummaryLabel->setStyleSheet("font-size: 12px; color: #FFFFFF;"); columnHeaderLayout->addWidget(gemSummaryLabel); QSpacerItem* horizontalSpacer = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum); columnHeaderLayout->addSpacerItem(horizontalSpacer); QLabel* gemSelectedLabel = new QLabel(tr("Selected")); - gemSelectedLabel->setStyleSheet("font-size: 12px;"); + gemSelectedLabel->setStyleSheet("font-size: 12px; color: #FFFFFF;"); columnHeaderLayout->addWidget(gemSelectedLabel); columnHeaderLayout->addSpacing(60); From 19695cfd127f6856f549dc0410465c2b5c752ab4 Mon Sep 17 00:00:00 2001 From: darapan Date: Mon, 28 Jun 2021 10:02:30 -0700 Subject: [PATCH 013/111] "Fixing review comments" --- .../Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py index 4b464817b2..bcb78b9c8e 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py @@ -24,7 +24,7 @@ from ly_remote_console.remote_console_commands import ( @pytest.mark.parametrize("launcher_platform", ["windows"]) @pytest.mark.parametrize("project", ["AutomatedTesting"]) @pytest.mark.parametrize("level", ["Simple"]) -@pytest.mark.SUITE_smoke +@pytest.mark.SUITE_sandbox class TestRemoteConsoleLoadLevelWorks(object): @pytest.fixture def remote_console_instance(self, request): From 0b28c15637f8fd7e5885bcf0a146ff214f42e310 Mon Sep 17 00:00:00 2001 From: mnaumov Date: Wed, 16 Jun 2021 20:26:04 -0700 Subject: [PATCH 014/111] [LYN-4544] Fixing thumbnail crashing on bad data Signed-off-by: mnaumov --- .../Rendering/ThumbnailRendererSteps/CaptureStep.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp index 0da880d29d..a795b9a119 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp @@ -91,6 +91,13 @@ namespace AZ RPI::AttachmentReadback::CallbackFunction readbackCallback = [&](const RPI::AttachmentReadback::ReadbackResult& result) { + if (!result.m_dataBuffer) + { + AzToolsFramework::Thumbnailer::ThumbnailerRendererNotificationBus::Event( + m_context->GetData()->m_thumbnailKeyRendered, + &AzToolsFramework::Thumbnailer::ThumbnailerRendererNotifications::ThumbnailFailedToRender); + return; + } uchar* data = result.m_dataBuffer.get()->data(); QImage image( data, result.m_imageDescriptor.m_size.m_width, result.m_imageDescriptor.m_size.m_height, QImage::Format_RGBA8888); From 4874a48c18803cfa14ff5897017dc5b9503f356a Mon Sep 17 00:00:00 2001 From: nvsickle Date: Mon, 28 Jun 2021 15:43:37 -0700 Subject: [PATCH 015/111] Fix switching cameras rapidly in the Editor accidentally copying camera positions Signed-off-by: nvsickle --- Code/Sandbox/Editor/EditorViewportWidget.cpp | 35 ++++++++----------- Code/Sandbox/Editor/EditorViewportWidget.h | 2 +- .../Code/Source/CameraComponentController.cpp | 2 +- 3 files changed, 17 insertions(+), 22 deletions(-) diff --git a/Code/Sandbox/Editor/EditorViewportWidget.cpp b/Code/Sandbox/Editor/EditorViewportWidget.cpp index c57347a809..ae60566cf3 100644 --- a/Code/Sandbox/Editor/EditorViewportWidget.cpp +++ b/Code/Sandbox/Editor/EditorViewportWidget.cpp @@ -452,8 +452,19 @@ void EditorViewportWidget::Update() return; } - m_updatingCameraPosition = true; - if (!ed_useNewCameraSystem) + if (m_updateCameraPositionNextTick) + { + auto cameraState = m_renderViewport->GetCameraState(); + AZ::Matrix3x4 matrix; + matrix.SetBasisAndTranslation(cameraState.m_side, cameraState.m_forward, cameraState.m_up, cameraState.m_position); + auto m = AZMatrix3x4ToLYMatrix3x4(matrix); + + SetViewTM(m); + SetFOV(cameraState.m_fovOrZoom); + m_Camera.SetZRange(cameraState.m_nearClip, cameraState.m_farClip); + m_updateCameraPositionNextTick = false; + } + else if (!ed_useNewCameraSystem) { m_renderViewport->GetViewportContext()->SetCameraTransform(LYTransformToAZTransform(m_Camera.GetMatrix())); } @@ -472,8 +483,6 @@ void EditorViewportWidget::Update() ); m_renderViewport->GetViewportContext()->SetCameraProjectionMatrix(clipMatrix); } - m_updatingCameraPosition = false; - // Don't wait for changes to update the focused viewport. if (CheckRespondToInput()) @@ -2894,22 +2903,8 @@ void EditorViewportWidget::UpdateScene() void EditorViewportWidget::UpdateCameraFromViewportContext() { - // If we're not updating because the cry camera position changed, we should make sure our position gets copied back to the Cry Camera - if (m_updatingCameraPosition) - { - return; - } - - auto cameraState = m_renderViewport->GetCameraState(); - AZ::Matrix3x4 matrix; - matrix.SetBasisAndTranslation(cameraState.m_side, cameraState.m_forward, cameraState.m_up, cameraState.m_position); - auto m = AZMatrix3x4ToLYMatrix3x4(matrix); - - m_updatingCameraPosition = true; - SetViewTM(m); - SetFOV(cameraState.m_fovOrZoom); - m_Camera.SetZRange(cameraState.m_nearClip, cameraState.m_farClip); - m_updatingCameraPosition = false; + // Queue a sync for the next tick, to ensure the latest version of the viewport context transform is used + m_updateCameraPositionNextTick = true; } void EditorViewportWidget::SetAsActiveViewport() diff --git a/Code/Sandbox/Editor/EditorViewportWidget.h b/Code/Sandbox/Editor/EditorViewportWidget.h index 7b12afc470..029bdef284 100644 --- a/Code/Sandbox/Editor/EditorViewportWidget.h +++ b/Code/Sandbox/Editor/EditorViewportWidget.h @@ -579,7 +579,7 @@ private: AZStd::unique_ptr m_editorEntityNotifications; AtomToolsFramework::RenderViewportWidget* m_renderViewport = nullptr; - bool m_updatingCameraPosition = false; + bool m_updateCameraPositionNextTick = false; AZ::RPI::ViewportContext::MatrixChangedEvent::Handler m_cameraViewMatrixChangeHandler; AZ::RPI::ViewportContext::MatrixChangedEvent::Handler m_cameraProjectionMatrixChangeHandler; AzFramework::DebugDisplayRequests* m_debugDisplay = nullptr; diff --git a/Gems/Camera/Code/Source/CameraComponentController.cpp b/Gems/Camera/Code/Source/CameraComponentController.cpp index 63ebbd667a..51f1360117 100644 --- a/Gems/Camera/Code/Source/CameraComponentController.cpp +++ b/Gems/Camera/Code/Source/CameraComponentController.cpp @@ -101,9 +101,9 @@ namespace Camera OnTransformChanged(localTransform, worldTransform); // Push the Atom camera after we make sure we're up-to-date with our component's transform to ensure the viewport reads the correct state + UpdateCamera(); atomViewportRequests->PushView(contextName, m_atomCamera); AZ::RPI::ViewportContextNotificationBus::Handler::BusConnect(contextName); - UpdateCamera(); } } From 9dc961ec35a51aaaad5e89f7bd48b901c487737b Mon Sep 17 00:00:00 2001 From: SJ Date: Mon, 28 Jun 2021 17:53:43 -0700 Subject: [PATCH 016/111] [iOS] Fix incorrect window size being used when rendering on newer iPhones with bigger screens. (#1625) * [iOS] Fix incorrect window size being used when rendering on newer iPhones with bigger screens. Signed-off-by: amzn-sj --- .../LaunchImage.launchimage/Contents.json | 38 ++++++++++++++++++- .../iPhoneLaunchImage1242x2688.png | 3 ++ .../iPhoneLaunchImage1792x828.png | 3 ++ .../iPhoneLaunchImage2688x1242.png | 3 ++ .../iPhoneLaunchImage828x1792.png | 3 ++ .../Platform/iOS/launcher_project_ios.cmake | 1 + 6 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1242x2688.png create mode 100644 AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1792x828.png create mode 100644 AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage2688x1242.png create mode 100644 AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage828x1792.png diff --git a/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/Contents.json b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/Contents.json index f836f07ee7..5ea213954f 100644 --- a/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/Contents.json +++ b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/Contents.json @@ -1,5 +1,41 @@ { "images" : [ + { + "extent" : "full-screen", + "filename" : "iPhoneLaunchImage1242x2688.png", + "idiom" : "iphone", + "minimum-system-version" : "12.0", + "orientation" : "portrait", + "scale" : "3x", + "subtype" : "2688h" + }, + { + "extent" : "full-screen", + "filename" : "iPhoneLaunchImage2688x1242.png", + "idiom" : "iphone", + "minimum-system-version" : "12.0", + "orientation" : "landscape", + "scale" : "3x", + "subtype" : "2688h" + }, + { + "extent" : "full-screen", + "filename" : "iPhoneLaunchImage828x1792.png", + "idiom" : "iphone", + "minimum-system-version" : "12.0", + "orientation" : "portrait", + "scale" : "2x", + "subtype" : "1792h" + }, + { + "extent" : "full-screen", + "filename" : "iPhoneLaunchImage1792x828.png", + "idiom" : "iphone", + "minimum-system-version" : "12.0", + "orientation" : "landscape", + "scale" : "2x", + "subtype" : "1792h" + }, { "extent" : "full-screen", "idiom" : "iphone", @@ -166,4 +202,4 @@ "version" : 1, "author" : "xcode" } -} \ No newline at end of file +} diff --git a/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1242x2688.png b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1242x2688.png new file mode 100644 index 0000000000..e190d2b585 --- /dev/null +++ b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1242x2688.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc79117e25cc7533ccf6724453e3f44a01b4eaaecded6fa826abe897456f36ee +size 405896 diff --git a/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1792x828.png b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1792x828.png new file mode 100644 index 0000000000..5601f081de --- /dev/null +++ b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage1792x828.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7191be3bdae09dc621012a26b0c1b9c15de1d567cf65ff1079e00f8636a32a +size 220720 diff --git a/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage2688x1242.png b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage2688x1242.png new file mode 100644 index 0000000000..844b23fdd9 --- /dev/null +++ b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage2688x1242.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbd362f9cb5f285c23807a032af98150cf5409c514445122683736a3c65008c +size 364976 diff --git a/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage828x1792.png b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage828x1792.png new file mode 100644 index 0000000000..9ebb93e39c --- /dev/null +++ b/AutomatedTesting/Gem/Resources/IOSLauncher/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage828x1792.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0252b068b232f521ac6eca4a708fad6eaf257d0a66aa03f4f865f6a0b219cfc +size 236433 diff --git a/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake b/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake index 617d8fc58a..50e6e972a9 100644 --- a/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake +++ b/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake @@ -32,6 +32,7 @@ set_target_properties(${project_name}.GameLauncher PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${ly_game_resource_folder}/Info.plist RESOURCE ${ly_game_resource_folder}/Images.xcassets XCODE_ATTRIBUTE_ASSETCATALOG_COMPILER_APPICON_NAME ${project_name}AppIcon + XCODE_ATTRIBUTE_ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME LaunchImage ) set(layout_tool_dir ${LY_ROOT_FOLDER}/cmake/Tools) From 7780b83fdc54bf0d1dafbb1de682e841ce1ffb4c Mon Sep 17 00:00:00 2001 From: moudgils <47460854+moudgils@users.noreply.github.com> Date: Mon, 28 Jun 2021 17:57:06 -0700 Subject: [PATCH 017/111] Fix SSR Reflections on Mac amongst other things (#1618) Fix writing to the correct mip in Metal Set default m_outputScale to 1 in order to fix a 1/0 error Add support for logging/printing errors pertaining to GPU crashes. Setting Release queue's collection latency to MaxFrames. Fix managed mem synchronization related offset bug --- .../ReflectionScreenSpaceBlurChildPass.h | 2 +- .../Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp | 5 ++- .../Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp | 10 ++++++ Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h | 6 ++++ .../Source/RHI/CommandQueueCommandBuffer.cpp | 32 +++++++++++++++++-- .../Atom/RHI/Metal/Code/Source/RHI/Device.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp | 1 + 7 files changed, 53 insertions(+), 5 deletions(-) diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h index 9bbe9f3a2a..a579aa0a16 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h @@ -51,7 +51,7 @@ namespace AZ PassType m_passType; uint32_t m_mipLevel = 0; RHI::Size m_imageSize; - float m_outputScale = 0.0f; + float m_outputScale = 1.0f; }; } // namespace RPI } // namespace AZ diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp index 35ce1ce931..99a3c427bb 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp @@ -144,6 +144,7 @@ namespace Platform } mappedData += request.m_byteOffset; response.m_data = mappedData; + buffer.SetMapRequestOffset(request.m_byteOffset); break; } default: @@ -159,6 +160,8 @@ namespace Platform { AZ::Metal::Buffer& buffer = static_cast(bufferBase); //Ony need to handle MTLStorageModeManaged memory. - SynchronizeBufferOnCPU(buffer.GetMemoryView().GetGpuAddress>(), buffer.GetMemoryView().GetOffset(), buffer.GetMemoryView().GetSize()); + SynchronizeBufferOnCPU(buffer.GetMemoryView().GetGpuAddress>(), + buffer.GetMemoryView().GetOffset() + buffer.GetMapRequestOffset(), + buffer.GetMemoryView().GetSize()); } } diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp index e655b859cb..e634ae39bb 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp @@ -35,6 +35,16 @@ namespace AZ } } + void Buffer::SetMapRequestOffset(const uint32_t mapRequestOffset) + { + m_mapRequestOffset = mapRequestOffset; + } + + const uint32_t Buffer::GetMapRequestOffset() const + { + return m_mapRequestOffset; + } + void Buffer::ReportMemoryUsage(RHI::MemoryStatisticsBuilder& builder) const { //[GFX TODO][ATOM-493] - Report memory usage support diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h index 9e9971b73b..e31aa4b33d 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h @@ -32,6 +32,9 @@ namespace AZ const MemoryView& GetMemoryView() const; MemoryView& GetMemoryView(); + void SetMapRequestOffset(const uint32_t mapRequestOffset); + const uint32_t GetMapRequestOffset() const; + private: Buffer() = default; friend class BufferPool; @@ -57,6 +60,9 @@ namespace AZ // The number of resolve operations pending for this buffer. AZStd::atomic m_pendingResolves = 0; + + // Offset related to the Map request. We need to cache it for cpu/gpu synchronization. + uint32_t m_mapRequestOffset = 0; }; } diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp index ab593105e0..df5c14a337 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp @@ -5,6 +5,7 @@ * */ +#include #include #include @@ -24,8 +25,35 @@ namespace AZ id CommandQueueCommandBuffer::AcquireMTLCommandBuffer() { AZ_Assert(m_mtlCommandBuffer==nil, "Previous command buffer was not commited"); + //Create a new command buffer - m_mtlCommandBuffer = [m_hwQueue commandBuffer]; +#if defined(__IPHONE_14_0) || defined(__MAC_11_0) + if(@available(iOS 14.0, macOS 11.0, *)) + { + if(RHI::BuildOptions::IsDebugBuild) + { + //There is a perf cost associated with enhanced command buffer errors so only enabling them for debug builds. + MTLCommandBufferDescriptor* mtlCommandBufferDesc = [[MTLCommandBufferDescriptor alloc] init]; + mtlCommandBufferDesc.errorOptions = MTLCommandBufferErrorOptionEncoderExecutionStatus; + m_mtlCommandBuffer = [m_hwQueue commandBufferWithDescriptor:mtlCommandBufferDesc]; + + [m_mtlCommandBuffer addCompletedHandler:^(id buffer) + { + // check command buffer's status for errors, print out all of its contents + MTLCommandBufferStatus stat = buffer.status; + if (stat == MTLCommandBufferStatusError) + { + NSLog(@"%@",buffer.error); + abort(); + } + }]; + } + } +#endif + if(m_mtlCommandBuffer == nil) + { + m_mtlCommandBuffer = [m_hwQueue commandBuffer]; + } //we call retain here as this CB is active across the autoreleasepools of multiple threads. Calling //retain here means that if the current thread's autoreleasepool gets drained this CB will not die. @@ -91,7 +119,7 @@ namespace AZ AZ_Assert(false,"Insufficient memory"); break; case MTLCommandBufferErrorInvalidResource: - AZ_Assert(false,"The command buffer referenced an invlid resource. This error is most commonly caused when caller deletes a resource before executing a command buffer that refers to it"); + AZ_Assert(false,"This error is most commonly caused when the caller deletes a resource before executing a command buffer that refers to it. It would also trigger if the caller deletes the resource while the GPU is working on the command buffer"); break; default: break; diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp index 387ebd6f27..6797ccd141 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp @@ -46,7 +46,7 @@ namespace AZ { { ReleaseQueue::Descriptor releaseQueueDescriptor; - releaseQueueDescriptor.m_collectLatency = descriptor.m_frameCountMax - 1; + releaseQueueDescriptor.m_collectLatency = descriptor.m_frameCountMax; m_releaseQueue.Init(releaseQueueDescriptor); } diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp index 00e5ed979b..d176078563 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp @@ -188,6 +188,7 @@ namespace AZ { m_renderPassDescriptor.colorAttachments[colorAttachmentIndex].slice = imgViewDescriptor.m_arraySliceMin; } + m_renderPassDescriptor.colorAttachments[colorAttachmentIndex].level = imgViewDescriptor.m_mipSliceMin; } MTLRenderPassColorAttachmentDescriptor* colorAttachment = m_renderPassDescriptor.colorAttachments[colorAttachmentIndex]; From c45ec34f1621f3a206293f008a13ecceba4903fc Mon Sep 17 00:00:00 2001 From: hershey5045 <43485729+hershey5045@users.noreply.github.com> Date: Mon, 28 Jun 2021 19:20:03 -0700 Subject: [PATCH 018/111] Add max value for editor bloom intensity. (#1630) Signed-off-by: Robin --- .../Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp index 74b194e028..b4177e4944 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp @@ -60,8 +60,10 @@ namespace AZ ->Attribute(AZ::Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) ->Attribute(Edit::Attributes::ReadOnly, &BloomComponentConfig::ArePropertiesReadOnly) - ->DataElement(AZ::Edit::UIHandlers::Default, &BloomComponentConfig::m_intensity, "Intensity", "Brightness of bloom") + ->DataElement(AZ::Edit::UIHandlers::Slider, &BloomComponentConfig::m_intensity, "Intensity", "Brightness of bloom") ->Attribute(AZ::Edit::Attributes::Min, 0.0f) + ->Attribute(AZ::Edit::Attributes::Max, 10000.0f) + ->Attribute(AZ::Edit::Attributes::SoftMax, 25.0f) ->Attribute(AZ::Edit::Attributes::ChangeNotify, Edit::PropertyRefreshLevels::ValuesOnly) ->Attribute(Edit::Attributes::ReadOnly, &BloomComponentConfig::ArePropertiesReadOnly) From ccb784d7d5c9fcb2b1886df20cac19837c22d661 Mon Sep 17 00:00:00 2001 From: hershey5045 <43485729+hershey5045@users.noreply.github.com> Date: Mon, 28 Jun 2021 19:49:35 -0700 Subject: [PATCH 019/111] Fix weight blending in look modification postfx. (#1627) Signed-off-by: Robin --- .../LookModification/LookModificationSettings.cpp | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp index 8950a2f12b..3bde150508 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp @@ -40,7 +40,6 @@ namespace AZ void LookModificationSettings::ApplySettingsTo(LookModificationSettings* target, float alpha) const { - AZ_UNUSED(alpha); AZ_Assert(target != nullptr, "LookModificationSettings::ApplySettingsTo called with nullptr as argument."); auto lutAssetId = GetColorGradingLut(); @@ -48,20 +47,10 @@ namespace AZ { Render::LutBlendItem lutBlend; lutBlend.m_intensity = GetColorGradingLutIntensity(); - lutBlend.m_overrideStrength = GetColorGradingLutOverride(); + lutBlend.m_overrideStrength = GetColorGradingLutOverride() * alpha; lutBlend.m_assetId = lutAssetId; target->AddLutBlend(lutBlend); } - - // Auto-gen code to blend individual params based on their override value onto target settings -#define OVERRIDE_TARGET target -#define OVERRIDE_ALPHA alpha - -#include -#include -#include -#undef OVERRIDE_TARGET -#undef OVERRIDE_ALPHA } void LookModificationSettings::Simulate(float deltaTime) From a5e66505a0131789e9b30091ba7f4bce6a6ad1e6 Mon Sep 17 00:00:00 2001 From: AMZN-nggieber <52797929+AMZN-nggieber@users.noreply.github.com> Date: Mon, 28 Jun 2021 19:58:00 -0700 Subject: [PATCH 020/111] Fix issue moving and renaming projects at the same time (#1620) --- .../ProjectManager/Source/UpdateProjectCtrl.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp index d130ab50ce..3f72b7058e 100644 --- a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp +++ b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp @@ -215,22 +215,23 @@ namespace O3DE::ProjectManager return false; } - // Update project if settings changed + // Check if project path has changed and move it + // Move project first to avoid trying to update settings at the new location before it has been moved there + if (newProjectSettings.m_path != m_projectInfo.m_path) { - auto result = PythonBindingsInterface::Get()->UpdateProject(newProjectSettings); - if (!result.IsSuccess()) + if (!ProjectUtils::MoveProject(m_projectInfo.m_path, newProjectSettings.m_path)) { - QMessageBox::critical(this, tr("Project update failed"), tr(result.GetError().c_str())); + QMessageBox::critical(this, tr("Project move failed"), tr("Failed to move project.")); return false; } } - // Check if project path has changed and move it - if (newProjectSettings.m_path != m_projectInfo.m_path) + // Update project if settings changed { - if (!ProjectUtils::MoveProject(m_projectInfo.m_path, newProjectSettings.m_path)) + auto result = PythonBindingsInterface::Get()->UpdateProject(newProjectSettings); + if (!result.IsSuccess()) { - QMessageBox::critical(this, tr("Project move failed"), tr("Failed to move project.")); + QMessageBox::critical(this, tr("Project update failed"), tr(result.GetError().c_str())); return false; } } From 61d0ed0b5c5eb0019c5ac240150bec881fb30811 Mon Sep 17 00:00:00 2001 From: AMZN-nggieber <52797929+AMZN-nggieber@users.noreply.github.com> Date: Mon, 28 Jun 2021 19:58:20 -0700 Subject: [PATCH 021/111] Replace project template previews with default project preview (#1622) --- Templates/DefaultProject/Template/preview.png | 4 ++-- Templates/MinimalProject/Template/preview.png | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Templates/DefaultProject/Template/preview.png b/Templates/DefaultProject/Template/preview.png index 0f393ac886..82234dbf6b 100644 --- a/Templates/DefaultProject/Template/preview.png +++ b/Templates/DefaultProject/Template/preview.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ac9dd09bde78f389e3725ac49d61eff109857e004840bc0bc3881739df9618d -size 2217 +oid sha256:1cf8339fb51f82a68d2ab475c0476960e75a79d96d239c5b7cd272fbe4990ffe +size 2770 diff --git a/Templates/MinimalProject/Template/preview.png b/Templates/MinimalProject/Template/preview.png index 0f393ac886..82234dbf6b 100644 --- a/Templates/MinimalProject/Template/preview.png +++ b/Templates/MinimalProject/Template/preview.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ac9dd09bde78f389e3725ac49d61eff109857e004840bc0bc3881739df9618d -size 2217 +oid sha256:1cf8339fb51f82a68d2ab475c0476960e75a79d96d239c5b7cd272fbe4990ffe +size 2770 From f01587c15900579e33577c0c4118c26ed55dc95b Mon Sep 17 00:00:00 2001 From: Aaron Ruiz Mora Date: Tue, 29 Jun 2021 16:10:26 +0100 Subject: [PATCH 022/111] Editor launcher missed to set 'sv_isDedicated' to false like the launchers (#1643) Signed-off-by: moraaar --- Code/Sandbox/Editor/GameEngine.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Code/Sandbox/Editor/GameEngine.cpp b/Code/Sandbox/Editor/GameEngine.cpp index 5c2413a440..34f938fdf8 100644 --- a/Code/Sandbox/Editor/GameEngine.cpp +++ b/Code/Sandbox/Editor/GameEngine.cpp @@ -18,6 +18,7 @@ #include #include #include +#include // AzFramework #include @@ -401,6 +402,7 @@ AZ::Outcome CGameEngine::Init( sip.bEditor = true; sip.bDedicatedServer = false; + AZ::Interface::Get()->PerformCommand("sv_isDedicated false"); sip.bPreview = bPreviewMode; sip.bTestMode = bTestMode; sip.hInstance = nullptr; From 75e7472cda56ecd176a692fd62452af079122411 Mon Sep 17 00:00:00 2001 From: amzn-phist <52085794+amzn-phist@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:54:27 -0500 Subject: [PATCH 023/111] Fixes audio crash and issues w/ audio playback (#1633) This was caused by the main thread audio update not being called all the time, especially Editor Game mode. The crash was due to main thread containers not being processed and emptied of their requests. Signed-off-by: amzn-phist <52085794+amzn-phist@users.noreply.github.com> --- Code/CryEngine/CryCommon/ISystem.h | 5 ----- Code/CryEngine/CryCommon/Mocks/ISystemMock.h | 4 ---- Code/CryEngine/CrySystem/System.cpp | 19 ++----------------- Code/CryEngine/CrySystem/System.h | 5 ----- Code/CryEngine/CrySystem/SystemInit.cpp | 5 ----- Code/Sandbox/Editor/CryEdit.cpp | 6 ------ 6 files changed, 2 insertions(+), 42 deletions(-) diff --git a/Code/CryEngine/CryCommon/ISystem.h b/Code/CryEngine/CryCommon/ISystem.h index 1a2ffc5a7c..c3b0b591dc 100644 --- a/Code/CryEngine/CryCommon/ISystem.h +++ b/Code/CryEngine/CryCommon/ISystem.h @@ -807,11 +807,6 @@ struct ISystem // Updates only require components during loading virtual bool UpdateLoadtime() = 0; - // Summary: - // Optimisation: do part of the update while waiting for occlusion queries to complete - virtual void DoWorkDuringOcclusionChecks() = 0; - virtual bool NeedDoWorkDuringOcclusionChecks() = 0; - // Summary: // Retrieve the name of the user currently logged in to the computer. virtual const char* GetUserName() = 0; diff --git a/Code/CryEngine/CryCommon/Mocks/ISystemMock.h b/Code/CryEngine/CryCommon/Mocks/ISystemMock.h index 9c25748eca..551949d6c2 100644 --- a/Code/CryEngine/CryCommon/Mocks/ISystemMock.h +++ b/Code/CryEngine/CryCommon/Mocks/ISystemMock.h @@ -26,10 +26,6 @@ public: bool(int, int)); MOCK_METHOD0(UpdateLoadtime, bool()); - MOCK_METHOD0(DoWorkDuringOcclusionChecks, - void()); - MOCK_METHOD0(NeedDoWorkDuringOcclusionChecks, - bool()); MOCK_METHOD0(RenderStatistics, void()); MOCK_METHOD0(GetUserName, diff --git a/Code/CryEngine/CrySystem/System.cpp b/Code/CryEngine/CrySystem/System.cpp index 07160a7143..2d3faf2b68 100644 --- a/Code/CryEngine/CrySystem/System.cpp +++ b/Code/CryEngine/CrySystem/System.cpp @@ -352,8 +352,6 @@ CSystem::CSystem(SharedEnvironmentInstance* pSharedEnvironment) AZ::Debug::Trace::Instance().Init(); } - m_bNeedDoWorkDuringOcclusionChecks = false; - m_eRuntimeState = ESYSTEM_EVENT_LEVEL_UNLOAD; m_bHasRenderedErrorMessage = false; @@ -948,16 +946,12 @@ bool CSystem::UpdatePostTickBus(int updateFlags, int /*nPauseMode*/) } ////////////////////////////////////////////////////////////////////// - //update sound system part 2 - if (!g_cvars.sys_deferAudioUpdateOptim && !m_bNoUpdate) + // Update sound system + if (!m_bNoUpdate) { FRAME_PROFILER("SysUpdate:UpdateAudioSystems", this, PROFILE_SYSTEM); UpdateAudioSystems(); } - else - { - m_bNeedDoWorkDuringOcclusionChecks = true; - } //Now update frame statistics CTimeValue cur_time = gEnv->pTimer->GetAsyncTime(); @@ -1004,15 +998,6 @@ bool CSystem::UpdateLoadtime() return !IsQuitting(); } -void CSystem::DoWorkDuringOcclusionChecks() -{ - if (g_cvars.sys_deferAudioUpdateOptim && !m_bNoUpdate) - { - UpdateAudioSystems(); - m_bNeedDoWorkDuringOcclusionChecks = false; - } -} - void CSystem::UpdateAudioSystems() { AZ_TRACE_METHOD(); diff --git a/Code/CryEngine/CrySystem/System.h b/Code/CryEngine/CrySystem/System.h index 8c122d0df2..e5d7426415 100644 --- a/Code/CryEngine/CrySystem/System.h +++ b/Code/CryEngine/CrySystem/System.h @@ -225,8 +225,6 @@ struct SSystemCVars int sys_FilesystemCaseSensitivity; - int sys_deferAudioUpdateOptim; - AZ::IO::ArchiveVars archiveVars; #if defined(WIN32) @@ -305,8 +303,6 @@ public: virtual bool UpdatePreTickBus(int updateFlags = 0, int nPauseMode = 0); virtual bool UpdatePostTickBus(int updateFlags = 0, int nPauseMode = 0); virtual bool UpdateLoadtime(); - virtual void DoWorkDuringOcclusionChecks(); - virtual bool NeedDoWorkDuringOcclusionChecks() { return m_bNeedDoWorkDuringOcclusionChecks; } //////////////////////////////////////////////////////////////////////// // CrySystemRequestBus interface implementation @@ -737,7 +733,6 @@ protected: // ------------------------------------------------------------- typedef std::list TErrorMessages; TErrorMessages m_ErrorMessages; bool m_bHasRenderedErrorMessage; - bool m_bNeedDoWorkDuringOcclusionChecks; ESystemEvent m_eRuntimeState; bool m_bIsAsserting; diff --git a/Code/CryEngine/CrySystem/SystemInit.cpp b/Code/CryEngine/CrySystem/SystemInit.cpp index 4b07de6933..c2b8eb9861 100644 --- a/Code/CryEngine/CrySystem/SystemInit.cpp +++ b/Code/CryEngine/CrySystem/SystemInit.cpp @@ -1823,11 +1823,6 @@ void CSystem::CreateSystemVars() "1 - CryPak preserves file name casing\n" "Default is 1"); - REGISTER_CVAR2("sys_deferAudioUpdateOptim", &g_cvars.sys_deferAudioUpdateOptim, 1, VF_NULL, - "0 - disable optimisation\n" - "1 - enable optimisation\n" - "Default is 1"); - m_sysNoUpdate = REGISTER_INT("sys_noupdate", 0, VF_CHEAT, "Toggles updating of system with sys_script_debugger.\n" "Usage: sys_noupdate [0/1]\n" diff --git a/Code/Sandbox/Editor/CryEdit.cpp b/Code/Sandbox/Editor/CryEdit.cpp index 0c859e7996..cff4ea8e4f 100644 --- a/Code/Sandbox/Editor/CryEdit.cpp +++ b/Code/Sandbox/Editor/CryEdit.cpp @@ -2336,12 +2336,6 @@ int CCryEditApp::IdleProcessing(bool bBackgroundUpdate) GetIEditor()->Notify(eNotify_OnIdleUpdate); - IEditor* pEditor = GetIEditor(); - if (!pEditor->GetGameEngine()->IsLevelLoaded() && pEditor->GetSystem()->NeedDoWorkDuringOcclusionChecks()) - { - pEditor->GetSystem()->DoWorkDuringOcclusionChecks(); - } - // Since the rendering is done based on the eNotify_OnIdleUpdate, we should trigger a TickSystem as well. // To ensure that there's a system tick for every render done in Idle AZ::ComponentApplication* componentApplication = nullptr; From b1f54a20908742216f5bf31fe7da464ca4410e2a Mon Sep 17 00:00:00 2001 From: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> Date: Tue, 29 Jun 2021 08:54:40 -0700 Subject: [PATCH 024/111] Replace the splash screen and about us image with a temporary gradient until the official one has been finalized. (#1642) Signed-off-by: daimini <82231674+AMZN-daimini@users.noreply.github.com> --- Code/Sandbox/Editor/AboutDialog.cpp | 2 +- Code/Sandbox/Editor/AboutDialog.h | 2 +- Code/Sandbox/Editor/AboutDialog.ui | 273 ++++++++------ Code/Sandbox/Editor/StartupLogoDialog.cpp | 6 +- Code/Sandbox/Editor/StartupLogoDialog.qrc | 2 +- Code/Sandbox/Editor/StartupLogoDialog.ui | 351 +++++++++--------- Code/Sandbox/Editor/splashscreen_1_27.png | 3 - .../splashscreen_background_gradient.jpg | 3 + 8 files changed, 345 insertions(+), 297 deletions(-) delete mode 100644 Code/Sandbox/Editor/splashscreen_1_27.png create mode 100644 Code/Sandbox/Editor/splashscreen_background_gradient.jpg diff --git a/Code/Sandbox/Editor/AboutDialog.cpp b/Code/Sandbox/Editor/AboutDialog.cpp index e1ec7756c8..a3f76abeb0 100644 --- a/Code/Sandbox/Editor/AboutDialog.cpp +++ b/Code/Sandbox/Editor/AboutDialog.cpp @@ -45,7 +45,7 @@ CAboutDialog::CAboutDialog(QString versionText, QString richTextCopyrightNotice, CAboutDialog > QLabel#link { text-decoration: underline; color: #00A1C9; }"); // Prepare background image - QImage backgroundImage(QStringLiteral(":/StartupLogoDialog/splashscreen_1_27.png")); + QImage backgroundImage(QStringLiteral(":/StartupLogoDialog/splashscreen_background_gradient.jpg")); m_backgroundImage = QPixmap::fromImage(backgroundImage.scaled(m_enforcedWidth, m_enforcedHeight, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); // Draw the Open 3D Engine logo from svg diff --git a/Code/Sandbox/Editor/AboutDialog.h b/Code/Sandbox/Editor/AboutDialog.h index ee31020240..74b4c491f2 100644 --- a/Code/Sandbox/Editor/AboutDialog.h +++ b/Code/Sandbox/Editor/AboutDialog.h @@ -38,6 +38,6 @@ private: QPixmap m_backgroundImage; int m_enforcedWidth = 600; - int m_enforcedHeight = 360; + int m_enforcedHeight = 400; }; diff --git a/Code/Sandbox/Editor/AboutDialog.ui b/Code/Sandbox/Editor/AboutDialog.ui index 48ec82da5c..9341a00d48 100644 --- a/Code/Sandbox/Editor/AboutDialog.ui +++ b/Code/Sandbox/Editor/AboutDialog.ui @@ -55,21 +55,24 @@ 0 - 22 + 4 + + + 10 - 5 + 10 - 4 + 11 12 - 9 + 12 @@ -90,126 +93,154 @@ - - - O3DE Editor - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - - - - - Developer Preview + + + 0 - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + QLayout::SetNoConstraint - - - - 0 - 0 - 180 - 0 - - - - - - - Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing - - - - - - - - - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 16 - - - - - - - - Terms of Use - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - true - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 8 - - - - - - - - - 0 - 0 - - - - - 260 - 0 - - - - - 260 - 16777215 - - - - Specified in AboutDialog.cpp - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - true + + 20 - + + + + + 16777215 + 16 + + + + O3DE Editor + + + + + + + + 16777215 + 18 + + + + Developer Preview + + + Qt::AutoText + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + 0 + 0 + 180 + 0 + + + + + + + Qt::AlignRight|Qt::AlignTop|Qt::AlignTrailing + + + + + + + + + 16777215 + 18 + + + + + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Terms of Use + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 16 + + + + + + + + + 0 + 0 + + + + + 260 + 24 + + + + + 260 + 24 + + + + Specified in AboutDialog.cpp + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + + diff --git a/Code/Sandbox/Editor/StartupLogoDialog.cpp b/Code/Sandbox/Editor/StartupLogoDialog.cpp index da7d3308c5..8faeee2531 100644 --- a/Code/Sandbox/Editor/StartupLogoDialog.cpp +++ b/Code/Sandbox/Editor/StartupLogoDialog.cpp @@ -36,11 +36,11 @@ CStartupLogoDialog::CStartupLogoDialog(QString versionText, QString richTextCopy s_pLogoWindow = this; - m_backgroundImage = QPixmap(QStringLiteral(":/StartupLogoDialog/splashscreen_1_27.png")); + m_backgroundImage = QPixmap(QStringLiteral(":/StartupLogoDialog/splashscreen_background_gradient.jpg")); setFixedSize(QSize(600, 300)); // Prepare background image - QImage backgroundImage(QStringLiteral(":/StartupLogoDialog/splashscreen_1_27.png")); + QImage backgroundImage(QStringLiteral(":/StartupLogoDialog/splashscreen_background_gradient.jpg")); m_backgroundImage = QPixmap::fromImage(backgroundImage.scaled(m_enforcedWidth, m_enforcedHeight, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); // Draw the Open 3D Engine logo from svg @@ -55,7 +55,7 @@ CStartupLogoDialog::CStartupLogoDialog(QString versionText, QString richTextCopy setStyleSheet( "CStartupLogoDialog > QLabel { background: transparent; color: 'white' }\ CStartupLogoDialog > QLabel#copyrightNotice { color: #AAAAAA; font-size: 9px; } "); - m_ui->m_TransparentVersion->setText(QString("BETA - ") + versionText); + m_ui->m_TransparentVersion->setText(versionText); } CStartupLogoDialog::~CStartupLogoDialog() diff --git a/Code/Sandbox/Editor/StartupLogoDialog.qrc b/Code/Sandbox/Editor/StartupLogoDialog.qrc index 29730ef9c7..2493810ad8 100644 --- a/Code/Sandbox/Editor/StartupLogoDialog.qrc +++ b/Code/Sandbox/Editor/StartupLogoDialog.qrc @@ -1,6 +1,6 @@ o3de_logo.svg - splashscreen_1_27.png + splashscreen_background_gradient.jpg diff --git a/Code/Sandbox/Editor/StartupLogoDialog.ui b/Code/Sandbox/Editor/StartupLogoDialog.ui index 0815fa8b18..60969f7f7f 100644 --- a/Code/Sandbox/Editor/StartupLogoDialog.ui +++ b/Code/Sandbox/Editor/StartupLogoDialog.ui @@ -17,6 +17,26 @@ 10 + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 250 + 20 + + + + + + @@ -25,15 +45,15 @@ - 2 + 0 - 3 + 1 - 21 + 28 24 @@ -57,177 +77,174 @@ - - - - 0 - 0 - - - - - 290 - 0 - - - - - 290 - 16777215 - - - - Development version - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 10 - - - - - - - - - 0 - 0 - - - - - 290 - 0 - - - - - 290 - 16777215 - - - - Starting Editor... - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - Qt::Vertical + + + 0 - - QSizePolicy::Fixed - - - - 20 - 36 - - - - - - - - Artwork from New World - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 5 - - - - - - - - - 0 - 0 - - - - - 240 - 0 - - - - - 240 - 16777215 - - - - - 128 - 0 - - - - Specified in the StartupLogoDialog constructor. - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter - - - true + + 10 - + + + + O3DE Editor + + + + + + + Developer Preview + + + + + + + + 0 + 0 + + + + + 290 + 0 + + + + + 290 + 16777215 + + + + Version + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 10 + + + + + + + + + 0 + 0 + + + + + 290 + 0 + + + + + 290 + 16777215 + + + + Starting Editor... + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 36 + + + + + + + + + 0 + 0 + + + + + 240 + 0 + + + + + 240 + 16777215 + + + + + 128 + 0 + + + + Specified in the StartupLogoDialog constructor. + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + true + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 5 + + + + + - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 260 - 20 - - - - - - diff --git a/Code/Sandbox/Editor/splashscreen_1_27.png b/Code/Sandbox/Editor/splashscreen_1_27.png deleted file mode 100644 index 698861250a..0000000000 --- a/Code/Sandbox/Editor/splashscreen_1_27.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c48b708abfe9e77e7bd1418812373637c57a77980ab6943168e25f075b1ef55a -size 846775 diff --git a/Code/Sandbox/Editor/splashscreen_background_gradient.jpg b/Code/Sandbox/Editor/splashscreen_background_gradient.jpg new file mode 100644 index 0000000000..e4894dd3be --- /dev/null +++ b/Code/Sandbox/Editor/splashscreen_background_gradient.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f54f31e63dc9f0c9ed7847745a929ba501ed21841f7ee6a5de9e25768fd05e +size 53310 From a76a7291b553828044c2d932bc1d2da8bda4ae4e Mon Sep 17 00:00:00 2001 From: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> Date: Tue, 29 Jun 2021 08:55:03 -0700 Subject: [PATCH 025/111] Replace Asset Processor system tray icon with a more readable one. (#1639) Signed-off-by: daimini <82231674+AMZN-daimini@users.noreply.github.com> --- .../native/ui/style/AssetProcessor.qrc | 1 + .../native/ui/style/o3de_assetprocessor_taskbar.svg | 13 +++++++++++++ .../native/utilities/GUIApplicationManager.cpp | 3 +-- 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 Code/Tools/AssetProcessor/native/ui/style/o3de_assetprocessor_taskbar.svg diff --git a/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qrc b/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qrc index 564d7a2132..eeaa6ad9da 100644 --- a/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qrc +++ b/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qrc @@ -17,5 +17,6 @@ AssetProcessor_arrow_up.svg AssetProcessor_refresh.png o3de_assetprocessor.png + o3de_assetprocessor_taskbar.svg diff --git a/Code/Tools/AssetProcessor/native/ui/style/o3de_assetprocessor_taskbar.svg b/Code/Tools/AssetProcessor/native/ui/style/o3de_assetprocessor_taskbar.svg new file mode 100644 index 0000000000..7b637fc7c7 --- /dev/null +++ b/Code/Tools/AssetProcessor/native/ui/style/o3de_assetprocessor_taskbar.svg @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp index 8faa0e4d6e..dff571af44 100644 --- a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp @@ -268,10 +268,9 @@ bool GUIApplicationManager::Run() trayIconMenu->addAction(quitAction); #endif - m_trayIcon = new QSystemTrayIcon(m_mainWindow); + m_trayIcon = new QSystemTrayIcon(QIcon(":/o3de_assetprocessor_taskbar.svg"), m_mainWindow); m_trayIcon->setContextMenu(trayIconMenu); m_trayIcon->setToolTip(QObject::tr("O3DE Asset Processor")); - m_trayIcon->setIcon(QIcon(":/o3de_assetprocessor.png")); m_trayIcon->show(); QObject::connect(m_trayIcon, &QSystemTrayIcon::activated, m_mainWindow, [&, wrapper](QSystemTrayIcon::ActivationReason reason) { From 8fe33c9afc78f4a57bce28b3a13c6bf9be307c03 Mon Sep 17 00:00:00 2001 From: Terry Michaels Date: Tue, 29 Jun 2021 11:06:15 -0500 Subject: [PATCH 026/111] Removed references to Lumberyard (#1645) Signed-off-by: Terry Michaels --- Code/Sandbox/Editor/EditorViewportWidget.cpp | 2 +- Code/Sandbox/Editor/RenderViewport.cpp | 2 +- Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Code/Sandbox/Editor/EditorViewportWidget.cpp b/Code/Sandbox/Editor/EditorViewportWidget.cpp index c57347a809..216854eddb 100644 --- a/Code/Sandbox/Editor/EditorViewportWidget.cpp +++ b/Code/Sandbox/Editor/EditorViewportWidget.cpp @@ -2839,7 +2839,7 @@ void EditorViewportWidget::RestoreViewportAfterGameMode() if (restoreOnExitGameModePopupDisabledRegValue.isNull()) { // No, ask them now - QMessageBox messageBox(QMessageBox::Question, "Lumberyard", text, QMessageBox::StandardButtons(QMessageBox::No | QMessageBox::Yes), this); + QMessageBox messageBox(QMessageBox::Question, "O3DE", text, QMessageBox::StandardButtons(QMessageBox::No | QMessageBox::Yes), this); messageBox.setDefaultButton(QMessageBox::Yes); QCheckBox* checkBox = new QCheckBox(QStringLiteral("Do not show this message again")); diff --git a/Code/Sandbox/Editor/RenderViewport.cpp b/Code/Sandbox/Editor/RenderViewport.cpp index c8aafb1151..88d24a068b 100644 --- a/Code/Sandbox/Editor/RenderViewport.cpp +++ b/Code/Sandbox/Editor/RenderViewport.cpp @@ -4094,7 +4094,7 @@ void CRenderViewport::RestoreViewportAfterGameMode() if (restoreOnExitGameModePopupDisabledRegValue.isNull()) { // No, ask them now - QMessageBox messageBox(QMessageBox::Question, "Lumberyard", text, QMessageBox::StandardButtons(QMessageBox::No | QMessageBox::Yes), this); + QMessageBox messageBox(QMessageBox::Question, "O3DE", text, QMessageBox::StandardButtons(QMessageBox::No | QMessageBox::Yes), this); messageBox.setDefaultButton(QMessageBox::Yes); QCheckBox* checkBox = new QCheckBox(QStringLiteral("Do not show this message again")); diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp b/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp index b7ccd6ce40..2c11ca60a8 100644 --- a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp +++ b/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp @@ -76,7 +76,7 @@ QString CFFMPEGPlugin::GetFFMPEGExectablePath() // see what can be found! QString ffmpegExectablePath; - QSettings settings("Amazon", "Lumberyard"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("Settings"); ffmpegExectablePath = settings.value("FFMPEG_PLUGIN").toString(); From a9227e19622e7e46e08f9c91995ba983c0d24a94 Mon Sep 17 00:00:00 2001 From: jackalbe <23512001+jackalbe@users.noreply.github.com> Date: Tue, 29 Jun 2021 11:59:51 -0500 Subject: [PATCH 027/111] {LYN-4456} FileIO hooks for LegacyTestAdapter (#1635) * Could not reproduce the unit test fail for the m_app->BeforeRun() failure, * so I am adding file IO hooks to listen for errors during the fixture setup Tests: failed to repro the issue Signed-off-by: Jackson <23512001+jackalbe@users.noreply.github.com> --- .../native/tests/AssetProcessorTest.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp index 7de5c84673..1cab7e3fe4 100644 --- a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp @@ -9,6 +9,7 @@ #include #include +#include #include "BaseAssetProcessorTest.h" #include @@ -52,11 +53,13 @@ namespace AssetProcessor }; class LegacyTestAdapter : public AssetProcessorTest, - public ::testing::WithParamInterface + public ::testing::WithParamInterface, + public AZ::IO::FileIOEventBus::Handler { void SetUp() override { AssetProcessorTest::SetUp(); + AZ::IO::FileIOEventBus::Handler::BusConnect(); static int numParams = 1; static char processName[] = {"AssetProcessorBatch"}; @@ -77,9 +80,15 @@ namespace AssetProcessor void TearDown() override { m_application.reset(); + AZ::IO::FileIOEventBus::Handler::BusDisconnect(); AssetProcessorTest::TearDown(); } + void OnError([[maybe_unused]] const AZ::IO::SystemFile* file, const char* fileName, int errorCode) override + { + AZ_Error("LegacyTestAdapter", false, "File error detected with %s with code %d", fileName, errorCode); + } + AZStd::unique_ptr m_application; }; From 2d27c13b31b1b5d4c26fbb80889f61db617107f9 Mon Sep 17 00:00:00 2001 From: Aaron Ruiz Mora Date: Tue, 29 Jun 2021 18:30:35 +0100 Subject: [PATCH 028/111] Created cloth slice assets as prefabs (#1646) Signed-off-by: moraaar --- .../Assets/prefabs/Cloth/Chicken_Actor.prefab | 312 ++++++++++++++++++ .../Assets/prefabs/Cloth/cloth_blinds.prefab | 221 +++++++++++++ .../prefabs/Cloth/cloth_blinds_broken.prefab | 214 ++++++++++++ .../Cloth/cloth_locked_corners_four.prefab | 224 +++++++++++++ .../Cloth/cloth_locked_corners_two.prefab | 221 +++++++++++++ .../prefabs/Cloth/cloth_locked_edge.prefab | 237 +++++++++++++ 6 files changed, 1429 insertions(+) create mode 100644 Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab create mode 100644 Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab create mode 100644 Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab create mode 100644 Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab create mode 100644 Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab create mode 100644 Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab new file mode 100644 index 0000000000..c48dcec36c --- /dev/null +++ b/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab @@ -0,0 +1,312 @@ +{ + "ContainerEntity": { + "Id": "ContainerEntity", + "Name": "Chicken_Actor", + "Components": { + "Component_[10420060158469409859]": { + "$type": "EditorVisibilityComponent", + "Id": 10420060158469409859 + }, + "Component_[10713261435043694267]": { + "$type": "EditorOnlyEntityComponent", + "Id": 10713261435043694267 + }, + "Component_[11088054817315996737]": { + "$type": "EditorLockComponent", + "Id": 11088054817315996737 + }, + "Component_[14341334118593165562]": { + "$type": "EditorInspectorComponent", + "Id": 14341334118593165562 + }, + "Component_[15143425594853321191]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 15143425594853321191, + "Parent Entity": "", + "Cached World Transform Parent": "" + }, + "Component_[15383315993246423867]": { + "$type": "EditorPrefabComponent", + "Id": 15383315993246423867 + }, + "Component_[16499127605624407101]": { + "$type": "EditorEntitySortComponent", + "Id": 16499127605624407101 + }, + "Component_[16697571480493454144]": { + "$type": "SelectionComponent", + "Id": 16697571480493454144 + }, + "Component_[415761541071751882]": { + "$type": "EditorPendingCompositionComponent", + "Id": 415761541071751882 + }, + "Component_[7972775450040391034]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 7972775450040391034 + }, + "Component_[9910169802741330341]": { + "$type": "EditorEntityIconComponent", + "Id": 9910169802741330341 + } + }, + "IsDependencyReady": true + }, + "Entities": { + "Entity_[48421054243702]": { + "Id": "Entity_[48421054243702]", + "Name": "Chicken_Actor", + "Components": { + "Component_[10024659544266822060]": { + "$type": "EditorInspectorComponent", + "Id": 10024659544266822060, + "ComponentOrderEntryArray": [ + { + "ComponentId": 3250661421529612274 + }, + { + "ComponentId": 4381463095952282089, + "SortIndex": 1 + }, + { + "ComponentId": 13550968986158933154, + "SortIndex": 2 + }, + { + "ComponentId": 11536283465461048726, + "SortIndex": 3 + }, + { + "ComponentId": 7689190671460963527, + "SortIndex": 4 + } + ] + }, + "Component_[11465635386953249015]": { + "$type": "EditorLockComponent", + "Id": 11465635386953249015 + }, + "Component_[11536283465461048726]": { + "$type": "EditorSimpleMotionComponent", + "Id": 11536283465461048726, + "Configuration": { + "MotionAsset": { + "assetId": { + "guid": "{37045429-A151-5646-97CF-BE931A35C0FC}", + "subId": 2264735902 + }, + "assetHint": "objects/cloth/chicken/motions/chickenidle.motion" + }, + "Loop": true + } + }, + "Component_[13550968986158933154]": { + "$type": "EditorMaterialComponent", + "Id": 13550968986158933154, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 668669130 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{FB34D8F7-E8CA-542D-92A3-F0E04F3A3EC3}" + }, + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_body_mat.azmaterial" + } + } + }, + { + "Key": { + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 1541321207 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{6114C408-26EE-51DC-8733-A07800BF4991}" + }, + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_eye_mat.azmaterial" + } + } + }, + { + "Key": { + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 2608524672 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{80F92051-203E-52CE-B4D6-E3AED21795C9}" + }, + "assetHint": "objects/cloth/chicken/actor/chicken_mohawkmat.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 668669130 + } + }, + "materialAsset": { + "assetId": { + "guid": "{FB34D8F7-E8CA-542D-92A3-F0E04F3A3EC3}" + }, + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_body_mat.azmaterial" + } + }, + { + "id": { + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 1541321207 + } + }, + "materialAsset": { + "assetId": { + "guid": "{6114C408-26EE-51DC-8733-A07800BF4991}" + }, + "assetHint": "objects/cloth/chicken/actor/chicken_chicken_eye_mat.azmaterial" + } + }, + { + "id": { + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 2608524672 + } + }, + "materialAsset": { + "assetId": { + "guid": "{80F92051-203E-52CE-B4D6-E3AED21795C9}" + }, + "assetHint": "objects/cloth/chicken/actor/chicken_mohawkmat.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 668669130 + } + } + }, + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 1541321207 + } + } + }, + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 2608524672 + } + } + } + ] + ] + }, + "Component_[14277098884859902099]": { + "$type": "EditorPendingCompositionComponent", + "Id": 14277098884859902099 + }, + "Component_[2153976993809262425]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 2153976993809262425 + }, + "Component_[3250661421529612274]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 3250661421529612274, + "Parent Entity": "ContainerEntity", + "Cached World Transform": { + "Translation": [ + -8.559586524963379, + -1.2393379211425782, + 0.043556928634643558 + ], + "Rotation": [ + 0.0, + 0.0, + 1.0, + 0.0 + ] + }, + "Cached World Transform Parent": "ContainerEntity" + }, + "Component_[363579226643870873]": { + "$type": "EditorEntityIconComponent", + "Id": 363579226643870873 + }, + "Component_[4381463095952282089]": { + "$type": "EditorActorComponent", + "Id": 4381463095952282089, + "ActorAsset": { + "assetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 166954688 + }, + "loadBehavior": "QueueLoad", + "assetHint": "objects/cloth/chicken/actor/chicken.actor" + }, + "MaterialPerLOD": [ + {} + ], + "AttachmentTarget": "" + }, + "Component_[4892122740022910835]": { + "$type": "SelectionComponent", + "Id": 4892122740022910835 + }, + "Component_[5646397145899865599]": { + "$type": "EditorVisibilityComponent", + "Id": 5646397145899865599 + }, + "Component_[6526021153484129377]": { + "$type": "EditorOnlyEntityComponent", + "Id": 6526021153484129377 + }, + "Component_[7689190671460963527]": { + "$type": "EditorClothComponent", + "Id": 7689190671460963527, + "Configuration": { + "Mesh Node": "chicken_mohawk", + "Mass": 4.0, + "Remove Static Triangles": false + } + }, + "Component_[7705494469103394865]": { + "$type": "EditorEntitySortComponent", + "Id": 7705494469103394865 + } + }, + "IsDependencyReady": true + } + } +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab new file mode 100644 index 0000000000..de6dba6399 --- /dev/null +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab @@ -0,0 +1,221 @@ +{ + "ContainerEntity": { + "Id": "ContainerEntity", + "Name": "cloth_blinds", + "Components": { + "Component_[11710159740232621436]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 11710159740232621436 + }, + "Component_[12700834211830506265]": { + "$type": "EditorInspectorComponent", + "Id": 12700834211830506265 + }, + "Component_[1332207344633534847]": { + "$type": "EditorPrefabComponent", + "Id": 1332207344633534847 + }, + "Component_[15674607824372989481]": { + "$type": "SelectionComponent", + "Id": 15674607824372989481 + }, + "Component_[17830258131678226250]": { + "$type": "EditorPendingCompositionComponent", + "Id": 17830258131678226250 + }, + "Component_[2739137831523757464]": { + "$type": "EditorOnlyEntityComponent", + "Id": 2739137831523757464 + }, + "Component_[6200331447094468978]": { + "$type": "EditorEntityIconComponent", + "Id": 6200331447094468978 + }, + "Component_[6469357969320867250]": { + "$type": "EditorLockComponent", + "Id": 6469357969320867250 + }, + "Component_[7557343481632459660]": { + "$type": "EditorVisibilityComponent", + "Id": 7557343481632459660 + }, + "Component_[8407841941984260302]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 8407841941984260302, + "Parent Entity": "", + "Cached World Transform Parent": "" + }, + "Component_[8679209570517497730]": { + "$type": "EditorEntitySortComponent", + "Id": 8679209570517497730 + } + }, + "IsDependencyReady": true + }, + "Entities": { + "Entity_[2310285353846]": { + "Id": "Entity_[2310285353846]", + "Name": "cloth_blinds", + "Components": { + "Component_[11484820910614012211]": { + "$type": "EditorOnlyEntityComponent", + "Id": 11484820910614012211 + }, + "Component_[12758934717931799496]": { + "$type": "EditorEntitySortComponent", + "Id": 12758934717931799496 + }, + "Component_[14636776520633084007]": { + "$type": "EditorClothComponent", + "Id": 14636776520633084007, + "Configuration": { + "Mesh Node": "pPlane1", + "Update Normals of Static Particles": true, + "Wind Velocity": [ + 0.0, + 10.0, + 0.0 + ], + "Stiffness Frequency": 1.0 + } + }, + "Component_[15643606068434059364]": { + "$type": "EditorLockComponent", + "Id": 15643606068434059364 + }, + "Component_[1802437050375983597]": { + "$type": "EditorEntityIconComponent", + "Id": 1802437050375983597 + }, + "Component_[2246969288668584020]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 2246969288668584020 + }, + "Component_[3349689287441689089]": { + "$type": "EditorPendingCompositionComponent", + "Id": 3349689287441689089 + }, + "Component_[4761242843736319995]": { + "$type": "EditorMaterialComponent", + "Id": 4761242843736319995, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialAssetId": { + "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", + "subId": 902256226 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{6BFA7C7C-AF9F-5B12-8B30-6B6ECE9BAB9E}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialAssetId": { + "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", + "subId": 902256226 + } + }, + "materialAsset": { + "assetId": { + "guid": "{6BFA7C7C-AF9F-5B12-8B30-6B6ECE9BAB9E}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", + "subId": 902256226 + } + } + } + ] + ] + }, + "Component_[7102112177384882498]": { + "$type": "EditorInspectorComponent", + "Id": 7102112177384882498, + "ComponentOrderEntryArray": [ + { + "ComponentId": 8287798504585048292 + }, + { + "ComponentId": 7500992507704969518, + "SortIndex": 1 + }, + { + "ComponentId": 4761242843736319995, + "SortIndex": 2 + }, + { + "ComponentId": 14636776520633084007, + "SortIndex": 3 + } + ] + }, + "Component_[7262445215578128559]": { + "$type": "EditorVisibilityComponent", + "Id": 7262445215578128559 + }, + "Component_[7500992507704969518]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 7500992507704969518, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", + "subId": 283342727 + }, + "assetHint": "objects/cloth/environment/cloth_blinds.azmodel" + } + } + } + }, + "Component_[8287798504585048292]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 8287798504585048292, + "Parent Entity": "ContainerEntity", + "Cached World Transform": { + "Translation": [ + -5.723679542541504, + -2.6300342082977297, + 1.938896894454956 + ] + }, + "Cached World Transform Parent": "ContainerEntity", + "Transform Data": { + "Translate": [ + -6.210474491119385, + 0.0, + 2.0854623317718508 + ] + } + }, + "Component_[9830203766948851058]": { + "$type": "SelectionComponent", + "Id": 9830203766948851058 + } + }, + "IsDependencyReady": true + } + } +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab new file mode 100644 index 0000000000..c4caf4ff4c --- /dev/null +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab @@ -0,0 +1,214 @@ +{ + "ContainerEntity": { + "Id": "ContainerEntity", + "Name": "cloth_blinds_broken", + "Components": { + "Component_[10989814620261546639]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 10989814620261546639 + }, + "Component_[12298926505503761520]": { + "$type": "EditorPendingCompositionComponent", + "Id": 12298926505503761520 + }, + "Component_[13199048427796447680]": { + "$type": "EditorVisibilityComponent", + "Id": 13199048427796447680 + }, + "Component_[13897401964074181963]": { + "$type": "EditorLockComponent", + "Id": 13897401964074181963 + }, + "Component_[15440200647772473638]": { + "$type": "EditorEntityIconComponent", + "Id": 15440200647772473638 + }, + "Component_[15453809689256412670]": { + "$type": "SelectionComponent", + "Id": 15453809689256412670 + }, + "Component_[16085218976953314353]": { + "$type": "EditorEntitySortComponent", + "Id": 16085218976953314353 + }, + "Component_[16269162367022698371]": { + "$type": "EditorPrefabComponent", + "Id": 16269162367022698371 + }, + "Component_[3663243583798432985]": { + "$type": "EditorOnlyEntityComponent", + "Id": 3663243583798432985 + }, + "Component_[6161691932390979827]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 6161691932390979827, + "Parent Entity": "", + "Cached World Transform Parent": "" + }, + "Component_[6472172087633666006]": { + "$type": "EditorInspectorComponent", + "Id": 6472172087633666006 + } + }, + "IsDependencyReady": true + }, + "Entities": { + "Entity_[8860110480246]": { + "Id": "Entity_[8860110480246]", + "Name": "cloth_blinds_broken", + "Components": { + "Component_[1079843150556003627]": { + "$type": "EditorEntityIconComponent", + "Id": 1079843150556003627 + }, + "Component_[11968229236146127519]": { + "$type": "EditorPendingCompositionComponent", + "Id": 11968229236146127519 + }, + "Component_[12117224592880940883]": { + "$type": "EditorInspectorComponent", + "Id": 12117224592880940883, + "ComponentOrderEntryArray": [ + { + "ComponentId": 5483426416697581640 + }, + { + "ComponentId": 5518702849950674566, + "SortIndex": 1 + }, + { + "ComponentId": 894067052175737998, + "SortIndex": 2 + }, + { + "ComponentId": 1765776596326719942, + "SortIndex": 3 + } + ] + }, + "Component_[1765776596326719942]": { + "$type": "EditorClothComponent", + "Id": 1765776596326719942, + "Configuration": { + "Mesh Node": "pPlane1", + "Update Normals of Static Particles": true, + "Wind Velocity": [ + 0.0, + 10.0, + 0.0 + ], + "Stiffness Frequency": 1.0 + } + }, + "Component_[17734660328068630579]": { + "$type": "SelectionComponent", + "Id": 17734660328068630579 + }, + "Component_[2020684643572273032]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 2020684643572273032 + }, + "Component_[3951090720799475031]": { + "$type": "EditorVisibilityComponent", + "Id": 3951090720799475031 + }, + "Component_[504292109316286904]": { + "$type": "EditorLockComponent", + "Id": 504292109316286904 + }, + "Component_[5243187155220405314]": { + "$type": "EditorOnlyEntityComponent", + "Id": 5243187155220405314 + }, + "Component_[5483426416697581640]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 5483426416697581640, + "Parent Entity": "ContainerEntity", + "Cached World Transform": { + "Translation": [ + -2.9314260482788088, + -0.9454793930053711, + 1.7495737075805665 + ] + }, + "Cached World Transform Parent": "ContainerEntity" + }, + "Component_[5518702849950674566]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 5518702849950674566, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", + "subId": 270272858 + }, + "assetHint": "objects/cloth/environment/cloth_blinds_broken.azmodel" + } + } + } + }, + "Component_[894067052175737998]": { + "$type": "EditorMaterialComponent", + "Id": 894067052175737998, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialAssetId": { + "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", + "subId": 902256226 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{EB6CB909-E4BB-54CB-8CAE-6A4B4F203B1B}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds_broken.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialAssetId": { + "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", + "subId": 902256226 + } + }, + "materialAsset": { + "assetId": { + "guid": "{EB6CB909-E4BB-54CB-8CAE-6A4B4F203B1B}" + }, + "assetHint": "objects/cloth/environment/cloth_blinds_broken.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{A64AD477-5E35-5834-A9A3-580B9D708E0C}", + "subId": 902256226 + } + } + } + ] + ] + }, + "Component_[9677874933452340864]": { + "$type": "EditorEntitySortComponent", + "Id": 9677874933452340864 + } + }, + "IsDependencyReady": true + } + } +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab new file mode 100644 index 0000000000..39b72f63fd --- /dev/null +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab @@ -0,0 +1,224 @@ +{ + "ContainerEntity": { + "Id": "ContainerEntity", + "Name": "cloth_locked_corners_four", + "Components": { + "Component_[13888132130168041992]": { + "$type": "EditorEntityIconComponent", + "Id": 13888132130168041992 + }, + "Component_[14031678566419671406]": { + "$type": "EditorVisibilityComponent", + "Id": 14031678566419671406 + }, + "Component_[15480122384719724795]": { + "$type": "EditorPrefabComponent", + "Id": 15480122384719724795 + }, + "Component_[15688442711950741155]": { + "$type": "SelectionComponent", + "Id": 15688442711950741155 + }, + "Component_[17193472612212292109]": { + "$type": "EditorPendingCompositionComponent", + "Id": 17193472612212292109 + }, + "Component_[17650154089342371227]": { + "$type": "EditorOnlyEntityComponent", + "Id": 17650154089342371227 + }, + "Component_[2597916765647847638]": { + "$type": "EditorInspectorComponent", + "Id": 2597916765647847638 + }, + "Component_[3170182215265959833]": { + "$type": "EditorLockComponent", + "Id": 3170182215265959833 + }, + "Component_[4868760161921280191]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 4868760161921280191 + }, + "Component_[5068517972887920186]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 5068517972887920186, + "Parent Entity": "", + "Cached World Transform Parent": "" + }, + "Component_[676524230089543870]": { + "$type": "EditorEntitySortComponent", + "Id": 676524230089543870 + } + }, + "IsDependencyReady": true + }, + "Entities": { + "Entity_[18154419708790]": { + "Id": "Entity_[18154419708790]", + "Name": "cloth_locked_corners_four", + "Components": { + "Component_[10365722294506366933]": { + "$type": "EditorMaterialComponent", + "Id": 10365722294506366933, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialAssetId": { + "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", + "subId": 902256226 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{838EA487-0F74-5448-AABE-947B138CD6C2}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialAssetId": { + "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", + "subId": 902256226 + } + }, + "materialAsset": { + "assetId": { + "guid": "{838EA487-0F74-5448-AABE-947B138CD6C2}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", + "subId": 902256226 + } + } + } + ] + ] + }, + "Component_[10859562122285472274]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 10859562122285472274 + }, + "Component_[14622083210324204992]": { + "$type": "EditorLockComponent", + "Id": 14622083210324204992 + }, + "Component_[15220860273045136531]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 15220860273045136531, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", + "subId": 279249006 + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmodel" + } + } + } + }, + "Component_[16425888662708329747]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 16425888662708329747, + "Parent Entity": "ContainerEntity", + "Cached World Transform": { + "Translation": [ + 3.0004701614379885, + -4.337822437286377, + 3.1882824897766115 + ] + }, + "Cached World Transform Parent": "ContainerEntity", + "Transform Data": { + "Translate": [ + 8.040351867675782, + -4.368268966674805, + 0.0 + ] + } + }, + "Component_[4438658514025011411]": { + "$type": "EditorEntitySortComponent", + "Id": 4438658514025011411 + }, + "Component_[5913235105006124431]": { + "$type": "EditorPendingCompositionComponent", + "Id": 5913235105006124431 + }, + "Component_[77600265179991959]": { + "$type": "EditorClothComponent", + "Id": 77600265179991959, + "Configuration": { + "Mesh Node": "pPlane1", + "Air Drag Coefficient": 0.5, + "Air Lift Coefficient": 0.5, + "Tether Constraint Stiffness": 0.10000000149011612, + "Solver Frequency": 0.10000000149011612, + "Update Normals of Static Particles": true, + "Wind Velocity": [ + 0.0, + 19.0, + 0.0 + ] + } + }, + "Component_[7823285819593032424]": { + "$type": "SelectionComponent", + "Id": 7823285819593032424 + }, + "Component_[7850007788027860583]": { + "$type": "EditorEntityIconComponent", + "Id": 7850007788027860583 + }, + "Component_[8322654623609026271]": { + "$type": "EditorOnlyEntityComponent", + "Id": 8322654623609026271 + }, + "Component_[884075377124407467]": { + "$type": "EditorInspectorComponent", + "Id": 884075377124407467, + "ComponentOrderEntryArray": [ + { + "ComponentId": 16425888662708329747 + }, + { + "ComponentId": 15220860273045136531, + "SortIndex": 1 + }, + { + "ComponentId": 10365722294506366933, + "SortIndex": 2 + }, + { + "ComponentId": 77600265179991959, + "SortIndex": 3 + } + ] + }, + "Component_[9249713210701101638]": { + "$type": "EditorVisibilityComponent", + "Id": 9249713210701101638 + } + }, + "IsDependencyReady": true + } + } +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab new file mode 100644 index 0000000000..b6bf98331c --- /dev/null +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab @@ -0,0 +1,221 @@ +{ + "ContainerEntity": { + "Id": "ContainerEntity", + "Name": "cloth_locked_corners_two", + "Components": { + "Component_[10517025541686089747]": { + "$type": "SelectionComponent", + "Id": 10517025541686089747 + }, + "Component_[11942695247789365360]": { + "$type": "EditorLockComponent", + "Id": 11942695247789365360 + }, + "Component_[12559361867367225813]": { + "$type": "EditorPendingCompositionComponent", + "Id": 12559361867367225813 + }, + "Component_[2298695278968718052]": { + "$type": "EditorPrefabComponent", + "Id": 2298695278968718052 + }, + "Component_[5428140871384328988]": { + "$type": "EditorOnlyEntityComponent", + "Id": 5428140871384328988 + }, + "Component_[5701501137958186643]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 5701501137958186643, + "Parent Entity": "", + "Cached World Transform Parent": "" + }, + "Component_[5778239630714783896]": { + "$type": "EditorVisibilityComponent", + "Id": 5778239630714783896 + }, + "Component_[7805751851684582886]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 7805751851684582886 + }, + "Component_[8080436454059486024]": { + "$type": "EditorEntityIconComponent", + "Id": 8080436454059486024 + }, + "Component_[9061896821975172319]": { + "$type": "EditorInspectorComponent", + "Id": 9061896821975172319 + }, + "Component_[9124360597499948832]": { + "$type": "EditorEntitySortComponent", + "Id": 9124360597499948832 + } + }, + "IsDependencyReady": true + }, + "Entities": { + "Entity_[19988370744182]": { + "Id": "Entity_[19988370744182]", + "Name": "cloth_locked_corners_two", + "Components": { + "Component_[11229181318682575009]": { + "$type": "EditorOnlyEntityComponent", + "Id": 11229181318682575009 + }, + "Component_[12590098138564546298]": { + "$type": "EditorMaterialComponent", + "Id": 12590098138564546298, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialAssetId": { + "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", + "subId": 902256226 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{A56F28DD-6082-50B6-9B44-9EF3E03E95BB}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialAssetId": { + "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", + "subId": 902256226 + } + }, + "materialAsset": { + "assetId": { + "guid": "{A56F28DD-6082-50B6-9B44-9EF3E03E95BB}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", + "subId": 902256226 + } + } + } + ] + ] + }, + "Component_[13015448166210260338]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 13015448166210260338, + "Parent Entity": "ContainerEntity", + "Cached World Transform": { + "Translation": [ + 0.6749224662780762, + -4.288209915161133, + 2.4030189514160158 + ] + }, + "Cached World Transform Parent": "ContainerEntity", + "Transform Data": { + "Translate": [ + 2.2785778045654299, + 0.0, + 0.0 + ] + } + }, + "Component_[17709800634205509765]": { + "$type": "SelectionComponent", + "Id": 17709800634205509765 + }, + "Component_[17881336357737316612]": { + "$type": "EditorVisibilityComponent", + "Id": 17881336357737316612 + }, + "Component_[18134421333115235974]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 18134421333115235974, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", + "subId": 280646834 + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmodel" + } + } + } + }, + "Component_[1951606800215019069]": { + "$type": "EditorEntityIconComponent", + "Id": 1951606800215019069 + }, + "Component_[2363740054997837278]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 2363740054997837278 + }, + "Component_[3674821019392172687]": { + "$type": "EditorInspectorComponent", + "Id": 3674821019392172687, + "ComponentOrderEntryArray": [ + { + "ComponentId": 13015448166210260338 + }, + { + "ComponentId": 18134421333115235974, + "SortIndex": 1 + }, + { + "ComponentId": 12590098138564546298, + "SortIndex": 2 + }, + { + "ComponentId": 5881611098656116710, + "SortIndex": 3 + } + ] + }, + "Component_[5096623085809697325]": { + "$type": "EditorPendingCompositionComponent", + "Id": 5096623085809697325 + }, + "Component_[5881611098656116710]": { + "$type": "EditorClothComponent", + "Id": 5881611098656116710, + "Configuration": { + "Mesh Node": "pPlane1", + "Mass": 10.0, + "Stiffness Frequency": 1.0, + "Air Drag Coefficient": 0.5, + "Air Lift Coefficient": 0.800000011920929, + "Tether Constraint Stiffness": 0.10000000149011612, + "Solver Frequency": 0.5, + "Update Normals of Static Particles": true + } + }, + "Component_[617790731841875255]": { + "$type": "EditorLockComponent", + "Id": 617790731841875255 + }, + "Component_[7682555904043583234]": { + "$type": "EditorEntitySortComponent", + "Id": 7682555904043583234 + } + }, + "IsDependencyReady": true + } + } +} \ No newline at end of file diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab new file mode 100644 index 0000000000..1dff578422 --- /dev/null +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab @@ -0,0 +1,237 @@ +{ + "ContainerEntity": { + "Id": "ContainerEntity", + "Name": "cloth_locked_edge", + "Components": { + "Component_[1235323850699490217]": { + "$type": "EditorVisibilityComponent", + "Id": 1235323850699490217 + }, + "Component_[15881575175154249216]": { + "$type": "EditorEntityIconComponent", + "Id": 15881575175154249216 + }, + "Component_[17600849902539154435]": { + "$type": "EditorOnlyEntityComponent", + "Id": 17600849902539154435 + }, + "Component_[17642993831427457865]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 17642993831427457865, + "Parent Entity": "", + "Cached World Transform Parent": "" + }, + "Component_[1978132613175166397]": { + "$type": "EditorPrefabComponent", + "Id": 1978132613175166397 + }, + "Component_[3665335443055612027]": { + "$type": "EditorEntitySortComponent", + "Id": 3665335443055612027 + }, + "Component_[4340499892108035209]": { + "$type": "EditorInspectorComponent", + "Id": 4340499892108035209 + }, + "Component_[5740495422195339981]": { + "$type": "SelectionComponent", + "Id": 5740495422195339981 + }, + "Component_[5916084327473082953]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 5916084327473082953 + }, + "Component_[6149161397236330762]": { + "$type": "EditorPendingCompositionComponent", + "Id": 6149161397236330762 + }, + "Component_[8815189893920523789]": { + "$type": "EditorLockComponent", + "Id": 8815189893920523789 + } + }, + "IsDependencyReady": true + }, + "Entities": { + "Entity_[24657000194934]": { + "Id": "Entity_[24657000194934]", + "Name": "cloth_locked_edge", + "Components": { + "Component_[12570923873370995388]": { + "$type": "EditorEntityIconComponent", + "Id": 12570923873370995388 + }, + "Component_[15695175229307539942]": { + "$type": "EditorClothComponent", + "Id": 15695175229307539942, + "Configuration": { + "Mesh Node": "pPlane1", + "Damping": [ + 0.0, + 0.0, + 0.0 + ], + "Linear Drag": [ + 0.5, + 0.5, + 0.5 + ], + "Angular Drag": [ + 0.5, + 0.5, + 0.5 + ], + "Wind Velocity": [ + 20.0, + 0.0, + 0.0 + ], + "Update Normals of Static Particles": true, + "Air Drag Coefficient": 0.5, + "Air Lift Coefficient": 0.10000000149011612 + } + }, + "Component_[1702552432011529292]": { + "$type": "EditorOnlyEntityComponent", + "Id": 1702552432011529292 + }, + "Component_[3257580479102403174]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 3257580479102403174 + }, + "Component_[4004895580151009916]": { + "$type": "EditorMaterialComponent", + "Id": 4004895580151009916, + "Controller": { + "Configuration": { + "materials": [ + { + "Key": { + "materialAssetId": { + "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", + "subId": 902256226 + } + }, + "Value": { + "MaterialAsset": { + "assetId": { + "guid": "{FF25E0FE-B695-5084-AE1E-65F095AA5C3F}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_edge.azmaterial" + } + } + } + ] + } + }, + "materialSlots": [ + { + "id": { + "materialAssetId": { + "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", + "subId": 902256226 + } + }, + "materialAsset": { + "assetId": { + "guid": "{FF25E0FE-B695-5084-AE1E-65F095AA5C3F}" + }, + "assetHint": "objects/cloth/environment/cloth_locked_edge.azmaterial" + } + } + ], + "materialSlotsByLod": [ + [ + { + "id": { + "lodIndex": 0, + "materialAssetId": { + "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", + "subId": 902256226 + } + } + } + ] + ] + }, + "Component_[4551907993575066613]": { + "$type": "EditorPendingCompositionComponent", + "Id": 4551907993575066613 + }, + "Component_[4676074866703387598]": { + "$type": "EditorLockComponent", + "Id": 4676074866703387598 + }, + "Component_[5370716247379084795]": { + "$type": "SelectionComponent", + "Id": 5370716247379084795 + }, + "Component_[5949160048738230993]": { + "$type": "EditorVisibilityComponent", + "Id": 5949160048738230993 + }, + "Component_[7069757442037403546]": { + "$type": "EditorInspectorComponent", + "Id": 7069757442037403546, + "ComponentOrderEntryArray": [ + { + "ComponentId": 8406078395808436009 + }, + { + "ComponentId": 9469271735758494477, + "SortIndex": 1 + }, + { + "ComponentId": 4004895580151009916, + "SortIndex": 2 + }, + { + "ComponentId": 15695175229307539942, + "SortIndex": 3 + } + ] + }, + "Component_[8406078395808436009]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 8406078395808436009, + "Parent Entity": "ContainerEntity", + "Cached World Transform": { + "Translation": [ + -0.9528284072875977, + -3.110790252685547, + 1.4851393699645997 + ] + }, + "Cached World Transform Parent": "ContainerEntity", + "Transform Data": { + "Translate": [ + 0.013340950012207032, + -0.012479305267333985, + 0.0 + ] + } + }, + "Component_[94124159756316305]": { + "$type": "EditorEntitySortComponent", + "Id": 94124159756316305 + }, + "Component_[9469271735758494477]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 9469271735758494477, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", + "subId": 272561654 + }, + "assetHint": "objects/cloth/environment/cloth_locked_edge.azmodel" + } + } + } + } + }, + "IsDependencyReady": true + } + } +} \ No newline at end of file From 1ee4f7b4477bff8bc193b4c10f468b2d800e917a Mon Sep 17 00:00:00 2001 From: Ken Pruiksma Date: Tue, 29 Jun 2021 12:45:10 -0500 Subject: [PATCH 029/111] Adjusting alpha on grazing angles so it doesn't affect the diffuse response. (#1599) --- .../Types/StandardPBR_ForwardPass.azsl | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl index 2dfdd3681f..cc0e5a2e80 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl @@ -251,17 +251,21 @@ PbrLightingOutput ForwardPassPS_Common(VSOutput IN, bool isFrontFace, out float // Finalize Lighting lightingData.FinalizeLighting(); + PbrLightingOutput lightingOutput = GetPbrLightingOutput(surface, lightingData, alpha); + + // ------- Opacity ------- if (o_opacity_mode == OpacityMode::Blended || o_opacity_mode == OpacityMode::TintedTransparent) { - float fresnelAlpha = FresnelSchlickWithRoughness(lightingData.NdotV, alpha, surface.roughnessLinear).x; // Increase opacity at grazing angles. + // Increase opacity at grazing angles for surfaces with a low m_opacityAffectsSpecularFactor. + // For m_opacityAffectsSpecularFactor values close to 0, that indicates a transparent surface + // like glass, so it becomes less transparent at grazing angles. For m_opacityAffectsSpecularFactor + // values close to 1.0, that indicates the absence of a surface entirely, so this effect should + // not apply. + float fresnelAlpha = FresnelSchlickWithRoughness(lightingData.NdotV, alpha, surface.roughnessLinear).x; alpha = lerp(fresnelAlpha, alpha, MaterialSrg::m_opacityAffectsSpecularFactor); } - PbrLightingOutput lightingOutput = GetPbrLightingOutput(surface, lightingData, alpha); - - // ------- Opacity ------- - if (o_opacity_mode == OpacityMode::Blended) { // [GFX_TODO ATOM-13187] PbrLighting shouldn't be writing directly to render targets. It's confusing when @@ -277,6 +281,8 @@ PbrLightingOutput ForwardPassPS_Common(VSOutput IN, bool isFrontFace, out float float3 specular = lightingOutput.m_specularColor.rgb; specular = lerp(specular, specular * lightingOutput.m_diffuseColor.w, MaterialSrg::m_opacityAffectsSpecularFactor); lightingOutput.m_diffuseColor.rgb += specular; + + lightingOutput.m_diffuseColor.w = alpha; } else if (o_opacity_mode == OpacityMode::TintedTransparent) { @@ -299,7 +305,7 @@ PbrLightingOutput ForwardPassPS_Common(VSOutput IN, bool isFrontFace, out float specular = lerp(specular, specular * lightingOutput.m_diffuseColor.w, MaterialSrg::m_opacityAffectsSpecularFactor); lightingOutput.m_diffuseColor.rgb += specular; - lightingOutput.m_specularColor.rgb = baseColor * (1.0 - lightingOutput.m_diffuseColor.w); + lightingOutput.m_specularColor.rgb = baseColor * (1.0 - alpha); } else { From 0095e5aa6a1cc8600d421ff0a39ff4177f28a76e Mon Sep 17 00:00:00 2001 From: AMZN-stankowi Date: Tue, 29 Jun 2021 10:50:42 -0700 Subject: [PATCH 030/111] Updated AssImp to rev11, latest build for all platforms (#1563) --- cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake | 2 +- cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake | 2 +- cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake index a45a5bf3cc..618bdc2fe6 100644 --- a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake +++ b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake @@ -10,7 +10,7 @@ ly_associate_package(PACKAGE_NAME zlib-1.2.8-rev2-multiplatform ly_associate_package(PACKAGE_NAME ilmbase-2.3.0-rev4-multiplatform TARGETS ilmbase PACKAGE_HASH 97547fdf1fbc4d81b8ccf382261f8c25514ed3b3c4f8fd493f0a4fa873bba348) ly_associate_package(PACKAGE_NAME hdf5-1.0.11-rev2-multiplatform TARGETS hdf5 PACKAGE_HASH 11d5e04df8a93f8c52a5684a4cacbf0d9003056360983ce34f8d7b601082c6bd) ly_associate_package(PACKAGE_NAME alembic-1.7.11-rev3-multiplatform TARGETS alembic PACKAGE_HASH ba7a7d4943dd752f5a662374f6c48b93493df1d8e2c5f6a8d101f3b50700dd25) -ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev9-multiplatform TARGETS assimplib PACKAGE_HASH 448530277b51b145ca43b96becd0266e29ae210fc9e2b45f5afe85f301a040e7) +ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev11-multiplatform TARGETS assimplib PACKAGE_HASH 1a9113788b893ef4a2ee63ac01eb71b981a92894a5a51175703fa225f5804dec) ly_associate_package(PACKAGE_NAME squish-ccr-20150601-rev3-multiplatform TARGETS squish-ccr PACKAGE_HASH c878c6c0c705e78403c397d03f5aa7bc87e5978298710e14d09c9daf951a83b3) ly_associate_package(PACKAGE_NAME ASTCEncoder-2017_11_14-rev2-multiplatform TARGETS ASTCEncoder PACKAGE_HASH c240ffc12083ee39a5ce9dc241de44d116e513e1e3e4cc1d05305e7aa3bdc326) ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) diff --git a/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake b/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake index b46aeacf7e..09f3a093e6 100644 --- a/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake +++ b/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake @@ -10,7 +10,7 @@ ly_associate_package(PACKAGE_NAME zlib-1.2.8-rev2-multiplatform ly_associate_package(PACKAGE_NAME ilmbase-2.3.0-rev4-multiplatform TARGETS ilmbase PACKAGE_HASH 97547fdf1fbc4d81b8ccf382261f8c25514ed3b3c4f8fd493f0a4fa873bba348) ly_associate_package(PACKAGE_NAME hdf5-1.0.11-rev2-multiplatform TARGETS hdf5 PACKAGE_HASH 11d5e04df8a93f8c52a5684a4cacbf0d9003056360983ce34f8d7b601082c6bd) ly_associate_package(PACKAGE_NAME alembic-1.7.11-rev3-multiplatform TARGETS alembic PACKAGE_HASH ba7a7d4943dd752f5a662374f6c48b93493df1d8e2c5f6a8d101f3b50700dd25) -ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev9-multiplatform TARGETS assimplib PACKAGE_HASH 448530277b51b145ca43b96becd0266e29ae210fc9e2b45f5afe85f301a040e7) +ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev11-multiplatform TARGETS assimplib PACKAGE_HASH 1a9113788b893ef4a2ee63ac01eb71b981a92894a5a51175703fa225f5804dec) ly_associate_package(PACKAGE_NAME squish-ccr-20150601-rev3-multiplatform TARGETS squish-ccr PACKAGE_HASH c878c6c0c705e78403c397d03f5aa7bc87e5978298710e14d09c9daf951a83b3) ly_associate_package(PACKAGE_NAME ASTCEncoder-2017_11_14-rev2-multiplatform TARGETS ASTCEncoder PACKAGE_HASH c240ffc12083ee39a5ce9dc241de44d116e513e1e3e4cc1d05305e7aa3bdc326) ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) diff --git a/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake b/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake index 26905a1bb4..919dec3f94 100644 --- a/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake +++ b/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake @@ -10,7 +10,7 @@ ly_associate_package(PACKAGE_NAME zlib-1.2.8-rev2-multiplatform ly_associate_package(PACKAGE_NAME ilmbase-2.3.0-rev4-multiplatform TARGETS ilmbase PACKAGE_HASH 97547fdf1fbc4d81b8ccf382261f8c25514ed3b3c4f8fd493f0a4fa873bba348) ly_associate_package(PACKAGE_NAME hdf5-1.0.11-rev2-multiplatform TARGETS hdf5 PACKAGE_HASH 11d5e04df8a93f8c52a5684a4cacbf0d9003056360983ce34f8d7b601082c6bd) ly_associate_package(PACKAGE_NAME alembic-1.7.11-rev3-multiplatform TARGETS alembic PACKAGE_HASH ba7a7d4943dd752f5a662374f6c48b93493df1d8e2c5f6a8d101f3b50700dd25) -ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev10-multiplatform TARGETS assimplib PACKAGE_HASH d0fb822a6a359f1bebbb720a8502a289540af08baa887c8bc978f0fbbee07385) +ly_associate_package(PACKAGE_NAME assimp-5.0.1-rev11-multiplatform TARGETS assimplib PACKAGE_HASH 1a9113788b893ef4a2ee63ac01eb71b981a92894a5a51175703fa225f5804dec) ly_associate_package(PACKAGE_NAME squish-ccr-20150601-rev3-multiplatform TARGETS squish-ccr PACKAGE_HASH c878c6c0c705e78403c397d03f5aa7bc87e5978298710e14d09c9daf951a83b3) ly_associate_package(PACKAGE_NAME ASTCEncoder-2017_11_14-rev2-multiplatform TARGETS ASTCEncoder PACKAGE_HASH c240ffc12083ee39a5ce9dc241de44d116e513e1e3e4cc1d05305e7aa3bdc326) ly_associate_package(PACKAGE_NAME md5-2.0-multiplatform TARGETS md5 PACKAGE_HASH 29e52ad22c78051551f78a40c2709594f0378762ae03b417adca3f4b700affdf) From e1f6d45b0444d6e1b35025859aa225f10f4a0d62 Mon Sep 17 00:00:00 2001 From: Roman <69218254+amzn-rhhong@users.noreply.github.com> Date: Tue, 29 Jun 2021 11:24:54 -0700 Subject: [PATCH 031/111] Defer the render plugin reinit to main thread (#1626) Fix a problem with reloading actor in emfx studio crashes the editor Signed-off-by: rhhong --- .../Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp | 4 ++-- .../EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp | 8 +++++++- .../EMStudioSDK/Source/RenderPlugin/RenderPlugin.h | 1 + 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp index 6be086a31b..d199c0c2cc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp @@ -168,7 +168,7 @@ namespace EMotionFX AZ::SceneAPI::Events::ProcessingResult ActorGroupBehavior::BuildDefault(AZ::SceneAPI::Containers::Scene& scene) const { - // Skip adding the actor group if it's already exist. + // Skip adding the actor group if it already exists. if (SceneHasActorGroup(scene)) { return AZ::SceneAPI::Events::ProcessingResult::Ignored; @@ -185,7 +185,7 @@ namespace EMotionFX } const bool hasAnimationData = AZ::SceneAPI::Utilities::DoesSceneGraphContainDataLike(scene, true); - // Skip adding the actor group if it's contain animation data but don't contain any skindata or blendshapedata. + // Skip adding the actor group if it contains animation data but doesn't contain any skin or blendshape data. if (hasAnimationData && !hasSkinData && !hasBlendShapeData) { return AZ::SceneAPI::Events::ProcessingResult::Ignored; diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp index 2531d12853..0f479872e1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp @@ -313,7 +313,7 @@ namespace EMStudio void RenderPlugin::OnActorReady([[maybe_unused]] EMotionFX::Actor* actor) { - ReInit(/*resetViewCloseup=*/true); + m_reinitRequested = true; } // try to locate the helper actor for a given instance @@ -535,6 +535,7 @@ namespace EMStudio } mFirstFrameAfterReInit = true; + m_reinitRequested = false; // zoom the camera to the available character only in case we're dealing with a single instance if (resetViewCloseup && numActorInstances == 1) @@ -851,6 +852,11 @@ namespace EMStudio return; } + if (m_reinitRequested) + { + ReInit(/*resetViewCloseup=*/true); + } + // update EMotion FX, but don't render UpdateActorInstances(timePassedInSeconds); diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h index 72cdb4c4bf..ecea26f8f6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h @@ -226,6 +226,7 @@ namespace EMStudio QWidget* mInnerWidget; CommandSystem::SelectionList* mCurrentSelection; bool mFirstFrameAfterReInit; + bool m_reinitRequested = false; // command callbacks MCORE_DEFINECOMMANDCALLBACK(UpdateRenderActorsCallback); From 26c123dd568c758f7bb3fbab9cc0440b90a90bd9 Mon Sep 17 00:00:00 2001 From: nvsickle Date: Tue, 29 Jun 2021 11:33:12 -0700 Subject: [PATCH 032/111] Switch Python camera API to use Atom directly Signed-off-by: nvsickle --- Code/Sandbox/Editor/CryEditPy.cpp | 44 ++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/Code/Sandbox/Editor/CryEditPy.cpp b/Code/Sandbox/Editor/CryEditPy.cpp index a4ac36ac12..f989e82d0d 100644 --- a/Code/Sandbox/Editor/CryEditPy.cpp +++ b/Code/Sandbox/Editor/CryEditPy.cpp @@ -28,6 +28,10 @@ #include "UndoConfigSpec.h" #include "ViewManager.h" +// Atom +#include +#include + ////////////////////////////////////////////////////////////////////////// namespace { @@ -224,33 +228,49 @@ namespace AZ::Vector3 PyGetCurrentViewPosition() { - Vec3 pos = GetIEditor()->GetSystem()->GetViewCamera().GetPosition(); - return AZ::Vector3(pos.x, pos.y, pos.z); + auto viewportContextRequests = AZ::RPI::ViewportContextRequests::Get(); + if (viewportContextRequests) + { + AZ::RPI::ViewportContextPtr viewportContext = viewportContextRequests->GetDefaultViewportContext(); + AZ::Transform transform = viewportContext->GetCameraTransform(); + return transform.GetTranslation(); + } + return AZ::Vector3(); } AZ::Vector3 PyGetCurrentViewRotation() { - Ang3 ang = RAD2DEG(Ang3::GetAnglesXYZ(Matrix33(GetIEditor()->GetSystem()->GetViewCamera().GetMatrix()))); - return AZ::Vector3(ang.x, ang.y, ang.z); + auto viewportContextRequests = AZ::RPI::ViewportContextRequests::Get(); + if (viewportContextRequests) + { + AZ::RPI::ViewportContextPtr viewportContext = viewportContextRequests->GetDefaultViewportContext(); + AZ::Transform transform = viewportContext->GetCameraTransform(); + return transform.GetRotation().GetEulerDegrees(); + } + return AZ::Vector3(); } void PySetCurrentViewPosition(float x, float y, float z) { - AzToolsFramework::IEditorCameraController* editorCameraController = AZ::Interface::Get(); - AZ_Error("editor", editorCameraController, "IEditorCameraController is not registered."); - if (editorCameraController) + auto viewportContextRequests = AZ::RPI::ViewportContextRequests::Get(); + if (viewportContextRequests) { - editorCameraController->SetCurrentViewPosition(AZ::Vector3{ x, y, z }); + AZ::RPI::ViewportContextPtr viewportContext = viewportContextRequests->GetDefaultViewportContext(); + AZ::Transform transform = viewportContext->GetCameraTransform(); + transform.SetTranslation(x, y, z); + viewportContextRequests->GetDefaultViewportContext()->SetCameraTransform(transform); } } void PySetCurrentViewRotation(float x, float y, float z) { - AzToolsFramework::IEditorCameraController* editorCameraController = AZ::Interface::Get(); - AZ_Error("editor", editorCameraController, "IEditorCameraController is not registered."); - if (editorCameraController) + auto viewportContextRequests = AZ::RPI::ViewportContextRequests::Get(); + if (viewportContextRequests) { - editorCameraController->SetCurrentViewRotation(AZ::Vector3{ x, y, z }); + AZ::RPI::ViewportContextPtr viewportContext = viewportContextRequests->GetDefaultViewportContext(); + AZ::Transform transform = viewportContext->GetCameraTransform(); + transform.SetRotation(AZ::Quaternion::CreateFromEulerAnglesDegrees(AZ::Vector3(x, y, z))); + viewportContextRequests->GetDefaultViewportContext()->SetCameraTransform(transform); } } } From 149863c5278d4b4a54b3279e9df5a98805a38673 Mon Sep 17 00:00:00 2001 From: Terry Michaels Date: Tue, 29 Jun 2021 14:00:11 -0500 Subject: [PATCH 033/111] Removed Amazon as Company for QSettings (#1649) * Removed Amazon as Company for QSettings Signed-off-by: Terry Michaels --- .../PythonTests/automatedtesting_shared/registry_utils.py | 8 ++++---- AutomatedTesting/Gem/PythonTests/editor/conftest.py | 4 ++-- .../AzQtComponents/AzQtComponents/Gallery/main.cpp | 4 ++-- Code/Sandbox/Editor/Core/QtEditorApplication.cpp | 4 ++-- Code/Sandbox/Editor/CryEdit.cpp | 2 +- Code/Sandbox/Editor/EditorPanelUtils.cpp | 4 ++-- Code/Sandbox/Editor/GraphicsSettingsDialog.cpp | 8 ++++---- Code/Sandbox/Editor/KeyboardCustomizationSettings.cpp | 4 ++-- Code/Sandbox/Editor/MainWindow.cpp | 2 +- Code/Sandbox/Editor/ToolbarManager.cpp | 2 +- Code/Sandbox/Editor/TrackView/TrackViewDialog.cpp | 4 ++-- Code/Sandbox/Editor/ViewportTitleDlg.cpp | 4 ++-- .../native/utilities/ApplicationManager.cpp | 2 +- .../Code/Source/Window/MaterialEditorWindow.cpp | 2 +- Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp | 4 ++-- .../Source/OpenGLRender/OpenGLRenderPlugin.h | 2 +- .../Source/ActionHistory/ActionHistoryPlugin.cpp | 2 +- .../StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp | 2 +- .../Source/Attachments/AttachmentsPlugin.h | 2 +- .../Source/CommandBar/CommandBarPlugin.cpp | 2 +- .../Source/CommandBrowser/CommandBrowserPlugin.h | 2 +- .../StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp | 2 +- .../Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h | 2 +- .../Source/MotionEvents/MotionEventsPlugin.h | 2 +- .../Source/MotionSetsWindow/MotionSetsWindowPlugin.h | 2 +- .../Source/MotionWindow/MotionWindowPlugin.h | 2 +- .../StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h | 2 +- .../StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h | 2 +- .../Source/SceneManager/SceneManagerPlugin.h | 2 +- .../StandardPlugins/Source/TimeView/TimeViewPlugin.cpp | 2 +- Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp | 4 ++-- Gems/LyShine/Code/Editor/EditorCommon.h | 2 +- .../Code/Editor/Utilities/CommonSettingsConfigurations.h | 2 +- .../ly_test_tools/_internal/managers/platforms/windows.py | 2 +- .../LyTestTools/ly_test_tools/environment/reg_cleaner.py | 2 +- Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py | 2 +- .../tests/unit/test_manager_platforms_windows.py | 2 +- 37 files changed, 52 insertions(+), 52 deletions(-) diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py index 315ca4d85d..1c895c0cb0 100644 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py @@ -9,12 +9,12 @@ import winreg logger = logging.getLogger(__name__) -LUMBERYARD_SETTINGS_PATH = r'Software\Amazon\Lumberyard\Settings' +LUMBERYARD_SETTINGS_PATH = r'Software\O3DE\O3DE\Settings' def set_ly_registry_value(reg_path, value_name, new_value, value_type=winreg.REG_DWORD): """ Sets the specified value for the specified value_name in the LY registry key. - :param reg_path: A string that identifies the registry path to the desired key (e.g. Software\Amazon\Lumberyard\Settings) + :param reg_path: A string that identifies the registry path to the desired key (e.g. Software\O3DE\O3DE\Settings) :param value_name: A string that identifies the value name (e.g. UndoLevels, ViewportInteractionModel) :param new_value: Value to set on the specified value_name :param value_type: The type of value set. Defaults to a 32-bit number. @@ -40,7 +40,7 @@ def set_ly_registry_value(reg_path, value_name, new_value, value_type=winreg.REG def get_ly_registry_value(reg_path, value_name): """ Gets the current value for an existing value_name in the LY registry key. - :param reg_path: A string that identifies the registry path to the desired key (e.g. Software\Amazon\Lumberyard\Settings) + :param reg_path: A string that identifies the registry path to the desired key (e.g. Software\O3DE\O3DE\Settings) :param value_name: A string that identifies the value name (e.g. UndoLevels, ViewportInteractionModel) :return: Value set for the specified value_name """ @@ -62,7 +62,7 @@ def get_ly_registry_value(reg_path, value_name): def delete_ly_registry_value(reg_path, value_name): """ Deletes the specific registry value_name found in the reg_path key. - :param reg_path: A string that identifies the registry path to the desired key (e.g. Software\Amazon\Lumberyard\Settings) + :param reg_path: A string that identifies the registry path to the desired key (e.g. Software\O3DE\O3DE\Settings) :param value_name: A string that identifies the value name (e.g. UndoLevels, ViewportInteractionModel) :return: None """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/conftest.py b/AutomatedTesting/Gem/PythonTests/editor/conftest.py index 2b26370126..6fbe88c5e3 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/conftest.py +++ b/AutomatedTesting/Gem/PythonTests/editor/conftest.py @@ -14,12 +14,12 @@ logger = logging.getLogger(__name__) layout = { - 'path': r'Software\Amazon\O3DE\Editor\fancyWindowLayouts', + 'path': r'Software\O3DE\O3DE\Editor\fancyWindowLayouts', 'value': 'last' } restore_camera = { 'new': 16384, - 'path': r'Software\Amazon\Lumberyard\Editor\AutoHide', + 'path': r'Software\O3DE\O3DE\Editor\AutoHide', 'value': 'ViewportCameraRestoreOnExitGameMode' } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp index 01c935323d..872050effc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp @@ -129,8 +129,8 @@ int main(int argc, char **argv) { ComponentApplicationWrapper componentApplicationWrapper; - QApplication::setOrganizationName("Amazon"); - QApplication::setOrganizationDomain("amazon.com"); + QApplication::setOrganizationName("O3DE"); + QApplication::setOrganizationDomain("o3de.org"); QApplication::setApplicationName("O3DEWidgetGallery"); QLocale::setDefault(QLocale(QLocale::English, QLocale::UnitedStates)); diff --git a/Code/Sandbox/Editor/Core/QtEditorApplication.cpp b/Code/Sandbox/Editor/Core/QtEditorApplication.cpp index 5554498bfd..5c342772a8 100644 --- a/Code/Sandbox/Editor/Core/QtEditorApplication.cpp +++ b/Code/Sandbox/Editor/Core/QtEditorApplication.cpp @@ -252,8 +252,8 @@ namespace Editor setWindowIcon(QIcon(":/Application/res/o3de_editor.ico")); // set the default key store for our preferences: - setOrganizationName("Amazon"); - setOrganizationDomain("amazon.com"); + setOrganizationName("O3DE"); + setOrganizationDomain("o3de.org"); setApplicationName("O3DE Editor"); connect(m_idleTimer, &QTimer::timeout, this, &EditorQtApplication::maybeProcessIdle); diff --git a/Code/Sandbox/Editor/CryEdit.cpp b/Code/Sandbox/Editor/CryEdit.cpp index cff4ea8e4f..ceced74070 100644 --- a/Code/Sandbox/Editor/CryEdit.cpp +++ b/Code/Sandbox/Editor/CryEdit.cpp @@ -1654,7 +1654,7 @@ BOOL CCryEditApp::InitInstance() GetIEditor()->GetCommandManager()->RegisterAutoCommands(); GetIEditor()->AddUIEnums(); - mainWindowWrapper->enableSaveRestoreGeometry("amazon", "O3DE", "mainWindowGeometry"); + mainWindowWrapper->enableSaveRestoreGeometry("O3DE", "O3DE", "mainWindowGeometry"); m_pDocManager->OnFileNew(); if (IsInRegularEditorMode()) diff --git a/Code/Sandbox/Editor/EditorPanelUtils.cpp b/Code/Sandbox/Editor/EditorPanelUtils.cpp index 27a123f3b8..0369a117b5 100644 --- a/Code/Sandbox/Editor/EditorPanelUtils.cpp +++ b/Code/Sandbox/Editor/EditorPanelUtils.cpp @@ -240,7 +240,7 @@ public: virtual bool HotKey_LoadExisting() override { - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); QString group = "Hotkeys/"; HotKey_BuildDefaults(); @@ -276,7 +276,7 @@ public: virtual void HotKey_SaveCurrent() override { - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); QString group = "Hotkeys/"; settings.remove("Hotkeys/"); settings.sync(); diff --git a/Code/Sandbox/Editor/GraphicsSettingsDialog.cpp b/Code/Sandbox/Editor/GraphicsSettingsDialog.cpp index de4062e550..9236a3b205 100644 --- a/Code/Sandbox/Editor/GraphicsSettingsDialog.cpp +++ b/Code/Sandbox/Editor/GraphicsSettingsDialog.cpp @@ -146,7 +146,7 @@ GraphicsSettingsDialog::GraphicsSettingsDialog(QWidget* parent /* = nullptr */) m_ui->m_platformEntry->addItem(platform); } - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("GraphicsSettingsDialog"); if (settings.contains("Platform")) @@ -174,7 +174,7 @@ GraphicsSettingsDialog::GraphicsSettingsDialog(QWidget* parent /* = nullptr */) GraphicsSettingsDialog::~GraphicsSettingsDialog() { - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("GraphicsSettingsDialog"); auto platformCheck = [this](AZStd::pair& stringConfigPair) { return stringConfigPair.second == m_currentPlatform; }; @@ -556,7 +556,7 @@ void GraphicsSettingsDialog::LoadPlatformConfigurations() setUpdatesEnabled(true); - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("GraphicsSettingsDialog"); settings.beginGroup("cvarGroup"); @@ -619,7 +619,7 @@ void GraphicsSettingsDialog::CleanUI() { setUpdatesEnabled(false); - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("GraphicsSettingsDialog"); settings.beginGroup("cvarGroup"); diff --git a/Code/Sandbox/Editor/KeyboardCustomizationSettings.cpp b/Code/Sandbox/Editor/KeyboardCustomizationSettings.cpp index 66a4ff7ba4..e2825ec3cc 100644 --- a/Code/Sandbox/Editor/KeyboardCustomizationSettings.cpp +++ b/Code/Sandbox/Editor/KeyboardCustomizationSettings.cpp @@ -104,7 +104,7 @@ void KeyboardCustomizationSettings::LoadDefaults() void KeyboardCustomizationSettings::Load() { - QSettings settings(QStringLiteral("Amazon"), QStringLiteral("O3DE")); + QSettings settings(QStringLiteral("O3DE"), QStringLiteral("O3DE")); settings.beginGroup(QStringLiteral("Keyboard Shortcuts")); settings.beginGroup(m_group); @@ -151,7 +151,7 @@ void KeyboardCustomizationSettings::LoadFromSnapshot(const Snapshot& snapshot) void KeyboardCustomizationSettings::Save() { - QSettings settings(QStringLiteral("Amazon"), QStringLiteral("O3DE")); + QSettings settings(QStringLiteral("O3DE"), QStringLiteral("O3DE")); settings.beginGroup(QStringLiteral("Keyboard Shortcuts")); settings.beginGroup(m_group); diff --git a/Code/Sandbox/Editor/MainWindow.cpp b/Code/Sandbox/Editor/MainWindow.cpp index 404b2a0a1c..a997aa06b9 100644 --- a/Code/Sandbox/Editor/MainWindow.cpp +++ b/Code/Sandbox/Editor/MainWindow.cpp @@ -299,7 +299,7 @@ MainWindow::MainWindow(QWidget* parent) , m_undoStateAdapter(new UndoStackStateAdapter(this)) , m_keyboardCustomization(nullptr) , m_activeView(nullptr) - , m_settings("amazon", "O3DE") // TODO_KDAB: Replace with a central settings class + , m_settings("O3DE", "O3DE") , m_toolbarManager(new ToolbarManager(m_actionManager, this)) , m_assetImporterManager(new AssetImporterManager(this)) , m_levelEditorMenuHandler(new LevelEditorMenuHandler(this, m_viewPaneManager, m_settings)) diff --git a/Code/Sandbox/Editor/ToolbarManager.cpp b/Code/Sandbox/Editor/ToolbarManager.cpp index f6c03ff010..f4009c5bbd 100644 --- a/Code/Sandbox/Editor/ToolbarManager.cpp +++ b/Code/Sandbox/Editor/ToolbarManager.cpp @@ -211,7 +211,7 @@ public: ToolbarManager::ToolbarManager(ActionManager* actionManager, MainWindow* mainWindow) : m_mainWindow(mainWindow) , m_actionManager(actionManager) - , m_settings("amazon", "O3DE") + , m_settings("O3DE", "O3DE") , m_expanderWatcher(new AmazonToolBarExpanderWatcher()) { // Note that we don't actually save/load from AmazonToolbar::List diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDialog.cpp b/Code/Sandbox/Editor/TrackView/TrackViewDialog.cpp index cef9d1b08e..161936228b 100644 --- a/Code/Sandbox/Editor/TrackView/TrackViewDialog.cpp +++ b/Code/Sandbox/Editor/TrackView/TrackViewDialog.cpp @@ -1854,7 +1854,7 @@ void CTrackViewDialog::ReadMiscSettings() ////////////////////////////////////////////////////////////////////////// void CTrackViewDialog::SaveLayouts() { - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("TrackView"); QByteArray stateData = this->saveState(); settings.setValue("layout", stateData); @@ -1870,7 +1870,7 @@ void CTrackViewDialog::SaveLayouts() ////////////////////////////////////////////////////////////////////////// void CTrackViewDialog::ReadLayouts() { - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("TrackView"); setViewMode(static_cast(settings.value("lastViewMode").toInt())); diff --git a/Code/Sandbox/Editor/ViewportTitleDlg.cpp b/Code/Sandbox/Editor/ViewportTitleDlg.cpp index deee886d16..d600da7076 100644 --- a/Code/Sandbox/Editor/ViewportTitleDlg.cpp +++ b/Code/Sandbox/Editor/ViewportTitleDlg.cpp @@ -789,7 +789,7 @@ void CViewportTitleDlg::OnSystemEvent(ESystemEvent event, UINT_PTR wparam, UINT_ void CViewportTitleDlg::LoadCustomPresets(const QString& section, const QString& keyName, QStringList& outCustompresets) { - QSettings settings("Amazon", "O3DE"); // Temporary solution until we have the global Settings class. + QSettings settings("O3DE", "O3DE"); // Temporary solution until we have the global Settings class. settings.beginGroup(section); outCustompresets = settings.value(keyName).toStringList(); settings.endGroup(); @@ -797,7 +797,7 @@ void CViewportTitleDlg::LoadCustomPresets(const QString& section, const QString& void CViewportTitleDlg::SaveCustomPresets(const QString& section, const QString& keyName, const QStringList& custompresets) { - QSettings settings("Amazon", "O3DE"); // Temporary solution until we have the global Settings class. + QSettings settings("O3DE", "O3DE"); // Temporary solution until we have the global Settings class. settings.beginGroup(section); settings.setValue(keyName, custompresets); settings.endGroup(); diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp index 9648824627..e3b6377023 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp @@ -639,7 +639,7 @@ bool ApplicationManager::Activate() QString ApplicationManager::GetOrganizationName() const { - return "Amazon"; + return "O3DE"; } QString ApplicationManager::GetApplicationName() const diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp index 037e3727d7..646333478a 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp @@ -63,7 +63,7 @@ namespace MaterialEditor auto mainWindowWrapper = new AzQtComponents::WindowDecorationWrapper(AzQtComponents::WindowDecorationWrapper::OptionAutoTitleBarButtons); mainWindowWrapper->setGuest(this); - mainWindowWrapper->enableSaveRestoreGeometry("amazon", "MaterialEditor", "mainWindowGeometry"); + mainWindowWrapper->enableSaveRestoreGeometry("O3DE", "MaterialEditor", "mainWindowGeometry"); // set the style sheet for RPE highlighting and other styling AzQtComponents::StyleManager::setStyleSheet(this, QStringLiteral(":/MaterialEditor.qss")); diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp index ab779d2277..1b03527587 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp @@ -24,8 +24,8 @@ int main(int argc, char** argv) { - QApplication::setOrganizationName("Amazon"); - QApplication::setOrganizationDomain("amazon.com"); + QApplication::setOrganizationName("O3DE"); + QApplication::setOrganizationDomain("o3de.org"); QApplication::setApplicationName("O3DE Material Editor"); AzQtComponents::PrepareQtPaths(); diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h index 31c78e420b..02ce99180c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h @@ -35,7 +35,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "OpenGL Render Window"; } uint32 GetClassID() const override { return static_cast(RenderPlugin::CLASS_ID); } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp index b182d4972a..ab48fc7dcf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp @@ -54,7 +54,7 @@ namespace EMStudio const char* ActionHistoryPlugin::GetCreatorName() const { - return "Amazon"; + return "O3DE"; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp index 62cf14299d..69d6509b3b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp @@ -307,7 +307,7 @@ namespace EMStudio // get the creator name const char* AnimGraphPlugin::GetCreatorName() const { - return "Amazon"; + return "O3DE"; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h index df2a079930..9f161d41f2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h @@ -47,7 +47,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Attachments"; } uint32 GetClassID() const override { return AttachmentsPlugin::CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp index 8f7badd24f..7d58759bf0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp @@ -63,7 +63,7 @@ namespace EMStudio const char* CommandBarPlugin::GetCreatorName() const { - return "Amazon"; + return "O3DE"; } float CommandBarPlugin::GetVersion() const diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h index ee29f78fc3..95a66ceb3e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h @@ -36,7 +36,7 @@ class CommandBrowserPlugin : public EMStudio::DockWidgetPlugin const char* GetCompileDate() const { return MCORE_DATE; } const char* GetName() const { return "Command Browser"; } uint32 GetClassID() const { return CommandBrowserPlugin::CLASS_ID; } - const char* GetCreatorName() const { return "Amazon"; } + const char* GetCreatorName() const { return "O3DE"; } float GetVersion() const { return 1.0f; } bool IsClosable() const { return true; } bool IsFloatable() const { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp index f3c24b749c..2cb2eadfd7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp @@ -59,7 +59,7 @@ namespace EMStudio // get the creator name const char* LogWindowPlugin::GetCreatorName() const { - return "Amazon"; + return "O3DE"; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h index 90342e2a95..d5a13cd9ee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h @@ -40,7 +40,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Morph Targets"; } uint32 GetClassID() const override { return MorphTargetsWindowPlugin::CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h index e68d88ab32..ca70676b44 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h @@ -43,7 +43,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Motion Events"; } uint32 GetClassID() const override { return MotionEventsPlugin::CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h index e4044b4b5d..f064900103 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h @@ -53,7 +53,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Motion Sets"; } uint32 GetClassID() const override { return MotionSetsWindowPlugin::CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h index aa5dcb207a..c82f1b491c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h @@ -50,7 +50,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Motions"; } uint32 GetClassID() const override { return MotionWindowPlugin::CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h index 72cc5655f9..c99c311a3c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h @@ -44,7 +44,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Node Groups"; } uint32 GetClassID() const override { return NodeGroupsPlugin::CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h index fa7ca5ede4..7a4af96cb6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h @@ -47,7 +47,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Joint outliner"; } uint32 GetClassID() const override { return CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h index c8c1f92d1c..09ede17f90 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h @@ -75,7 +75,7 @@ namespace EMStudio const char* GetCompileDate() const override { return MCORE_DATE; } const char* GetName() const override { return "Actor Manager"; } uint32 GetClassID() const override { return CLASS_ID; } - const char* GetCreatorName() const override { return "Amazon"; } + const char* GetCreatorName() const override { return "O3DE"; } float GetVersion() const override { return 1.0f; } bool GetIsClosable() const override { return true; } bool GetIsFloatable() const override { return true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp index 3439708a8f..6845fadb53 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp @@ -138,7 +138,7 @@ namespace EMStudio // get the creator name const char* TimeViewPlugin::GetCreatorName() const { - return "Amazon"; + return "O3DE"; } diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp index 999d1d5f77..089bee5043 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp @@ -1555,7 +1555,7 @@ void CUiAnimViewDialog::ReadMiscSettings() ////////////////////////////////////////////////////////////////////////// void CUiAnimViewDialog::SaveLayouts() { - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("UiAnimView"); QByteArray stateData = this->saveState(); settings.setValue("layout", stateData); @@ -1570,7 +1570,7 @@ void CUiAnimViewDialog::SaveLayouts() ////////////////////////////////////////////////////////////////////////// void CUiAnimViewDialog::ReadLayouts() { - QSettings settings("Amazon", "O3DE"); + QSettings settings("O3DE", "O3DE"); settings.beginGroup("UiAnimView"); if (settings.contains("layout")) { diff --git a/Gems/LyShine/Code/Editor/EditorCommon.h b/Gems/LyShine/Code/Editor/EditorCommon.h index c25be71964..4327755400 100644 --- a/Gems/LyShine/Code/Editor/EditorCommon.h +++ b/Gems/LyShine/Code/Editor/EditorCommon.h @@ -160,7 +160,7 @@ enum class FusibleCommand #include "ViewportWidget.h" // IMPORTANT: This is NOT the permanent location for these values. -#define AZ_QCOREAPPLICATION_SETTINGS_ORGANIZATION_NAME "Amazon" +#define AZ_QCOREAPPLICATION_SETTINGS_ORGANIZATION_NAME "O3DE" #define AZ_QCOREAPPLICATION_SETTINGS_APPLICATION_NAME "O3DE" // See: http://en.wikipedia.org/wiki/Internet_media_type#Prefix_x diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h b/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h index 5cb53a8a99..bbbc431f54 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h @@ -7,7 +7,7 @@ #pragma once // IMPORTANT: This is NOT the permanent location for these values. -#define SCRIPTCANVASEDITOR_AZ_QCOREAPPLICATION_SETTINGS_ORGANIZATION_NAME "Amazon" +#define SCRIPTCANVASEDITOR_AZ_QCOREAPPLICATION_SETTINGS_ORGANIZATION_NAME "O3DE" #define SCRIPTCANVASEDITOR_NAME_SHORT "ScriptCanvasEditor" namespace ScriptCanvasEditor diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py index 45737edef0..f665f0be7e 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py @@ -98,4 +98,4 @@ class WindowsWorkspaceManager(AbstractWorkspaceManager): def clear_settings(self): logger.debug("Build::setup_clear_registry") if sys.platform == "win32": - ly_test_tools.environment.reg_cleaner.clean_ly_keys(exception_list=r"SOFTWARE\Amazon\Lumberyard\Identity") + ly_test_tools.environment.reg_cleaner.clean_ly_keys(exception_list=r"SOFTWARE\O3DE\O3DE\Identity") diff --git a/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py b/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py index 1b05eaa130..f344ea1739 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py +++ b/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py @@ -11,7 +11,7 @@ import winreg import ly_test_tools.environment.process_utils as process_utils -CONST_LY_REG = r'SOFTWARE\Amazon\Lumberyard' +CONST_LY_REG = r'SOFTWARE\O3DE\O3DE' AUTOMATION_EXCEPTION_LIST = [ os.path.join(CONST_LY_REG, r"Identity"), os.path.join(CONST_LY_REG, r"Settings\DXInstalled"), diff --git a/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py b/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py index 068aa3dbbd..0f0be73bc5 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py @@ -29,7 +29,7 @@ from ly_test_tools.o3de.ap_log_parser import APLogParser logger = logging.getLogger(__name__) # Asset Processor fast scan system setting key/subkey -AP_FASTSCAN_KEY = r"Software\Amazon\O3DE Asset Processor\Options" +AP_FASTSCAN_KEY = r"Software\O3DE\O3DE Asset Processor\Options" AP_FASTSCAN_SUBKEY = r"EnableZeroAnalysis" diff --git a/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py b/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py index 207a04c322..bb10bfb99c 100755 --- a/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py +++ b/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py @@ -102,4 +102,4 @@ class TestWindowsWorkspaceManager(object): windows_workspace_manager = ly_test_tools._internal.managers.platforms.windows.WindowsWorkspaceManager() windows_workspace_manager.clear_settings() - mock_clear_keys.assert_called_with(exception_list=r"SOFTWARE\Amazon\Lumberyard\Identity") + mock_clear_keys.assert_called_with(exception_list=r"SOFTWARE\O3DE\O3DE\Identity") From 73c0efbd904eeb6e8f2fe826167ece9c5a4b9e3d Mon Sep 17 00:00:00 2001 From: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com> Date: Tue, 29 Jun 2021 12:37:04 -0700 Subject: [PATCH 034/111] [cpack/2106-progress-screen] generalize progress screen text and split out download/execution progress Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com> --- .../Windows/Packaging/BootstrapperTheme.wxl.in | 6 +++--- .../Windows/Packaging/BootstrapperTheme.xml.in | 10 +++++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in b/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in index 7da81d0397..0c532fa4d8 100644 --- a/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in +++ b/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in @@ -32,9 +32,9 @@ Setup will install [WixBundleName] on your computer. Click install to continue, &Close - Installing @CPACK_PACKAGE_FULL_NAME@... - Processing: - Initializing... + Processing @CPACK_PACKAGE_FULL_NAME@... + Caching Progress + Execution Progress &Cancel diff --git a/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in b/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in index 93984d06b8..62980a35f7 100644 --- a/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in +++ b/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in @@ -54,9 +54,13 @@ #(loc.ProgressHeader) - #(loc.ProgressLabel) - #(loc.OverallProgressPackageText) - + #(loc.CacheProgressLabel) + + + + #(loc.ExecuteProgressLabel) + + From 598c890cbc438ce0022625ac5edb14d0228ddd4e Mon Sep 17 00:00:00 2001 From: amzn-mike <80125227+amzn-mike@users.noreply.github.com> Date: Tue, 29 Jun 2021 15:14:33 -0500 Subject: [PATCH 035/111] Fix nodes being incorrectly treated as bones Some nodes have aiBones created by AssImp even though they aren't bones. Filter these out by looking through the node graph and only considering Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> --- .../Importers/AssImpBoneImporter.cpp | 74 +++++++------------ .../Importers/AssImpTransformImporter.cpp | 29 +++++++- 2 files changed, 54 insertions(+), 49 deletions(-) diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp index 1828919c46..6ae228a8a8 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp @@ -40,59 +40,45 @@ namespace AZ } } - void EnumBonesInNode( - const aiScene* scene, const aiNode* node, AZStd::unordered_map& mainBoneList, - AZStd::unordered_map& boneLookup) + void MakeBoneMap(const aiScene* scene, AZStd::unordered_map& boneLookup) { - /* From AssImp Documentation - a) Create a map or a similar container to store which nodes are necessary for the skeleton. Pre-initialise it for all nodes with a "no". - b) For each bone in the mesh: - b1) Find the corresponding node in the scene's hierarchy by comparing their names. - b2) Mark this node as "yes" in the necessityMap. - b3) Mark all of its parents the same way until you 1) find the mesh's node or 2) the parent of the mesh's node. - c) Recursively iterate over the node hierarchy - c1) If the node is marked as necessary, copy it into the skeleton and check its children - c2) If the node is marked as not necessary, skip it and do not iterate over its children. - */ - - for (unsigned meshIndex = 0; meshIndex < node->mNumMeshes; ++meshIndex) + AZStd::queue queue; + AZStd::unordered_set nodesWithNoMesh; + + queue.push(scene->mRootNode); + + while (!queue.empty()) { - const aiMesh* mesh = scene->mMeshes[node->mMeshes[meshIndex]]; + const aiNode* currentNode = queue.front(); + queue.pop(); - for (unsigned boneIndex = 0; boneIndex < mesh->mNumBones; ++boneIndex) + if (currentNode->mNumMeshes == 0) { - const aiBone* bone = mesh->mBones[boneIndex]; + nodesWithNoMesh.emplace(currentNode->mName.C_Str()); + } - const aiNode* boneNode = scene->mRootNode->FindNode(bone->mName); - const aiNode* boneParent = boneNode->mParent; + for (int childIndex = 0; childIndex < currentNode->mNumChildren; ++childIndex) + { + queue.push(currentNode->mChildren[childIndex]); + } + } - mainBoneList[bone->mName.C_Str()] = boneNode; - boneLookup[bone->mName.C_Str()] = bone; + for (unsigned meshIndex = 0; meshIndex < scene->mNumMeshes; ++meshIndex) + { + const aiMesh* mesh = scene->mMeshes[meshIndex]; - while (boneParent && boneParent != node && boneParent != node->mParent && boneParent != scene->mRootNode) - { - mainBoneList[boneParent->mName.C_Str()] = boneParent; + for (unsigned boneIndex = 0; boneIndex < mesh->mNumBones; ++boneIndex) + { + const aiBone* bone = mesh->mBones[boneIndex]; - boneParent = boneParent->mParent; + if (nodesWithNoMesh.contains(bone->mName.C_Str())) + { + boneLookup.emplace(bone->mName.C_Str(), bone); } } } } - void EnumChildren( - const aiScene* scene, const aiNode* node, AZStd::unordered_map& mainBoneList, - AZStd::unordered_map& boneLookup) - { - EnumBonesInNode(scene, node, mainBoneList, boneLookup); - - for (unsigned childIndex = 0; childIndex < node->mNumChildren; ++childIndex) - { - const aiNode* child = node->mChildren[childIndex]; - - EnumChildren(scene, child, mainBoneList, boneLookup); - } - } - aiMatrix4x4 CalculateWorldTransform(const aiNode* currentNode) { aiMatrix4x4 transform = {}; @@ -122,14 +108,10 @@ namespace AZ bool isBone = false; { - AZStd::unordered_map mainBoneList; AZStd::unordered_map boneLookup; - EnumChildren(scene, scene->mRootNode, mainBoneList, boneLookup); + MakeBoneMap(scene, boneLookup); - if (mainBoneList.find(currentNode->mName.C_Str()) != mainBoneList.end()) - { - isBone = true; - } + isBone = boneLookup.contains(currentNode->mName.C_Str()); // If we have an animation, the bones will be listed in there if (!isBone) diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp index 5f9ffbd9b3..2f515c6174 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp @@ -42,9 +42,29 @@ namespace AZ } } - void GetAllBones( - const aiScene* scene, AZStd::unordered_multimap& boneLookup) + void GetAllBones(const aiScene* scene, AZStd::unordered_multimap& boneLookup) { + AZStd::queue queue; + AZStd::unordered_set nodesWithNoMesh; + + queue.push(scene->mRootNode); + + while (!queue.empty()) + { + const aiNode* currentNode = queue.front(); + queue.pop(); + + if (currentNode->mNumMeshes == 0) + { + nodesWithNoMesh.emplace(currentNode->mName.C_Str()); + } + + for (int childIndex = 0; childIndex < currentNode->mNumChildren; ++childIndex) + { + queue.push(currentNode->mChildren[childIndex]); + } + } + for (unsigned meshIndex = 0; meshIndex < scene->mNumMeshes; ++meshIndex) { const aiMesh* mesh = scene->mMeshes[meshIndex]; @@ -53,7 +73,10 @@ namespace AZ { const aiBone* bone = mesh->mBones[boneIndex]; - boneLookup.emplace(bone->mName.C_Str(), bone); + if (nodesWithNoMesh.contains(bone->mName.C_Str())) + { + boneLookup.emplace(bone->mName.C_Str(), bone); + } } } } From 57d2f28826dfb5b734002cd93bb7c43458d9af96 Mon Sep 17 00:00:00 2001 From: Riegger Date: Tue, 29 Jun 2021 10:48:39 -0700 Subject: [PATCH 036/111] Bumping threadgroup sizes Signed-off-by: Riegger --- .../Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl | 2 +- .../Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl | 2 +- .../Common/Assets/Shaders/Shadow/DepthExponentiation.azsl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl index 8dc42cbc33..160a3d362e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl @@ -11,7 +11,7 @@ #include #include -[numthreads(8,8,1)] +[numthreads(16,16,1)] void MainCS(uint3 dispatchId: SV_DispatchThreadID) { const float3 inputSize = GetImageSize(FilterPassSrg::m_inputImage); diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl index 2d993c7af9..c7d2ed433d 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl @@ -11,7 +11,7 @@ #include #include -[numthreads(8,8,1)] +[numthreads(16,16,1)] void MainCS(uint3 dispatchId: SV_DispatchThreadID) { const float3 inputSize = GetImageSize(FilterPassSrg::m_inputImage); diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl index 7b4613d8fa..ba2a4aaf92 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl @@ -28,7 +28,7 @@ ShaderResourceGroup PassSrg : SRG_PerPass_WithFallback StructuredBuffer m_filterParameters; } -[numthreads(8,8,1)] +[numthreads(16,16,1)] void MainCS(uint3 dispatchId: SV_DispatchThreadID) { const float3 inputSize = GetImageSize(PassSrg::m_inputShadowmap); From 9f0bbf3b74a10cd7dec4aa1ef1e9c231f8465b71 Mon Sep 17 00:00:00 2001 From: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> Date: Tue, 29 Jun 2021 13:51:24 -0700 Subject: [PATCH 037/111] SPEC-7531 Change Code/CryEngine to Code/Legacy (#1634) * git mv Code\CryEngine Code\Legacy * redirecting CMakeLists.txt * fixing uic warning * Some more CryEngine mentions * validation scripts Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> --- Code/CMakeLists.txt | 2 +- Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp | 2 +- .../Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h | 5 ----- Code/{CryEngine => Legacy}/CMakeLists.txt | 0 Code/{CryEngine => Legacy}/CryCommon/AndroidSpecific.h | 0 Code/{CryEngine => Legacy}/CryCommon/AnimKey.h | 0 Code/{CryEngine => Legacy}/CryCommon/AppleSpecific.h | 0 Code/{CryEngine => Legacy}/CryCommon/BaseTypes.h | 0 Code/{CryEngine => Legacy}/CryCommon/BitFiddling.h | 0 Code/{CryEngine => Legacy}/CryCommon/CMakeLists.txt | 2 +- Code/{CryEngine => Legacy}/CryCommon/Common_TypeInfo.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/CompileTimeAssert.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryArray.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryAssert.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryAssert_Android.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryAssert_Linux.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryAssert_Mac.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryAssert_iOS.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryAssert_impl.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryCommon.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/CryCrc32.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryCustomTypes.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryEndian.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryFile.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryFixedString.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryHalf.inl | 0 Code/{CryEngine => Legacy}/CryCommon/CryHalf_info.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryHeaders.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryHeaders_info.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/CryLegacyAllocator.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryLibrary.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/CryLibrary.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryListenerSet.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryName.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryPath.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryPodArray.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryRandomInternal.h | 0 Code/{CryEngine => Legacy}/CryCommon/CrySizer.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryString.h | 0 Code/{CryEngine => Legacy}/CryCommon/CrySystemBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryThread.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryThreadImpl.h | 0 .../{CryEngine => Legacy}/CryCommon/CryThreadImpl_pthreads.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryThreadImpl_windows.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryThread_dummy.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryThread_pthreads.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryThread_windows.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryTypeInfo.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/CryTypeInfo.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryVersion.h | 0 Code/{CryEngine => Legacy}/CryCommon/CryWindows.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Camera.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Color.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Geo.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_GeoDistance.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_GeoIntersect.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_GeoOverlap.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_HWMatrix.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_HWVector3.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Math.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Matrix33.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Matrix34.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Matrix44.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_MatrixDiag.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Quat.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_ValidNumber.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Vector2.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Vector3.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_Vector4.h | 0 Code/{CryEngine => Legacy}/CryCommon/Cry_XOptimise.h | 0 Code/{CryEngine => Legacy}/CryCommon/FrameProfiler.h | 0 Code/{CryEngine => Legacy}/CryCommon/FunctorBaseFunction.h | 0 Code/{CryEngine => Legacy}/CryCommon/FunctorBaseMember.h | 0 Code/{CryEngine => Legacy}/CryCommon/HMDBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/HeapAllocator.h | 0 .../CryCommon/HeightmapUpdateNotificationBus.h | 0 .../CryCommon/IAudioInterfacesCommonData.h | 0 Code/{CryEngine => Legacy}/CryCommon/IAudioSystem.h | 0 Code/{CryEngine => Legacy}/CryCommon/ICmdLine.h | 0 Code/{CryEngine => Legacy}/CryCommon/IConsole.h | 0 Code/{CryEngine => Legacy}/CryCommon/IEntityRenderState.h | 0 .../CryCommon/IEntityRenderState_info.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/IFont.h | 0 Code/{CryEngine => Legacy}/CryCommon/IFunctorBase.h | 0 Code/{CryEngine => Legacy}/CryCommon/IGem.h | 0 Code/{CryEngine => Legacy}/CryCommon/IIndexedMesh.h | 0 Code/{CryEngine => Legacy}/CryCommon/IIndexedMesh_info.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/ILevelSystem.h | 0 Code/{CryEngine => Legacy}/CryCommon/ILocalizationManager.h | 0 Code/{CryEngine => Legacy}/CryCommon/ILog.h | 0 Code/{CryEngine => Legacy}/CryCommon/IMNM.h | 0 Code/{CryEngine => Legacy}/CryCommon/IMaterial.h | 0 Code/{CryEngine => Legacy}/CryCommon/IMiniLog.h | 0 Code/{CryEngine => Legacy}/CryCommon/IMovieSystem.h | 0 Code/{CryEngine => Legacy}/CryCommon/INavigationSystem.h | 0 Code/{CryEngine => Legacy}/CryCommon/IPathfinder.h | 0 Code/{CryEngine => Legacy}/CryCommon/IPhysics.h | 0 Code/{CryEngine => Legacy}/CryCommon/IPostEffectGroup.h | 0 Code/{CryEngine => Legacy}/CryCommon/IProcess.h | 0 Code/{CryEngine => Legacy}/CryCommon/IReadWriteXMLSink.h | 0 Code/{CryEngine => Legacy}/CryCommon/IRenderAuxGeom.h | 0 Code/{CryEngine => Legacy}/CryCommon/IRenderMesh.h | 0 Code/{CryEngine => Legacy}/CryCommon/IRenderer.h | 0 Code/{CryEngine => Legacy}/CryCommon/ISerialize.h | 0 Code/{CryEngine => Legacy}/CryCommon/IShader.h | 0 Code/{CryEngine => Legacy}/CryCommon/ISplines.h | 0 Code/{CryEngine => Legacy}/CryCommon/IStatObj.h | 0 Code/{CryEngine => Legacy}/CryCommon/IStereoRenderer.h | 0 Code/{CryEngine => Legacy}/CryCommon/ISurfaceType.h | 0 Code/{CryEngine => Legacy}/CryCommon/ISystem.h | 0 Code/{CryEngine => Legacy}/CryCommon/ITexture.h | 0 Code/{CryEngine => Legacy}/CryCommon/ITimer.h | 0 Code/{CryEngine => Legacy}/CryCommon/IValidator.h | 0 Code/{CryEngine => Legacy}/CryCommon/IViewSystem.h | 0 Code/{CryEngine => Legacy}/CryCommon/IWindowMessageHandler.h | 0 Code/{CryEngine => Legacy}/CryCommon/IXml.h | 0 Code/{CryEngine => Legacy}/CryCommon/LCGRandom.h | 0 Code/{CryEngine => Legacy}/CryCommon/LegacyAllocator.h | 0 Code/{CryEngine => Legacy}/CryCommon/Linux32Specific.h | 0 Code/{CryEngine => Legacy}/CryCommon/Linux64Specific.h | 0 Code/{CryEngine => Legacy}/CryCommon/LinuxSpecific.h | 0 Code/{CryEngine => Legacy}/CryCommon/Linux_Win32Wrapper.h | 0 Code/{CryEngine => Legacy}/CryCommon/LoadScreenBus.h | 0 .../{CryEngine => Legacy}/CryCommon/LocalizationManagerBus.h | 0 .../CryCommon/LocalizationManagerBus.inl | 0 .../CryCommon/LyShine/Animation/IUiAnimation.h | 0 .../CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h | 0 .../CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h | 0 .../CryCommon/LyShine/Bus/UiAnimateEntityBus.h | 0 .../CryCommon/LyShine/Bus/UiAnimationBus.h | 0 .../CryCommon/LyShine/Bus/UiButtonBus.h | 0 .../CryCommon/LyShine/Bus/UiCanvasBus.h | 0 .../CryCommon/LyShine/Bus/UiCanvasManagerBus.h | 0 .../CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h | 0 .../CryCommon/LyShine/Bus/UiCheckboxBus.h | 0 .../CryCommon/LyShine/Bus/UiCursorBus.h | 0 .../CryCommon/LyShine/Bus/UiDraggableBus.h | 0 .../CryCommon/LyShine/Bus/UiDropTargetBus.h | 0 .../CryCommon/LyShine/Bus/UiDropdownBus.h | 0 .../CryCommon/LyShine/Bus/UiDropdownOptionBus.h | 0 .../CryCommon/LyShine/Bus/UiDynamicLayoutBus.h | 0 .../CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h | 0 .../CryCommon/LyShine/Bus/UiEditorBus.h | 0 .../CryCommon/LyShine/Bus/UiEditorCanvasBus.h | 0 .../CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h | 0 .../CryCommon/LyShine/Bus/UiElementBus.h | 0 .../CryCommon/LyShine/Bus/UiEntityContextBus.h | 0 .../{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiFaderBus.h | 0 .../CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h | 0 .../CryCommon/LyShine/Bus/UiGameEntityContextBus.h | 0 .../{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiImageBus.h | 0 .../CryCommon/LyShine/Bus/UiImageSequenceBus.h | 0 .../CryCommon/LyShine/Bus/UiIndexableImageBus.h | 0 .../CryCommon/LyShine/Bus/UiInitializationBus.h | 0 .../CryCommon/LyShine/Bus/UiInteractableActionsBus.h | 0 .../CryCommon/LyShine/Bus/UiInteractableBus.h | 0 .../CryCommon/LyShine/Bus/UiInteractableStatesBus.h | 0 .../CryCommon/LyShine/Bus/UiInteractionMaskBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutCellBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutColumnBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutControllerBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutFitterBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutGridBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutManagerBus.h | 0 .../CryCommon/LyShine/Bus/UiLayoutRowBus.h | 0 .../CryCommon/LyShine/Bus/UiMarkupButtonBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiMaskBus.h | 0 .../CryCommon/LyShine/Bus/UiNavigationBus.h | 0 .../CryCommon/LyShine/Bus/UiParticleEmitterBus.h | 0 .../CryCommon/LyShine/Bus/UiRadioButtonBus.h | 0 .../CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h | 0 .../CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h | 0 .../LyShine/Bus/UiRadioButtonGroupCommunicationBus.h | 0 .../CryCommon/LyShine/Bus/UiRenderBus.h | 0 .../CryCommon/LyShine/Bus/UiRenderControlBus.h | 0 .../CryCommon/LyShine/Bus/UiScrollBarBus.h | 0 .../CryCommon/LyShine/Bus/UiScrollBoxBus.h | 0 .../CryCommon/LyShine/Bus/UiScrollableBus.h | 0 .../CryCommon/LyShine/Bus/UiScrollerBus.h | 0 .../CryCommon/LyShine/Bus/UiSliderBus.h | 0 .../CryCommon/LyShine/Bus/UiSpawnerBus.h | 0 .../CryCommon/LyShine/Bus/UiSystemBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTextBus.h | 0 .../CryCommon/LyShine/Bus/UiTextInputBus.h | 0 .../CryCommon/LyShine/Bus/UiTooltipBus.h | 0 .../CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h | 0 .../CryCommon/LyShine/Bus/UiTooltipDisplayBus.h | 0 .../CryCommon/LyShine/Bus/UiTransform2dBus.h | 0 .../CryCommon/LyShine/Bus/UiTransformBus.h | 0 .../CryCommon/LyShine/Bus/UiVisualBus.h | 0 .../CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h | 0 .../CryCommon/LyShine/Bus/World/UiCanvasRefBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/IDraw2d.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/ILyShine.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/IRenderGraph.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/ISprite.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/UiAssetTypes.h | 0 Code/{CryEngine => Legacy}/CryCommon/LyShine/UiBase.h | 0 .../CryCommon/LyShine/UiComponentTypes.h | 0 .../CryCommon/LyShine/UiEntityContext.h | 0 .../CryCommon/LyShine/UiLayoutCellBase.h | 0 .../CryCommon/LyShine/UiSerializeHelpers.h | 0 Code/{CryEngine => Legacy}/CryCommon/MTPseudoRandom.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/MTPseudoRandom.h | 0 Code/{CryEngine => Legacy}/CryCommon/MacSpecific.h | 0 .../CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h | 0 .../CryCommon/Maestro/Bus/EditorSequenceBus.h | 0 .../CryCommon/Maestro/Bus/EditorSequenceComponentBus.h | 0 .../CryCommon/Maestro/Bus/SequenceAgentComponentBus.h | 0 .../CryCommon/Maestro/Bus/SequenceComponentBus.h | 0 .../CryCommon/Maestro/Types/AnimNodeType.h | 0 .../CryCommon/Maestro/Types/AnimParamType.h | 0 .../CryCommon/Maestro/Types/AnimValue.h | 0 .../CryCommon/Maestro/Types/AnimValueType.h | 0 .../CryCommon/Maestro/Types/AssetBlendKey.h | 0 .../CryCommon/Maestro/Types/AssetBlends.h | 0 .../CryCommon/Maestro/Types/SequenceType.h | 0 .../CryCommon/MainThreadRenderRequestBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/MathConversion.h | 0 Code/{CryEngine => Legacy}/CryCommon/MemoryAccess.h | 0 Code/{CryEngine => Legacy}/CryCommon/MetaUtils.h | 0 Code/{CryEngine => Legacy}/CryCommon/MicrophoneBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/MiniQueue.h | 0 .../{CryEngine => Legacy}/CryCommon/Mocks/IAudioSystemMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/ICVarMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/IConsoleMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/ICryPakMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/ILogMock.h | 0 .../CryCommon/Mocks/IRemoteConsoleMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/IRendererMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/ISystemMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/ITextureMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/ITimerMock.h | 0 Code/{CryEngine => Legacy}/CryCommon/Mocks/StubTimer.h | 0 Code/{CryEngine => Legacy}/CryCommon/MultiThread.h | 0 .../{CryEngine => Legacy}/CryCommon/MultiThread_Containers.h | 0 Code/{CryEngine => Legacy}/CryCommon/NullAudioSystem.h | 0 Code/{CryEngine => Legacy}/CryCommon/Options.h | 0 Code/{CryEngine => Legacy}/CryCommon/PNoise3.h | 0 Code/{CryEngine => Legacy}/CryCommon/PoolAllocator.h | 0 Code/{CryEngine => Legacy}/CryCommon/ProjectDefines.h | 1 - Code/{CryEngine => Legacy}/CryCommon/Random.h | 0 Code/{CryEngine => Legacy}/CryCommon/Range.h | 0 Code/{CryEngine => Legacy}/CryCommon/RenderBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/SFunctor.h | 0 Code/{CryEngine => Legacy}/CryCommon/ScopedVariableSetter.h | 0 Code/{CryEngine => Legacy}/CryCommon/SerializationTypes.h | 0 Code/{CryEngine => Legacy}/CryCommon/SerializeFwd.h | 0 Code/{CryEngine => Legacy}/CryCommon/SimpleSerialize.h | 0 Code/{CryEngine => Legacy}/CryCommon/StatObjBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/StaticInstance.h | 0 Code/{CryEngine => Legacy}/CryCommon/StereoRendererBus.h | 0 Code/{CryEngine => Legacy}/CryCommon/StlUtils.h | 0 Code/{CryEngine => Legacy}/CryCommon/StringUtils.h | 0 Code/{CryEngine => Legacy}/CryCommon/Synchronization.h | 0 Code/{CryEngine => Legacy}/CryCommon/Tarray.h | 0 Code/{CryEngine => Legacy}/CryCommon/TimeValue.h | 0 Code/{CryEngine => Legacy}/CryCommon/TimeValue_info.h | 0 Code/{CryEngine => Legacy}/CryCommon/Timer.h | 0 Code/{CryEngine => Legacy}/CryCommon/TypeInfo_decl.h | 0 Code/{CryEngine => Legacy}/CryCommon/TypeInfo_impl.h | 0 Code/{CryEngine => Legacy}/CryCommon/UnicodeBinding.h | 0 Code/{CryEngine => Legacy}/CryCommon/UnicodeEncoding.h | 0 Code/{CryEngine => Legacy}/CryCommon/UnicodeFunctions.h | 0 Code/{CryEngine => Legacy}/CryCommon/UnicodeIterator.h | 0 Code/{CryEngine => Legacy}/CryCommon/VRCommon.h | 0 Code/{CryEngine => Legacy}/CryCommon/VectorMap.h | 0 Code/{CryEngine => Legacy}/CryCommon/VectorSet.h | 0 Code/{CryEngine => Legacy}/CryCommon/Vertex.h | 0 Code/{CryEngine => Legacy}/CryCommon/VertexFormats.h | 0 Code/{CryEngine => Legacy}/CryCommon/Win32specific.h | 0 Code/{CryEngine => Legacy}/CryCommon/Win64specific.h | 0 Code/{CryEngine => Legacy}/CryCommon/WinBase.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/XMLBinaryHeaders.h | 0 Code/{CryEngine => Legacy}/CryCommon/crycommon_files.cmake | 0 .../CryCommon/crycommon_testing_files.cmake | 0 Code/{CryEngine => Legacy}/CryCommon/iOSSpecific.h | 0 Code/{CryEngine => Legacy}/CryCommon/physinterface.h | 0 Code/{CryEngine => Legacy}/CryCommon/platform.h | 0 Code/{CryEngine => Legacy}/CryCommon/platform_impl.cpp | 0 Code/{CryEngine => Legacy}/CryCommon/primitives.h | 0 Code/{CryEngine => Legacy}/CryCommon/smartptr.h | 0 Code/{CryEngine => Legacy}/CryCommon/stridedptr.h | 0 Code/{CryEngine => Legacy}/CrySystem/AZCoreLogSink.h | 0 .../CrySystem/AZCrySystemInitLogSink.cpp | 0 .../{CryEngine => Legacy}/CrySystem/AZCrySystemInitLogSink.h | 0 Code/{CryEngine => Legacy}/CrySystem/CMakeLists.txt | 0 Code/{CryEngine => Legacy}/CrySystem/CmdLine.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/CmdLine.h | 0 Code/{CryEngine => Legacy}/CrySystem/CmdLineArg.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/CmdLineArg.h | 0 Code/{CryEngine => Legacy}/CrySystem/ConsoleBatchFile.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/ConsoleBatchFile.h | 0 Code/{CryEngine => Legacy}/CrySystem/ConsoleHelpGen.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/ConsoleHelpGen.h | 0 Code/{CryEngine => Legacy}/CrySystem/CrySystem_precompiled.h | 0 Code/{CryEngine => Legacy}/CrySystem/DebugCallStack.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/DebugCallStack.h | 0 Code/{CryEngine => Legacy}/CrySystem/DllMain.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/Huffman.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/Huffman.h | 0 Code/{CryEngine => Legacy}/CrySystem/IDebugCallStack.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/IDebugCallStack.h | 0 .../CrySystem/LevelSystem/LevelSystem.cpp | 0 .../CrySystem/LevelSystem/LevelSystem.h | 0 .../CrySystem/LevelSystem/SpawnableLevelSystem.cpp | 0 .../CrySystem/LevelSystem/SpawnableLevelSystem.h | 0 .../CrySystem/LocalizedStringManager.cpp | 0 .../{CryEngine => Legacy}/CrySystem/LocalizedStringManager.h | 0 Code/{CryEngine => Legacy}/CrySystem/Log.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/Log.h | 0 .../CrySystem/RemoteConsole/RemoteConsole.cpp | 0 .../CrySystem/RemoteConsole/RemoteConsole.h | 0 .../CrySystem/RemoteConsole/RemoteConsole_impl.inl | 0 .../CrySystem/RemoteConsole/RemoteConsole_none.inl | 0 Code/{CryEngine => Legacy}/CrySystem/SimpleStringPool.h | 0 Code/{CryEngine => Legacy}/CrySystem/System.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/System.h | 0 Code/{CryEngine => Legacy}/CrySystem/SystemCFG.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/SystemCFG.h | 0 .../CrySystem/SystemEventDispatcher.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/SystemEventDispatcher.h | 0 Code/{CryEngine => Legacy}/CrySystem/SystemInit.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/SystemWin32.cpp | 3 +-- Code/{CryEngine => Legacy}/CrySystem/Timer.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/Timer.h | 0 .../CrySystem/ViewSystem/DebugCamera.cpp | 0 .../{CryEngine => Legacy}/CrySystem/ViewSystem/DebugCamera.h | 0 Code/{CryEngine => Legacy}/CrySystem/ViewSystem/View.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/ViewSystem/View.h | 0 .../CrySystem/ViewSystem/ViewSystem.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/ViewSystem/ViewSystem.h | 0 .../CrySystem/WindowsErrorReporting.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XConsole.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XConsole.h | 0 Code/{CryEngine => Legacy}/CrySystem/XConsoleVariable.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XConsoleVariable.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/CMakeLists.txt | 0 Code/{CryEngine => Legacy}/CrySystem/XML/Expat/COPYING.txt | 0 Code/{CryEngine => Legacy}/CrySystem/XML/ReadWriteXMLSink.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/ReadXMLSink.cpp | 0 .../CrySystem/XML/SerializeXMLReader.cpp | 0 .../{CryEngine => Legacy}/CrySystem/XML/SerializeXMLReader.h | 0 .../CrySystem/XML/SerializeXMLWriter.cpp | 0 .../{CryEngine => Legacy}/CrySystem/XML/SerializeXMLWriter.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/WriteXMLSource.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryNode.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryNode.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryReader.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryReader.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryWriter.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryWriter.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLPatcher.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XMLPatcher.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XmlUtils.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XML/XmlUtils.h | 0 .../CrySystem/XML/crysystem_xmlbinary_files.cmake | 0 Code/{CryEngine => Legacy}/CrySystem/XML/xml.cpp | 0 Code/{CryEngine => Legacy}/CrySystem/XML/xml.h | 0 Code/{CryEngine => Legacy}/CrySystem/XML/xml_string.h | 0 Code/{CryEngine => Legacy}/CrySystem/crysystem_files.cmake | 0 .../CrySystem/crysystem_shared_files.cmake | 0 Code/Sandbox/Editor/editor_lib_files.cmake | 2 +- .../Sandbox/Editor/res/{CryEngineLogo.bmp => LegacyLogo.bmp} | 0 Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui | 3 ++- .../Code/Source/CameraLookAtBehaviors/OffsetPosition.h | 2 +- .../Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h | 2 +- .../CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h | 2 +- .../Code/Source/CameraTargetAcquirers/AcquireByEntityId.h | 2 +- .../Code/Source/CameraTargetAcquirers/AcquireByTag.h | 2 +- .../Code/Source/CameraTransformBehaviors/FaceTarget.h | 2 +- .../Source/CameraTransformBehaviors/FollowTargetFromAngle.h | 2 +- .../CameraTransformBehaviors/FollowTargetFromDistance.h | 2 +- .../Source/CameraTransformBehaviors/OffsetCameraPosition.h | 2 +- .../Code/Source/CameraTransformBehaviors/Rotate.h | 2 +- .../{CryEngineLogoLauncher.bmp => LegacyLogoLauncher.bmp} | 0 Templates/DefaultProject/template.json | 4 ++-- .../{CryEngineLogoLauncher.bmp => LegacyLogoLauncher.bmp} | 0 Templates/MinimalProject/template.json | 4 ++-- .../package/Platform/Windows/package_filelists/atom.json | 2 +- .../commit_validation/commit_validation/pal_allowedlist.txt | 2 +- .../validators/copyright_header_validator.py | 4 ++-- 384 files changed, 25 insertions(+), 31 deletions(-) rename Code/{CryEngine => Legacy}/CMakeLists.txt (100%) rename Code/{CryEngine => Legacy}/CryCommon/AndroidSpecific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/AnimKey.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/AppleSpecific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/BaseTypes.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/BitFiddling.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CMakeLists.txt (83%) rename Code/{CryEngine => Legacy}/CryCommon/Common_TypeInfo.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/CompileTimeAssert.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryArray.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryAssert.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryAssert_Android.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryAssert_Linux.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryAssert_Mac.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryAssert_iOS.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryAssert_impl.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryCommon.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryCrc32.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryCustomTypes.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryEndian.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryFile.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryFixedString.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryHalf.inl (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryHalf_info.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryHeaders.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryHeaders_info.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryLegacyAllocator.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryLibrary.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryLibrary.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryListenerSet.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryName.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryPath.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryPodArray.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryRandomInternal.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CrySizer.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryString.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CrySystemBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryThread.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryThreadImpl.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryThreadImpl_pthreads.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryThreadImpl_windows.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryThread_dummy.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryThread_pthreads.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryThread_windows.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryTypeInfo.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryTypeInfo.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryVersion.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/CryWindows.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Camera.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Color.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Geo.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_GeoDistance.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_GeoIntersect.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_GeoOverlap.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_HWMatrix.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_HWVector3.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Math.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Matrix33.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Matrix34.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Matrix44.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_MatrixDiag.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Quat.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_ValidNumber.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Vector2.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Vector3.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_Vector4.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Cry_XOptimise.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/FrameProfiler.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/FunctorBaseFunction.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/FunctorBaseMember.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/HMDBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/HeapAllocator.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/HeightmapUpdateNotificationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IAudioInterfacesCommonData.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IAudioSystem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ICmdLine.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IConsole.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IEntityRenderState.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IEntityRenderState_info.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/IFont.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IFunctorBase.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IGem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IIndexedMesh.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IIndexedMesh_info.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/ILevelSystem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ILocalizationManager.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ILog.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IMNM.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IMaterial.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IMiniLog.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IMovieSystem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/INavigationSystem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IPathfinder.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IPhysics.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IPostEffectGroup.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IProcess.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IReadWriteXMLSink.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IRenderAuxGeom.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IRenderMesh.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IRenderer.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ISerialize.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IShader.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ISplines.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IStatObj.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IStereoRenderer.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ISurfaceType.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ISystem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ITexture.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ITimer.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IValidator.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IViewSystem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IWindowMessageHandler.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/IXml.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LCGRandom.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LegacyAllocator.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Linux32Specific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Linux64Specific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LinuxSpecific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Linux_Win32Wrapper.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LoadScreenBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LocalizationManagerBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LocalizationManagerBus.inl (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Animation/IUiAnimation.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiAnimateEntityBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiAnimationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiButtonBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiCanvasBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiCanvasManagerBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiCheckboxBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiCursorBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiDraggableBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiDropTargetBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiDropdownBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiDropdownOptionBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiEditorBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiEditorCanvasBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiElementBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiEntityContextBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiFaderBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiGameEntityContextBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiImageBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiImageSequenceBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiIndexableImageBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiInitializationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiInteractableActionsBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiInteractableBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiInteractableStatesBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiInteractionMaskBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutCellBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutColumnBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutControllerBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutFitterBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutGridBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutManagerBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiLayoutRowBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiMarkupButtonBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiMaskBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiNavigationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiParticleEmitterBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiRadioButtonBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiRenderBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiRenderControlBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiScrollBarBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiScrollBoxBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiScrollableBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiScrollerBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiSliderBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiSpawnerBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiSystemBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTextBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTextInputBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTooltipBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTransform2dBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiTransformBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/UiVisualBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/IDraw2d.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/ILyShine.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/IRenderGraph.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/ISprite.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/UiAssetTypes.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/UiBase.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/UiComponentTypes.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/UiEntityContext.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/UiLayoutCellBase.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/LyShine/UiSerializeHelpers.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MTPseudoRandom.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/MTPseudoRandom.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MacSpecific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Bus/EditorSequenceBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Bus/SequenceComponentBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Types/AnimNodeType.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Types/AnimParamType.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Types/AnimValue.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Types/AnimValueType.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Types/AssetBlendKey.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Types/AssetBlends.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Maestro/Types/SequenceType.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MainThreadRenderRequestBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MathConversion.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MemoryAccess.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MetaUtils.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MicrophoneBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MiniQueue.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/IAudioSystemMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/ICVarMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/IConsoleMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/ICryPakMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/ILogMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/IRemoteConsoleMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/IRendererMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/ISystemMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/ITextureMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/ITimerMock.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Mocks/StubTimer.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MultiThread.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/MultiThread_Containers.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/NullAudioSystem.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Options.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/PNoise3.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/PoolAllocator.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ProjectDefines.h (99%) rename Code/{CryEngine => Legacy}/CryCommon/Random.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Range.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/RenderBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/SFunctor.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/ScopedVariableSetter.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/SerializationTypes.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/SerializeFwd.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/SimpleSerialize.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/StatObjBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/StaticInstance.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/StereoRendererBus.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/StlUtils.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/StringUtils.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Synchronization.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Tarray.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/TimeValue.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/TimeValue_info.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Timer.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/TypeInfo_decl.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/TypeInfo_impl.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/UnicodeBinding.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/UnicodeEncoding.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/UnicodeFunctions.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/UnicodeIterator.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/VRCommon.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/VectorMap.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/VectorSet.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Vertex.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/VertexFormats.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Win32specific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/Win64specific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/WinBase.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/XMLBinaryHeaders.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/crycommon_files.cmake (100%) rename Code/{CryEngine => Legacy}/CryCommon/crycommon_testing_files.cmake (100%) rename Code/{CryEngine => Legacy}/CryCommon/iOSSpecific.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/physinterface.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/platform.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/platform_impl.cpp (100%) rename Code/{CryEngine => Legacy}/CryCommon/primitives.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/smartptr.h (100%) rename Code/{CryEngine => Legacy}/CryCommon/stridedptr.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/AZCoreLogSink.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/AZCrySystemInitLogSink.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/AZCrySystemInitLogSink.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/CMakeLists.txt (100%) rename Code/{CryEngine => Legacy}/CrySystem/CmdLine.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/CmdLine.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/CmdLineArg.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/CmdLineArg.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/ConsoleBatchFile.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/ConsoleBatchFile.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/ConsoleHelpGen.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/ConsoleHelpGen.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/CrySystem_precompiled.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/DebugCallStack.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/DebugCallStack.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/DllMain.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/Huffman.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/Huffman.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/IDebugCallStack.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/IDebugCallStack.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/LevelSystem/LevelSystem.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/LevelSystem/LevelSystem.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/LevelSystem/SpawnableLevelSystem.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/LevelSystem/SpawnableLevelSystem.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/LocalizedStringManager.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/LocalizedStringManager.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/Log.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/Log.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/RemoteConsole/RemoteConsole.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/RemoteConsole/RemoteConsole.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/RemoteConsole/RemoteConsole_impl.inl (100%) rename Code/{CryEngine => Legacy}/CrySystem/RemoteConsole/RemoteConsole_none.inl (100%) rename Code/{CryEngine => Legacy}/CrySystem/SimpleStringPool.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/System.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/System.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/SystemCFG.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/SystemCFG.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/SystemEventDispatcher.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/SystemEventDispatcher.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/SystemInit.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/SystemWin32.cpp (99%) rename Code/{CryEngine => Legacy}/CrySystem/Timer.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/Timer.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/ViewSystem/DebugCamera.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/ViewSystem/DebugCamera.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/ViewSystem/View.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/ViewSystem/View.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/ViewSystem/ViewSystem.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/ViewSystem/ViewSystem.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/WindowsErrorReporting.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XConsole.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XConsole.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XConsoleVariable.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XConsoleVariable.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/CMakeLists.txt (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/Expat/COPYING.txt (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/ReadWriteXMLSink.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/ReadXMLSink.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/SerializeXMLReader.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/SerializeXMLReader.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/SerializeXMLWriter.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/SerializeXMLWriter.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/WriteXMLSource.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryNode.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryNode.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryReader.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryReader.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryWriter.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLBinaryWriter.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLPatcher.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XMLPatcher.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XmlUtils.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/XmlUtils.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/crysystem_xmlbinary_files.cmake (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/xml.cpp (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/xml.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/XML/xml_string.h (100%) rename Code/{CryEngine => Legacy}/CrySystem/crysystem_files.cmake (100%) rename Code/{CryEngine => Legacy}/CrySystem/crysystem_shared_files.cmake (100%) rename Code/Sandbox/Editor/res/{CryEngineLogo.bmp => LegacyLogo.bmp} (100%) rename Templates/DefaultProject/Template/Resources/{CryEngineLogoLauncher.bmp => LegacyLogoLauncher.bmp} (100%) rename Templates/MinimalProject/Template/Resources/{CryEngineLogoLauncher.bmp => LegacyLogoLauncher.bmp} (100%) diff --git a/Code/CMakeLists.txt b/Code/CMakeLists.txt index 91807c8eb0..cb84d251e5 100644 --- a/Code/CMakeLists.txt +++ b/Code/CMakeLists.txt @@ -5,8 +5,8 @@ # # -add_subdirectory(CryEngine) add_subdirectory(Framework) add_subdirectory(LauncherUnified) +add_subdirectory(Legacy) add_subdirectory(Sandbox) add_subdirectory(Tools) diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp index 0dd24261b8..cb1a0412cb 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp @@ -5596,7 +5596,7 @@ LUA_API const Node* lua_getDummyNode() // Debugging void Error(ScriptContext::ErrorType error, bool doStackTrace, const char* format, va_list mark) { - // max size due to requirements of \CryEngine\CrySystem\Log.h MAX_TEMP_LENGTH_SIZE(2048) minus room for the time stamp (128) + // max size due to requirements of \Legacy\CrySystem\Log.h MAX_TEMP_LENGTH_SIZE(2048) minus room for the time stamp (128) // otherwise if the script passes in a string larger, their script will cause an assert char message[4096 - 128]; azvsnprintf(message, AZ_ARRAY_SIZE(message), format, mark); diff --git a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h index 3edb1c3c9c..a10f52e1d2 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h +++ b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h @@ -20,11 +20,6 @@ namespace AZ //! //! See "StatisticalProfilerProxy.h" for more explanations on the meaning of Statistical Profiling. //! - //! See sample UnitTest code in "dev\Code\Framework\Tests\StatisticalProfiler.cpp" which is part of the "FrameworkTests" - //! project. Also, "dev\Code\CryEngine\Cry3DEngine\TerrainProfiler.h,.cpp" - //! and "dev\Code\CryEngine\RenderDll\Common\RendElements\TerrainUtils\Debug\TerrainProfiler.h,.cpp" - //! are good examples. - //! //! The StatisticalProfiler was made as a template to accommodate for several performance needs... //! If all the code that is being profiled is single threaded and you want to identify //! each statistic by its string name, then the default StatisticalProfiler<> works for you. diff --git a/Code/CryEngine/CMakeLists.txt b/Code/Legacy/CMakeLists.txt similarity index 100% rename from Code/CryEngine/CMakeLists.txt rename to Code/Legacy/CMakeLists.txt diff --git a/Code/CryEngine/CryCommon/AndroidSpecific.h b/Code/Legacy/CryCommon/AndroidSpecific.h similarity index 100% rename from Code/CryEngine/CryCommon/AndroidSpecific.h rename to Code/Legacy/CryCommon/AndroidSpecific.h diff --git a/Code/CryEngine/CryCommon/AnimKey.h b/Code/Legacy/CryCommon/AnimKey.h similarity index 100% rename from Code/CryEngine/CryCommon/AnimKey.h rename to Code/Legacy/CryCommon/AnimKey.h diff --git a/Code/CryEngine/CryCommon/AppleSpecific.h b/Code/Legacy/CryCommon/AppleSpecific.h similarity index 100% rename from Code/CryEngine/CryCommon/AppleSpecific.h rename to Code/Legacy/CryCommon/AppleSpecific.h diff --git a/Code/CryEngine/CryCommon/BaseTypes.h b/Code/Legacy/CryCommon/BaseTypes.h similarity index 100% rename from Code/CryEngine/CryCommon/BaseTypes.h rename to Code/Legacy/CryCommon/BaseTypes.h diff --git a/Code/CryEngine/CryCommon/BitFiddling.h b/Code/Legacy/CryCommon/BitFiddling.h similarity index 100% rename from Code/CryEngine/CryCommon/BitFiddling.h rename to Code/Legacy/CryCommon/BitFiddling.h diff --git a/Code/CryEngine/CryCommon/CMakeLists.txt b/Code/Legacy/CryCommon/CMakeLists.txt similarity index 83% rename from Code/CryEngine/CryCommon/CMakeLists.txt rename to Code/Legacy/CryCommon/CMakeLists.txt index 6c00cc5071..93754aa9aa 100644 --- a/Code/CryEngine/CryCommon/CMakeLists.txt +++ b/Code/Legacy/CryCommon/CMakeLists.txt @@ -13,7 +13,7 @@ ly_add_target( INCLUDE_DIRECTORIES PUBLIC . # Lots of code without CryCommon/ - .. # Dangerous since exports CryEngine's path (client code can do CrySystem/ without depending on that target) + .. # Dangerous since exports Legacy's path (client code can do CrySystem/ without depending on that target) BUILD_DEPENDENCIES PUBLIC AZ::AzCore diff --git a/Code/CryEngine/CryCommon/Common_TypeInfo.cpp b/Code/Legacy/CryCommon/Common_TypeInfo.cpp similarity index 100% rename from Code/CryEngine/CryCommon/Common_TypeInfo.cpp rename to Code/Legacy/CryCommon/Common_TypeInfo.cpp diff --git a/Code/CryEngine/CryCommon/CompileTimeAssert.h b/Code/Legacy/CryCommon/CompileTimeAssert.h similarity index 100% rename from Code/CryEngine/CryCommon/CompileTimeAssert.h rename to Code/Legacy/CryCommon/CompileTimeAssert.h diff --git a/Code/CryEngine/CryCommon/CryArray.h b/Code/Legacy/CryCommon/CryArray.h similarity index 100% rename from Code/CryEngine/CryCommon/CryArray.h rename to Code/Legacy/CryCommon/CryArray.h diff --git a/Code/CryEngine/CryCommon/CryAssert.h b/Code/Legacy/CryCommon/CryAssert.h similarity index 100% rename from Code/CryEngine/CryCommon/CryAssert.h rename to Code/Legacy/CryCommon/CryAssert.h diff --git a/Code/CryEngine/CryCommon/CryAssert_Android.h b/Code/Legacy/CryCommon/CryAssert_Android.h similarity index 100% rename from Code/CryEngine/CryCommon/CryAssert_Android.h rename to Code/Legacy/CryCommon/CryAssert_Android.h diff --git a/Code/CryEngine/CryCommon/CryAssert_Linux.h b/Code/Legacy/CryCommon/CryAssert_Linux.h similarity index 100% rename from Code/CryEngine/CryCommon/CryAssert_Linux.h rename to Code/Legacy/CryCommon/CryAssert_Linux.h diff --git a/Code/CryEngine/CryCommon/CryAssert_Mac.h b/Code/Legacy/CryCommon/CryAssert_Mac.h similarity index 100% rename from Code/CryEngine/CryCommon/CryAssert_Mac.h rename to Code/Legacy/CryCommon/CryAssert_Mac.h diff --git a/Code/CryEngine/CryCommon/CryAssert_iOS.h b/Code/Legacy/CryCommon/CryAssert_iOS.h similarity index 100% rename from Code/CryEngine/CryCommon/CryAssert_iOS.h rename to Code/Legacy/CryCommon/CryAssert_iOS.h diff --git a/Code/CryEngine/CryCommon/CryAssert_impl.h b/Code/Legacy/CryCommon/CryAssert_impl.h similarity index 100% rename from Code/CryEngine/CryCommon/CryAssert_impl.h rename to Code/Legacy/CryCommon/CryAssert_impl.h diff --git a/Code/CryEngine/CryCommon/CryCommon.cpp b/Code/Legacy/CryCommon/CryCommon.cpp similarity index 100% rename from Code/CryEngine/CryCommon/CryCommon.cpp rename to Code/Legacy/CryCommon/CryCommon.cpp diff --git a/Code/CryEngine/CryCommon/CryCrc32.h b/Code/Legacy/CryCommon/CryCrc32.h similarity index 100% rename from Code/CryEngine/CryCommon/CryCrc32.h rename to Code/Legacy/CryCommon/CryCrc32.h diff --git a/Code/CryEngine/CryCommon/CryCustomTypes.h b/Code/Legacy/CryCommon/CryCustomTypes.h similarity index 100% rename from Code/CryEngine/CryCommon/CryCustomTypes.h rename to Code/Legacy/CryCommon/CryCustomTypes.h diff --git a/Code/CryEngine/CryCommon/CryEndian.h b/Code/Legacy/CryCommon/CryEndian.h similarity index 100% rename from Code/CryEngine/CryCommon/CryEndian.h rename to Code/Legacy/CryCommon/CryEndian.h diff --git a/Code/CryEngine/CryCommon/CryFile.h b/Code/Legacy/CryCommon/CryFile.h similarity index 100% rename from Code/CryEngine/CryCommon/CryFile.h rename to Code/Legacy/CryCommon/CryFile.h diff --git a/Code/CryEngine/CryCommon/CryFixedString.h b/Code/Legacy/CryCommon/CryFixedString.h similarity index 100% rename from Code/CryEngine/CryCommon/CryFixedString.h rename to Code/Legacy/CryCommon/CryFixedString.h diff --git a/Code/CryEngine/CryCommon/CryHalf.inl b/Code/Legacy/CryCommon/CryHalf.inl similarity index 100% rename from Code/CryEngine/CryCommon/CryHalf.inl rename to Code/Legacy/CryCommon/CryHalf.inl diff --git a/Code/CryEngine/CryCommon/CryHalf_info.h b/Code/Legacy/CryCommon/CryHalf_info.h similarity index 100% rename from Code/CryEngine/CryCommon/CryHalf_info.h rename to Code/Legacy/CryCommon/CryHalf_info.h diff --git a/Code/CryEngine/CryCommon/CryHeaders.h b/Code/Legacy/CryCommon/CryHeaders.h similarity index 100% rename from Code/CryEngine/CryCommon/CryHeaders.h rename to Code/Legacy/CryCommon/CryHeaders.h diff --git a/Code/CryEngine/CryCommon/CryHeaders_info.cpp b/Code/Legacy/CryCommon/CryHeaders_info.cpp similarity index 100% rename from Code/CryEngine/CryCommon/CryHeaders_info.cpp rename to Code/Legacy/CryCommon/CryHeaders_info.cpp diff --git a/Code/CryEngine/CryCommon/CryLegacyAllocator.h b/Code/Legacy/CryCommon/CryLegacyAllocator.h similarity index 100% rename from Code/CryEngine/CryCommon/CryLegacyAllocator.h rename to Code/Legacy/CryCommon/CryLegacyAllocator.h diff --git a/Code/CryEngine/CryCommon/CryLibrary.cpp b/Code/Legacy/CryCommon/CryLibrary.cpp similarity index 100% rename from Code/CryEngine/CryCommon/CryLibrary.cpp rename to Code/Legacy/CryCommon/CryLibrary.cpp diff --git a/Code/CryEngine/CryCommon/CryLibrary.h b/Code/Legacy/CryCommon/CryLibrary.h similarity index 100% rename from Code/CryEngine/CryCommon/CryLibrary.h rename to Code/Legacy/CryCommon/CryLibrary.h diff --git a/Code/CryEngine/CryCommon/CryListenerSet.h b/Code/Legacy/CryCommon/CryListenerSet.h similarity index 100% rename from Code/CryEngine/CryCommon/CryListenerSet.h rename to Code/Legacy/CryCommon/CryListenerSet.h diff --git a/Code/CryEngine/CryCommon/CryName.h b/Code/Legacy/CryCommon/CryName.h similarity index 100% rename from Code/CryEngine/CryCommon/CryName.h rename to Code/Legacy/CryCommon/CryName.h diff --git a/Code/CryEngine/CryCommon/CryPath.h b/Code/Legacy/CryCommon/CryPath.h similarity index 100% rename from Code/CryEngine/CryCommon/CryPath.h rename to Code/Legacy/CryCommon/CryPath.h diff --git a/Code/CryEngine/CryCommon/CryPodArray.h b/Code/Legacy/CryCommon/CryPodArray.h similarity index 100% rename from Code/CryEngine/CryCommon/CryPodArray.h rename to Code/Legacy/CryCommon/CryPodArray.h diff --git a/Code/CryEngine/CryCommon/CryRandomInternal.h b/Code/Legacy/CryCommon/CryRandomInternal.h similarity index 100% rename from Code/CryEngine/CryCommon/CryRandomInternal.h rename to Code/Legacy/CryCommon/CryRandomInternal.h diff --git a/Code/CryEngine/CryCommon/CrySizer.h b/Code/Legacy/CryCommon/CrySizer.h similarity index 100% rename from Code/CryEngine/CryCommon/CrySizer.h rename to Code/Legacy/CryCommon/CrySizer.h diff --git a/Code/CryEngine/CryCommon/CryString.h b/Code/Legacy/CryCommon/CryString.h similarity index 100% rename from Code/CryEngine/CryCommon/CryString.h rename to Code/Legacy/CryCommon/CryString.h diff --git a/Code/CryEngine/CryCommon/CrySystemBus.h b/Code/Legacy/CryCommon/CrySystemBus.h similarity index 100% rename from Code/CryEngine/CryCommon/CrySystemBus.h rename to Code/Legacy/CryCommon/CrySystemBus.h diff --git a/Code/CryEngine/CryCommon/CryThread.h b/Code/Legacy/CryCommon/CryThread.h similarity index 100% rename from Code/CryEngine/CryCommon/CryThread.h rename to Code/Legacy/CryCommon/CryThread.h diff --git a/Code/CryEngine/CryCommon/CryThreadImpl.h b/Code/Legacy/CryCommon/CryThreadImpl.h similarity index 100% rename from Code/CryEngine/CryCommon/CryThreadImpl.h rename to Code/Legacy/CryCommon/CryThreadImpl.h diff --git a/Code/CryEngine/CryCommon/CryThreadImpl_pthreads.h b/Code/Legacy/CryCommon/CryThreadImpl_pthreads.h similarity index 100% rename from Code/CryEngine/CryCommon/CryThreadImpl_pthreads.h rename to Code/Legacy/CryCommon/CryThreadImpl_pthreads.h diff --git a/Code/CryEngine/CryCommon/CryThreadImpl_windows.h b/Code/Legacy/CryCommon/CryThreadImpl_windows.h similarity index 100% rename from Code/CryEngine/CryCommon/CryThreadImpl_windows.h rename to Code/Legacy/CryCommon/CryThreadImpl_windows.h diff --git a/Code/CryEngine/CryCommon/CryThread_dummy.h b/Code/Legacy/CryCommon/CryThread_dummy.h similarity index 100% rename from Code/CryEngine/CryCommon/CryThread_dummy.h rename to Code/Legacy/CryCommon/CryThread_dummy.h diff --git a/Code/CryEngine/CryCommon/CryThread_pthreads.h b/Code/Legacy/CryCommon/CryThread_pthreads.h similarity index 100% rename from Code/CryEngine/CryCommon/CryThread_pthreads.h rename to Code/Legacy/CryCommon/CryThread_pthreads.h diff --git a/Code/CryEngine/CryCommon/CryThread_windows.h b/Code/Legacy/CryCommon/CryThread_windows.h similarity index 100% rename from Code/CryEngine/CryCommon/CryThread_windows.h rename to Code/Legacy/CryCommon/CryThread_windows.h diff --git a/Code/CryEngine/CryCommon/CryTypeInfo.cpp b/Code/Legacy/CryCommon/CryTypeInfo.cpp similarity index 100% rename from Code/CryEngine/CryCommon/CryTypeInfo.cpp rename to Code/Legacy/CryCommon/CryTypeInfo.cpp diff --git a/Code/CryEngine/CryCommon/CryTypeInfo.h b/Code/Legacy/CryCommon/CryTypeInfo.h similarity index 100% rename from Code/CryEngine/CryCommon/CryTypeInfo.h rename to Code/Legacy/CryCommon/CryTypeInfo.h diff --git a/Code/CryEngine/CryCommon/CryVersion.h b/Code/Legacy/CryCommon/CryVersion.h similarity index 100% rename from Code/CryEngine/CryCommon/CryVersion.h rename to Code/Legacy/CryCommon/CryVersion.h diff --git a/Code/CryEngine/CryCommon/CryWindows.h b/Code/Legacy/CryCommon/CryWindows.h similarity index 100% rename from Code/CryEngine/CryCommon/CryWindows.h rename to Code/Legacy/CryCommon/CryWindows.h diff --git a/Code/CryEngine/CryCommon/Cry_Camera.h b/Code/Legacy/CryCommon/Cry_Camera.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Camera.h rename to Code/Legacy/CryCommon/Cry_Camera.h diff --git a/Code/CryEngine/CryCommon/Cry_Color.h b/Code/Legacy/CryCommon/Cry_Color.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Color.h rename to Code/Legacy/CryCommon/Cry_Color.h diff --git a/Code/CryEngine/CryCommon/Cry_Geo.h b/Code/Legacy/CryCommon/Cry_Geo.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Geo.h rename to Code/Legacy/CryCommon/Cry_Geo.h diff --git a/Code/CryEngine/CryCommon/Cry_GeoDistance.h b/Code/Legacy/CryCommon/Cry_GeoDistance.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_GeoDistance.h rename to Code/Legacy/CryCommon/Cry_GeoDistance.h diff --git a/Code/CryEngine/CryCommon/Cry_GeoIntersect.h b/Code/Legacy/CryCommon/Cry_GeoIntersect.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_GeoIntersect.h rename to Code/Legacy/CryCommon/Cry_GeoIntersect.h diff --git a/Code/CryEngine/CryCommon/Cry_GeoOverlap.h b/Code/Legacy/CryCommon/Cry_GeoOverlap.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_GeoOverlap.h rename to Code/Legacy/CryCommon/Cry_GeoOverlap.h diff --git a/Code/CryEngine/CryCommon/Cry_HWMatrix.h b/Code/Legacy/CryCommon/Cry_HWMatrix.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_HWMatrix.h rename to Code/Legacy/CryCommon/Cry_HWMatrix.h diff --git a/Code/CryEngine/CryCommon/Cry_HWVector3.h b/Code/Legacy/CryCommon/Cry_HWVector3.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_HWVector3.h rename to Code/Legacy/CryCommon/Cry_HWVector3.h diff --git a/Code/CryEngine/CryCommon/Cry_Math.h b/Code/Legacy/CryCommon/Cry_Math.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Math.h rename to Code/Legacy/CryCommon/Cry_Math.h diff --git a/Code/CryEngine/CryCommon/Cry_Matrix33.h b/Code/Legacy/CryCommon/Cry_Matrix33.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Matrix33.h rename to Code/Legacy/CryCommon/Cry_Matrix33.h diff --git a/Code/CryEngine/CryCommon/Cry_Matrix34.h b/Code/Legacy/CryCommon/Cry_Matrix34.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Matrix34.h rename to Code/Legacy/CryCommon/Cry_Matrix34.h diff --git a/Code/CryEngine/CryCommon/Cry_Matrix44.h b/Code/Legacy/CryCommon/Cry_Matrix44.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Matrix44.h rename to Code/Legacy/CryCommon/Cry_Matrix44.h diff --git a/Code/CryEngine/CryCommon/Cry_MatrixDiag.h b/Code/Legacy/CryCommon/Cry_MatrixDiag.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_MatrixDiag.h rename to Code/Legacy/CryCommon/Cry_MatrixDiag.h diff --git a/Code/CryEngine/CryCommon/Cry_Quat.h b/Code/Legacy/CryCommon/Cry_Quat.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Quat.h rename to Code/Legacy/CryCommon/Cry_Quat.h diff --git a/Code/CryEngine/CryCommon/Cry_ValidNumber.h b/Code/Legacy/CryCommon/Cry_ValidNumber.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_ValidNumber.h rename to Code/Legacy/CryCommon/Cry_ValidNumber.h diff --git a/Code/CryEngine/CryCommon/Cry_Vector2.h b/Code/Legacy/CryCommon/Cry_Vector2.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Vector2.h rename to Code/Legacy/CryCommon/Cry_Vector2.h diff --git a/Code/CryEngine/CryCommon/Cry_Vector3.h b/Code/Legacy/CryCommon/Cry_Vector3.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Vector3.h rename to Code/Legacy/CryCommon/Cry_Vector3.h diff --git a/Code/CryEngine/CryCommon/Cry_Vector4.h b/Code/Legacy/CryCommon/Cry_Vector4.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_Vector4.h rename to Code/Legacy/CryCommon/Cry_Vector4.h diff --git a/Code/CryEngine/CryCommon/Cry_XOptimise.h b/Code/Legacy/CryCommon/Cry_XOptimise.h similarity index 100% rename from Code/CryEngine/CryCommon/Cry_XOptimise.h rename to Code/Legacy/CryCommon/Cry_XOptimise.h diff --git a/Code/CryEngine/CryCommon/FrameProfiler.h b/Code/Legacy/CryCommon/FrameProfiler.h similarity index 100% rename from Code/CryEngine/CryCommon/FrameProfiler.h rename to Code/Legacy/CryCommon/FrameProfiler.h diff --git a/Code/CryEngine/CryCommon/FunctorBaseFunction.h b/Code/Legacy/CryCommon/FunctorBaseFunction.h similarity index 100% rename from Code/CryEngine/CryCommon/FunctorBaseFunction.h rename to Code/Legacy/CryCommon/FunctorBaseFunction.h diff --git a/Code/CryEngine/CryCommon/FunctorBaseMember.h b/Code/Legacy/CryCommon/FunctorBaseMember.h similarity index 100% rename from Code/CryEngine/CryCommon/FunctorBaseMember.h rename to Code/Legacy/CryCommon/FunctorBaseMember.h diff --git a/Code/CryEngine/CryCommon/HMDBus.h b/Code/Legacy/CryCommon/HMDBus.h similarity index 100% rename from Code/CryEngine/CryCommon/HMDBus.h rename to Code/Legacy/CryCommon/HMDBus.h diff --git a/Code/CryEngine/CryCommon/HeapAllocator.h b/Code/Legacy/CryCommon/HeapAllocator.h similarity index 100% rename from Code/CryEngine/CryCommon/HeapAllocator.h rename to Code/Legacy/CryCommon/HeapAllocator.h diff --git a/Code/CryEngine/CryCommon/HeightmapUpdateNotificationBus.h b/Code/Legacy/CryCommon/HeightmapUpdateNotificationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/HeightmapUpdateNotificationBus.h rename to Code/Legacy/CryCommon/HeightmapUpdateNotificationBus.h diff --git a/Code/CryEngine/CryCommon/IAudioInterfacesCommonData.h b/Code/Legacy/CryCommon/IAudioInterfacesCommonData.h similarity index 100% rename from Code/CryEngine/CryCommon/IAudioInterfacesCommonData.h rename to Code/Legacy/CryCommon/IAudioInterfacesCommonData.h diff --git a/Code/CryEngine/CryCommon/IAudioSystem.h b/Code/Legacy/CryCommon/IAudioSystem.h similarity index 100% rename from Code/CryEngine/CryCommon/IAudioSystem.h rename to Code/Legacy/CryCommon/IAudioSystem.h diff --git a/Code/CryEngine/CryCommon/ICmdLine.h b/Code/Legacy/CryCommon/ICmdLine.h similarity index 100% rename from Code/CryEngine/CryCommon/ICmdLine.h rename to Code/Legacy/CryCommon/ICmdLine.h diff --git a/Code/CryEngine/CryCommon/IConsole.h b/Code/Legacy/CryCommon/IConsole.h similarity index 100% rename from Code/CryEngine/CryCommon/IConsole.h rename to Code/Legacy/CryCommon/IConsole.h diff --git a/Code/CryEngine/CryCommon/IEntityRenderState.h b/Code/Legacy/CryCommon/IEntityRenderState.h similarity index 100% rename from Code/CryEngine/CryCommon/IEntityRenderState.h rename to Code/Legacy/CryCommon/IEntityRenderState.h diff --git a/Code/CryEngine/CryCommon/IEntityRenderState_info.cpp b/Code/Legacy/CryCommon/IEntityRenderState_info.cpp similarity index 100% rename from Code/CryEngine/CryCommon/IEntityRenderState_info.cpp rename to Code/Legacy/CryCommon/IEntityRenderState_info.cpp diff --git a/Code/CryEngine/CryCommon/IFont.h b/Code/Legacy/CryCommon/IFont.h similarity index 100% rename from Code/CryEngine/CryCommon/IFont.h rename to Code/Legacy/CryCommon/IFont.h diff --git a/Code/CryEngine/CryCommon/IFunctorBase.h b/Code/Legacy/CryCommon/IFunctorBase.h similarity index 100% rename from Code/CryEngine/CryCommon/IFunctorBase.h rename to Code/Legacy/CryCommon/IFunctorBase.h diff --git a/Code/CryEngine/CryCommon/IGem.h b/Code/Legacy/CryCommon/IGem.h similarity index 100% rename from Code/CryEngine/CryCommon/IGem.h rename to Code/Legacy/CryCommon/IGem.h diff --git a/Code/CryEngine/CryCommon/IIndexedMesh.h b/Code/Legacy/CryCommon/IIndexedMesh.h similarity index 100% rename from Code/CryEngine/CryCommon/IIndexedMesh.h rename to Code/Legacy/CryCommon/IIndexedMesh.h diff --git a/Code/CryEngine/CryCommon/IIndexedMesh_info.cpp b/Code/Legacy/CryCommon/IIndexedMesh_info.cpp similarity index 100% rename from Code/CryEngine/CryCommon/IIndexedMesh_info.cpp rename to Code/Legacy/CryCommon/IIndexedMesh_info.cpp diff --git a/Code/CryEngine/CryCommon/ILevelSystem.h b/Code/Legacy/CryCommon/ILevelSystem.h similarity index 100% rename from Code/CryEngine/CryCommon/ILevelSystem.h rename to Code/Legacy/CryCommon/ILevelSystem.h diff --git a/Code/CryEngine/CryCommon/ILocalizationManager.h b/Code/Legacy/CryCommon/ILocalizationManager.h similarity index 100% rename from Code/CryEngine/CryCommon/ILocalizationManager.h rename to Code/Legacy/CryCommon/ILocalizationManager.h diff --git a/Code/CryEngine/CryCommon/ILog.h b/Code/Legacy/CryCommon/ILog.h similarity index 100% rename from Code/CryEngine/CryCommon/ILog.h rename to Code/Legacy/CryCommon/ILog.h diff --git a/Code/CryEngine/CryCommon/IMNM.h b/Code/Legacy/CryCommon/IMNM.h similarity index 100% rename from Code/CryEngine/CryCommon/IMNM.h rename to Code/Legacy/CryCommon/IMNM.h diff --git a/Code/CryEngine/CryCommon/IMaterial.h b/Code/Legacy/CryCommon/IMaterial.h similarity index 100% rename from Code/CryEngine/CryCommon/IMaterial.h rename to Code/Legacy/CryCommon/IMaterial.h diff --git a/Code/CryEngine/CryCommon/IMiniLog.h b/Code/Legacy/CryCommon/IMiniLog.h similarity index 100% rename from Code/CryEngine/CryCommon/IMiniLog.h rename to Code/Legacy/CryCommon/IMiniLog.h diff --git a/Code/CryEngine/CryCommon/IMovieSystem.h b/Code/Legacy/CryCommon/IMovieSystem.h similarity index 100% rename from Code/CryEngine/CryCommon/IMovieSystem.h rename to Code/Legacy/CryCommon/IMovieSystem.h diff --git a/Code/CryEngine/CryCommon/INavigationSystem.h b/Code/Legacy/CryCommon/INavigationSystem.h similarity index 100% rename from Code/CryEngine/CryCommon/INavigationSystem.h rename to Code/Legacy/CryCommon/INavigationSystem.h diff --git a/Code/CryEngine/CryCommon/IPathfinder.h b/Code/Legacy/CryCommon/IPathfinder.h similarity index 100% rename from Code/CryEngine/CryCommon/IPathfinder.h rename to Code/Legacy/CryCommon/IPathfinder.h diff --git a/Code/CryEngine/CryCommon/IPhysics.h b/Code/Legacy/CryCommon/IPhysics.h similarity index 100% rename from Code/CryEngine/CryCommon/IPhysics.h rename to Code/Legacy/CryCommon/IPhysics.h diff --git a/Code/CryEngine/CryCommon/IPostEffectGroup.h b/Code/Legacy/CryCommon/IPostEffectGroup.h similarity index 100% rename from Code/CryEngine/CryCommon/IPostEffectGroup.h rename to Code/Legacy/CryCommon/IPostEffectGroup.h diff --git a/Code/CryEngine/CryCommon/IProcess.h b/Code/Legacy/CryCommon/IProcess.h similarity index 100% rename from Code/CryEngine/CryCommon/IProcess.h rename to Code/Legacy/CryCommon/IProcess.h diff --git a/Code/CryEngine/CryCommon/IReadWriteXMLSink.h b/Code/Legacy/CryCommon/IReadWriteXMLSink.h similarity index 100% rename from Code/CryEngine/CryCommon/IReadWriteXMLSink.h rename to Code/Legacy/CryCommon/IReadWriteXMLSink.h diff --git a/Code/CryEngine/CryCommon/IRenderAuxGeom.h b/Code/Legacy/CryCommon/IRenderAuxGeom.h similarity index 100% rename from Code/CryEngine/CryCommon/IRenderAuxGeom.h rename to Code/Legacy/CryCommon/IRenderAuxGeom.h diff --git a/Code/CryEngine/CryCommon/IRenderMesh.h b/Code/Legacy/CryCommon/IRenderMesh.h similarity index 100% rename from Code/CryEngine/CryCommon/IRenderMesh.h rename to Code/Legacy/CryCommon/IRenderMesh.h diff --git a/Code/CryEngine/CryCommon/IRenderer.h b/Code/Legacy/CryCommon/IRenderer.h similarity index 100% rename from Code/CryEngine/CryCommon/IRenderer.h rename to Code/Legacy/CryCommon/IRenderer.h diff --git a/Code/CryEngine/CryCommon/ISerialize.h b/Code/Legacy/CryCommon/ISerialize.h similarity index 100% rename from Code/CryEngine/CryCommon/ISerialize.h rename to Code/Legacy/CryCommon/ISerialize.h diff --git a/Code/CryEngine/CryCommon/IShader.h b/Code/Legacy/CryCommon/IShader.h similarity index 100% rename from Code/CryEngine/CryCommon/IShader.h rename to Code/Legacy/CryCommon/IShader.h diff --git a/Code/CryEngine/CryCommon/ISplines.h b/Code/Legacy/CryCommon/ISplines.h similarity index 100% rename from Code/CryEngine/CryCommon/ISplines.h rename to Code/Legacy/CryCommon/ISplines.h diff --git a/Code/CryEngine/CryCommon/IStatObj.h b/Code/Legacy/CryCommon/IStatObj.h similarity index 100% rename from Code/CryEngine/CryCommon/IStatObj.h rename to Code/Legacy/CryCommon/IStatObj.h diff --git a/Code/CryEngine/CryCommon/IStereoRenderer.h b/Code/Legacy/CryCommon/IStereoRenderer.h similarity index 100% rename from Code/CryEngine/CryCommon/IStereoRenderer.h rename to Code/Legacy/CryCommon/IStereoRenderer.h diff --git a/Code/CryEngine/CryCommon/ISurfaceType.h b/Code/Legacy/CryCommon/ISurfaceType.h similarity index 100% rename from Code/CryEngine/CryCommon/ISurfaceType.h rename to Code/Legacy/CryCommon/ISurfaceType.h diff --git a/Code/CryEngine/CryCommon/ISystem.h b/Code/Legacy/CryCommon/ISystem.h similarity index 100% rename from Code/CryEngine/CryCommon/ISystem.h rename to Code/Legacy/CryCommon/ISystem.h diff --git a/Code/CryEngine/CryCommon/ITexture.h b/Code/Legacy/CryCommon/ITexture.h similarity index 100% rename from Code/CryEngine/CryCommon/ITexture.h rename to Code/Legacy/CryCommon/ITexture.h diff --git a/Code/CryEngine/CryCommon/ITimer.h b/Code/Legacy/CryCommon/ITimer.h similarity index 100% rename from Code/CryEngine/CryCommon/ITimer.h rename to Code/Legacy/CryCommon/ITimer.h diff --git a/Code/CryEngine/CryCommon/IValidator.h b/Code/Legacy/CryCommon/IValidator.h similarity index 100% rename from Code/CryEngine/CryCommon/IValidator.h rename to Code/Legacy/CryCommon/IValidator.h diff --git a/Code/CryEngine/CryCommon/IViewSystem.h b/Code/Legacy/CryCommon/IViewSystem.h similarity index 100% rename from Code/CryEngine/CryCommon/IViewSystem.h rename to Code/Legacy/CryCommon/IViewSystem.h diff --git a/Code/CryEngine/CryCommon/IWindowMessageHandler.h b/Code/Legacy/CryCommon/IWindowMessageHandler.h similarity index 100% rename from Code/CryEngine/CryCommon/IWindowMessageHandler.h rename to Code/Legacy/CryCommon/IWindowMessageHandler.h diff --git a/Code/CryEngine/CryCommon/IXml.h b/Code/Legacy/CryCommon/IXml.h similarity index 100% rename from Code/CryEngine/CryCommon/IXml.h rename to Code/Legacy/CryCommon/IXml.h diff --git a/Code/CryEngine/CryCommon/LCGRandom.h b/Code/Legacy/CryCommon/LCGRandom.h similarity index 100% rename from Code/CryEngine/CryCommon/LCGRandom.h rename to Code/Legacy/CryCommon/LCGRandom.h diff --git a/Code/CryEngine/CryCommon/LegacyAllocator.h b/Code/Legacy/CryCommon/LegacyAllocator.h similarity index 100% rename from Code/CryEngine/CryCommon/LegacyAllocator.h rename to Code/Legacy/CryCommon/LegacyAllocator.h diff --git a/Code/CryEngine/CryCommon/Linux32Specific.h b/Code/Legacy/CryCommon/Linux32Specific.h similarity index 100% rename from Code/CryEngine/CryCommon/Linux32Specific.h rename to Code/Legacy/CryCommon/Linux32Specific.h diff --git a/Code/CryEngine/CryCommon/Linux64Specific.h b/Code/Legacy/CryCommon/Linux64Specific.h similarity index 100% rename from Code/CryEngine/CryCommon/Linux64Specific.h rename to Code/Legacy/CryCommon/Linux64Specific.h diff --git a/Code/CryEngine/CryCommon/LinuxSpecific.h b/Code/Legacy/CryCommon/LinuxSpecific.h similarity index 100% rename from Code/CryEngine/CryCommon/LinuxSpecific.h rename to Code/Legacy/CryCommon/LinuxSpecific.h diff --git a/Code/CryEngine/CryCommon/Linux_Win32Wrapper.h b/Code/Legacy/CryCommon/Linux_Win32Wrapper.h similarity index 100% rename from Code/CryEngine/CryCommon/Linux_Win32Wrapper.h rename to Code/Legacy/CryCommon/Linux_Win32Wrapper.h diff --git a/Code/CryEngine/CryCommon/LoadScreenBus.h b/Code/Legacy/CryCommon/LoadScreenBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LoadScreenBus.h rename to Code/Legacy/CryCommon/LoadScreenBus.h diff --git a/Code/CryEngine/CryCommon/LocalizationManagerBus.h b/Code/Legacy/CryCommon/LocalizationManagerBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LocalizationManagerBus.h rename to Code/Legacy/CryCommon/LocalizationManagerBus.h diff --git a/Code/CryEngine/CryCommon/LocalizationManagerBus.inl b/Code/Legacy/CryCommon/LocalizationManagerBus.inl similarity index 100% rename from Code/CryEngine/CryCommon/LocalizationManagerBus.inl rename to Code/Legacy/CryCommon/LocalizationManagerBus.inl diff --git a/Code/CryEngine/CryCommon/LyShine/Animation/IUiAnimation.h b/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Animation/IUiAnimation.h rename to Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h b/Code/Legacy/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h b/Code/Legacy/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiAnimateEntityBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiAnimateEntityBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiAnimateEntityBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiAnimateEntityBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiAnimationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiAnimationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiAnimationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiAnimationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiButtonBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiButtonBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiButtonBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiButtonBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiCanvasBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiCanvasBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiCanvasBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiCanvasManagerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasManagerBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiCanvasManagerBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiCanvasManagerBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiCheckboxBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCheckboxBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiCheckboxBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiCheckboxBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiCursorBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCursorBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiCursorBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiCursorBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiDraggableBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDraggableBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiDraggableBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiDraggableBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiDropTargetBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDropTargetBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiDropTargetBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiDropTargetBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiDropdownBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiDropdownBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiDropdownBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiDropdownOptionBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownOptionBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiDropdownOptionBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiDropdownOptionBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiEditorBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiEditorBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiEditorBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiEditorCanvasBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorCanvasBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiEditorCanvasBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiEditorCanvasBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiElementBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiElementBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiElementBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiElementBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiEntityContextBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEntityContextBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiEntityContextBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiEntityContextBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiFaderBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiFaderBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiFaderBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiFaderBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiGameEntityContextBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiGameEntityContextBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiGameEntityContextBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiGameEntityContextBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiImageBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiImageBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiImageBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiImageBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiImageSequenceBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiImageSequenceBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiImageSequenceBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiImageSequenceBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiIndexableImageBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiIndexableImageBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiIndexableImageBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiIndexableImageBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiInitializationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInitializationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiInitializationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiInitializationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiInteractableActionsBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableActionsBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiInteractableActionsBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiInteractableActionsBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiInteractableBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiInteractableBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiInteractableBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiInteractableStatesBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableStatesBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiInteractableStatesBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiInteractableStatesBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiInteractionMaskBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractionMaskBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiInteractionMaskBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiInteractionMaskBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutCellBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutCellBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutColumnBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutColumnBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutColumnBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutColumnBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutControllerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutControllerBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutControllerBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutControllerBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutFitterBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutFitterBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutFitterBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutFitterBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutGridBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutGridBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutGridBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutGridBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutManagerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutManagerBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutManagerBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutManagerBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutRowBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutRowBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiLayoutRowBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiLayoutRowBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiMarkupButtonBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiMarkupButtonBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiMarkupButtonBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiMarkupButtonBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiMaskBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiMaskBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiMaskBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiMaskBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiNavigationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiNavigationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiNavigationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiNavigationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiParticleEmitterBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiParticleEmitterBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiParticleEmitterBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiParticleEmitterBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiRenderBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRenderBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiRenderBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiRenderBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiRenderControlBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRenderControlBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiRenderControlBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiRenderControlBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiScrollBarBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBarBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiScrollBarBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiScrollBarBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiScrollBoxBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBoxBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiScrollBoxBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiScrollBoxBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiScrollableBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollableBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiScrollableBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiScrollableBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiScrollerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollerBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiScrollerBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiScrollerBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiSliderBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiSliderBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiSliderBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiSliderBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiSpawnerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiSpawnerBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiSpawnerBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiSpawnerBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiSystemBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiSystemBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiSystemBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiSystemBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiTextBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTextBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiTextBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiTextBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiTextInputBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTextInputBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiTextInputBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiTextInputBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiTooltipBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiTooltipBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiTooltipBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiTransform2dBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiTransform2dBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiTransformBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiTransformBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/UiVisualBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiVisualBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/UiVisualBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/UiVisualBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h b/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h b/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h rename to Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h diff --git a/Code/CryEngine/CryCommon/LyShine/IDraw2d.h b/Code/Legacy/CryCommon/LyShine/IDraw2d.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/IDraw2d.h rename to Code/Legacy/CryCommon/LyShine/IDraw2d.h diff --git a/Code/CryEngine/CryCommon/LyShine/ILyShine.h b/Code/Legacy/CryCommon/LyShine/ILyShine.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/ILyShine.h rename to Code/Legacy/CryCommon/LyShine/ILyShine.h diff --git a/Code/CryEngine/CryCommon/LyShine/IRenderGraph.h b/Code/Legacy/CryCommon/LyShine/IRenderGraph.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/IRenderGraph.h rename to Code/Legacy/CryCommon/LyShine/IRenderGraph.h diff --git a/Code/CryEngine/CryCommon/LyShine/ISprite.h b/Code/Legacy/CryCommon/LyShine/ISprite.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/ISprite.h rename to Code/Legacy/CryCommon/LyShine/ISprite.h diff --git a/Code/CryEngine/CryCommon/LyShine/UiAssetTypes.h b/Code/Legacy/CryCommon/LyShine/UiAssetTypes.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/UiAssetTypes.h rename to Code/Legacy/CryCommon/LyShine/UiAssetTypes.h diff --git a/Code/CryEngine/CryCommon/LyShine/UiBase.h b/Code/Legacy/CryCommon/LyShine/UiBase.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/UiBase.h rename to Code/Legacy/CryCommon/LyShine/UiBase.h diff --git a/Code/CryEngine/CryCommon/LyShine/UiComponentTypes.h b/Code/Legacy/CryCommon/LyShine/UiComponentTypes.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/UiComponentTypes.h rename to Code/Legacy/CryCommon/LyShine/UiComponentTypes.h diff --git a/Code/CryEngine/CryCommon/LyShine/UiEntityContext.h b/Code/Legacy/CryCommon/LyShine/UiEntityContext.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/UiEntityContext.h rename to Code/Legacy/CryCommon/LyShine/UiEntityContext.h diff --git a/Code/CryEngine/CryCommon/LyShine/UiLayoutCellBase.h b/Code/Legacy/CryCommon/LyShine/UiLayoutCellBase.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/UiLayoutCellBase.h rename to Code/Legacy/CryCommon/LyShine/UiLayoutCellBase.h diff --git a/Code/CryEngine/CryCommon/LyShine/UiSerializeHelpers.h b/Code/Legacy/CryCommon/LyShine/UiSerializeHelpers.h similarity index 100% rename from Code/CryEngine/CryCommon/LyShine/UiSerializeHelpers.h rename to Code/Legacy/CryCommon/LyShine/UiSerializeHelpers.h diff --git a/Code/CryEngine/CryCommon/MTPseudoRandom.cpp b/Code/Legacy/CryCommon/MTPseudoRandom.cpp similarity index 100% rename from Code/CryEngine/CryCommon/MTPseudoRandom.cpp rename to Code/Legacy/CryCommon/MTPseudoRandom.cpp diff --git a/Code/CryEngine/CryCommon/MTPseudoRandom.h b/Code/Legacy/CryCommon/MTPseudoRandom.h similarity index 100% rename from Code/CryEngine/CryCommon/MTPseudoRandom.h rename to Code/Legacy/CryCommon/MTPseudoRandom.h diff --git a/Code/CryEngine/CryCommon/MacSpecific.h b/Code/Legacy/CryCommon/MacSpecific.h similarity index 100% rename from Code/CryEngine/CryCommon/MacSpecific.h rename to Code/Legacy/CryCommon/MacSpecific.h diff --git a/Code/CryEngine/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h rename to Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h diff --git a/Code/CryEngine/CryCommon/Maestro/Bus/EditorSequenceBus.h b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceBus.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Bus/EditorSequenceBus.h rename to Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceBus.h diff --git a/Code/CryEngine/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h rename to Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h diff --git a/Code/CryEngine/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h rename to Code/Legacy/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h diff --git a/Code/CryEngine/CryCommon/Maestro/Bus/SequenceComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/SequenceComponentBus.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Bus/SequenceComponentBus.h rename to Code/Legacy/CryCommon/Maestro/Bus/SequenceComponentBus.h diff --git a/Code/CryEngine/CryCommon/Maestro/Types/AnimNodeType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Types/AnimNodeType.h rename to Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h diff --git a/Code/CryEngine/CryCommon/Maestro/Types/AnimParamType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Types/AnimParamType.h rename to Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h diff --git a/Code/CryEngine/CryCommon/Maestro/Types/AnimValue.h b/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Types/AnimValue.h rename to Code/Legacy/CryCommon/Maestro/Types/AnimValue.h diff --git a/Code/CryEngine/CryCommon/Maestro/Types/AnimValueType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Types/AnimValueType.h rename to Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h diff --git a/Code/CryEngine/CryCommon/Maestro/Types/AssetBlendKey.h b/Code/Legacy/CryCommon/Maestro/Types/AssetBlendKey.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Types/AssetBlendKey.h rename to Code/Legacy/CryCommon/Maestro/Types/AssetBlendKey.h diff --git a/Code/CryEngine/CryCommon/Maestro/Types/AssetBlends.h b/Code/Legacy/CryCommon/Maestro/Types/AssetBlends.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Types/AssetBlends.h rename to Code/Legacy/CryCommon/Maestro/Types/AssetBlends.h diff --git a/Code/CryEngine/CryCommon/Maestro/Types/SequenceType.h b/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h similarity index 100% rename from Code/CryEngine/CryCommon/Maestro/Types/SequenceType.h rename to Code/Legacy/CryCommon/Maestro/Types/SequenceType.h diff --git a/Code/CryEngine/CryCommon/MainThreadRenderRequestBus.h b/Code/Legacy/CryCommon/MainThreadRenderRequestBus.h similarity index 100% rename from Code/CryEngine/CryCommon/MainThreadRenderRequestBus.h rename to Code/Legacy/CryCommon/MainThreadRenderRequestBus.h diff --git a/Code/CryEngine/CryCommon/MathConversion.h b/Code/Legacy/CryCommon/MathConversion.h similarity index 100% rename from Code/CryEngine/CryCommon/MathConversion.h rename to Code/Legacy/CryCommon/MathConversion.h diff --git a/Code/CryEngine/CryCommon/MemoryAccess.h b/Code/Legacy/CryCommon/MemoryAccess.h similarity index 100% rename from Code/CryEngine/CryCommon/MemoryAccess.h rename to Code/Legacy/CryCommon/MemoryAccess.h diff --git a/Code/CryEngine/CryCommon/MetaUtils.h b/Code/Legacy/CryCommon/MetaUtils.h similarity index 100% rename from Code/CryEngine/CryCommon/MetaUtils.h rename to Code/Legacy/CryCommon/MetaUtils.h diff --git a/Code/CryEngine/CryCommon/MicrophoneBus.h b/Code/Legacy/CryCommon/MicrophoneBus.h similarity index 100% rename from Code/CryEngine/CryCommon/MicrophoneBus.h rename to Code/Legacy/CryCommon/MicrophoneBus.h diff --git a/Code/CryEngine/CryCommon/MiniQueue.h b/Code/Legacy/CryCommon/MiniQueue.h similarity index 100% rename from Code/CryEngine/CryCommon/MiniQueue.h rename to Code/Legacy/CryCommon/MiniQueue.h diff --git a/Code/CryEngine/CryCommon/Mocks/IAudioSystemMock.h b/Code/Legacy/CryCommon/Mocks/IAudioSystemMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/IAudioSystemMock.h rename to Code/Legacy/CryCommon/Mocks/IAudioSystemMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/ICVarMock.h b/Code/Legacy/CryCommon/Mocks/ICVarMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/ICVarMock.h rename to Code/Legacy/CryCommon/Mocks/ICVarMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/IConsoleMock.h b/Code/Legacy/CryCommon/Mocks/IConsoleMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/IConsoleMock.h rename to Code/Legacy/CryCommon/Mocks/IConsoleMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/ICryPakMock.h b/Code/Legacy/CryCommon/Mocks/ICryPakMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/ICryPakMock.h rename to Code/Legacy/CryCommon/Mocks/ICryPakMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/ILogMock.h b/Code/Legacy/CryCommon/Mocks/ILogMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/ILogMock.h rename to Code/Legacy/CryCommon/Mocks/ILogMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/IRemoteConsoleMock.h b/Code/Legacy/CryCommon/Mocks/IRemoteConsoleMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/IRemoteConsoleMock.h rename to Code/Legacy/CryCommon/Mocks/IRemoteConsoleMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/IRendererMock.h b/Code/Legacy/CryCommon/Mocks/IRendererMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/IRendererMock.h rename to Code/Legacy/CryCommon/Mocks/IRendererMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/ISystemMock.h b/Code/Legacy/CryCommon/Mocks/ISystemMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/ISystemMock.h rename to Code/Legacy/CryCommon/Mocks/ISystemMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/ITextureMock.h b/Code/Legacy/CryCommon/Mocks/ITextureMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/ITextureMock.h rename to Code/Legacy/CryCommon/Mocks/ITextureMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/ITimerMock.h b/Code/Legacy/CryCommon/Mocks/ITimerMock.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/ITimerMock.h rename to Code/Legacy/CryCommon/Mocks/ITimerMock.h diff --git a/Code/CryEngine/CryCommon/Mocks/StubTimer.h b/Code/Legacy/CryCommon/Mocks/StubTimer.h similarity index 100% rename from Code/CryEngine/CryCommon/Mocks/StubTimer.h rename to Code/Legacy/CryCommon/Mocks/StubTimer.h diff --git a/Code/CryEngine/CryCommon/MultiThread.h b/Code/Legacy/CryCommon/MultiThread.h similarity index 100% rename from Code/CryEngine/CryCommon/MultiThread.h rename to Code/Legacy/CryCommon/MultiThread.h diff --git a/Code/CryEngine/CryCommon/MultiThread_Containers.h b/Code/Legacy/CryCommon/MultiThread_Containers.h similarity index 100% rename from Code/CryEngine/CryCommon/MultiThread_Containers.h rename to Code/Legacy/CryCommon/MultiThread_Containers.h diff --git a/Code/CryEngine/CryCommon/NullAudioSystem.h b/Code/Legacy/CryCommon/NullAudioSystem.h similarity index 100% rename from Code/CryEngine/CryCommon/NullAudioSystem.h rename to Code/Legacy/CryCommon/NullAudioSystem.h diff --git a/Code/CryEngine/CryCommon/Options.h b/Code/Legacy/CryCommon/Options.h similarity index 100% rename from Code/CryEngine/CryCommon/Options.h rename to Code/Legacy/CryCommon/Options.h diff --git a/Code/CryEngine/CryCommon/PNoise3.h b/Code/Legacy/CryCommon/PNoise3.h similarity index 100% rename from Code/CryEngine/CryCommon/PNoise3.h rename to Code/Legacy/CryCommon/PNoise3.h diff --git a/Code/CryEngine/CryCommon/PoolAllocator.h b/Code/Legacy/CryCommon/PoolAllocator.h similarity index 100% rename from Code/CryEngine/CryCommon/PoolAllocator.h rename to Code/Legacy/CryCommon/PoolAllocator.h diff --git a/Code/CryEngine/CryCommon/ProjectDefines.h b/Code/Legacy/CryCommon/ProjectDefines.h similarity index 99% rename from Code/CryEngine/CryCommon/ProjectDefines.h rename to Code/Legacy/CryCommon/ProjectDefines.h index 097191c039..8cf4c472e0 100644 --- a/Code/CryEngine/CryCommon/ProjectDefines.h +++ b/Code/Legacy/CryCommon/ProjectDefines.h @@ -60,7 +60,6 @@ typedef uint32 vtx_idx; #endif -// see http://wiki/bin/view/CryEngine/TerrainTexCompression for more details on this // 0=off, 1=on #define TERRAIN_USE_CIE_COLORSPACE 0 diff --git a/Code/CryEngine/CryCommon/Random.h b/Code/Legacy/CryCommon/Random.h similarity index 100% rename from Code/CryEngine/CryCommon/Random.h rename to Code/Legacy/CryCommon/Random.h diff --git a/Code/CryEngine/CryCommon/Range.h b/Code/Legacy/CryCommon/Range.h similarity index 100% rename from Code/CryEngine/CryCommon/Range.h rename to Code/Legacy/CryCommon/Range.h diff --git a/Code/CryEngine/CryCommon/RenderBus.h b/Code/Legacy/CryCommon/RenderBus.h similarity index 100% rename from Code/CryEngine/CryCommon/RenderBus.h rename to Code/Legacy/CryCommon/RenderBus.h diff --git a/Code/CryEngine/CryCommon/SFunctor.h b/Code/Legacy/CryCommon/SFunctor.h similarity index 100% rename from Code/CryEngine/CryCommon/SFunctor.h rename to Code/Legacy/CryCommon/SFunctor.h diff --git a/Code/CryEngine/CryCommon/ScopedVariableSetter.h b/Code/Legacy/CryCommon/ScopedVariableSetter.h similarity index 100% rename from Code/CryEngine/CryCommon/ScopedVariableSetter.h rename to Code/Legacy/CryCommon/ScopedVariableSetter.h diff --git a/Code/CryEngine/CryCommon/SerializationTypes.h b/Code/Legacy/CryCommon/SerializationTypes.h similarity index 100% rename from Code/CryEngine/CryCommon/SerializationTypes.h rename to Code/Legacy/CryCommon/SerializationTypes.h diff --git a/Code/CryEngine/CryCommon/SerializeFwd.h b/Code/Legacy/CryCommon/SerializeFwd.h similarity index 100% rename from Code/CryEngine/CryCommon/SerializeFwd.h rename to Code/Legacy/CryCommon/SerializeFwd.h diff --git a/Code/CryEngine/CryCommon/SimpleSerialize.h b/Code/Legacy/CryCommon/SimpleSerialize.h similarity index 100% rename from Code/CryEngine/CryCommon/SimpleSerialize.h rename to Code/Legacy/CryCommon/SimpleSerialize.h diff --git a/Code/CryEngine/CryCommon/StatObjBus.h b/Code/Legacy/CryCommon/StatObjBus.h similarity index 100% rename from Code/CryEngine/CryCommon/StatObjBus.h rename to Code/Legacy/CryCommon/StatObjBus.h diff --git a/Code/CryEngine/CryCommon/StaticInstance.h b/Code/Legacy/CryCommon/StaticInstance.h similarity index 100% rename from Code/CryEngine/CryCommon/StaticInstance.h rename to Code/Legacy/CryCommon/StaticInstance.h diff --git a/Code/CryEngine/CryCommon/StereoRendererBus.h b/Code/Legacy/CryCommon/StereoRendererBus.h similarity index 100% rename from Code/CryEngine/CryCommon/StereoRendererBus.h rename to Code/Legacy/CryCommon/StereoRendererBus.h diff --git a/Code/CryEngine/CryCommon/StlUtils.h b/Code/Legacy/CryCommon/StlUtils.h similarity index 100% rename from Code/CryEngine/CryCommon/StlUtils.h rename to Code/Legacy/CryCommon/StlUtils.h diff --git a/Code/CryEngine/CryCommon/StringUtils.h b/Code/Legacy/CryCommon/StringUtils.h similarity index 100% rename from Code/CryEngine/CryCommon/StringUtils.h rename to Code/Legacy/CryCommon/StringUtils.h diff --git a/Code/CryEngine/CryCommon/Synchronization.h b/Code/Legacy/CryCommon/Synchronization.h similarity index 100% rename from Code/CryEngine/CryCommon/Synchronization.h rename to Code/Legacy/CryCommon/Synchronization.h diff --git a/Code/CryEngine/CryCommon/Tarray.h b/Code/Legacy/CryCommon/Tarray.h similarity index 100% rename from Code/CryEngine/CryCommon/Tarray.h rename to Code/Legacy/CryCommon/Tarray.h diff --git a/Code/CryEngine/CryCommon/TimeValue.h b/Code/Legacy/CryCommon/TimeValue.h similarity index 100% rename from Code/CryEngine/CryCommon/TimeValue.h rename to Code/Legacy/CryCommon/TimeValue.h diff --git a/Code/CryEngine/CryCommon/TimeValue_info.h b/Code/Legacy/CryCommon/TimeValue_info.h similarity index 100% rename from Code/CryEngine/CryCommon/TimeValue_info.h rename to Code/Legacy/CryCommon/TimeValue_info.h diff --git a/Code/CryEngine/CryCommon/Timer.h b/Code/Legacy/CryCommon/Timer.h similarity index 100% rename from Code/CryEngine/CryCommon/Timer.h rename to Code/Legacy/CryCommon/Timer.h diff --git a/Code/CryEngine/CryCommon/TypeInfo_decl.h b/Code/Legacy/CryCommon/TypeInfo_decl.h similarity index 100% rename from Code/CryEngine/CryCommon/TypeInfo_decl.h rename to Code/Legacy/CryCommon/TypeInfo_decl.h diff --git a/Code/CryEngine/CryCommon/TypeInfo_impl.h b/Code/Legacy/CryCommon/TypeInfo_impl.h similarity index 100% rename from Code/CryEngine/CryCommon/TypeInfo_impl.h rename to Code/Legacy/CryCommon/TypeInfo_impl.h diff --git a/Code/CryEngine/CryCommon/UnicodeBinding.h b/Code/Legacy/CryCommon/UnicodeBinding.h similarity index 100% rename from Code/CryEngine/CryCommon/UnicodeBinding.h rename to Code/Legacy/CryCommon/UnicodeBinding.h diff --git a/Code/CryEngine/CryCommon/UnicodeEncoding.h b/Code/Legacy/CryCommon/UnicodeEncoding.h similarity index 100% rename from Code/CryEngine/CryCommon/UnicodeEncoding.h rename to Code/Legacy/CryCommon/UnicodeEncoding.h diff --git a/Code/CryEngine/CryCommon/UnicodeFunctions.h b/Code/Legacy/CryCommon/UnicodeFunctions.h similarity index 100% rename from Code/CryEngine/CryCommon/UnicodeFunctions.h rename to Code/Legacy/CryCommon/UnicodeFunctions.h diff --git a/Code/CryEngine/CryCommon/UnicodeIterator.h b/Code/Legacy/CryCommon/UnicodeIterator.h similarity index 100% rename from Code/CryEngine/CryCommon/UnicodeIterator.h rename to Code/Legacy/CryCommon/UnicodeIterator.h diff --git a/Code/CryEngine/CryCommon/VRCommon.h b/Code/Legacy/CryCommon/VRCommon.h similarity index 100% rename from Code/CryEngine/CryCommon/VRCommon.h rename to Code/Legacy/CryCommon/VRCommon.h diff --git a/Code/CryEngine/CryCommon/VectorMap.h b/Code/Legacy/CryCommon/VectorMap.h similarity index 100% rename from Code/CryEngine/CryCommon/VectorMap.h rename to Code/Legacy/CryCommon/VectorMap.h diff --git a/Code/CryEngine/CryCommon/VectorSet.h b/Code/Legacy/CryCommon/VectorSet.h similarity index 100% rename from Code/CryEngine/CryCommon/VectorSet.h rename to Code/Legacy/CryCommon/VectorSet.h diff --git a/Code/CryEngine/CryCommon/Vertex.h b/Code/Legacy/CryCommon/Vertex.h similarity index 100% rename from Code/CryEngine/CryCommon/Vertex.h rename to Code/Legacy/CryCommon/Vertex.h diff --git a/Code/CryEngine/CryCommon/VertexFormats.h b/Code/Legacy/CryCommon/VertexFormats.h similarity index 100% rename from Code/CryEngine/CryCommon/VertexFormats.h rename to Code/Legacy/CryCommon/VertexFormats.h diff --git a/Code/CryEngine/CryCommon/Win32specific.h b/Code/Legacy/CryCommon/Win32specific.h similarity index 100% rename from Code/CryEngine/CryCommon/Win32specific.h rename to Code/Legacy/CryCommon/Win32specific.h diff --git a/Code/CryEngine/CryCommon/Win64specific.h b/Code/Legacy/CryCommon/Win64specific.h similarity index 100% rename from Code/CryEngine/CryCommon/Win64specific.h rename to Code/Legacy/CryCommon/Win64specific.h diff --git a/Code/CryEngine/CryCommon/WinBase.cpp b/Code/Legacy/CryCommon/WinBase.cpp similarity index 100% rename from Code/CryEngine/CryCommon/WinBase.cpp rename to Code/Legacy/CryCommon/WinBase.cpp diff --git a/Code/CryEngine/CryCommon/XMLBinaryHeaders.h b/Code/Legacy/CryCommon/XMLBinaryHeaders.h similarity index 100% rename from Code/CryEngine/CryCommon/XMLBinaryHeaders.h rename to Code/Legacy/CryCommon/XMLBinaryHeaders.h diff --git a/Code/CryEngine/CryCommon/crycommon_files.cmake b/Code/Legacy/CryCommon/crycommon_files.cmake similarity index 100% rename from Code/CryEngine/CryCommon/crycommon_files.cmake rename to Code/Legacy/CryCommon/crycommon_files.cmake diff --git a/Code/CryEngine/CryCommon/crycommon_testing_files.cmake b/Code/Legacy/CryCommon/crycommon_testing_files.cmake similarity index 100% rename from Code/CryEngine/CryCommon/crycommon_testing_files.cmake rename to Code/Legacy/CryCommon/crycommon_testing_files.cmake diff --git a/Code/CryEngine/CryCommon/iOSSpecific.h b/Code/Legacy/CryCommon/iOSSpecific.h similarity index 100% rename from Code/CryEngine/CryCommon/iOSSpecific.h rename to Code/Legacy/CryCommon/iOSSpecific.h diff --git a/Code/CryEngine/CryCommon/physinterface.h b/Code/Legacy/CryCommon/physinterface.h similarity index 100% rename from Code/CryEngine/CryCommon/physinterface.h rename to Code/Legacy/CryCommon/physinterface.h diff --git a/Code/CryEngine/CryCommon/platform.h b/Code/Legacy/CryCommon/platform.h similarity index 100% rename from Code/CryEngine/CryCommon/platform.h rename to Code/Legacy/CryCommon/platform.h diff --git a/Code/CryEngine/CryCommon/platform_impl.cpp b/Code/Legacy/CryCommon/platform_impl.cpp similarity index 100% rename from Code/CryEngine/CryCommon/platform_impl.cpp rename to Code/Legacy/CryCommon/platform_impl.cpp diff --git a/Code/CryEngine/CryCommon/primitives.h b/Code/Legacy/CryCommon/primitives.h similarity index 100% rename from Code/CryEngine/CryCommon/primitives.h rename to Code/Legacy/CryCommon/primitives.h diff --git a/Code/CryEngine/CryCommon/smartptr.h b/Code/Legacy/CryCommon/smartptr.h similarity index 100% rename from Code/CryEngine/CryCommon/smartptr.h rename to Code/Legacy/CryCommon/smartptr.h diff --git a/Code/CryEngine/CryCommon/stridedptr.h b/Code/Legacy/CryCommon/stridedptr.h similarity index 100% rename from Code/CryEngine/CryCommon/stridedptr.h rename to Code/Legacy/CryCommon/stridedptr.h diff --git a/Code/CryEngine/CrySystem/AZCoreLogSink.h b/Code/Legacy/CrySystem/AZCoreLogSink.h similarity index 100% rename from Code/CryEngine/CrySystem/AZCoreLogSink.h rename to Code/Legacy/CrySystem/AZCoreLogSink.h diff --git a/Code/CryEngine/CrySystem/AZCrySystemInitLogSink.cpp b/Code/Legacy/CrySystem/AZCrySystemInitLogSink.cpp similarity index 100% rename from Code/CryEngine/CrySystem/AZCrySystemInitLogSink.cpp rename to Code/Legacy/CrySystem/AZCrySystemInitLogSink.cpp diff --git a/Code/CryEngine/CrySystem/AZCrySystemInitLogSink.h b/Code/Legacy/CrySystem/AZCrySystemInitLogSink.h similarity index 100% rename from Code/CryEngine/CrySystem/AZCrySystemInitLogSink.h rename to Code/Legacy/CrySystem/AZCrySystemInitLogSink.h diff --git a/Code/CryEngine/CrySystem/CMakeLists.txt b/Code/Legacy/CrySystem/CMakeLists.txt similarity index 100% rename from Code/CryEngine/CrySystem/CMakeLists.txt rename to Code/Legacy/CrySystem/CMakeLists.txt diff --git a/Code/CryEngine/CrySystem/CmdLine.cpp b/Code/Legacy/CrySystem/CmdLine.cpp similarity index 100% rename from Code/CryEngine/CrySystem/CmdLine.cpp rename to Code/Legacy/CrySystem/CmdLine.cpp diff --git a/Code/CryEngine/CrySystem/CmdLine.h b/Code/Legacy/CrySystem/CmdLine.h similarity index 100% rename from Code/CryEngine/CrySystem/CmdLine.h rename to Code/Legacy/CrySystem/CmdLine.h diff --git a/Code/CryEngine/CrySystem/CmdLineArg.cpp b/Code/Legacy/CrySystem/CmdLineArg.cpp similarity index 100% rename from Code/CryEngine/CrySystem/CmdLineArg.cpp rename to Code/Legacy/CrySystem/CmdLineArg.cpp diff --git a/Code/CryEngine/CrySystem/CmdLineArg.h b/Code/Legacy/CrySystem/CmdLineArg.h similarity index 100% rename from Code/CryEngine/CrySystem/CmdLineArg.h rename to Code/Legacy/CrySystem/CmdLineArg.h diff --git a/Code/CryEngine/CrySystem/ConsoleBatchFile.cpp b/Code/Legacy/CrySystem/ConsoleBatchFile.cpp similarity index 100% rename from Code/CryEngine/CrySystem/ConsoleBatchFile.cpp rename to Code/Legacy/CrySystem/ConsoleBatchFile.cpp diff --git a/Code/CryEngine/CrySystem/ConsoleBatchFile.h b/Code/Legacy/CrySystem/ConsoleBatchFile.h similarity index 100% rename from Code/CryEngine/CrySystem/ConsoleBatchFile.h rename to Code/Legacy/CrySystem/ConsoleBatchFile.h diff --git a/Code/CryEngine/CrySystem/ConsoleHelpGen.cpp b/Code/Legacy/CrySystem/ConsoleHelpGen.cpp similarity index 100% rename from Code/CryEngine/CrySystem/ConsoleHelpGen.cpp rename to Code/Legacy/CrySystem/ConsoleHelpGen.cpp diff --git a/Code/CryEngine/CrySystem/ConsoleHelpGen.h b/Code/Legacy/CrySystem/ConsoleHelpGen.h similarity index 100% rename from Code/CryEngine/CrySystem/ConsoleHelpGen.h rename to Code/Legacy/CrySystem/ConsoleHelpGen.h diff --git a/Code/CryEngine/CrySystem/CrySystem_precompiled.h b/Code/Legacy/CrySystem/CrySystem_precompiled.h similarity index 100% rename from Code/CryEngine/CrySystem/CrySystem_precompiled.h rename to Code/Legacy/CrySystem/CrySystem_precompiled.h diff --git a/Code/CryEngine/CrySystem/DebugCallStack.cpp b/Code/Legacy/CrySystem/DebugCallStack.cpp similarity index 100% rename from Code/CryEngine/CrySystem/DebugCallStack.cpp rename to Code/Legacy/CrySystem/DebugCallStack.cpp diff --git a/Code/CryEngine/CrySystem/DebugCallStack.h b/Code/Legacy/CrySystem/DebugCallStack.h similarity index 100% rename from Code/CryEngine/CrySystem/DebugCallStack.h rename to Code/Legacy/CrySystem/DebugCallStack.h diff --git a/Code/CryEngine/CrySystem/DllMain.cpp b/Code/Legacy/CrySystem/DllMain.cpp similarity index 100% rename from Code/CryEngine/CrySystem/DllMain.cpp rename to Code/Legacy/CrySystem/DllMain.cpp diff --git a/Code/CryEngine/CrySystem/Huffman.cpp b/Code/Legacy/CrySystem/Huffman.cpp similarity index 100% rename from Code/CryEngine/CrySystem/Huffman.cpp rename to Code/Legacy/CrySystem/Huffman.cpp diff --git a/Code/CryEngine/CrySystem/Huffman.h b/Code/Legacy/CrySystem/Huffman.h similarity index 100% rename from Code/CryEngine/CrySystem/Huffman.h rename to Code/Legacy/CrySystem/Huffman.h diff --git a/Code/CryEngine/CrySystem/IDebugCallStack.cpp b/Code/Legacy/CrySystem/IDebugCallStack.cpp similarity index 100% rename from Code/CryEngine/CrySystem/IDebugCallStack.cpp rename to Code/Legacy/CrySystem/IDebugCallStack.cpp diff --git a/Code/CryEngine/CrySystem/IDebugCallStack.h b/Code/Legacy/CrySystem/IDebugCallStack.h similarity index 100% rename from Code/CryEngine/CrySystem/IDebugCallStack.h rename to Code/Legacy/CrySystem/IDebugCallStack.h diff --git a/Code/CryEngine/CrySystem/LevelSystem/LevelSystem.cpp b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp similarity index 100% rename from Code/CryEngine/CrySystem/LevelSystem/LevelSystem.cpp rename to Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp diff --git a/Code/CryEngine/CrySystem/LevelSystem/LevelSystem.h b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.h similarity index 100% rename from Code/CryEngine/CrySystem/LevelSystem/LevelSystem.h rename to Code/Legacy/CrySystem/LevelSystem/LevelSystem.h diff --git a/Code/CryEngine/CrySystem/LevelSystem/SpawnableLevelSystem.cpp b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp similarity index 100% rename from Code/CryEngine/CrySystem/LevelSystem/SpawnableLevelSystem.cpp rename to Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp diff --git a/Code/CryEngine/CrySystem/LevelSystem/SpawnableLevelSystem.h b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h similarity index 100% rename from Code/CryEngine/CrySystem/LevelSystem/SpawnableLevelSystem.h rename to Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h diff --git a/Code/CryEngine/CrySystem/LocalizedStringManager.cpp b/Code/Legacy/CrySystem/LocalizedStringManager.cpp similarity index 100% rename from Code/CryEngine/CrySystem/LocalizedStringManager.cpp rename to Code/Legacy/CrySystem/LocalizedStringManager.cpp diff --git a/Code/CryEngine/CrySystem/LocalizedStringManager.h b/Code/Legacy/CrySystem/LocalizedStringManager.h similarity index 100% rename from Code/CryEngine/CrySystem/LocalizedStringManager.h rename to Code/Legacy/CrySystem/LocalizedStringManager.h diff --git a/Code/CryEngine/CrySystem/Log.cpp b/Code/Legacy/CrySystem/Log.cpp similarity index 100% rename from Code/CryEngine/CrySystem/Log.cpp rename to Code/Legacy/CrySystem/Log.cpp diff --git a/Code/CryEngine/CrySystem/Log.h b/Code/Legacy/CrySystem/Log.h similarity index 100% rename from Code/CryEngine/CrySystem/Log.h rename to Code/Legacy/CrySystem/Log.h diff --git a/Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole.cpp b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.cpp similarity index 100% rename from Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole.cpp rename to Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.cpp diff --git a/Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole.h b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h similarity index 100% rename from Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole.h rename to Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h diff --git a/Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole_impl.inl b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_impl.inl similarity index 100% rename from Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole_impl.inl rename to Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_impl.inl diff --git a/Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole_none.inl b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_none.inl similarity index 100% rename from Code/CryEngine/CrySystem/RemoteConsole/RemoteConsole_none.inl rename to Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_none.inl diff --git a/Code/CryEngine/CrySystem/SimpleStringPool.h b/Code/Legacy/CrySystem/SimpleStringPool.h similarity index 100% rename from Code/CryEngine/CrySystem/SimpleStringPool.h rename to Code/Legacy/CrySystem/SimpleStringPool.h diff --git a/Code/CryEngine/CrySystem/System.cpp b/Code/Legacy/CrySystem/System.cpp similarity index 100% rename from Code/CryEngine/CrySystem/System.cpp rename to Code/Legacy/CrySystem/System.cpp diff --git a/Code/CryEngine/CrySystem/System.h b/Code/Legacy/CrySystem/System.h similarity index 100% rename from Code/CryEngine/CrySystem/System.h rename to Code/Legacy/CrySystem/System.h diff --git a/Code/CryEngine/CrySystem/SystemCFG.cpp b/Code/Legacy/CrySystem/SystemCFG.cpp similarity index 100% rename from Code/CryEngine/CrySystem/SystemCFG.cpp rename to Code/Legacy/CrySystem/SystemCFG.cpp diff --git a/Code/CryEngine/CrySystem/SystemCFG.h b/Code/Legacy/CrySystem/SystemCFG.h similarity index 100% rename from Code/CryEngine/CrySystem/SystemCFG.h rename to Code/Legacy/CrySystem/SystemCFG.h diff --git a/Code/CryEngine/CrySystem/SystemEventDispatcher.cpp b/Code/Legacy/CrySystem/SystemEventDispatcher.cpp similarity index 100% rename from Code/CryEngine/CrySystem/SystemEventDispatcher.cpp rename to Code/Legacy/CrySystem/SystemEventDispatcher.cpp diff --git a/Code/CryEngine/CrySystem/SystemEventDispatcher.h b/Code/Legacy/CrySystem/SystemEventDispatcher.h similarity index 100% rename from Code/CryEngine/CrySystem/SystemEventDispatcher.h rename to Code/Legacy/CrySystem/SystemEventDispatcher.h diff --git a/Code/CryEngine/CrySystem/SystemInit.cpp b/Code/Legacy/CrySystem/SystemInit.cpp similarity index 100% rename from Code/CryEngine/CrySystem/SystemInit.cpp rename to Code/Legacy/CrySystem/SystemInit.cpp diff --git a/Code/CryEngine/CrySystem/SystemWin32.cpp b/Code/Legacy/CrySystem/SystemWin32.cpp similarity index 99% rename from Code/CryEngine/CrySystem/SystemWin32.cpp rename to Code/Legacy/CrySystem/SystemWin32.cpp index 531c927095..3dbac48321 100644 --- a/Code/CryEngine/CrySystem/SystemWin32.cpp +++ b/Code/Legacy/CrySystem/SystemWin32.cpp @@ -67,8 +67,7 @@ __pragma(comment(lib, "Winmm.lib")) const char g_szGroupCore[] = "CryEngine"; const char* g_szModuleGroups[][2] = { {"Editor.exe", g_szGroupCore}, - {"CrySystem.dll", g_szGroupCore}, - {"CryFont.dll", g_szGroupCore}, + {"CrySystem.dll", g_szGroupCore} }; ////////////////////////////////////////////////////////////////////////// diff --git a/Code/CryEngine/CrySystem/Timer.cpp b/Code/Legacy/CrySystem/Timer.cpp similarity index 100% rename from Code/CryEngine/CrySystem/Timer.cpp rename to Code/Legacy/CrySystem/Timer.cpp diff --git a/Code/CryEngine/CrySystem/Timer.h b/Code/Legacy/CrySystem/Timer.h similarity index 100% rename from Code/CryEngine/CrySystem/Timer.h rename to Code/Legacy/CrySystem/Timer.h diff --git a/Code/CryEngine/CrySystem/ViewSystem/DebugCamera.cpp b/Code/Legacy/CrySystem/ViewSystem/DebugCamera.cpp similarity index 100% rename from Code/CryEngine/CrySystem/ViewSystem/DebugCamera.cpp rename to Code/Legacy/CrySystem/ViewSystem/DebugCamera.cpp diff --git a/Code/CryEngine/CrySystem/ViewSystem/DebugCamera.h b/Code/Legacy/CrySystem/ViewSystem/DebugCamera.h similarity index 100% rename from Code/CryEngine/CrySystem/ViewSystem/DebugCamera.h rename to Code/Legacy/CrySystem/ViewSystem/DebugCamera.h diff --git a/Code/CryEngine/CrySystem/ViewSystem/View.cpp b/Code/Legacy/CrySystem/ViewSystem/View.cpp similarity index 100% rename from Code/CryEngine/CrySystem/ViewSystem/View.cpp rename to Code/Legacy/CrySystem/ViewSystem/View.cpp diff --git a/Code/CryEngine/CrySystem/ViewSystem/View.h b/Code/Legacy/CrySystem/ViewSystem/View.h similarity index 100% rename from Code/CryEngine/CrySystem/ViewSystem/View.h rename to Code/Legacy/CrySystem/ViewSystem/View.h diff --git a/Code/CryEngine/CrySystem/ViewSystem/ViewSystem.cpp b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp similarity index 100% rename from Code/CryEngine/CrySystem/ViewSystem/ViewSystem.cpp rename to Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp diff --git a/Code/CryEngine/CrySystem/ViewSystem/ViewSystem.h b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h similarity index 100% rename from Code/CryEngine/CrySystem/ViewSystem/ViewSystem.h rename to Code/Legacy/CrySystem/ViewSystem/ViewSystem.h diff --git a/Code/CryEngine/CrySystem/WindowsErrorReporting.cpp b/Code/Legacy/CrySystem/WindowsErrorReporting.cpp similarity index 100% rename from Code/CryEngine/CrySystem/WindowsErrorReporting.cpp rename to Code/Legacy/CrySystem/WindowsErrorReporting.cpp diff --git a/Code/CryEngine/CrySystem/XConsole.cpp b/Code/Legacy/CrySystem/XConsole.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XConsole.cpp rename to Code/Legacy/CrySystem/XConsole.cpp diff --git a/Code/CryEngine/CrySystem/XConsole.h b/Code/Legacy/CrySystem/XConsole.h similarity index 100% rename from Code/CryEngine/CrySystem/XConsole.h rename to Code/Legacy/CrySystem/XConsole.h diff --git a/Code/CryEngine/CrySystem/XConsoleVariable.cpp b/Code/Legacy/CrySystem/XConsoleVariable.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XConsoleVariable.cpp rename to Code/Legacy/CrySystem/XConsoleVariable.cpp diff --git a/Code/CryEngine/CrySystem/XConsoleVariable.h b/Code/Legacy/CrySystem/XConsoleVariable.h similarity index 100% rename from Code/CryEngine/CrySystem/XConsoleVariable.h rename to Code/Legacy/CrySystem/XConsoleVariable.h diff --git a/Code/CryEngine/CrySystem/XML/CMakeLists.txt b/Code/Legacy/CrySystem/XML/CMakeLists.txt similarity index 100% rename from Code/CryEngine/CrySystem/XML/CMakeLists.txt rename to Code/Legacy/CrySystem/XML/CMakeLists.txt diff --git a/Code/CryEngine/CrySystem/XML/Expat/COPYING.txt b/Code/Legacy/CrySystem/XML/Expat/COPYING.txt similarity index 100% rename from Code/CryEngine/CrySystem/XML/Expat/COPYING.txt rename to Code/Legacy/CrySystem/XML/Expat/COPYING.txt diff --git a/Code/CryEngine/CrySystem/XML/ReadWriteXMLSink.h b/Code/Legacy/CrySystem/XML/ReadWriteXMLSink.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/ReadWriteXMLSink.h rename to Code/Legacy/CrySystem/XML/ReadWriteXMLSink.h diff --git a/Code/CryEngine/CrySystem/XML/ReadXMLSink.cpp b/Code/Legacy/CrySystem/XML/ReadXMLSink.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/ReadXMLSink.cpp rename to Code/Legacy/CrySystem/XML/ReadXMLSink.cpp diff --git a/Code/CryEngine/CrySystem/XML/SerializeXMLReader.cpp b/Code/Legacy/CrySystem/XML/SerializeXMLReader.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/SerializeXMLReader.cpp rename to Code/Legacy/CrySystem/XML/SerializeXMLReader.cpp diff --git a/Code/CryEngine/CrySystem/XML/SerializeXMLReader.h b/Code/Legacy/CrySystem/XML/SerializeXMLReader.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/SerializeXMLReader.h rename to Code/Legacy/CrySystem/XML/SerializeXMLReader.h diff --git a/Code/CryEngine/CrySystem/XML/SerializeXMLWriter.cpp b/Code/Legacy/CrySystem/XML/SerializeXMLWriter.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/SerializeXMLWriter.cpp rename to Code/Legacy/CrySystem/XML/SerializeXMLWriter.cpp diff --git a/Code/CryEngine/CrySystem/XML/SerializeXMLWriter.h b/Code/Legacy/CrySystem/XML/SerializeXMLWriter.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/SerializeXMLWriter.h rename to Code/Legacy/CrySystem/XML/SerializeXMLWriter.h diff --git a/Code/CryEngine/CrySystem/XML/WriteXMLSource.cpp b/Code/Legacy/CrySystem/XML/WriteXMLSource.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/WriteXMLSource.cpp rename to Code/Legacy/CrySystem/XML/WriteXMLSource.cpp diff --git a/Code/CryEngine/CrySystem/XML/XMLBinaryNode.cpp b/Code/Legacy/CrySystem/XML/XMLBinaryNode.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLBinaryNode.cpp rename to Code/Legacy/CrySystem/XML/XMLBinaryNode.cpp diff --git a/Code/CryEngine/CrySystem/XML/XMLBinaryNode.h b/Code/Legacy/CrySystem/XML/XMLBinaryNode.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLBinaryNode.h rename to Code/Legacy/CrySystem/XML/XMLBinaryNode.h diff --git a/Code/CryEngine/CrySystem/XML/XMLBinaryReader.cpp b/Code/Legacy/CrySystem/XML/XMLBinaryReader.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLBinaryReader.cpp rename to Code/Legacy/CrySystem/XML/XMLBinaryReader.cpp diff --git a/Code/CryEngine/CrySystem/XML/XMLBinaryReader.h b/Code/Legacy/CrySystem/XML/XMLBinaryReader.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLBinaryReader.h rename to Code/Legacy/CrySystem/XML/XMLBinaryReader.h diff --git a/Code/CryEngine/CrySystem/XML/XMLBinaryWriter.cpp b/Code/Legacy/CrySystem/XML/XMLBinaryWriter.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLBinaryWriter.cpp rename to Code/Legacy/CrySystem/XML/XMLBinaryWriter.cpp diff --git a/Code/CryEngine/CrySystem/XML/XMLBinaryWriter.h b/Code/Legacy/CrySystem/XML/XMLBinaryWriter.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLBinaryWriter.h rename to Code/Legacy/CrySystem/XML/XMLBinaryWriter.h diff --git a/Code/CryEngine/CrySystem/XML/XMLPatcher.cpp b/Code/Legacy/CrySystem/XML/XMLPatcher.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLPatcher.cpp rename to Code/Legacy/CrySystem/XML/XMLPatcher.cpp diff --git a/Code/CryEngine/CrySystem/XML/XMLPatcher.h b/Code/Legacy/CrySystem/XML/XMLPatcher.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/XMLPatcher.h rename to Code/Legacy/CrySystem/XML/XMLPatcher.h diff --git a/Code/CryEngine/CrySystem/XML/XmlUtils.cpp b/Code/Legacy/CrySystem/XML/XmlUtils.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/XmlUtils.cpp rename to Code/Legacy/CrySystem/XML/XmlUtils.cpp diff --git a/Code/CryEngine/CrySystem/XML/XmlUtils.h b/Code/Legacy/CrySystem/XML/XmlUtils.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/XmlUtils.h rename to Code/Legacy/CrySystem/XML/XmlUtils.h diff --git a/Code/CryEngine/CrySystem/XML/crysystem_xmlbinary_files.cmake b/Code/Legacy/CrySystem/XML/crysystem_xmlbinary_files.cmake similarity index 100% rename from Code/CryEngine/CrySystem/XML/crysystem_xmlbinary_files.cmake rename to Code/Legacy/CrySystem/XML/crysystem_xmlbinary_files.cmake diff --git a/Code/CryEngine/CrySystem/XML/xml.cpp b/Code/Legacy/CrySystem/XML/xml.cpp similarity index 100% rename from Code/CryEngine/CrySystem/XML/xml.cpp rename to Code/Legacy/CrySystem/XML/xml.cpp diff --git a/Code/CryEngine/CrySystem/XML/xml.h b/Code/Legacy/CrySystem/XML/xml.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/xml.h rename to Code/Legacy/CrySystem/XML/xml.h diff --git a/Code/CryEngine/CrySystem/XML/xml_string.h b/Code/Legacy/CrySystem/XML/xml_string.h similarity index 100% rename from Code/CryEngine/CrySystem/XML/xml_string.h rename to Code/Legacy/CrySystem/XML/xml_string.h diff --git a/Code/CryEngine/CrySystem/crysystem_files.cmake b/Code/Legacy/CrySystem/crysystem_files.cmake similarity index 100% rename from Code/CryEngine/CrySystem/crysystem_files.cmake rename to Code/Legacy/CrySystem/crysystem_files.cmake diff --git a/Code/CryEngine/CrySystem/crysystem_shared_files.cmake b/Code/Legacy/CrySystem/crysystem_shared_files.cmake similarity index 100% rename from Code/CryEngine/CrySystem/crysystem_shared_files.cmake rename to Code/Legacy/CrySystem/crysystem_shared_files.cmake diff --git a/Code/Sandbox/Editor/editor_lib_files.cmake b/Code/Sandbox/Editor/editor_lib_files.cmake index 32073cac2a..15e2bc6478 100644 --- a/Code/Sandbox/Editor/editor_lib_files.cmake +++ b/Code/Sandbox/Editor/editor_lib_files.cmake @@ -229,7 +229,7 @@ set(FILES res/warning16x16.ico res/water.bmp res/work_in_progress_icon.ico - res/CryEngineLogo.bmp + res/LegacyLogo.bmp res/MannFileManagerImageList.bmp res/infobar/CameraCollision-default.svg res/infobar/GotoLocation-default.svg diff --git a/Code/Sandbox/Editor/res/CryEngineLogo.bmp b/Code/Sandbox/Editor/res/LegacyLogo.bmp similarity index 100% rename from Code/Sandbox/Editor/res/CryEngineLogo.bmp rename to Code/Sandbox/Editor/res/LegacyLogo.bmp diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui b/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui index c055f9f3ca..ddb8100821 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui @@ -170,7 +170,8 @@ - + diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h index d1085597b1..04149d5a8d 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h @@ -27,7 +27,7 @@ namespace Camera public: ~OffsetPosition() override = default; AZ_RTTI(OffsetPosition, "{5B2975A6-839B-4DE0-842B-EDE78D778BC9}", ICameraLookAtBehavior); - AZ_CLASS_ALLOCATOR(OffsetPosition, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(OffsetPosition, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h index 7bc6be4144..8e7abd5f32 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h @@ -29,7 +29,7 @@ namespace Camera public: ~RotateCameraLookAt() override = default; AZ_RTTI(RotateCameraLookAt, "{B72C5BE7-2DAF-412B-BBBB-F216B3DFB9A0}", ICameraLookAtBehavior); - AZ_CLASS_ALLOCATOR(RotateCameraLookAt, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(RotateCameraLookAt, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h index ade6582a67..8f685faf6d 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h @@ -28,7 +28,7 @@ namespace Camera public: ~SlideAlongAxisBasedOnAngle() override = default; AZ_RTTI(SlideAlongAxisBasedOnAngle, "{8DDA8D0B-5BC3-437E-894B-5144E6E81236}", ICameraLookAtBehavior); - AZ_CLASS_ALLOCATOR(SlideAlongAxisBasedOnAngle, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(SlideAlongAxisBasedOnAngle, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h index 96bf90eaff..e9171e0ce4 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h @@ -28,7 +28,7 @@ namespace Camera public: ~AcquireByEntityId() override = default; AZ_RTTI(AcquireByEntityId, "{14D0D355-1F83-4F46-9DE1-D41D23BDFC3C}", ICameraTargetAcquirer) - AZ_CLASS_ALLOCATOR(AcquireByEntityId, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(AcquireByEntityId, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h index ac7d571715..15dc05c230 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h @@ -29,7 +29,7 @@ namespace Camera public: ~AcquireByTag() override = default; AZ_RTTI(AcquireByTag, "{E76621A5-E5A8-41B0-AC1D-EC87553181F5}", ICameraTargetAcquirer) - AZ_CLASS_ALLOCATOR(AcquireByTag, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(AcquireByTag, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h index 2ccd77fbe6..4052d44ec9 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h @@ -26,7 +26,7 @@ namespace Camera public: ~FaceTarget() override = default; AZ_RTTI(FaceTarget, "{1A2CBCD0-1841-493C-8DB7-1BCA0D293019}", ICameraTransformBehavior) - AZ_CLASS_ALLOCATOR(FaceTarget, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(FaceTarget, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h index 4a52b3787d..076a63edfb 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h @@ -23,7 +23,7 @@ namespace Camera public: ~FollowTargetFromAngle() override = default; AZ_RTTI(FollowTargetFromAngle, "{4DBE7A2C-8E93-422E-8942-9601A270D37E}", ICameraTransformBehavior) - AZ_CLASS_ALLOCATOR(FollowTargetFromAngle, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(FollowTargetFromAngle, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h index d27c9cd12e..78e43df0cf 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h @@ -30,7 +30,7 @@ namespace Camera public: ~FollowTargetFromDistance() override = default; AZ_RTTI(FollowTargetFromDistance, "{E6BEDB2C-6812-4369-8C0F-C1E72F380E50}", ICameraTransformBehavior) - AZ_CLASS_ALLOCATOR(FollowTargetFromDistance, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(FollowTargetFromDistance, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h index 7d1dfb740c..e590d8c2eb 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h @@ -21,7 +21,7 @@ namespace Camera public: ~OffsetCameraPosition() override = default; AZ_RTTI(OffsetCameraPosition, "{DB64D5DA-84B7-45B7-B221-B5A07BDA2F69}", ICameraTransformBehavior) - AZ_CLASS_ALLOCATOR(OffsetCameraPosition, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(OffsetCameraPosition, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h index 1d75d8894c..d5af0ac9d3 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h @@ -22,7 +22,7 @@ namespace Camera public: ~Rotate() override = default; AZ_RTTI(Rotate, "{EE06111E-75E8-47F0-B243-5A5308A5F605}", ICameraTransformBehavior) - AZ_CLASS_ALLOCATOR(Rotate, AZ::SystemAllocator, 0); ///< Use AZ::SystemAllocator, otherwise a CryEngine allocator will be used. This will cause the Asset Processor to crash when this object is deleted, because of the wrong uninitialisation order + AZ_CLASS_ALLOCATOR(Rotate, AZ::SystemAllocator, 0); static void Reflect(AZ::ReflectContext* reflection); ////////////////////////////////////////////////////////////////////////// diff --git a/Templates/DefaultProject/Template/Resources/CryEngineLogoLauncher.bmp b/Templates/DefaultProject/Template/Resources/LegacyLogoLauncher.bmp similarity index 100% rename from Templates/DefaultProject/Template/Resources/CryEngineLogoLauncher.bmp rename to Templates/DefaultProject/Template/Resources/LegacyLogoLauncher.bmp diff --git a/Templates/DefaultProject/template.json b/Templates/DefaultProject/template.json index 67df3cccf7..98cf0fc815 100644 --- a/Templates/DefaultProject/template.json +++ b/Templates/DefaultProject/template.json @@ -248,8 +248,8 @@ "isOptional": false }, { - "file": "Resources/CryEngineLogoLauncher.bmp", - "origin": "Resources/CryEngineLogoLauncher.bmp", + "file": "Resources/LegacyLogoLauncher.bmp", + "origin": "Resources/LegacyLogoLauncher.bmp", "isTemplated": false, "isOptional": false }, diff --git a/Templates/MinimalProject/Template/Resources/CryEngineLogoLauncher.bmp b/Templates/MinimalProject/Template/Resources/LegacyLogoLauncher.bmp similarity index 100% rename from Templates/MinimalProject/Template/Resources/CryEngineLogoLauncher.bmp rename to Templates/MinimalProject/Template/Resources/LegacyLogoLauncher.bmp diff --git a/Templates/MinimalProject/template.json b/Templates/MinimalProject/template.json index 88214b26fa..18b10e8cae 100644 --- a/Templates/MinimalProject/template.json +++ b/Templates/MinimalProject/template.json @@ -245,8 +245,8 @@ "isOptional": false }, { - "file": "Resources/CryEngineLogoLauncher.bmp", - "origin": "Resources/CryEngineLogoLauncher.bmp", + "file": "Resources/LegacyLogoLauncher.bmp", + "origin": "Resources/LegacyLogoLauncher.bmp", "isTemplated": false, "isOptional": false }, diff --git a/scripts/build/package/Platform/Windows/package_filelists/atom.json b/scripts/build/package/Platform/Windows/package_filelists/atom.json index e18e191882..3bd02de7e3 100644 --- a/scripts/build/package/Platform/Windows/package_filelists/atom.json +++ b/scripts/build/package/Platform/Windows/package_filelists/atom.json @@ -26,7 +26,7 @@ }, "cmake/**": "#include", "Code": { - "CryEngine/**": "#include", + "Legacy/**": "#include", "Framework/**": "#include", "LauncherUnified/**": "#include", "Sandbox/**": "#include", diff --git a/scripts/commit_validation/commit_validation/pal_allowedlist.txt b/scripts/commit_validation/commit_validation/pal_allowedlist.txt index e3bf4be52e..7c989e6f10 100644 --- a/scripts/commit_validation/commit_validation/pal_allowedlist.txt +++ b/scripts/commit_validation/commit_validation/pal_allowedlist.txt @@ -1,4 +1,4 @@ -*/Code/CryEngine/* +*/Code/Legacy/* */Code/Deprecated/Sandbox/* */Code/Framework/AzCore/AzCore/Math/Aabb.h */Code/Framework/AzCore/AzCore/Math/Color.h diff --git a/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py b/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py index fc700fa9b9..88ca9a8592 100755 --- a/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py +++ b/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py @@ -21,8 +21,8 @@ EXCLUDED_COPYRIGHT_VALIDATION_PATTERNS = [ '*/Code/Framework/AzCore/AzCore/std/string/utf8/core.h', # Copyright 2006 Nemanja Trifunovic '*/Code/Framework/AzCore/AzCore/std/string/utf8/unchecked.h', # Copyright 2006 Nemanja Trifunovic '*/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Ltc.azsli', # Copyright (c) 2017, Eric Heitz, Jonathan Dupuy, Stephen Hill and David Neubelt. - '*/Code/CryEngine/CryCommon/MTPseudoRandom.h', # Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura - '*/Code/CryEngine/CryCommon/PNoise3.h', # Copyright(c) Ken Perlin + '*/Code/Legacy/CryCommon/MTPseudoRandom.h', # Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura + '*/Code/Legacy/CryCommon/PNoise3.h', # Copyright(c) Ken Perlin '*/Code/Framework/AzQtComponents/AzQtComponents/Components/FlowLayout.*' # Copyright (C) 2015 The Qt Company Ltd. ] + EXCLUDED_VALIDATION_PATTERNS From e34e36cb35049f344a3810718bf406d98afb70f4 Mon Sep 17 00:00:00 2001 From: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> Date: Tue, 29 Jun 2021 12:41:59 -0700 Subject: [PATCH 038/111] git mv Code\Sandbox\Editor Code/Editor Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> --- Code/{Sandbox => }/Editor/2DViewport.cpp | 0 Code/{Sandbox => }/Editor/2DViewport.h | 0 Code/{Sandbox => }/Editor/AboutDialog.cpp | 0 Code/{Sandbox => }/Editor/AboutDialog.h | 0 Code/{Sandbox => }/Editor/AboutDialog.ui | 0 Code/{Sandbox => }/Editor/ActionManager.cpp | 0 Code/{Sandbox => }/Editor/ActionManager.h | 0 .../Editor/Animation/AnimationBipedBoneNames.cpp | 0 .../Editor/Animation/AnimationBipedBoneNames.h | 0 .../Editor/Animation/SkeletonHierarchy.cpp | 0 .../Editor/Animation/SkeletonHierarchy.h | 0 .../Editor/Animation/SkeletonMapper.cpp | 0 .../{Sandbox => }/Editor/Animation/SkeletonMapper.h | 0 .../Editor/Animation/SkeletonMapperOperator.cpp | 0 .../Editor/Animation/SkeletonMapperOperator.h | 0 Code/{Sandbox => }/Editor/AnimationContext.cpp | 0 Code/{Sandbox => }/Editor/AnimationContext.cpp.rej | 0 Code/{Sandbox => }/Editor/AnimationContext.h | 0 .../AssetDatabase/AssetDatabaseLocationListener.cpp | 0 .../AssetDatabase/AssetDatabaseLocationListener.h | 0 .../AssetEditor/AssetEditorRequestsHandler.cpp | 0 .../Editor/AssetEditor/AssetEditorRequestsHandler.h | 0 .../Editor/AssetEditor/AssetEditorWindow.cpp | 0 .../Editor/AssetEditor/AssetEditorWindow.h | 0 .../Editor/AssetEditor/AssetEditorWindow.ui | 0 .../AssetImporterDragAndDropHandler.cpp | 0 .../AssetImporterDragAndDropHandler.h | 0 .../AssetImporterManager/AssetImporterManager.cpp | 0 .../AssetImporterManager/AssetImporterManager.h | 0 .../AssetImporter/UI/FilesAlreadyExistDialog.cpp | 0 .../AssetImporter/UI/FilesAlreadyExistDialog.h | 0 .../AssetImporter/UI/FilesAlreadyExistDialog.ui | 0 .../AssetImporter/UI/ProcessingAssetsDialog.cpp | 0 .../AssetImporter/UI/ProcessingAssetsDialog.h | 0 .../AssetImporter/UI/ProcessingAssetsDialog.ui | 0 .../AssetImporter/UI/SelectDestinationDialog.cpp | 0 .../AssetImporter/UI/SelectDestinationDialog.h | 0 .../AssetImporter/UI/SelectDestinationDialog.ui | 0 .../Editor/AzAssetBrowser/AssetBrowserWindow.cpp | 0 .../Editor/AzAssetBrowser/AssetBrowserWindow.h | 0 .../AzAssetBrowser/AzAssetBrowserRequestHandler.cpp | 0 .../AzAssetBrowser/AzAssetBrowserRequestHandler.h | 0 .../Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp | 0 .../Editor/AzAssetBrowser/AzAssetBrowserWindow.h | 0 .../Editor/AzAssetBrowser/AzAssetBrowserWindow.ui | 0 Code/{Sandbox => }/Editor/BaseLibrary.cpp | 0 Code/{Sandbox => }/Editor/BaseLibrary.h | 0 Code/{Sandbox => }/Editor/BaseLibraryItem.cpp | 0 Code/{Sandbox => }/Editor/BaseLibraryItem.h | 0 Code/{Sandbox => }/Editor/BaseLibraryManager.cpp | 0 Code/{Sandbox => }/Editor/BaseLibraryManager.h | 0 Code/{Sandbox => }/Editor/CMakeLists.txt | 0 Code/{Sandbox => }/Editor/CVarMenu.cpp | 0 Code/{Sandbox => }/Editor/CVarMenu.h | 0 Code/{Sandbox => }/Editor/CheckOutDialog.cpp | 0 Code/{Sandbox => }/Editor/CheckOutDialog.h | 0 Code/{Sandbox => }/Editor/CheckOutDialog.ui | 0 Code/{Sandbox => }/Editor/Clipboard.cpp | 0 Code/{Sandbox => }/Editor/Clipboard.h | 0 .../Editor/Commands/CommandManager.cpp | 0 Code/{Sandbox => }/Editor/Commands/CommandManager.h | 0 .../Editor/Commands/CommandManagerBus.h | 0 Code/{Sandbox => }/Editor/Common/spline_edit-00.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-01.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-02.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-03.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-04.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-05.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-06.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-07.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-08.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-09.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-10.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-11.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-12.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-13.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-14.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-15.png | 0 Code/{Sandbox => }/Editor/Common/spline_edit-16.png | 0 Code/{Sandbox => }/Editor/ConfigGroup.cpp | 0 Code/{Sandbox => }/Editor/ConfigGroup.h | 0 Code/{Sandbox => }/Editor/ConsoleDialog.cpp | 0 Code/{Sandbox => }/Editor/ConsoleDialog.h | 0 Code/{Sandbox => }/Editor/ControlMRU.cpp | 0 Code/{Sandbox => }/Editor/ControlMRU.h | 0 .../{Sandbox => }/Editor/Controls/BitmapToolTip.cpp | 0 Code/{Sandbox => }/Editor/Controls/BitmapToolTip.h | 0 .../Editor/Controls/ColorGradientCtrl.cpp | 0 .../Editor/Controls/ColorGradientCtrl.h | 0 Code/{Sandbox => }/Editor/Controls/ConsoleSCB.cpp | 0 Code/{Sandbox => }/Editor/Controls/ConsoleSCB.h | 0 Code/{Sandbox => }/Editor/Controls/ConsoleSCB.qrc | 0 Code/{Sandbox => }/Editor/Controls/ConsoleSCB.ui | 0 .../{Sandbox => }/Editor/Controls/ConsoleSCBMFC.cpp | 0 Code/{Sandbox => }/Editor/Controls/ConsoleSCBMFC.h | 0 Code/{Sandbox => }/Editor/Controls/ConsoleSCBMFC.ui | 0 .../Editor/Controls/FolderTreeCtrl.cpp | 0 Code/{Sandbox => }/Editor/Controls/FolderTreeCtrl.h | 0 .../Editor/Controls/HotTrackingTreeCtrl.cpp | 0 .../Editor/Controls/HotTrackingTreeCtrl.h | 0 .../Editor/Controls/ImageHistogramCtrl.cpp | 0 .../Editor/Controls/ImageHistogramCtrl.h | 0 .../{Sandbox => }/Editor/Controls/ImageListCtrl.cpp | 0 Code/{Sandbox => }/Editor/Controls/ImageListCtrl.h | 0 .../Editor/Controls/MultiMonHelper.cpp | 0 Code/{Sandbox => }/Editor/Controls/MultiMonHelper.h | 0 Code/{Sandbox => }/Editor/Controls/NumberCtrl.cpp | 0 Code/{Sandbox => }/Editor/Controls/NumberCtrl.h | 0 .../Editor/Controls/QBitmapPreviewDialog.cpp | 0 .../Editor/Controls/QBitmapPreviewDialog.h | 0 .../Editor/Controls/QBitmapPreviewDialog.ui | 0 .../Editor/Controls/QBitmapPreviewDialogImp.cpp | 0 .../Editor/Controls/QBitmapPreviewDialogImp.h | 0 .../Editor/Controls/QToolTipWidget.cpp | 0 Code/{Sandbox => }/Editor/Controls/QToolTipWidget.h | 0 .../PropertyAnimationCtrl.cpp | 0 .../PropertyAnimationCtrl.h | 0 .../ReflectedPropertyControl/PropertyCtrl.cpp | 0 .../ReflectedPropertyControl/PropertyCtrl.h | 0 .../PropertyGenericCtrl.cpp | 0 .../ReflectedPropertyControl/PropertyGenericCtrl.h | 0 .../ReflectedPropertyControl/PropertyMiscCtrl.cpp | 0 .../ReflectedPropertyControl/PropertyMiscCtrl.h | 0 .../ReflectedPropertyControl/PropertyMotionCtrl.cpp | 0 .../ReflectedPropertyControl/PropertyMotionCtrl.h | 0 .../PropertyResourceCtrl.cpp | 0 .../ReflectedPropertyControl/PropertyResourceCtrl.h | 0 .../ReflectedPropertiesPanel.cpp | 0 .../ReflectedPropertiesPanel.h | 0 .../ReflectedPropertyCtrl.cpp | 0 .../ReflectedPropertyCtrl.h | 0 .../ReflectedPropertyCtrl.qrc | 0 .../ReflectedPropertyItem.cpp | 0 .../ReflectedPropertyItem.h | 0 .../ReflectedPropertyControl/ReflectedVar.cpp | 0 .../ReflectedPropertyControl/ReflectedVar.h | 0 .../ReflectedVarWrapper.cpp | 0 .../ReflectedPropertyControl/ReflectedVarWrapper.h | 0 .../ReflectedPropertyControl/resources/apply.png | 0 .../resources/file_browse.png | 0 Code/{Sandbox => }/Editor/Controls/SplineCtrl.cpp | 0 Code/{Sandbox => }/Editor/Controls/SplineCtrl.h | 0 Code/{Sandbox => }/Editor/Controls/SplineCtrlEx.cpp | 0 Code/{Sandbox => }/Editor/Controls/SplineCtrlEx.h | 0 .../Editor/Controls/TextEditorCtrl.cpp | 0 Code/{Sandbox => }/Editor/Controls/TextEditorCtrl.h | 0 Code/{Sandbox => }/Editor/Controls/TimelineCtrl.cpp | 0 Code/{Sandbox => }/Editor/Controls/TimelineCtrl.h | 0 Code/{Sandbox => }/Editor/Controls/TreeCtrlUtils.h | 0 Code/{Sandbox => }/Editor/Controls/WndGridHelper.h | 0 .../Core/EditorMetricsPlainTextNameRegistration.cpp | 0 .../Core/EditorMetricsPlainTextNameRegistration.h | 0 .../Editor/Core/LevelEditorMenuHandler.cpp | 0 .../Editor/Core/LevelEditorMenuHandler.h | 0 .../Editor/Core/QtEditorApplication.cpp | 0 .../{Sandbox => }/Editor/Core/QtEditorApplication.h | 0 .../Editor/Core/QtEditorApplication_linux.cpp | 0 .../Editor/Core/QtEditorApplication_mac.mm | 0 .../Editor/Core/Tests/test_Archive.cpp | 0 Code/{Sandbox => }/Editor/Core/Tests/test_Main.cpp | 0 .../Editor/Core/Tests/test_PathUtil.cpp | 0 Code/{Sandbox => }/Editor/CrtDebug.cpp | 0 Code/{Sandbox => }/Editor/CryEdit.cpp | 0 Code/{Sandbox => }/Editor/CryEdit.h | 0 Code/{Sandbox => }/Editor/CryEdit.rc | 0 Code/{Sandbox => }/Editor/CryEditDoc.cpp | 0 Code/{Sandbox => }/Editor/CryEditDoc.h | 0 Code/{Sandbox => }/Editor/CryEditLiveCreate.rc | 0 Code/{Sandbox => }/Editor/CryEditPy.cpp | 0 Code/{Sandbox => }/Editor/CustomAspectRatioDlg.cpp | 0 Code/{Sandbox => }/Editor/CustomAspectRatioDlg.h | 0 Code/{Sandbox => }/Editor/CustomAspectRatioDlg.ui | 0 Code/{Sandbox => }/Editor/CustomResolutionDlg.cpp | 0 Code/{Sandbox => }/Editor/CustomResolutionDlg.h | 0 Code/{Sandbox => }/Editor/CustomResolutionDlg.ui | 0 .../Editor/CustomizeKeyboardDialog.cpp | 0 Code/{Sandbox => }/Editor/CustomizeKeyboardDialog.h | 0 .../{Sandbox => }/Editor/CustomizeKeyboardDialog.ui | 0 Code/{Sandbox => }/Editor/DPIAware.xml | 0 Code/{Sandbox => }/Editor/Dialogs/ErrorsDlg.cpp | 0 Code/{Sandbox => }/Editor/Dialogs/ErrorsDlg.h | 0 Code/{Sandbox => }/Editor/Dialogs/ErrorsDlg.ui | 0 .../Editor/Dialogs/Generic/UserOptions.cpp | 0 .../Editor/Dialogs/Generic/UserOptions.h | 0 .../Editor/Dialogs/PythonScriptsDialog.cpp | 0 .../Editor/Dialogs/PythonScriptsDialog.h | 0 .../Editor/Dialogs/PythonScriptsDialog.ui | 0 Code/{Sandbox => }/Editor/DimensionsDialog.cpp | 0 Code/{Sandbox => }/Editor/DimensionsDialog.h | 0 Code/{Sandbox => }/Editor/DimensionsDialog.ui | 0 Code/{Sandbox => }/Editor/DisplaySettings.cpp | 0 Code/{Sandbox => }/Editor/DisplaySettings.h | 0 .../Editor/DisplaySettingsPythonFuncs.cpp | 0 .../Editor/DisplaySettingsPythonFuncs.h | 0 Code/{Sandbox => }/Editor/DocMultiArchive.h | 0 .../{Sandbox => }/Editor/EditMode/DeepSelection.cpp | 0 Code/{Sandbox => }/Editor/EditMode/DeepSelection.h | 0 .../SubObjectSelectionReferenceFrameCalculator.cpp | 0 .../SubObjectSelectionReferenceFrameCalculator.h | 0 Code/{Sandbox => }/Editor/EditorCryEdit.rc | 0 Code/{Sandbox => }/Editor/EditorDefs.h | 0 Code/{Sandbox => }/Editor/EditorEnvironment.cpp | 0 Code/{Sandbox => }/Editor/EditorEnvironment.h | 0 Code/{Sandbox => }/Editor/EditorFileMonitor.cpp | 0 Code/{Sandbox => }/Editor/EditorFileMonitor.h | 0 Code/{Sandbox => }/Editor/EditorPanelUtils.cpp | 0 Code/{Sandbox => }/Editor/EditorPanelUtils.h | 0 Code/{Sandbox => }/Editor/EditorPreferencesBus.h | 0 .../Editor/EditorPreferencesDialog.cpp | 0 Code/{Sandbox => }/Editor/EditorPreferencesDialog.h | 0 .../{Sandbox => }/Editor/EditorPreferencesDialog.ui | 0 .../Editor/EditorPreferencesPageAWS.cpp | 0 .../{Sandbox => }/Editor/EditorPreferencesPageAWS.h | 0 .../EditorPreferencesPageExperimentalLighting.cpp | 0 .../EditorPreferencesPageExperimentalLighting.h | 0 .../Editor/EditorPreferencesPageFiles.cpp | 0 .../Editor/EditorPreferencesPageFiles.h | 0 .../Editor/EditorPreferencesPageGeneral.cpp | 0 .../Editor/EditorPreferencesPageGeneral.h | 0 .../Editor/EditorPreferencesPageViewportDebug.cpp | 0 .../Editor/EditorPreferencesPageViewportDebug.h | 0 .../Editor/EditorPreferencesPageViewportGeneral.cpp | 0 .../Editor/EditorPreferencesPageViewportGeneral.h | 0 .../Editor/EditorPreferencesPageViewportGizmo.cpp | 0 .../Editor/EditorPreferencesPageViewportGizmo.h | 0 .../EditorPreferencesPageViewportMovement.cpp | 0 .../Editor/EditorPreferencesPageViewportMovement.h | 0 .../Editor/EditorPreferencesTreeWidgetItem.cpp | 0 .../Editor/EditorPreferencesTreeWidgetItem.h | 0 .../EditorPreferencesTreeWidgetItemDelegate.cpp | 0 .../EditorPreferencesTreeWidgetItemDelegate.h | 0 .../{Sandbox => }/Editor/EditorToolsApplication.cpp | 0 Code/{Sandbox => }/Editor/EditorToolsApplication.h | 0 .../Editor/EditorToolsApplicationAPI.h | 0 Code/{Sandbox => }/Editor/EditorVersion.rc | 0 .../{Sandbox => }/Editor/EditorViewportSettings.cpp | 0 Code/{Sandbox => }/Editor/EditorViewportSettings.h | 0 Code/{Sandbox => }/Editor/EditorViewportWidget.cpp | 0 Code/{Sandbox => }/Editor/EditorViewportWidget.h | 0 Code/{Sandbox => }/Editor/ErrorDialog.cpp | 0 Code/{Sandbox => }/Editor/ErrorDialog.h | 0 Code/{Sandbox => }/Editor/ErrorDialog.ui | 0 Code/{Sandbox => }/Editor/ErrorRecorder.cpp | 0 Code/{Sandbox => }/Editor/ErrorRecorder.h | 0 Code/{Sandbox => }/Editor/ErrorReport.cpp | 0 Code/{Sandbox => }/Editor/ErrorReport.h | 0 Code/{Sandbox => }/Editor/ErrorReportDialog.cpp | 0 Code/{Sandbox => }/Editor/ErrorReportDialog.h | 0 Code/{Sandbox => }/Editor/ErrorReportDialog.ui | 0 Code/{Sandbox => }/Editor/ErrorReportTableModel.cpp | 0 Code/{Sandbox => }/Editor/ErrorReportTableModel.h | 0 Code/{Sandbox => }/Editor/Export/ExportManager.cpp | 0 Code/{Sandbox => }/Editor/Export/ExportManager.h | 0 Code/{Sandbox => }/Editor/Export/OBJExporter.cpp | 0 Code/{Sandbox => }/Editor/Export/OBJExporter.h | 0 Code/{Sandbox => }/Editor/Export/OCMExporter.cpp | 0 Code/{Sandbox => }/Editor/Export/OCMExporter.h | 0 Code/{Sandbox => }/Editor/FBXExporterDialog.cpp | 0 Code/{Sandbox => }/Editor/FBXExporterDialog.h | 0 Code/{Sandbox => }/Editor/FBXExporterDialog.ui | 0 Code/{Sandbox => }/Editor/FileTypeUtils.cpp | 0 Code/{Sandbox => }/Editor/FileTypeUtils.h | 0 Code/{Sandbox => }/Editor/GameEngine.cpp | 0 Code/{Sandbox => }/Editor/GameEngine.h | 0 Code/{Sandbox => }/Editor/GameExporter.cpp | 0 Code/{Sandbox => }/Editor/GameExporter.h | 0 Code/{Sandbox => }/Editor/GameResourcesExporter.cpp | 0 Code/{Sandbox => }/Editor/GameResourcesExporter.h | 0 .../Editor/GenericSelectItemDialog.cpp | 0 Code/{Sandbox => }/Editor/GenericSelectItemDialog.h | 0 .../{Sandbox => }/Editor/GenericSelectItemDialog.ui | 0 Code/{Sandbox => }/Editor/Geometry/TriMesh.cpp | 0 Code/{Sandbox => }/Editor/Geometry/TriMesh.h | 0 Code/{Sandbox => }/Editor/GotoPositionDlg.cpp | 0 Code/{Sandbox => }/Editor/GotoPositionDlg.h | 0 Code/{Sandbox => }/Editor/GotoPositionDlg.ui | 0 .../{Sandbox => }/Editor/GraphicsSettingsDialog.cpp | 0 Code/{Sandbox => }/Editor/GraphicsSettingsDialog.h | 0 Code/{Sandbox => }/Editor/GridUtils.h | 0 Code/{Sandbox => }/Editor/IEditor.h | 0 Code/{Sandbox => }/Editor/IEditorImpl.cpp | 0 Code/{Sandbox => }/Editor/IEditorImpl.h | 0 Code/{Sandbox => }/Editor/IEditorPanelUtils.h | 0 Code/{Sandbox => }/Editor/IObservable.h | 0 Code/{Sandbox => }/Editor/IPostRenderer.h | 0 Code/{Sandbox => }/Editor/IconListDialog.ui | 0 Code/{Sandbox => }/Editor/IconManager.cpp | 0 Code/{Sandbox => }/Editor/IconManager.h | 0 Code/{Sandbox => }/Editor/Include/Command.h | 0 Code/{Sandbox => }/Editor/Include/EditorCoreAPI.cpp | 0 Code/{Sandbox => }/Editor/Include/EditorCoreAPI.h | 0 Code/{Sandbox => }/Editor/Include/HitContext.h | 0 .../Editor/Include/IAnimationCompressionManager.h | 0 Code/{Sandbox => }/Editor/Include/IAssetItem.h | 0 .../Editor/Include/IAssetItemDatabase.h | 0 Code/{Sandbox => }/Editor/Include/IAssetViewer.h | 0 .../Editor/Include/IBaseLibraryManager.h | 0 Code/{Sandbox => }/Editor/Include/ICommandManager.h | 0 .../Editor/Include/IConsoleConnectivity.h | 0 Code/{Sandbox => }/Editor/Include/IDataBaseItem.h | 0 .../{Sandbox => }/Editor/Include/IDataBaseLibrary.h | 0 .../{Sandbox => }/Editor/Include/IDataBaseManager.h | 0 .../{Sandbox => }/Editor/Include/IDisplayViewport.h | 0 .../Editor/Include/IEditorClassFactory.h | 0 .../Editor/Include/IEditorFileMonitor.h | 0 Code/{Sandbox => }/Editor/Include/IEditorMaterial.h | 0 .../Editor/Include/IEditorMaterialManager.h | 0 Code/{Sandbox => }/Editor/Include/IErrorReport.h | 0 Code/{Sandbox => }/Editor/Include/IEventLoopHook.h | 0 Code/{Sandbox => }/Editor/Include/IExportManager.h | 0 Code/{Sandbox => }/Editor/Include/IFacialEditor.h | 0 Code/{Sandbox => }/Editor/Include/IFileUtil.h | 0 Code/{Sandbox => }/Editor/Include/IGizmoManager.h | 0 Code/{Sandbox => }/Editor/Include/IIconManager.h | 0 Code/{Sandbox => }/Editor/Include/IImageUtil.h | 0 Code/{Sandbox => }/Editor/Include/IKeyTimeSet.h | 0 Code/{Sandbox => }/Editor/Include/ILogFile.h | 0 Code/{Sandbox => }/Editor/Include/IObjectManager.h | 0 Code/{Sandbox => }/Editor/Include/IPlugin.h | 0 .../{Sandbox => }/Editor/Include/IPreferencesPage.h | 0 Code/{Sandbox => }/Editor/Include/IRenderListener.h | 0 .../Editor/Include/IResourceSelectorHost.h | 0 Code/{Sandbox => }/Editor/Include/ISourceControl.h | 0 .../ISubObjectSelectionReferenceFrameCalculator.h | 0 .../Editor/Include/ITextureDatabaseUpdater.h | 0 .../Editor/Include/ITransformManipulator.h | 0 Code/{Sandbox => }/Editor/Include/IViewPane.h | 0 Code/{Sandbox => }/Editor/Include/ObjectEvent.h | 0 Code/{Sandbox => }/Editor/Include/SandboxAPI.h | 0 Code/{Sandbox => }/Editor/InfoBar.qrc | 0 .../Editor/KeyboardCustomizationSettings.cpp | 0 .../Editor/KeyboardCustomizationSettings.h | 0 .../Editor/Launcher/editor_launcher.rc | 0 Code/{Sandbox => }/Editor/Launcher/resource.h | 0 Code/{Sandbox => }/Editor/LayoutConfigDialog.cpp | 0 Code/{Sandbox => }/Editor/LayoutConfigDialog.h | 0 Code/{Sandbox => }/Editor/LayoutConfigDialog.qrc | 0 Code/{Sandbox => }/Editor/LayoutConfigDialog.ui | 0 Code/{Sandbox => }/Editor/LayoutWnd.cpp | 0 Code/{Sandbox => }/Editor/LayoutWnd.h | 0 .../Editor/LegacyViewportCameraController.cpp | 0 .../Editor/LegacyViewportCameraController.h | 0 Code/{Sandbox => }/Editor/LevelFileDialog.cpp | 0 Code/{Sandbox => }/Editor/LevelFileDialog.h | 0 Code/{Sandbox => }/Editor/LevelFileDialog.qrc | 0 Code/{Sandbox => }/Editor/LevelFileDialog.ui | 0 .../Editor/LevelIndependentFileMan.cpp | 0 Code/{Sandbox => }/Editor/LevelIndependentFileMan.h | 0 Code/{Sandbox => }/Editor/LevelInfo.cpp | 0 Code/{Sandbox => }/Editor/LevelInfo.h | 0 Code/{Sandbox => }/Editor/LevelTreeModel.cpp | 0 Code/{Sandbox => }/Editor/LevelTreeModel.h | 0 Code/{Sandbox => }/Editor/Lib/Tests/IEditorMock.h | 0 .../Editor/Lib/Tests/test_ClickableLabel.cpp | 0 .../Lib/Tests/test_CryEditDocPythonBindings.cpp | 0 .../Editor/Lib/Tests/test_CryEditPythonBindings.cpp | 0 .../Tests/test_DisplaySettingsPythonBindings.cpp | 0 .../Editor/Lib/Tests/test_EditorPythonBindings.cpp | 0 .../Editor/Lib/Tests/test_EditorUtils.cpp | 0 Code/{Sandbox => }/Editor/Lib/Tests/test_Main.cpp | 0 .../Lib/Tests/test_MainWindowPythonBindings.cpp | 0 .../Lib/Tests/test_ObjectManagerPythonBindings.cpp | 0 .../Tests/test_TerrainHoleToolPythonBindings.cpp | 0 .../Lib/Tests/test_TerrainLayerPythonBindings.cpp | 0 .../Lib/Tests/test_TerrainModifyPythonBindings.cpp | 0 .../Lib/Tests/test_TerrainPainterPythonBindings.cpp | 0 .../Editor/Lib/Tests/test_TerrainPythonBindings.cpp | 0 .../Lib/Tests/test_TerrainTexturePythonBindings.cpp | 0 .../Lib/Tests/test_TrackViewPythonBindings.cpp | 0 .../Lib/Tests/test_ViewPanePythonBindings.cpp | 0 .../Tests/test_ViewportTitleDlgPythonBindings.cpp | 0 .../LightmapCompiler/SimpleTriangleRasterizer.cpp | 0 .../LightmapCompiler/SimpleTriangleRasterizer.h | 0 Code/{Sandbox => }/Editor/LogFile.cpp | 0 Code/{Sandbox => }/Editor/LogFile.h | 0 Code/{Sandbox => }/Editor/LogFileImpl.cpp | 0 Code/{Sandbox => }/Editor/LogFileImpl.h | 0 Code/{Sandbox => }/Editor/LogFile_mac.mm | 0 Code/{Sandbox => }/Editor/LyViewPaneNames.h | 0 Code/{Sandbox => }/Editor/MainStatusBar.cpp | 0 Code/{Sandbox => }/Editor/MainStatusBar.h | 0 Code/{Sandbox => }/Editor/MainStatusBarItems.h | 0 Code/{Sandbox => }/Editor/MainWindow.cpp | 0 Code/{Sandbox => }/Editor/MainWindow.h | 0 Code/{Sandbox => }/Editor/MainWindow.qrc | 0 .../Editor/MainWindow/ObjSelection.png | 0 .../Editor/MainWindow/display_info.png | 0 .../Editor/MainWindow/edit_mode_toolbar-00.png | 0 .../Editor/MainWindow/edit_mode_toolbar-01.png | 0 .../Editor/MainWindow/edit_mode_toolbar-02.png | 0 .../Editor/MainWindow/edit_mode_toolbar-03.png | 0 .../Editor/MainWindow/edit_mode_toolbar-05.png | 0 .../Editor/MainWindow/edit_mode_toolbar-06.png | 0 .../Editor/MainWindow/edit_mode_toolbar-07.png | 0 .../Editor/MainWindow/edit_mode_toolbar-08.png | 0 .../Editor/MainWindow/edit_mode_toolbar-09.png | 0 .../Editor/MainWindow/edit_mode_toolbar-10.png | 0 .../Editor/MainWindow/edit_mode_toolbar-11.png | 0 .../Editor/MainWindow/edit_mode_toolbar-12.png | 0 .../Editor/MainWindow/edit_mode_toolbar-13.png | 0 .../Editor/MainWindow/edit_mode_toolbar-14.png | 0 .../Editor/MainWindow/edit_mode_toolbar-15.png | 0 .../Editor/MainWindow/edit_mode_toolbar-16.png | 0 .../Editor/MainWindow/edit_mode_toolbar-17.png | 0 .../Editor/MainWindow/edit_mode_toolbar-18.png | 0 .../Editor/MainWindow/edit_mode_toolbar-19.png | 0 .../Editor/MainWindow/edit_mode_toolbar-20.png | 0 .../Editor/MainWindow/edit_mode_toolbar-22.png | 0 .../Editor/MainWindow/edit_mode_toolbar-23.png | 0 .../Editor/MainWindow/edit_mode_toolbar-24.png | 0 .../Editor/MainWindow/edit_mode_toolbar-25.png | 0 .../Editor/MainWindow/editwithbutton_dark.png | 0 .../Editor/MainWindow/editwithbutton_light.png | 0 .../Editor/MainWindow/hide_helpers.png | 0 Code/{Sandbox => }/Editor/MainWindow/maximize.png | 0 .../Editor/MainWindow/misc_toolbar-00.png | 0 .../Editor/MainWindow/object_toolbar-00.png | 0 .../Editor/MainWindow/object_toolbar-01.png | 0 .../Editor/MainWindow/object_toolbar-02.png | 0 .../Editor/MainWindow/object_toolbar-03.svg | 0 .../Editor/MainWindow/object_toolbar-04.png | 0 .../Editor/MainWindow/object_toolbar-05.png | 0 .../Editor/MainWindow/object_toolbar-06.png | 0 .../Editor/MainWindow/object_toolbar-07.png | 0 .../Editor/MainWindow/object_toolbar-08.png | 0 .../Editor/MainWindow/object_toolbar-09.png | 0 .../Editor/MainWindow/object_toolbar-10.png | 0 .../MainWindow/proceduralmaterial_toolbar.png | 0 .../Editor/MainWindow/standard_views_toolbar-00.png | 0 .../Editor/MainWindow/standard_views_toolbar-01.png | 0 .../Editor/MainWindow/standard_views_toolbar-02.png | 0 .../Editor/MainWindow/standard_views_toolbar-03.png | 0 .../Editor/MainWindow/standard_views_toolbar-04.png | 0 .../Editor/MainWindow/standard_views_toolbar-05.png | 0 .../Editor/MainWindow/standard_views_toolbar-06.png | 0 .../Editor/MainWindow/standard_views_toolbar-07.png | 0 .../Editor/MainWindow/standard_views_toolbar-08.png | 0 .../Editor/MainWindow/standard_views_toolbar-09.png | 0 .../Editor/MainWindow/standard_views_toolbar-10.png | 0 .../Editor/MainWindow/standard_views_toolbar-11.png | 0 .../Editor/MainWindow/standard_views_toolbar-12.png | 0 .../Editor/MainWindow/standard_views_toolbar-13.png | 0 .../Editor/MainWindow/standard_views_toolbar-14.png | 0 .../Editor/MainWindow/standard_views_toolbar-15.png | 0 .../Editor/MainWindow/standard_views_toolbar-16.png | 0 .../Editor/MainWindow/standard_views_toolbar-17.png | 0 .../Editor/MainWindow/standard_views_toolbar-18.png | 0 Code/{Sandbox => }/Editor/MainWindow_mac.mm | 0 Code/{Sandbox => }/Editor/NewLevelDialog.cpp | 0 Code/{Sandbox => }/Editor/NewLevelDialog.h | 0 Code/{Sandbox => }/Editor/NewLevelDialog.ui | 0 Code/{Sandbox => }/Editor/NewTerrainDialog.cpp | 0 Code/{Sandbox => }/Editor/NewTerrainDialog.h | 0 Code/{Sandbox => }/Editor/NewTerrainDialog.ui | 0 Code/{Sandbox => }/Editor/Objects/AxisGizmo.cpp | 0 Code/{Sandbox => }/Editor/Objects/AxisGizmo.h | 0 Code/{Sandbox => }/Editor/Objects/BaseObject.cpp | 0 Code/{Sandbox => }/Editor/Objects/BaseObject.h | 0 Code/{Sandbox => }/Editor/Objects/ClassDesc.cpp | 0 Code/{Sandbox => }/Editor/Objects/ClassDesc.h | 0 .../{Sandbox => }/Editor/Objects/DisplayContext.cpp | 0 Code/{Sandbox => }/Editor/Objects/DisplayContext.h | 0 .../Editor/Objects/DisplayContextShared.inl | 0 Code/{Sandbox => }/Editor/Objects/EntityObject.cpp | 0 Code/{Sandbox => }/Editor/Objects/EntityObject.h | 0 Code/{Sandbox => }/Editor/Objects/Gizmo.cpp | 0 Code/{Sandbox => }/Editor/Objects/Gizmo.h | 0 Code/{Sandbox => }/Editor/Objects/GizmoManager.cpp | 0 Code/{Sandbox => }/Editor/Objects/GizmoManager.h | 0 .../Editor/Objects/IEntityObjectListener.h | 0 Code/{Sandbox => }/Editor/Objects/LineGizmo.cpp | 0 Code/{Sandbox => }/Editor/Objects/LineGizmo.h | 0 Code/{Sandbox => }/Editor/Objects/ObjectLoader.cpp | 0 Code/{Sandbox => }/Editor/Objects/ObjectLoader.h | 0 Code/{Sandbox => }/Editor/Objects/ObjectManager.cpp | 0 Code/{Sandbox => }/Editor/Objects/ObjectManager.h | 0 .../Editor/Objects/ObjectManagerEventBus.h | 0 .../Editor/Objects/ObjectManagerLegacyUndo.cpp | 0 .../Editor/Objects/ObjectManagerLegacyUndo.h | 0 .../{Sandbox => }/Editor/Objects/SelectionGroup.cpp | 0 Code/{Sandbox => }/Editor/Objects/SelectionGroup.h | 0 .../Editor/Objects/SubObjSelection.cpp | 0 Code/{Sandbox => }/Editor/Objects/SubObjSelection.h | 0 Code/{Sandbox => }/Editor/Objects/TrackGizmo.cpp | 0 Code/{Sandbox => }/Editor/Objects/TrackGizmo.h | 0 Code/{Sandbox => }/Editor/PakManagerDlg.qrc | 0 Code/{Sandbox => }/Editor/PakManagerDlg.ui | 0 .../Editor/Platform/Android/editor_android.cmake | 0 .../Platform/Android/editor_lib_android.cmake | 0 .../Platform/Common/Clang/editor_lib_clang.cmake | 0 .../Platform/Common/MSVC/editor_lib_msvc.cmake | 0 .../Unimplemented/Util/Mailer_Unimplemented.cpp | 0 .../Platform/Linux/editor_core_files_linux.cmake | 0 .../Editor/Platform/Linux/editor_lib_linux.cmake | 0 .../Editor/Platform/Linux/editor_linux.cmake | 0 .../Platform/Linux/platform_linux_files.cmake | 0 .../AppIcon.appiconset/Contents.json | 0 .../AppIcon.appiconset/icon_128 _2x.png | 0 .../Images.xcassets/AppIcon.appiconset/icon_128.png | 0 .../Images.xcassets/AppIcon.appiconset/icon_16.png | 0 .../AppIcon.appiconset/icon_16_2x.png | 0 .../AppIcon.appiconset/icon_256 _2x.png | 0 .../Images.xcassets/AppIcon.appiconset/icon_256.png | 0 .../Images.xcassets/AppIcon.appiconset/icon_32.png | 0 .../AppIcon.appiconset/icon_32_2x.png | 0 .../Images.xcassets/AppIcon.appiconset/icon_512.png | 0 .../AppIcon.appiconset/icon_512_2x.png | 0 .../Platform/Mac/Images.xcassets/Contents.json | 0 .../EditorAppIcon.appiconset/Contents.json | 0 .../EditorAppIcon.appiconset/icon_128 _2x.png | 0 .../EditorAppIcon.appiconset/icon_128.png | 0 .../EditorAppIcon.appiconset/icon_16.png | 0 .../EditorAppIcon.appiconset/icon_16_2x.png | 0 .../EditorAppIcon.appiconset/icon_256 _2x.png | 0 .../EditorAppIcon.appiconset/icon_256.png | 0 .../EditorAppIcon.appiconset/icon_32.png | 0 .../EditorAppIcon.appiconset/icon_32_2x.png | 0 .../EditorAppIcon.appiconset/icon_512.png | 0 .../EditorAppIcon.appiconset/icon_512_2x.png | 0 .../Editor/Platform/Mac/editor_core_files_mac.cmake | 0 .../Editor/Platform/Mac/editor_lib_mac.cmake | 0 .../Editor/Platform/Mac/editor_mac.cmake | 0 .../Editor/Platform/Mac/gui_info.plist | 0 .../Editor/Platform/Mac/platform_mac_files.cmake | 0 .../Editor/Platform/Windows/Util/Mailer_Windows.cpp | 0 .../Windows/editor_core_files_windows.cmake | 0 .../Platform/Windows/editor_lib_windows.cmake | 0 .../Editor/Platform/Windows/editor_windows.cmake | 0 .../Platform/Windows/platform_windows_files.cmake | 0 .../Editor/Platform/iOS/editor_ios.cmake | 0 .../Editor/Platform/iOS/editor_lib_ios.cmake | 0 Code/{Sandbox => }/Editor/Plugin.cpp | 0 Code/{Sandbox => }/Editor/Plugin.h | 0 Code/{Sandbox => }/Editor/PluginManager.cpp | 0 Code/{Sandbox => }/Editor/PluginManager.h | 0 Code/{Sandbox => }/Editor/PreferencesStdPages.cpp | 0 Code/{Sandbox => }/Editor/PreferencesStdPages.h | 0 Code/{Sandbox => }/Editor/ProcessInfo.cpp | 0 Code/{Sandbox => }/Editor/ProcessInfo.h | 0 Code/{Sandbox => }/Editor/PythonEditorEventsBus.h | 0 Code/{Sandbox => }/Editor/PythonEditorFuncs.cpp | 0 Code/{Sandbox => }/Editor/PythonEditorFuncs.h | 0 Code/{Sandbox => }/Editor/QtUI/ClickableLabel.cpp | 0 Code/{Sandbox => }/Editor/QtUI/ClickableLabel.h | 0 Code/{Sandbox => }/Editor/QtUI/ColorButton.cpp | 0 Code/{Sandbox => }/Editor/QtUI/ColorButton.h | 0 Code/{Sandbox => }/Editor/QtUI/ColorButton_mac.mm | 0 .../Editor/QtUI/PixmapLabelPreview.cpp | 0 Code/{Sandbox => }/Editor/QtUI/PixmapLabelPreview.h | 0 .../Editor/QtUI/QCollapsibleGroupBox.cpp | 0 .../Editor/QtUI/QCollapsibleGroupBox.h | 0 Code/{Sandbox => }/Editor/QtUI/WaitCursor.cpp | 0 Code/{Sandbox => }/Editor/QtUI/WaitCursor.h | 0 Code/{Sandbox => }/Editor/QtUtil.h | 0 Code/{Sandbox => }/Editor/QtUtilWin.h | 0 Code/{Sandbox => }/Editor/QtViewPane.h | 0 Code/{Sandbox => }/Editor/QtViewPaneManager.cpp | 0 Code/{Sandbox => }/Editor/QtViewPaneManager.h | 0 Code/{Sandbox => }/Editor/QuickAccessBar.cpp | 0 Code/{Sandbox => }/Editor/QuickAccessBar.h | 0 Code/{Sandbox => }/Editor/QuickAccessBar.ui | 0 .../Editor/RenderHelpers/AxisHelper.cpp | 0 .../{Sandbox => }/Editor/RenderHelpers/AxisHelper.h | 0 .../Editor/RenderHelpers/AxisHelperShared.inl | 0 Code/{Sandbox => }/Editor/RenderViewport.cpp | 0 Code/{Sandbox => }/Editor/RenderViewport.h | 0 Code/{Sandbox => }/Editor/RenderViewport_mac.mm | 0 Code/{Sandbox => }/Editor/Report.h | 0 .../{Sandbox => }/Editor/ResizeResolutionDialog.cpp | 0 Code/{Sandbox => }/Editor/ResizeResolutionDialog.h | 0 Code/{Sandbox => }/Editor/ResizeResolutionDialog.ui | 0 Code/{Sandbox => }/Editor/Resource.h | 0 Code/{Sandbox => }/Editor/ResourceSelectorHost.cpp | 0 Code/{Sandbox => }/Editor/ResourceSelectorHost.h | 0 Code/{Sandbox => }/Editor/SelectEAXPresetDlg.cpp | 0 Code/{Sandbox => }/Editor/SelectEAXPresetDlg.h | 0 Code/{Sandbox => }/Editor/SelectEAXPresetDlg.ui | 0 .../Editor/SelectLightAnimationDialog.cpp | 0 .../Editor/SelectLightAnimationDialog.h | 0 Code/{Sandbox => }/Editor/SelectSequenceDialog.cpp | 0 Code/{Sandbox => }/Editor/SelectSequenceDialog.h | 0 Code/{Sandbox => }/Editor/Settings.cpp | 0 Code/{Sandbox => }/Editor/Settings.h | 0 Code/{Sandbox => }/Editor/SettingsManager.cpp | 0 Code/{Sandbox => }/Editor/SettingsManager.h | 0 Code/{Sandbox => }/Editor/SettingsManagerDialog.cpp | 0 Code/{Sandbox => }/Editor/SettingsManagerDialog.h | 0 Code/{Sandbox => }/Editor/SettingsManagerDialog.ui | 0 Code/{Sandbox => }/Editor/ShortcutDispatcher.cpp | 0 Code/{Sandbox => }/Editor/ShortcutDispatcher.h | 0 Code/{Sandbox => }/Editor/StartupLogoDialog.cpp | 0 Code/{Sandbox => }/Editor/StartupLogoDialog.h | 0 Code/{Sandbox => }/Editor/StartupLogoDialog.qrc | 0 Code/{Sandbox => }/Editor/StartupLogoDialog.ui | 0 Code/{Sandbox => }/Editor/StartupTraceHandler.cpp | 0 Code/{Sandbox => }/Editor/StartupTraceHandler.h | 0 Code/{Sandbox => }/Editor/StringDlg.cpp | 0 Code/{Sandbox => }/Editor/StringDlg.h | 0 Code/{Sandbox => }/Editor/Style/Editor.qss | 0 .../Editor/Style/EditorPreferencesDialog.qss | 0 .../Style/EditorStylesheetVariables_Dark.json | 0 .../Editor/Style/GraphicsSettingsDialog.qss | 0 .../Editor/Style/LayoutConfigDialog.qss | 0 .../Editor/Style/NewEditorStylesheet.qss | 0 Code/{Sandbox => }/Editor/Style/resources.qrc | 0 Code/{Sandbox => }/Editor/SurfaceTypeValidator.cpp | 0 Code/{Sandbox => }/Editor/SurfaceTypeValidator.h | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-00.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-01.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-02.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-03.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-04.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-05.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-06.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-07.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-08.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-09.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-10.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-11.png | 0 Code/{Sandbox => }/Editor/TimeOfDay/main-12.png | 0 Code/{Sandbox => }/Editor/ToolBox.cpp | 0 Code/{Sandbox => }/Editor/ToolBox.h | 0 .../Editor/ToolbarCustomizationDialog.cpp | 0 .../Editor/ToolbarCustomizationDialog.h | 0 .../Editor/ToolbarCustomizationDialog.ui | 0 Code/{Sandbox => }/Editor/ToolbarManager.cpp | 0 Code/{Sandbox => }/Editor/ToolbarManager.h | 0 Code/{Sandbox => }/Editor/ToolsConfigPage.cpp | 0 Code/{Sandbox => }/Editor/ToolsConfigPage.h | 0 Code/{Sandbox => }/Editor/ToolsConfigPage.ui | 0 Code/{Sandbox => }/Editor/TopRendererWnd.cpp | 0 Code/{Sandbox => }/Editor/TopRendererWnd.h | 0 .../Editor/TrackView/2DBezierKeyUIControls.cpp | 0 .../Editor/TrackView/AssetBlendKeyUIControls.cpp | 0 .../Editor/TrackView/AtomOutputFrameCapture.cpp | 0 .../Editor/TrackView/AtomOutputFrameCapture.h | 0 .../Editor/TrackView/CaptureKeyUIControls.cpp | 0 .../Editor/TrackView/CharacterKeyUIControls.cpp | 0 .../Editor/TrackView/CommentKeyUIControls.cpp | 0 .../Editor/TrackView/CommentNodeAnimator.cpp | 0 .../Editor/TrackView/CommentNodeAnimator.h | 0 .../Editor/TrackView/ConsoleKeyUIControls.cpp | 0 .../Editor/TrackView/DirectorNodeAnimator.cpp | 0 .../Editor/TrackView/DirectorNodeAnimator.h | 0 .../Editor/TrackView/EditorTrackViewEventsBus.h | 0 .../Editor/TrackView/EventKeyUIControls.cpp | 0 .../Editor/TrackView/GotoKeyUIControls.cpp | 0 .../Editor/TrackView/ScreenFaderKeyUIControls.cpp | 0 .../Editor/TrackView/SelectKeyUIControls.cpp | 0 .../Editor/TrackView/SequenceBatchRenderDialog.cpp | 0 .../Editor/TrackView/SequenceBatchRenderDialog.h | 0 .../Editor/TrackView/SequenceBatchRenderDialog.ui | 0 .../Editor/TrackView/SequenceKeyUIControls.cpp | 0 .../Editor/TrackView/SoundKeyUIControls.cpp | 0 .../TrackView/TVCustomizeTrackColorsDialog.ui | 0 .../Editor/TrackView/TVCustomizeTrackColorsDlg.cpp | 0 .../Editor/TrackView/TVCustomizeTrackColorsDlg.h | 0 .../Editor/TrackView/TVEventsDialog.cpp | 0 .../{Sandbox => }/Editor/TrackView/TVEventsDialog.h | 0 .../Editor/TrackView/TVEventsDialog.ui | 0 .../Editor/TrackView/TVSequenceProps.cpp | 0 .../Editor/TrackView/TVSequenceProps.h | 0 .../Editor/TrackView/TVSequenceProps.ui | 0 .../Editor/TrackView/TimeRangeKeyUIControls.cpp | 0 .../Editor/TrackView/TrackEventKeyUIControls.cpp | 0 .../Editor/TrackView/TrackViewAnimNode.cpp | 0 .../Editor/TrackView/TrackViewAnimNode.h | 0 .../Editor/TrackView/TrackViewCurveEditor.cpp | 0 .../Editor/TrackView/TrackViewCurveEditor.h | 0 .../Editor/TrackView/TrackViewCurveEditor.ui | 0 .../Editor/TrackView/TrackViewDialog.cpp | 0 .../Editor/TrackView/TrackViewDialog.h | 0 .../Editor/TrackView/TrackViewDialog.qrc | 0 .../Editor/TrackView/TrackViewDopeSheetBase.cpp | 0 .../Editor/TrackView/TrackViewDopeSheetBase.h | 0 .../Editor/TrackView/TrackViewDoubleSpinBox.cpp | 0 .../Editor/TrackView/TrackViewDoubleSpinBox.h | 0 .../Editor/TrackView/TrackViewEventNode.cpp | 0 .../Editor/TrackView/TrackViewEventNode.h | 0 .../Editor/TrackView/TrackViewFindDlg.cpp | 0 .../Editor/TrackView/TrackViewFindDlg.h | 0 .../Editor/TrackView/TrackViewFindDlg.ui | 0 .../Editor/TrackView/TrackViewKeyPropertiesDlg.cpp | 0 .../Editor/TrackView/TrackViewKeyPropertiesDlg.h | 0 .../Editor/TrackView/TrackViewNode.cpp | 0 Code/{Sandbox => }/Editor/TrackView/TrackViewNode.h | 0 .../Editor/TrackView/TrackViewNodeFactories.cpp | 0 .../Editor/TrackView/TrackViewNodeFactories.h | 0 .../Editor/TrackView/TrackViewNodes.cpp | 0 .../{Sandbox => }/Editor/TrackView/TrackViewNodes.h | 0 .../Editor/TrackView/TrackViewNodes.ui | 0 .../Editor/TrackView/TrackViewPythonFuncs.cpp | 0 .../Editor/TrackView/TrackViewPythonFuncs.h | 0 .../Editor/TrackView/TrackViewSequence.cpp | 0 .../Editor/TrackView/TrackViewSequence.h | 0 .../Editor/TrackView/TrackViewSequenceManager.cpp | 0 .../Editor/TrackView/TrackViewSequenceManager.h | 0 .../Editor/TrackView/TrackViewSplineCtrl.cpp | 0 .../Editor/TrackView/TrackViewSplineCtrl.h | 0 .../Editor/TrackView/TrackViewTimeline.cpp | 0 .../Editor/TrackView/TrackViewTimeline.h | 0 .../Editor/TrackView/TrackViewTrack.cpp | 0 .../{Sandbox => }/Editor/TrackView/TrackViewTrack.h | 0 .../Editor/TrackView/TrackViewTrackPropsDlg.ui | 0 .../Editor/TrackView/TrackViewUndo.cpp | 0 Code/{Sandbox => }/Editor/TrackView/TrackViewUndo.h | 0 Code/{Sandbox => }/Editor/TrackView/bmp00016_00.png | 0 Code/{Sandbox => }/Editor/TrackView/bmp00016_01.png | 0 .../Editor/TrackView/clapperboard_cancel.png | 0 .../Editor/TrackView/clapperboard_ready.png | 0 .../Editor/TrackView/spline_edit_bar_00.png | 0 .../Editor/TrackView/spline_edit_bar_01.png | 0 .../Editor/TrackView/spline_edit_bar_02.png | 0 .../Editor/TrackView/spline_edit_bar_03.png | 0 .../Editor/TrackView/spline_edit_bar_04.png | 0 .../Editor/TrackView/spline_edit_bar_05.png | 0 .../Editor/TrackView/spline_edit_bar_06.png | 0 .../Editor/TrackView/spline_edit_bar_07.png | 0 .../Editor/TrackView/spline_edit_bar_08.png | 0 .../Editor/TrackView/spline_edit_bar_09.png | 0 .../Editor/TrackView/spline_edit_bar_10.png | 0 .../Editor/TrackView/spline_edit_bar_11.png | 0 .../Editor/TrackView/spline_edit_bar_12.png | 0 .../Editor/TrackView/spline_edit_bar_13.png | 0 .../Editor/TrackView/spline_edit_bar_14.png | 0 .../Editor/TrackView/spline_edit_bar_15.png | 0 .../Editor/TrackView/spline_edit_bar_16.png | 0 .../Editor/TrackView/trackview_keys_00.png | 0 .../Editor/TrackView/trackview_keys_01.png | 0 .../Editor/TrackView/trackview_keys_02.png | 0 .../Editor/TrackView/trackview_keys_03.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-00.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-01.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-02.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-03.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-04.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-05.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-06.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-07.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-08.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-09.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-10.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-11.png | 0 Code/{Sandbox => }/Editor/TrackView/tvkeys-12.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-00.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-01.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-02.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-03.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-04.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-05.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-06.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-07.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-08.png | 0 Code/{Sandbox => }/Editor/TrackView/tvmain-09.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-00.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-01.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-02.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-03.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-04.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-05.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-06.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-07.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-08.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-09.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-10.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-11.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-12.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-13.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-14.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-15.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-16.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-17.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-18.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-19.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-20.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-21.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-22.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-23.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-24.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-25.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-26.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-27.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-28.png | 0 Code/{Sandbox => }/Editor/TrackView/tvnodes-29.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-00.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-01.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-02.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-03.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-04.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-05.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-06.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-07.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-08.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-09.png | 0 Code/{Sandbox => }/Editor/TrackView/tvplay-10.png | 0 Code/{Sandbox => }/Editor/TrackView/tvview-00.png | 0 Code/{Sandbox => }/Editor/TrackView/tvview-01.png | 0 Code/{Sandbox => }/Editor/TrackView/tvview-02.png | 0 .../Editor/TrackViewExportKeyTimeDlg.cpp | 0 .../Editor/TrackViewExportKeyTimeDlg.h | 0 .../Editor/TrackViewExportKeyTimeDlg.ui | 0 .../Editor/TrackViewFBXImportPreviewDialog.cpp | 0 .../Editor/TrackViewFBXImportPreviewDialog.h | 0 .../Editor/TrackViewFBXImportPreviewDialog.ui | 0 .../Editor/TrackViewNewSequenceDialog.cpp | 0 .../Editor/TrackViewNewSequenceDialog.h | 0 .../Editor/TrackViewNewSequenceDialog.ui | 0 .../Editor/Translations/assetbrowser_en-us.ts | 0 .../Editor/Translations/editor_en-us.ts | 0 Code/{Sandbox => }/Editor/TrustInfo.manifest | 0 Code/{Sandbox => }/Editor/UIEnumsDatabase.cpp | 0 Code/{Sandbox => }/Editor/UIEnumsDatabase.h | 0 .../Editor/Undo/IUndoManagerListener.h | 0 Code/{Sandbox => }/Editor/Undo/IUndoObject.h | 0 Code/{Sandbox => }/Editor/Undo/Undo.cpp | 0 Code/{Sandbox => }/Editor/Undo/Undo.h | 0 Code/{Sandbox => }/Editor/Undo/UndoVariableChange.h | 0 Code/{Sandbox => }/Editor/UndoConfigSpec.cpp | 0 Code/{Sandbox => }/Editor/UndoConfigSpec.h | 0 Code/{Sandbox => }/Editor/UndoDropDown.cpp | 0 Code/{Sandbox => }/Editor/UndoDropDown.h | 0 Code/{Sandbox => }/Editor/UndoViewPosition.cpp | 0 Code/{Sandbox => }/Editor/UndoViewPosition.h | 0 Code/{Sandbox => }/Editor/UndoViewRotation.cpp | 0 Code/{Sandbox => }/Editor/UndoViewRotation.h | 0 Code/{Sandbox => }/Editor/UsedResources.cpp | 0 Code/{Sandbox => }/Editor/UsedResources.h | 0 Code/{Sandbox => }/Editor/UserMessageDefines.h | 0 .../{Sandbox => }/Editor/Util/3DConnexionDriver.cpp | 0 Code/{Sandbox => }/Editor/Util/3DConnexionDriver.h | 0 .../Editor/Util/AbstractGroupProxyModel.cpp | 0 .../Editor/Util/AbstractGroupProxyModel.h | 0 .../{Sandbox => }/Editor/Util/AbstractSortModel.cpp | 0 Code/{Sandbox => }/Editor/Util/AbstractSortModel.h | 0 Code/{Sandbox => }/Editor/Util/AffineParts.cpp | 0 Code/{Sandbox => }/Editor/Util/AffineParts.h | 0 .../Editor/Util/AutoDirectoryRestoreFileDialog.cpp | 0 .../Editor/Util/AutoDirectoryRestoreFileDialog.h | 0 Code/{Sandbox => }/Editor/Util/AutoLogTime.cpp | 0 Code/{Sandbox => }/Editor/Util/AutoLogTime.h | 0 Code/{Sandbox => }/Editor/Util/ColorUtils.cpp | 0 Code/{Sandbox => }/Editor/Util/ColorUtils.h | 0 .../Editor/Util/ColumnGroupHeaderView.cpp | 0 .../Editor/Util/ColumnGroupHeaderView.h | 0 .../Editor/Util/ColumnGroupItemDelegate.cpp | 0 .../Editor/Util/ColumnGroupItemDelegate.h | 0 .../Editor/Util/ColumnGroupProxyModel.cpp | 0 .../Editor/Util/ColumnGroupProxyModel.h | 0 .../Editor/Util/ColumnGroupTreeView.cpp | 0 .../{Sandbox => }/Editor/Util/ColumnGroupTreeView.h | 0 .../Editor/Util/ColumnSortProxyModel.cpp | 0 .../Editor/Util/ColumnSortProxyModel.h | 0 .../Editor/Util/Contrib/NvFloatMath.inl | 0 Code/{Sandbox => }/Editor/Util/CryMemFile.h | 0 Code/{Sandbox => }/Editor/Util/DynamicArray2D.cpp | 0 Code/{Sandbox => }/Editor/Util/DynamicArray2D.h | 0 .../Editor/Util/EditorAutoLevelLoadTest.cpp | 0 .../Editor/Util/EditorAutoLevelLoadTest.h | 0 Code/{Sandbox => }/Editor/Util/EditorUtils.cpp | 0 Code/{Sandbox => }/Editor/Util/EditorUtils.h | 0 .../{Sandbox => }/Editor/Util/FileChangeMonitor.cpp | 0 Code/{Sandbox => }/Editor/Util/FileChangeMonitor.h | 0 Code/{Sandbox => }/Editor/Util/FileEnum.cpp | 0 Code/{Sandbox => }/Editor/Util/FileEnum.h | 0 Code/{Sandbox => }/Editor/Util/FileUtil.cpp | 0 Code/{Sandbox => }/Editor/Util/FileUtil.h | 0 Code/{Sandbox => }/Editor/Util/FileUtil_impl.cpp | 0 Code/{Sandbox => }/Editor/Util/FileUtil_impl.h | 0 Code/{Sandbox => }/Editor/Util/GdiUtil.cpp | 0 Code/{Sandbox => }/Editor/Util/GdiUtil.h | 0 Code/{Sandbox => }/Editor/Util/GeometryUtil.cpp | 0 Code/{Sandbox => }/Editor/Util/GeometryUtil.h | 0 Code/{Sandbox => }/Editor/Util/GuidUtil.cpp | 0 Code/{Sandbox => }/Editor/Util/GuidUtil.h | 0 Code/{Sandbox => }/Editor/Util/IObservable.h | 0 Code/{Sandbox => }/Editor/Util/IXmlHistoryManager.h | 0 Code/{Sandbox => }/Editor/Util/Image.cpp | 0 Code/{Sandbox => }/Editor/Util/Image.h | 0 Code/{Sandbox => }/Editor/Util/ImageASC.cpp | 0 Code/{Sandbox => }/Editor/Util/ImageASC.h | 0 Code/{Sandbox => }/Editor/Util/ImageBT.cpp | 0 Code/{Sandbox => }/Editor/Util/ImageBT.h | 0 Code/{Sandbox => }/Editor/Util/ImageGif.cpp | 0 Code/{Sandbox => }/Editor/Util/ImageGif.h | 0 Code/{Sandbox => }/Editor/Util/ImageHistogram.cpp | 0 Code/{Sandbox => }/Editor/Util/ImageHistogram.h | 0 Code/{Sandbox => }/Editor/Util/ImagePainter.cpp | 0 Code/{Sandbox => }/Editor/Util/ImagePainter.h | 0 Code/{Sandbox => }/Editor/Util/ImageTIF.cpp | 0 Code/{Sandbox => }/Editor/Util/ImageTIF.h | 0 Code/{Sandbox => }/Editor/Util/ImageUtil.cpp | 0 Code/{Sandbox => }/Editor/Util/ImageUtil.h | 0 Code/{Sandbox => }/Editor/Util/ImageUtil_impl.cpp | 0 Code/{Sandbox => }/Editor/Util/ImageUtil_impl.h | 0 Code/{Sandbox => }/Editor/Util/IndexedFiles.cpp | 0 Code/{Sandbox => }/Editor/Util/IndexedFiles.h | 0 Code/{Sandbox => }/Editor/Util/KDTree.cpp | 0 Code/{Sandbox => }/Editor/Util/KDTree.h | 0 Code/{Sandbox => }/Editor/Util/Mailer.h | 0 Code/{Sandbox => }/Editor/Util/Math.h | 0 Code/{Sandbox => }/Editor/Util/MemoryBlock.cpp | 0 Code/{Sandbox => }/Editor/Util/MemoryBlock.h | 0 .../Editor/Util/ModalWindowDismisser.cpp | 0 .../Editor/Util/ModalWindowDismisser.h | 0 Code/{Sandbox => }/Editor/Util/NamedData.cpp | 0 Code/{Sandbox => }/Editor/Util/NamedData.h | 0 Code/{Sandbox => }/Editor/Util/Observable.h | 0 Code/{Sandbox => }/Editor/Util/PakFile.cpp | 0 Code/{Sandbox => }/Editor/Util/PakFile.h | 0 Code/{Sandbox => }/Editor/Util/PathUtil.cpp | 0 Code/{Sandbox => }/Editor/Util/PathUtil.h | 0 .../Editor/Util/PredefinedAspectRatios.cpp | 0 .../Editor/Util/PredefinedAspectRatios.h | 0 Code/{Sandbox => }/Editor/Util/RefCountBase.h | 0 Code/{Sandbox => }/Editor/Util/StringHelpers.cpp | 0 Code/{Sandbox => }/Editor/Util/StringHelpers.h | 0 .../Editor/Util/StringNoCasePredicate.h | 0 Code/{Sandbox => }/Editor/Util/TRefCountBase.h | 0 Code/{Sandbox => }/Editor/Util/Triangulate.cpp | 0 Code/{Sandbox => }/Editor/Util/Triangulate.h | 0 Code/{Sandbox => }/Editor/Util/UIEnumerations.cpp | 0 Code/{Sandbox => }/Editor/Util/UIEnumerations.h | 0 Code/{Sandbox => }/Editor/Util/UndoUtil.cpp | 0 Code/{Sandbox => }/Editor/Util/UndoUtil.h | 0 Code/{Sandbox => }/Editor/Util/Util.h | 0 Code/{Sandbox => }/Editor/Util/Variable.cpp | 0 Code/{Sandbox => }/Editor/Util/Variable.h | 0 .../Editor/Util/VariablePropertyType.cpp | 0 .../Editor/Util/VariablePropertyType.h | 0 Code/{Sandbox => }/Editor/Util/XmlArchive.cpp | 0 Code/{Sandbox => }/Editor/Util/XmlArchive.h | 0 .../{Sandbox => }/Editor/Util/XmlHistoryManager.cpp | 0 Code/{Sandbox => }/Editor/Util/XmlHistoryManager.h | 0 Code/{Sandbox => }/Editor/Util/XmlTemplate.cpp | 0 Code/{Sandbox => }/Editor/Util/XmlTemplate.h | 0 Code/{Sandbox => }/Editor/Util/bitarray.h | 0 Code/{Sandbox => }/Editor/Util/fastlib.h | 0 Code/{Sandbox => }/Editor/Util/smartptr.h | 0 Code/{Sandbox => }/Editor/ViewManager.cpp | 0 Code/{Sandbox => }/Editor/ViewManager.h | 0 Code/{Sandbox => }/Editor/ViewPane.cpp | 0 Code/{Sandbox => }/Editor/ViewPane.h | 0 Code/{Sandbox => }/Editor/Viewport.cpp | 0 Code/{Sandbox => }/Editor/Viewport.h | 0 .../Editor/ViewportManipulatorController.cpp | 0 .../Editor/ViewportManipulatorController.h | 0 Code/{Sandbox => }/Editor/ViewportTitleDlg.cpp | 0 Code/{Sandbox => }/Editor/ViewportTitleDlg.h | 0 Code/{Sandbox => }/Editor/ViewportTitleDlg.ui | 0 Code/{Sandbox => }/Editor/WaitProgress.cpp | 0 Code/{Sandbox => }/Editor/WaitProgress.h | 0 .../Editor/WelcomeScreen/DefaultActiveProject.png | 0 .../Editor/WelcomeScreen/WelcomeScreenDialog.cpp | 0 .../Editor/WelcomeScreen/WelcomeScreenDialog.h | 0 .../Editor/WelcomeScreen/WelcomeScreenDialog.qrc | 0 .../Editor/WelcomeScreen/WelcomeScreenDialog.ui | 0 Code/{Sandbox => }/Editor/WinWidgetId.h | 0 Code/{Sandbox => }/Editor/WindowObserver_mac.h | 0 Code/{Sandbox => }/Editor/WindowObserver_mac.mm | 0 Code/{Sandbox => }/Editor/WipFeatureManager.cpp | 0 Code/{Sandbox => }/Editor/WipFeatureManager.h | 0 Code/{Sandbox => }/Editor/WipFeaturesDlg.cpp | 0 Code/{Sandbox => }/Editor/WipFeaturesDlg.h | 0 Code/{Sandbox => }/Editor/WipFeaturesDlg.qrc | 0 Code/{Sandbox => }/Editor/WipFeaturesDlg.ui | 0 Code/{Sandbox => }/Editor/arhitype_tree_00.png | 0 Code/{Sandbox => }/Editor/arhitype_tree_01.png | 0 Code/{Sandbox => }/Editor/arhitype_tree_02.png | 0 Code/{Sandbox => }/Editor/arhitype_tree_03.png | 0 Code/{Sandbox => }/Editor/bmp00005_00.png | 0 Code/{Sandbox => }/Editor/bmp00005_01.png | 0 Code/{Sandbox => }/Editor/bmp00005_02.png | 0 Code/{Sandbox => }/Editor/bmp00005_03.png | 0 Code/{Sandbox => }/Editor/bmp00005_04.png | 0 Code/{Sandbox => }/Editor/bmp00005_05.png | 0 Code/{Sandbox => }/Editor/bmp00005_06.png | 0 Code/{Sandbox => }/Editor/bmp00005_07.png | 0 Code/{Sandbox => }/Editor/bmp00005_08.png | 0 Code/{Sandbox => }/Editor/bmp00005_09.png | 0 Code/{Sandbox => }/Editor/bmp00006_00.png | 0 Code/{Sandbox => }/Editor/bmp00006_01.png | 0 Code/{Sandbox => }/Editor/bmp00006_02.png | 0 Code/{Sandbox => }/Editor/bmp00006_03.png | 0 Code/{Sandbox => }/Editor/bmp00006_04.png | 0 Code/{Sandbox => }/Editor/bmp00006_05.png | 0 Code/{Sandbox => }/Editor/bmp00006_06.png | 0 Code/{Sandbox => }/Editor/bmp00006_07.png | 0 Code/{Sandbox => }/Editor/editor_core_files.cmake | 0 .../Editor/editor_core_test_files.cmake | 0 Code/{Sandbox => }/Editor/editor_darwin_files.cmake | 0 Code/{Sandbox => }/Editor/editor_files.cmake | 0 .../{Sandbox => }/Editor/editor_headers_files.cmake | 0 Code/{Sandbox => }/Editor/editor_lib_files.cmake | 0 .../Editor/editor_lib_terrain_files.cmake | 0 .../Editor/editor_lib_test_files.cmake | 0 .../Editor/editor_lib_test_terrain_files.cmake | 0 Code/{Sandbox => }/Editor/editor_win_files.cmake | 0 Code/{Sandbox => }/Editor/graphicssettingsdialog.ui | 0 Code/{Sandbox => }/Editor/main.cpp | 0 Code/{Sandbox => }/Editor/o3de_logo.svg | 0 Code/{Sandbox => }/Editor/particles_tree_00.png | 0 Code/{Sandbox => }/Editor/particles_tree_01.png | 0 Code/{Sandbox => }/Editor/particles_tree_02.png | 0 Code/{Sandbox => }/Editor/particles_tree_03.png | 0 Code/{Sandbox => }/Editor/particles_tree_04.png | 0 Code/{Sandbox => }/Editor/particles_tree_05.png | 0 Code/{Sandbox => }/Editor/particles_tree_06.png | 0 Code/{Sandbox => }/Editor/particles_tree_07.png | 0 Code/{Sandbox => }/Editor/res/4WAY01.CUR | Bin Code/{Sandbox => }/Editor/res/AVI_Recorder.bmp | 0 .../Editor/res/AWS_preferences_icon.svg | 0 Code/{Sandbox => }/Editor/res/Camera.svg | 0 Code/{Sandbox => }/Editor/res/ConsoleToolbar.bmp | 0 Code/{Sandbox => }/Editor/res/CryEdit.ico | 0 Code/{Sandbox => }/Editor/res/CryEdit.rc2 | 0 Code/{Sandbox => }/Editor/res/CryEditDoc.ico | 0 Code/{Sandbox => }/Editor/res/Cursor_2.cur | Bin Code/{Sandbox => }/Editor/res/Debug.svg | 0 Code/{Sandbox => }/Editor/res/Default_closed.svg | 0 Code/{Sandbox => }/Editor/res/Default_open.svg | 0 Code/{Sandbox => }/Editor/res/Entity.svg | 0 .../{Sandbox => }/Editor/res/Entity_Editor_Only.svg | 0 Code/{Sandbox => }/Editor/res/Entity_Not_Active.svg | 0 Code/{Sandbox => }/Editor/res/Experimental.svg | 0 Code/{Sandbox => }/Editor/res/Eye.svg | 0 Code/{Sandbox => }/Editor/res/Eye_Open.tif | 0 Code/{Sandbox => }/Editor/res/Eye_Open_Hidden.tif | 0 Code/{Sandbox => }/Editor/res/Eye_Open_Hover.tif | 0 Code/{Sandbox => }/Editor/res/Eye_Partial_Open.tif | 0 Code/{Sandbox => }/Editor/res/Eye_Partial_Slash.tif | 0 Code/{Sandbox => }/Editor/res/Eye_Slash.tif | 0 Code/{Sandbox => }/Editor/res/Eye_Slash_Hidden.tif | 0 Code/{Sandbox => }/Editor/res/Eye_Slash_Hover.tif | 0 Code/{Sandbox => }/Editor/res/Files.svg | 0 Code/{Sandbox => }/Editor/res/Gizmos.svg | 0 Code/{Sandbox => }/Editor/res/Global.svg | 0 Code/{Sandbox => }/Editor/res/LegacyLogo.bmp | 0 .../Editor/res/MannFileManagerImageList.bmp | 0 Code/{Sandbox => }/Editor/res/Motion.svg | 0 Code/{Sandbox => }/Editor/res/Mouse.cur | Bin Code/{Sandbox => }/Editor/res/Padlock.svg | 0 Code/{Sandbox => }/Editor/res/Padlock_Disabled.tif | 0 .../Editor/res/Padlock_Disabled_Hover.tif | 0 Code/{Sandbox => }/Editor/res/Padlock_Enabled.tif | 0 .../Editor/res/Padlock_Enabled_Hover.tif | 0 .../Editor/res/Padlock_Partial_Disabled.tif | 0 .../Editor/res/Padlock_Partial_Enabled.tif | 0 Code/{Sandbox => }/Editor/res/Preferences.bmp | 0 Code/{Sandbox => }/Editor/res/Preferences_00.png | 0 Code/{Sandbox => }/Editor/res/Preferences_01.png | 0 Code/{Sandbox => }/Editor/res/Preferences_02.png | 0 Code/{Sandbox => }/Editor/res/Preferences_03.png | 0 Code/{Sandbox => }/Editor/res/Slice_Entity.svg | 0 .../Editor/res/Slice_Entity_Editor_Only.svg | 0 .../Editor/res/Slice_Entity_Modified.svg | 0 .../res/Slice_Entity_Modified_Editor_Only.svg | 0 .../Slice_Entity_Modified_Editor_Only_Unsavable.svg | 0 .../Editor/res/Slice_Entity_Modified_Not_Active.svg | 0 .../Slice_Entity_Modified_Not_Active_Unsavable.svg | 0 .../Editor/res/Slice_Entity_Modified_Unsavable.svg | 0 .../Editor/res/Slice_Entity_Not_Active.svg | 0 Code/{Sandbox => }/Editor/res/Slice_Handle.svg | 0 .../Editor/res/Slice_Handle_Editor_Only.svg | 0 .../Editor/res/Slice_Handle_Modified.svg | 0 .../res/Slice_Handle_Modified_Editor_Only.svg | 0 .../Editor/res/Slice_Handle_Modified_Not_Active.svg | 0 .../Editor/res/Slice_Handle_Not_Active.svg | 0 Code/{Sandbox => }/Editor/res/Toolbar.bmp | 0 Code/{Sandbox => }/Editor/res/TreeView.bmp | 0 Code/{Sandbox => }/Editor/res/Viewport.svg | 0 .../Editor/res/VisualLog_PlayerButtons.bmp | 0 Code/{Sandbox => }/Editor/res/ab_toolbar.bmp | 0 Code/{Sandbox => }/Editor/res/about_dark.bmp | 0 Code/{Sandbox => }/Editor/res/add.png | 0 Code/{Sandbox => }/Editor/res/anim.bmp | 0 Code/{Sandbox => }/Editor/res/animatio.bmp | 0 .../Editor/res/animations_tree_soundevent.bmp | 0 .../Editor/res/animflag_inside_pak.bmp | 0 Code/{Sandbox => }/Editor/res/animflag_on_disk.bmp | 0 Code/{Sandbox => }/Editor/res/animtree.bmp | 0 Code/{Sandbox => }/Editor/res/arhitype_tree.bmp | 0 Code/{Sandbox => }/Editor/res/arr_addkey.cur | Bin Code/{Sandbox => }/Editor/res/arrow.cur | Bin Code/{Sandbox => }/Editor/res/arrow_down.cur | Bin Code/{Sandbox => }/Editor/res/arrow_down_black.ico | 0 Code/{Sandbox => }/Editor/res/arrow_downright.cur | Bin Code/{Sandbox => }/Editor/res/arrow_up.cur | Bin Code/{Sandbox => }/Editor/res/arrow_up_black.ico | 0 Code/{Sandbox => }/Editor/res/arrow_upright.cur | Bin Code/{Sandbox => }/Editor/res/arrowcop.cur | Bin Code/{Sandbox => }/Editor/res/assetIsDraggable.ico | 0 Code/{Sandbox => }/Editor/res/avi_reco.bmp | 0 Code/{Sandbox => }/Editor/res/ball_disabled.ico | 0 Code/{Sandbox => }/Editor/res/ball_offline.ico | 0 Code/{Sandbox => }/Editor/res/ball_online.ico | 0 Code/{Sandbox => }/Editor/res/ball_pending.ico | 0 Code/{Sandbox => }/Editor/res/bitmap5.bmp | 0 Code/{Sandbox => }/Editor/res/bitmap6.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00001.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00002.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00003.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00005.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00006.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00007.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00007_0.png | 0 Code/{Sandbox => }/Editor/res/bmp00007_1.png | 0 Code/{Sandbox => }/Editor/res/bmp00007_2.png | 0 Code/{Sandbox => }/Editor/res/bmp00007_3.png | 0 Code/{Sandbox => }/Editor/res/bmp00007_4.png | 0 Code/{Sandbox => }/Editor/res/bmp00007_5.png | 0 Code/{Sandbox => }/Editor/res/bmp00007_6.png | 0 Code/{Sandbox => }/Editor/res/bmp00008.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00009.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00010.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00011.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00012.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00013.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00014.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00015.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00016.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00017.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00019.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00020.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00024.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00025.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00026.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00027.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00028.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00029.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00030.bmp | 0 Code/{Sandbox => }/Editor/res/bmp00031.bmp | 0 Code/{Sandbox => }/Editor/res/brush24bpp.bmp | 0 .../Editor/res/ce_animations_toolbar.bmp | 0 .../Editor/res/character_parts_bar.bmp | 0 Code/{Sandbox => }/Editor/res/charedit.bmp | 0 Code/{Sandbox => }/Editor/res/chrparamsicons.bmp | 0 .../Editor/res/clapperboard_cancel.bmp | 0 .../{Sandbox => }/Editor/res/clapperboard_ready.bmp | 0 Code/{Sandbox => }/Editor/res/clone.ico | 0 Code/{Sandbox => }/Editor/res/cur00001.cur | Bin Code/{Sandbox => }/Editor/res/cur00002.cur | Bin Code/{Sandbox => }/Editor/res/cur00003.cur | Bin Code/{Sandbox => }/Editor/res/cur00004.cur | Bin Code/{Sandbox => }/Editor/res/cur00005.cur | Bin Code/{Sandbox => }/Editor/res/cursor1.cur | Bin Code/{Sandbox => }/Editor/res/cursor2.cur | Bin Code/{Sandbox => }/Editor/res/cvar_dark.bmp | 0 Code/{Sandbox => }/Editor/res/db_gametoken.bmp | 0 Code/{Sandbox => }/Editor/res/db_library_add.svg | 0 .../{Sandbox => }/Editor/res/db_library_additem.svg | 0 .../Editor/res/db_library_assignitem.svg | 0 Code/{Sandbox => }/Editor/res/db_library_bar.bmp | 0 Code/{Sandbox => }/Editor/res/db_library_bar_00.png | 0 Code/{Sandbox => }/Editor/res/db_library_bar_01.png | 0 Code/{Sandbox => }/Editor/res/db_library_bar_02.png | 0 Code/{Sandbox => }/Editor/res/db_library_bar_03.png | 0 Code/{Sandbox => }/Editor/res/db_library_bar_04.png | 0 Code/{Sandbox => }/Editor/res/db_library_bar_05.png | 0 .../Editor/res/db_library_cloneitem.svg | 0 Code/{Sandbox => }/Editor/res/db_library_copy.svg | 0 Code/{Sandbox => }/Editor/res/db_library_delete.svg | 0 .../Editor/res/db_library_getproperties.svg | 0 .../Editor/res/db_library_item_bar.bmp | 0 .../Editor/res/db_library_item_bar_00.png | 0 .../Editor/res/db_library_item_bar_01.png | 0 .../Editor/res/db_library_item_bar_02.png | 0 .../Editor/res/db_library_item_bar_03.png | 0 .../Editor/res/db_library_item_bar_04.png | 0 .../Editor/res/db_library_item_bar_05.png | 0 Code/{Sandbox => }/Editor/res/db_library_open.svg | 0 Code/{Sandbox => }/Editor/res/db_library_paste.svg | 0 Code/{Sandbox => }/Editor/res/db_library_redo.svg | 0 .../{Sandbox => }/Editor/res/db_library_refresh.svg | 0 Code/{Sandbox => }/Editor/res/db_library_reload.svg | 0 .../Editor/res/db_library_removeitem.svg | 0 Code/{Sandbox => }/Editor/res/db_library_save.svg | 0 Code/{Sandbox => }/Editor/res/db_library_undo.svg | 0 Code/{Sandbox => }/Editor/res/db_music.bmp | 0 Code/{Sandbox => }/Editor/res/db_music_logic.bmp | 0 Code/{Sandbox => }/Editor/res/db_standart.bmp | 0 Code/{Sandbox => }/Editor/res/db_standart_00.png | 0 Code/{Sandbox => }/Editor/res/db_standart_01.png | 0 Code/{Sandbox => }/Editor/res/db_standart_02.png | 0 Code/{Sandbox => }/Editor/res/db_standart_03.png | 0 .../Editor/res/desc_editor_toolbar.bmp | 0 Code/{Sandbox => }/Editor/res/down_arr.ico | 0 Code/{Sandbox => }/Editor/res/down_arrow.ico | 0 Code/{Sandbox => }/Editor/res/dynamichelp.bmp | 0 Code/{Sandbox => }/Editor/res/edit_mod.bmp | 0 Code/{Sandbox => }/Editor/res/editwithbutton.bmp | 0 .../Editor/res/editwithbutton_dark.bmp | 0 Code/{Sandbox => }/Editor/res/emptycontainer.png | 0 Code/{Sandbox => }/Editor/res/entitybar.bmp | 0 Code/{Sandbox => }/Editor/res/error_report.bmp | 0 .../Editor/res/error_report_checkmark.svg | 0 .../Editor/res/error_report_comment.svg | 0 .../{Sandbox => }/Editor/res/error_report_error.svg | 0 .../Editor/res/error_report_warning.svg | 0 Code/{Sandbox => }/Editor/res/expand1.ico | 0 Code/{Sandbox => }/Editor/res/expand2.ico | 0 Code/{Sandbox => }/Editor/res/faceit_playbar.bmp | 0 Code/{Sandbox => }/Editor/res/faceit_slidersbar.bmp | 0 Code/{Sandbox => }/Editor/res/faceit_spline_bar.bmp | 0 Code/{Sandbox => }/Editor/res/facejoystickbar.bmp | 0 Code/{Sandbox => }/Editor/res/facesequence_bar.bmp | 0 .../{Sandbox => }/Editor/res/facialsequence_bar.bmp | 0 Code/{Sandbox => }/Editor/res/feedback.ico | 0 Code/{Sandbox => }/Editor/res/file_browse.ico | 0 Code/{Sandbox => }/Editor/res/filesimage.bmp | 0 Code/{Sandbox => }/Editor/res/filesimage_00.png | 0 Code/{Sandbox => }/Editor/res/filesimage_01.png | 0 Code/{Sandbox => }/Editor/res/filesimage_02.png | 0 Code/{Sandbox => }/Editor/res/filesimage_03.png | 0 Code/{Sandbox => }/Editor/res/filesimage_04.png | 0 Code/{Sandbox => }/Editor/res/filesimage_05.png | 0 Code/{Sandbox => }/Editor/res/filesimage_06.png | 0 Code/{Sandbox => }/Editor/res/filesimage_07.png | 0 Code/{Sandbox => }/Editor/res/filesimage_08.png | 0 Code/{Sandbox => }/Editor/res/filesimage_09.png | 0 Code/{Sandbox => }/Editor/res/filestatus.bmp | 0 Code/{Sandbox => }/Editor/res/folder.ico | 0 Code/{Sandbox => }/Editor/res/folder.png | 0 Code/{Sandbox => }/Editor/res/fopen_back.ico | 0 Code/{Sandbox => }/Editor/res/fopen_back.png | 0 Code/{Sandbox => }/Editor/res/fopen_up.ico | 0 Code/{Sandbox => }/Editor/res/fopen_up.png | 0 Code/{Sandbox => }/Editor/res/grid.ico | 0 Code/{Sandbox => }/Editor/res/group_closed.png | 0 Code/{Sandbox => }/Editor/res/group_open.png | 0 Code/{Sandbox => }/Editor/res/handDrag.cur | Bin Code/{Sandbox => }/Editor/res/hit.cur | Bin .../Editor/res/hypergraph_components.bmp | 0 Code/{Sandbox => }/Editor/res/hypergraphtree.bmp | 0 Code/{Sandbox => }/Editor/res/ico00001.ico | 0 Code/{Sandbox => }/Editor/res/ico00002.ico | 0 Code/{Sandbox => }/Editor/res/icon1.ico | 0 Code/{Sandbox => }/Editor/res/icon_delete.ico | 0 Code/{Sandbox => }/Editor/res/icon_export.ico | 0 Code/{Sandbox => }/Editor/res/icon_import.ico | 0 Code/{Sandbox => }/Editor/res/icon_new.ico | 0 Code/{Sandbox => }/Editor/res/icon_pause.ico | 0 Code/{Sandbox => }/Editor/res/icon_play.ico | 0 Code/{Sandbox => }/Editor/res/icon_question.bmp | 0 Code/{Sandbox => }/Editor/res/icon_question.ico | 0 Code/{Sandbox => }/Editor/res/idb_.bmp | 0 .../Editor/res/infobar/CameraCollision-default.svg | 0 .../Editor/res/infobar/GotoLocation-default.svg | 0 .../Editor/res/infobar/LockScale-default.svg | 0 .../Editor/res/infobar/LockSelection-default.svg | 0 .../Editor/res/infobar/Mute-default.svg | 0 .../Editor/res/infobar/NoPlayerSync-default.svg | 0 .../Editor/res/infobar/NoPlayerSync-selected.svg | 0 .../Editor/res/infobar/Pause-default.svg | 0 .../Editor/res/infobar/PausePlay-default.svg | 0 .../Editor/res/infobar/PhysicsCol-default.svg | 0 .../{Sandbox => }/Editor/res/infobar/VR-default.svg | 0 .../Editor/res/infobar/XYZ-default.svg | 0 Code/{Sandbox => }/Editor/res/k_PlayerButtons.bmp | 0 .../Editor/res/layer_editor_layer_buttons-0.png | 0 .../Editor/res/layer_editor_layer_buttons-1.png | 0 Code/{Sandbox => }/Editor/res/layer_icon.svg | 0 Code/{Sandbox => }/Editor/res/layouts.bmp | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-0.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-1.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-2.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-3.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-4.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-5.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-6.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-7.svg | 0 Code/{Sandbox => }/Editor/res/layouts/layouts-8.svg | 0 Code/{Sandbox => }/Editor/res/lc_connecting.ico | 0 Code/{Sandbox => }/Editor/res/lc_running.ico | 0 Code/{Sandbox => }/Editor/res/leftright.cur | Bin Code/{Sandbox => }/Editor/res/litebulb.bmp | 0 .../Editor/res/lock_circle_default.svg | 0 .../Editor/res/lock_circle_transparent.svg | 0 .../Editor/res/lock_on_NotTransparent.svg | 0 .../Editor/res/lock_on_transparent.svg | 0 Code/{Sandbox => }/Editor/res/lock_sel.bmp | 0 Code/{Sandbox => }/Editor/res/locked.svg | 0 Code/{Sandbox => }/Editor/res/locksele.bmp | 0 Code/{Sandbox => }/Editor/res/logo.bmp | 0 Code/{Sandbox => }/Editor/res/logo.gif | 0 Code/{Sandbox => }/Editor/res/lyeditor_small.ico | 0 Code/{Sandbox => }/Editor/res/mainfram.bmp | 0 .../Editor/res/mann_tagdef_toolbar.bmp | 0 Code/{Sandbox => }/Editor/res/mann_tagdef_tree.bmp | 0 Code/{Sandbox => }/Editor/res/material.bmp | 0 Code/{Sandbox => }/Editor/res/material_browser.bmp | 0 Code/{Sandbox => }/Editor/res/materialbar.bmp | 0 Code/{Sandbox => }/Editor/res/maximize.ico | 0 Code/{Sandbox => }/Editor/res/minus.ico | 0 Code/{Sandbox => }/Editor/res/misc_bar.bmp | 0 .../Editor/res/model_viewport_dock.bmp | 0 .../Editor/res/model_viewport_fullscreen.bmp | 0 Code/{Sandbox => }/Editor/res/motion_b.bmp | 0 Code/{Sandbox => }/Editor/res/musictree.bmp | 0 Code/{Sandbox => }/Editor/res/nodrop.cur | Bin Code/{Sandbox => }/Editor/res/o3de_editor.ico | 0 Code/{Sandbox => }/Editor/res/object_move.cur | Bin Code/{Sandbox => }/Editor/res/object_rotate.cur | Bin Code/{Sandbox => }/Editor/res/object_scale.cur | Bin Code/{Sandbox => }/Editor/res/objectsbrowser.bmp | 0 Code/{Sandbox => }/Editor/res/pakmanager_file.png | 0 Code/{Sandbox => }/Editor/res/pakmanager_folder.png | 0 Code/{Sandbox => }/Editor/res/panel_ve.bmp | 0 Code/{Sandbox => }/Editor/res/panel_veg.bmp | 0 Code/{Sandbox => }/Editor/res/panel_veg2.bmp | 0 .../Editor/res/panel_vegetation-00.png | 0 .../Editor/res/panel_vegetation-01.png | 0 .../Editor/res/panel_vegetation-02.png | 0 .../Editor/res/panel_vegetation-03.png | 0 .../Editor/res/panel_vegetation-04.png | 0 .../Editor/res/panel_vegetation-05.png | 0 .../Editor/res/panel_vegetation_2-00.png | 0 .../Editor/res/panel_vegetation_2-01.png | 0 .../Editor/res/panel_vegetation_2-02.png | 0 .../Editor/res/panel_vegetation_2-03.png | 0 .../Editor/res/panel_vegetation_2-04.png | 0 .../Editor/res/panel_vegetation_2-05.png | 0 Code/{Sandbox => }/Editor/res/particles_tree.bmp | 0 Code/{Sandbox => }/Editor/res/particlesbar.bmp | 0 Code/{Sandbox => }/Editor/res/pick.bmp | 0 Code/{Sandbox => }/Editor/res/pick_cursor.cur | Bin Code/{Sandbox => }/Editor/res/plus.ico | 0 Code/{Sandbox => }/Editor/res/pointerDragItem.cur | Bin Code/{Sandbox => }/Editor/res/pointerHit.cur | Bin Code/{Sandbox => }/Editor/res/pointer_.cur | Bin Code/{Sandbox => }/Editor/res/pointer_flatten.cur | Bin Code/{Sandbox => }/Editor/res/pointer_getheight.cur | Bin Code/{Sandbox => }/Editor/res/pointer_link.cur | Bin Code/{Sandbox => }/Editor/res/pointer_linknow.cur | Bin Code/{Sandbox => }/Editor/res/pointer_minus.cur | Bin Code/{Sandbox => }/Editor/res/pointer_plus.cur | Bin Code/{Sandbox => }/Editor/res/pointer_smooth.cur | Bin .../Editor/res/pointer_so_sel_plus.cur | Bin Code/{Sandbox => }/Editor/res/pointer_so_select.cur | Bin .../Editor/res/proceduralmaterial_toolbar.bmp | 0 Code/{Sandbox => }/Editor/res/progslider_end.bmp | 0 Code/{Sandbox => }/Editor/res/progslider_marker.bmp | 0 Code/{Sandbox => }/Editor/res/progslider_start.bmp | 0 Code/{Sandbox => }/Editor/res/progslider_thumb.bmp | 0 Code/{Sandbox => }/Editor/res/progslider_track.bmp | 0 Code/{Sandbox => }/Editor/res/properties.bmp | 0 Code/{Sandbox => }/Editor/res/psd.ico | 0 Code/{Sandbox => }/Editor/res/remove.png | 0 Code/{Sandbox => }/Editor/res/rename.ico | 0 Code/{Sandbox => }/Editor/res/replace.ico | 0 .../Editor/res/ribbon_system_button.png | 0 Code/{Sandbox => }/Editor/res/sandbox_dark.bmp | 0 Code/{Sandbox => }/Editor/res/sb_welcome_dark.bmp | 0 Code/{Sandbox => }/Editor/res/selectobj.bmp | 0 Code/{Sandbox => }/Editor/res/seq_1_colour_keys.bmp | 0 Code/{Sandbox => }/Editor/res/seq_2_colour_keys.bmp | 0 Code/{Sandbox => }/Editor/res/seq_3_colour_keys.bmp | 0 Code/{Sandbox => }/Editor/res/seq_4_colour_keys.bmp | 0 Code/{Sandbox => }/Editor/res/seq_5_colour_keys.bmp | 0 Code/{Sandbox => }/Editor/res/seq_6_colour_keys.bmp | 0 Code/{Sandbox => }/Editor/res/seq_7_colour_keys.bmp | 0 Code/{Sandbox => }/Editor/res/sequencer_keys.bmp | 0 Code/{Sandbox => }/Editor/res/sequencer_nodes.bmp | 0 Code/{Sandbox => }/Editor/res/soundfiles.bmp | 0 Code/{Sandbox => }/Editor/res/soundmood.bmp | 0 Code/{Sandbox => }/Editor/res/soundpre.bmp | 0 .../Editor/res/source_control-not_setup.svg | 0 .../Editor/res/source_control-warning_v2.svg | 0 .../Editor/res/source_control_buttons.bmp | 0 .../Editor/res/source_control_connected.svg | 0 .../Editor/res/source_control_error_v2.svg | 0 Code/{Sandbox => }/Editor/res/spline_edit_bar.bmp | 0 Code/{Sandbox => }/Editor/res/splineextrabar.bmp | 0 Code/{Sandbox => }/Editor/res/status_mem_low1.ico | 0 Code/{Sandbox => }/Editor/res/status_mem_low2.ico | 0 Code/{Sandbox => }/Editor/res/status_mem_ok.ico | 0 Code/{Sandbox => }/Editor/res/stdviews.bmp | 0 Code/{Sandbox => }/Editor/res/subobjseltype.bmp | 0 Code/{Sandbox => }/Editor/res/sw_mapbar.bmp | 0 Code/{Sandbox => }/Editor/res/sw_toolbar.bmp | 0 Code/{Sandbox => }/Editor/res/tabPanel.bmp | 0 Code/{Sandbox => }/Editor/res/tiff.ico | 0 Code/{Sandbox => }/Editor/res/toolbar1.bmp | 0 Code/{Sandbox => }/Editor/res/toolbar2.bmp | 0 Code/{Sandbox => }/Editor/res/toolbox.bmp | 0 Code/{Sandbox => }/Editor/res/trackvie.bmp | 0 Code/{Sandbox => }/Editor/res/trackview.bmp | 0 Code/{Sandbox => }/Editor/res/trackview1.bmp | 0 Code/{Sandbox => }/Editor/res/trackview_key.bmp | 0 Code/{Sandbox => }/Editor/res/trackview_keys.bmp | 0 Code/{Sandbox => }/Editor/res/trackview_nodes.bmp | 0 Code/{Sandbox => }/Editor/res/trackview_play.bmp | 0 Code/{Sandbox => }/Editor/res/trackview_view.bmp | 0 Code/{Sandbox => }/Editor/res/tree_vie.bmp | 0 Code/{Sandbox => }/Editor/res/tree_view_folder.png | 0 Code/{Sandbox => }/Editor/res/tree_view_level.png | 0 Code/{Sandbox => }/Editor/res/uieditor_main.bmp | 0 Code/{Sandbox => }/Editor/res/unlocked.svg | 0 Code/{Sandbox => }/Editor/res/up_arrow.ico | 0 Code/{Sandbox => }/Editor/res/value_types.bmp | 0 Code/{Sandbox => }/Editor/res/veed_tree.bmp | 0 Code/{Sandbox => }/Editor/res/vegetati.bmp | 0 Code/{Sandbox => }/Editor/res/vegtree.bmp | 0 Code/{Sandbox => }/Editor/res/video_record.ico | 0 .../{Sandbox => }/Editor/res/vis_circle_default.svg | 0 .../Editor/res/vis_circle_transparent.svg | 0 .../Editor/res/vis_on_NotTransparent.svg | 0 .../{Sandbox => }/Editor/res/vis_on_transparent.svg | 0 Code/{Sandbox => }/Editor/res/visb.svg | 0 Code/{Sandbox => }/Editor/res/visb_hidden.svg | 0 Code/{Sandbox => }/Editor/res/warning16x16.ico | 0 Code/{Sandbox => }/Editor/res/water.bmp | 0 .../Editor/res/work_in_progress_icon.ico | 0 .../Editor/res/work_in_progress_icon.png | 0 .../Editor/splashscreen_background_gradient.jpg | 0 Code/{Sandbox => }/Editor/water.png | 0 1415 files changed, 0 insertions(+), 0 deletions(-) rename Code/{Sandbox => }/Editor/2DViewport.cpp (100%) rename Code/{Sandbox => }/Editor/2DViewport.h (100%) rename Code/{Sandbox => }/Editor/AboutDialog.cpp (100%) rename Code/{Sandbox => }/Editor/AboutDialog.h (100%) rename Code/{Sandbox => }/Editor/AboutDialog.ui (100%) rename Code/{Sandbox => }/Editor/ActionManager.cpp (100%) rename Code/{Sandbox => }/Editor/ActionManager.h (100%) rename Code/{Sandbox => }/Editor/Animation/AnimationBipedBoneNames.cpp (100%) rename Code/{Sandbox => }/Editor/Animation/AnimationBipedBoneNames.h (100%) rename Code/{Sandbox => }/Editor/Animation/SkeletonHierarchy.cpp (100%) rename Code/{Sandbox => }/Editor/Animation/SkeletonHierarchy.h (100%) rename Code/{Sandbox => }/Editor/Animation/SkeletonMapper.cpp (100%) rename Code/{Sandbox => }/Editor/Animation/SkeletonMapper.h (100%) rename Code/{Sandbox => }/Editor/Animation/SkeletonMapperOperator.cpp (100%) rename Code/{Sandbox => }/Editor/Animation/SkeletonMapperOperator.h (100%) rename Code/{Sandbox => }/Editor/AnimationContext.cpp (100%) rename Code/{Sandbox => }/Editor/AnimationContext.cpp.rej (100%) rename Code/{Sandbox => }/Editor/AnimationContext.h (100%) rename Code/{Sandbox => }/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp (100%) rename Code/{Sandbox => }/Editor/AssetDatabase/AssetDatabaseLocationListener.h (100%) rename Code/{Sandbox => }/Editor/AssetEditor/AssetEditorRequestsHandler.cpp (100%) rename Code/{Sandbox => }/Editor/AssetEditor/AssetEditorRequestsHandler.h (100%) rename Code/{Sandbox => }/Editor/AssetEditor/AssetEditorWindow.cpp (100%) rename Code/{Sandbox => }/Editor/AssetEditor/AssetEditorWindow.h (100%) rename Code/{Sandbox => }/Editor/AssetEditor/AssetEditorWindow.ui (100%) rename Code/{Sandbox => }/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp (100%) rename Code/{Sandbox => }/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h (100%) rename Code/{Sandbox => }/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp (100%) rename Code/{Sandbox => }/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/FilesAlreadyExistDialog.ui (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/ProcessingAssetsDialog.h (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/ProcessingAssetsDialog.ui (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/SelectDestinationDialog.cpp (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/SelectDestinationDialog.h (100%) rename Code/{Sandbox => }/Editor/AssetImporter/UI/SelectDestinationDialog.ui (100%) rename Code/{Sandbox => }/Editor/AzAssetBrowser/AssetBrowserWindow.cpp (100%) rename Code/{Sandbox => }/Editor/AzAssetBrowser/AssetBrowserWindow.h (100%) rename Code/{Sandbox => }/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp (100%) rename Code/{Sandbox => }/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h (100%) rename Code/{Sandbox => }/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp (100%) rename Code/{Sandbox => }/Editor/AzAssetBrowser/AzAssetBrowserWindow.h (100%) rename Code/{Sandbox => }/Editor/AzAssetBrowser/AzAssetBrowserWindow.ui (100%) rename Code/{Sandbox => }/Editor/BaseLibrary.cpp (100%) rename Code/{Sandbox => }/Editor/BaseLibrary.h (100%) rename Code/{Sandbox => }/Editor/BaseLibraryItem.cpp (100%) rename Code/{Sandbox => }/Editor/BaseLibraryItem.h (100%) rename Code/{Sandbox => }/Editor/BaseLibraryManager.cpp (100%) rename Code/{Sandbox => }/Editor/BaseLibraryManager.h (100%) rename Code/{Sandbox => }/Editor/CMakeLists.txt (100%) rename Code/{Sandbox => }/Editor/CVarMenu.cpp (100%) rename Code/{Sandbox => }/Editor/CVarMenu.h (100%) rename Code/{Sandbox => }/Editor/CheckOutDialog.cpp (100%) rename Code/{Sandbox => }/Editor/CheckOutDialog.h (100%) rename Code/{Sandbox => }/Editor/CheckOutDialog.ui (100%) rename Code/{Sandbox => }/Editor/Clipboard.cpp (100%) rename Code/{Sandbox => }/Editor/Clipboard.h (100%) rename Code/{Sandbox => }/Editor/Commands/CommandManager.cpp (100%) rename Code/{Sandbox => }/Editor/Commands/CommandManager.h (100%) rename Code/{Sandbox => }/Editor/Commands/CommandManagerBus.h (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-00.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-01.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-02.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-03.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-04.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-05.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-06.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-07.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-08.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-09.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-10.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-11.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-12.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-13.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-14.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-15.png (100%) rename Code/{Sandbox => }/Editor/Common/spline_edit-16.png (100%) rename Code/{Sandbox => }/Editor/ConfigGroup.cpp (100%) rename Code/{Sandbox => }/Editor/ConfigGroup.h (100%) rename Code/{Sandbox => }/Editor/ConsoleDialog.cpp (100%) rename Code/{Sandbox => }/Editor/ConsoleDialog.h (100%) rename Code/{Sandbox => }/Editor/ControlMRU.cpp (100%) rename Code/{Sandbox => }/Editor/ControlMRU.h (100%) rename Code/{Sandbox => }/Editor/Controls/BitmapToolTip.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/BitmapToolTip.h (100%) rename Code/{Sandbox => }/Editor/Controls/ColorGradientCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ColorGradientCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ConsoleSCB.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ConsoleSCB.h (100%) rename Code/{Sandbox => }/Editor/Controls/ConsoleSCB.qrc (100%) rename Code/{Sandbox => }/Editor/Controls/ConsoleSCB.ui (100%) rename Code/{Sandbox => }/Editor/Controls/ConsoleSCBMFC.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ConsoleSCBMFC.h (100%) rename Code/{Sandbox => }/Editor/Controls/ConsoleSCBMFC.ui (100%) rename Code/{Sandbox => }/Editor/Controls/FolderTreeCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/FolderTreeCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/HotTrackingTreeCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/HotTrackingTreeCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ImageHistogramCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ImageHistogramCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ImageListCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ImageListCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/MultiMonHelper.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/MultiMonHelper.h (100%) rename Code/{Sandbox => }/Editor/Controls/NumberCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/NumberCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/QBitmapPreviewDialog.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/QBitmapPreviewDialog.h (100%) rename Code/{Sandbox => }/Editor/Controls/QBitmapPreviewDialog.ui (100%) rename Code/{Sandbox => }/Editor/Controls/QBitmapPreviewDialogImp.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/QBitmapPreviewDialogImp.h (100%) rename Code/{Sandbox => }/Editor/Controls/QToolTipWidget.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/QToolTipWidget.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.qrc (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/resources/apply.png (100%) rename Code/{Sandbox => }/Editor/Controls/ReflectedPropertyControl/resources/file_browse.png (100%) rename Code/{Sandbox => }/Editor/Controls/SplineCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/SplineCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/SplineCtrlEx.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/SplineCtrlEx.h (100%) rename Code/{Sandbox => }/Editor/Controls/TextEditorCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/TextEditorCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/TimelineCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/Controls/TimelineCtrl.h (100%) rename Code/{Sandbox => }/Editor/Controls/TreeCtrlUtils.h (100%) rename Code/{Sandbox => }/Editor/Controls/WndGridHelper.h (100%) rename Code/{Sandbox => }/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp (100%) rename Code/{Sandbox => }/Editor/Core/EditorMetricsPlainTextNameRegistration.h (100%) rename Code/{Sandbox => }/Editor/Core/LevelEditorMenuHandler.cpp (100%) rename Code/{Sandbox => }/Editor/Core/LevelEditorMenuHandler.h (100%) rename Code/{Sandbox => }/Editor/Core/QtEditorApplication.cpp (100%) rename Code/{Sandbox => }/Editor/Core/QtEditorApplication.h (100%) rename Code/{Sandbox => }/Editor/Core/QtEditorApplication_linux.cpp (100%) rename Code/{Sandbox => }/Editor/Core/QtEditorApplication_mac.mm (100%) rename Code/{Sandbox => }/Editor/Core/Tests/test_Archive.cpp (100%) rename Code/{Sandbox => }/Editor/Core/Tests/test_Main.cpp (100%) rename Code/{Sandbox => }/Editor/Core/Tests/test_PathUtil.cpp (100%) rename Code/{Sandbox => }/Editor/CrtDebug.cpp (100%) rename Code/{Sandbox => }/Editor/CryEdit.cpp (100%) rename Code/{Sandbox => }/Editor/CryEdit.h (100%) rename Code/{Sandbox => }/Editor/CryEdit.rc (100%) rename Code/{Sandbox => }/Editor/CryEditDoc.cpp (100%) rename Code/{Sandbox => }/Editor/CryEditDoc.h (100%) rename Code/{Sandbox => }/Editor/CryEditLiveCreate.rc (100%) rename Code/{Sandbox => }/Editor/CryEditPy.cpp (100%) rename Code/{Sandbox => }/Editor/CustomAspectRatioDlg.cpp (100%) rename Code/{Sandbox => }/Editor/CustomAspectRatioDlg.h (100%) rename Code/{Sandbox => }/Editor/CustomAspectRatioDlg.ui (100%) rename Code/{Sandbox => }/Editor/CustomResolutionDlg.cpp (100%) rename Code/{Sandbox => }/Editor/CustomResolutionDlg.h (100%) rename Code/{Sandbox => }/Editor/CustomResolutionDlg.ui (100%) rename Code/{Sandbox => }/Editor/CustomizeKeyboardDialog.cpp (100%) rename Code/{Sandbox => }/Editor/CustomizeKeyboardDialog.h (100%) rename Code/{Sandbox => }/Editor/CustomizeKeyboardDialog.ui (100%) rename Code/{Sandbox => }/Editor/DPIAware.xml (100%) rename Code/{Sandbox => }/Editor/Dialogs/ErrorsDlg.cpp (100%) rename Code/{Sandbox => }/Editor/Dialogs/ErrorsDlg.h (100%) rename Code/{Sandbox => }/Editor/Dialogs/ErrorsDlg.ui (100%) rename Code/{Sandbox => }/Editor/Dialogs/Generic/UserOptions.cpp (100%) rename Code/{Sandbox => }/Editor/Dialogs/Generic/UserOptions.h (100%) rename Code/{Sandbox => }/Editor/Dialogs/PythonScriptsDialog.cpp (100%) rename Code/{Sandbox => }/Editor/Dialogs/PythonScriptsDialog.h (100%) rename Code/{Sandbox => }/Editor/Dialogs/PythonScriptsDialog.ui (100%) rename Code/{Sandbox => }/Editor/DimensionsDialog.cpp (100%) rename Code/{Sandbox => }/Editor/DimensionsDialog.h (100%) rename Code/{Sandbox => }/Editor/DimensionsDialog.ui (100%) rename Code/{Sandbox => }/Editor/DisplaySettings.cpp (100%) rename Code/{Sandbox => }/Editor/DisplaySettings.h (100%) rename Code/{Sandbox => }/Editor/DisplaySettingsPythonFuncs.cpp (100%) rename Code/{Sandbox => }/Editor/DisplaySettingsPythonFuncs.h (100%) rename Code/{Sandbox => }/Editor/DocMultiArchive.h (100%) rename Code/{Sandbox => }/Editor/EditMode/DeepSelection.cpp (100%) rename Code/{Sandbox => }/Editor/EditMode/DeepSelection.h (100%) rename Code/{Sandbox => }/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp (100%) rename Code/{Sandbox => }/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h (100%) rename Code/{Sandbox => }/Editor/EditorCryEdit.rc (100%) rename Code/{Sandbox => }/Editor/EditorDefs.h (100%) rename Code/{Sandbox => }/Editor/EditorEnvironment.cpp (100%) rename Code/{Sandbox => }/Editor/EditorEnvironment.h (100%) rename Code/{Sandbox => }/Editor/EditorFileMonitor.cpp (100%) rename Code/{Sandbox => }/Editor/EditorFileMonitor.h (100%) rename Code/{Sandbox => }/Editor/EditorPanelUtils.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPanelUtils.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesBus.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesDialog.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesDialog.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesDialog.ui (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageAWS.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageAWS.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageExperimentalLighting.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageExperimentalLighting.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageFiles.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageFiles.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageGeneral.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageGeneral.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportDebug.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportDebug.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportGeneral.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportGeneral.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportGizmo.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportGizmo.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportMovement.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesPageViewportMovement.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesTreeWidgetItem.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesTreeWidgetItem.h (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp (100%) rename Code/{Sandbox => }/Editor/EditorPreferencesTreeWidgetItemDelegate.h (100%) rename Code/{Sandbox => }/Editor/EditorToolsApplication.cpp (100%) rename Code/{Sandbox => }/Editor/EditorToolsApplication.h (100%) rename Code/{Sandbox => }/Editor/EditorToolsApplicationAPI.h (100%) rename Code/{Sandbox => }/Editor/EditorVersion.rc (100%) rename Code/{Sandbox => }/Editor/EditorViewportSettings.cpp (100%) rename Code/{Sandbox => }/Editor/EditorViewportSettings.h (100%) rename Code/{Sandbox => }/Editor/EditorViewportWidget.cpp (100%) rename Code/{Sandbox => }/Editor/EditorViewportWidget.h (100%) rename Code/{Sandbox => }/Editor/ErrorDialog.cpp (100%) rename Code/{Sandbox => }/Editor/ErrorDialog.h (100%) rename Code/{Sandbox => }/Editor/ErrorDialog.ui (100%) rename Code/{Sandbox => }/Editor/ErrorRecorder.cpp (100%) rename Code/{Sandbox => }/Editor/ErrorRecorder.h (100%) rename Code/{Sandbox => }/Editor/ErrorReport.cpp (100%) rename Code/{Sandbox => }/Editor/ErrorReport.h (100%) rename Code/{Sandbox => }/Editor/ErrorReportDialog.cpp (100%) rename Code/{Sandbox => }/Editor/ErrorReportDialog.h (100%) rename Code/{Sandbox => }/Editor/ErrorReportDialog.ui (100%) rename Code/{Sandbox => }/Editor/ErrorReportTableModel.cpp (100%) rename Code/{Sandbox => }/Editor/ErrorReportTableModel.h (100%) rename Code/{Sandbox => }/Editor/Export/ExportManager.cpp (100%) rename Code/{Sandbox => }/Editor/Export/ExportManager.h (100%) rename Code/{Sandbox => }/Editor/Export/OBJExporter.cpp (100%) rename Code/{Sandbox => }/Editor/Export/OBJExporter.h (100%) rename Code/{Sandbox => }/Editor/Export/OCMExporter.cpp (100%) rename Code/{Sandbox => }/Editor/Export/OCMExporter.h (100%) rename Code/{Sandbox => }/Editor/FBXExporterDialog.cpp (100%) rename Code/{Sandbox => }/Editor/FBXExporterDialog.h (100%) rename Code/{Sandbox => }/Editor/FBXExporterDialog.ui (100%) rename Code/{Sandbox => }/Editor/FileTypeUtils.cpp (100%) rename Code/{Sandbox => }/Editor/FileTypeUtils.h (100%) rename Code/{Sandbox => }/Editor/GameEngine.cpp (100%) rename Code/{Sandbox => }/Editor/GameEngine.h (100%) rename Code/{Sandbox => }/Editor/GameExporter.cpp (100%) rename Code/{Sandbox => }/Editor/GameExporter.h (100%) rename Code/{Sandbox => }/Editor/GameResourcesExporter.cpp (100%) rename Code/{Sandbox => }/Editor/GameResourcesExporter.h (100%) rename Code/{Sandbox => }/Editor/GenericSelectItemDialog.cpp (100%) rename Code/{Sandbox => }/Editor/GenericSelectItemDialog.h (100%) rename Code/{Sandbox => }/Editor/GenericSelectItemDialog.ui (100%) rename Code/{Sandbox => }/Editor/Geometry/TriMesh.cpp (100%) rename Code/{Sandbox => }/Editor/Geometry/TriMesh.h (100%) rename Code/{Sandbox => }/Editor/GotoPositionDlg.cpp (100%) rename Code/{Sandbox => }/Editor/GotoPositionDlg.h (100%) rename Code/{Sandbox => }/Editor/GotoPositionDlg.ui (100%) rename Code/{Sandbox => }/Editor/GraphicsSettingsDialog.cpp (100%) rename Code/{Sandbox => }/Editor/GraphicsSettingsDialog.h (100%) rename Code/{Sandbox => }/Editor/GridUtils.h (100%) rename Code/{Sandbox => }/Editor/IEditor.h (100%) rename Code/{Sandbox => }/Editor/IEditorImpl.cpp (100%) rename Code/{Sandbox => }/Editor/IEditorImpl.h (100%) rename Code/{Sandbox => }/Editor/IEditorPanelUtils.h (100%) rename Code/{Sandbox => }/Editor/IObservable.h (100%) rename Code/{Sandbox => }/Editor/IPostRenderer.h (100%) rename Code/{Sandbox => }/Editor/IconListDialog.ui (100%) rename Code/{Sandbox => }/Editor/IconManager.cpp (100%) rename Code/{Sandbox => }/Editor/IconManager.h (100%) rename Code/{Sandbox => }/Editor/Include/Command.h (100%) rename Code/{Sandbox => }/Editor/Include/EditorCoreAPI.cpp (100%) rename Code/{Sandbox => }/Editor/Include/EditorCoreAPI.h (100%) rename Code/{Sandbox => }/Editor/Include/HitContext.h (100%) rename Code/{Sandbox => }/Editor/Include/IAnimationCompressionManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IAssetItem.h (100%) rename Code/{Sandbox => }/Editor/Include/IAssetItemDatabase.h (100%) rename Code/{Sandbox => }/Editor/Include/IAssetViewer.h (100%) rename Code/{Sandbox => }/Editor/Include/IBaseLibraryManager.h (100%) rename Code/{Sandbox => }/Editor/Include/ICommandManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IConsoleConnectivity.h (100%) rename Code/{Sandbox => }/Editor/Include/IDataBaseItem.h (100%) rename Code/{Sandbox => }/Editor/Include/IDataBaseLibrary.h (100%) rename Code/{Sandbox => }/Editor/Include/IDataBaseManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IDisplayViewport.h (100%) rename Code/{Sandbox => }/Editor/Include/IEditorClassFactory.h (100%) rename Code/{Sandbox => }/Editor/Include/IEditorFileMonitor.h (100%) rename Code/{Sandbox => }/Editor/Include/IEditorMaterial.h (100%) rename Code/{Sandbox => }/Editor/Include/IEditorMaterialManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IErrorReport.h (100%) rename Code/{Sandbox => }/Editor/Include/IEventLoopHook.h (100%) rename Code/{Sandbox => }/Editor/Include/IExportManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IFacialEditor.h (100%) rename Code/{Sandbox => }/Editor/Include/IFileUtil.h (100%) rename Code/{Sandbox => }/Editor/Include/IGizmoManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IIconManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IImageUtil.h (100%) rename Code/{Sandbox => }/Editor/Include/IKeyTimeSet.h (100%) rename Code/{Sandbox => }/Editor/Include/ILogFile.h (100%) rename Code/{Sandbox => }/Editor/Include/IObjectManager.h (100%) rename Code/{Sandbox => }/Editor/Include/IPlugin.h (100%) rename Code/{Sandbox => }/Editor/Include/IPreferencesPage.h (100%) rename Code/{Sandbox => }/Editor/Include/IRenderListener.h (100%) rename Code/{Sandbox => }/Editor/Include/IResourceSelectorHost.h (100%) rename Code/{Sandbox => }/Editor/Include/ISourceControl.h (100%) rename Code/{Sandbox => }/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h (100%) rename Code/{Sandbox => }/Editor/Include/ITextureDatabaseUpdater.h (100%) rename Code/{Sandbox => }/Editor/Include/ITransformManipulator.h (100%) rename Code/{Sandbox => }/Editor/Include/IViewPane.h (100%) rename Code/{Sandbox => }/Editor/Include/ObjectEvent.h (100%) rename Code/{Sandbox => }/Editor/Include/SandboxAPI.h (100%) rename Code/{Sandbox => }/Editor/InfoBar.qrc (100%) rename Code/{Sandbox => }/Editor/KeyboardCustomizationSettings.cpp (100%) rename Code/{Sandbox => }/Editor/KeyboardCustomizationSettings.h (100%) rename Code/{Sandbox => }/Editor/Launcher/editor_launcher.rc (100%) rename Code/{Sandbox => }/Editor/Launcher/resource.h (100%) rename Code/{Sandbox => }/Editor/LayoutConfigDialog.cpp (100%) rename Code/{Sandbox => }/Editor/LayoutConfigDialog.h (100%) rename Code/{Sandbox => }/Editor/LayoutConfigDialog.qrc (100%) rename Code/{Sandbox => }/Editor/LayoutConfigDialog.ui (100%) rename Code/{Sandbox => }/Editor/LayoutWnd.cpp (100%) rename Code/{Sandbox => }/Editor/LayoutWnd.h (100%) rename Code/{Sandbox => }/Editor/LegacyViewportCameraController.cpp (100%) rename Code/{Sandbox => }/Editor/LegacyViewportCameraController.h (100%) rename Code/{Sandbox => }/Editor/LevelFileDialog.cpp (100%) rename Code/{Sandbox => }/Editor/LevelFileDialog.h (100%) rename Code/{Sandbox => }/Editor/LevelFileDialog.qrc (100%) rename Code/{Sandbox => }/Editor/LevelFileDialog.ui (100%) rename Code/{Sandbox => }/Editor/LevelIndependentFileMan.cpp (100%) rename Code/{Sandbox => }/Editor/LevelIndependentFileMan.h (100%) rename Code/{Sandbox => }/Editor/LevelInfo.cpp (100%) rename Code/{Sandbox => }/Editor/LevelInfo.h (100%) rename Code/{Sandbox => }/Editor/LevelTreeModel.cpp (100%) rename Code/{Sandbox => }/Editor/LevelTreeModel.h (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/IEditorMock.h (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_ClickableLabel.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_CryEditPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_EditorPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_EditorUtils.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_Main.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_TerrainPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp (100%) rename Code/{Sandbox => }/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp (100%) rename Code/{Sandbox => }/Editor/LightmapCompiler/SimpleTriangleRasterizer.h (100%) rename Code/{Sandbox => }/Editor/LogFile.cpp (100%) rename Code/{Sandbox => }/Editor/LogFile.h (100%) rename Code/{Sandbox => }/Editor/LogFileImpl.cpp (100%) rename Code/{Sandbox => }/Editor/LogFileImpl.h (100%) rename Code/{Sandbox => }/Editor/LogFile_mac.mm (100%) rename Code/{Sandbox => }/Editor/LyViewPaneNames.h (100%) rename Code/{Sandbox => }/Editor/MainStatusBar.cpp (100%) rename Code/{Sandbox => }/Editor/MainStatusBar.h (100%) rename Code/{Sandbox => }/Editor/MainStatusBarItems.h (100%) rename Code/{Sandbox => }/Editor/MainWindow.cpp (100%) rename Code/{Sandbox => }/Editor/MainWindow.h (100%) rename Code/{Sandbox => }/Editor/MainWindow.qrc (100%) rename Code/{Sandbox => }/Editor/MainWindow/ObjSelection.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/display_info.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-00.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-01.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-02.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-03.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-05.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-06.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-07.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-08.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-09.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-10.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-11.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-12.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-13.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-14.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-15.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-16.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-17.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-18.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-19.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-20.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-22.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-23.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-24.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/edit_mode_toolbar-25.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/editwithbutton_dark.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/editwithbutton_light.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/hide_helpers.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/maximize.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/misc_toolbar-00.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-00.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-01.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-02.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-03.svg (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-04.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-05.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-06.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-07.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-08.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-09.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/object_toolbar-10.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/proceduralmaterial_toolbar.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-00.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-01.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-02.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-03.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-04.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-05.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-06.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-07.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-08.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-09.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-10.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-11.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-12.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-13.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-14.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-15.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-16.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-17.png (100%) rename Code/{Sandbox => }/Editor/MainWindow/standard_views_toolbar-18.png (100%) rename Code/{Sandbox => }/Editor/MainWindow_mac.mm (100%) rename Code/{Sandbox => }/Editor/NewLevelDialog.cpp (100%) rename Code/{Sandbox => }/Editor/NewLevelDialog.h (100%) rename Code/{Sandbox => }/Editor/NewLevelDialog.ui (100%) rename Code/{Sandbox => }/Editor/NewTerrainDialog.cpp (100%) rename Code/{Sandbox => }/Editor/NewTerrainDialog.h (100%) rename Code/{Sandbox => }/Editor/NewTerrainDialog.ui (100%) rename Code/{Sandbox => }/Editor/Objects/AxisGizmo.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/AxisGizmo.h (100%) rename Code/{Sandbox => }/Editor/Objects/BaseObject.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/BaseObject.h (100%) rename Code/{Sandbox => }/Editor/Objects/ClassDesc.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/ClassDesc.h (100%) rename Code/{Sandbox => }/Editor/Objects/DisplayContext.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/DisplayContext.h (100%) rename Code/{Sandbox => }/Editor/Objects/DisplayContextShared.inl (100%) rename Code/{Sandbox => }/Editor/Objects/EntityObject.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/EntityObject.h (100%) rename Code/{Sandbox => }/Editor/Objects/Gizmo.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/Gizmo.h (100%) rename Code/{Sandbox => }/Editor/Objects/GizmoManager.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/GizmoManager.h (100%) rename Code/{Sandbox => }/Editor/Objects/IEntityObjectListener.h (100%) rename Code/{Sandbox => }/Editor/Objects/LineGizmo.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/LineGizmo.h (100%) rename Code/{Sandbox => }/Editor/Objects/ObjectLoader.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/ObjectLoader.h (100%) rename Code/{Sandbox => }/Editor/Objects/ObjectManager.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/ObjectManager.h (100%) rename Code/{Sandbox => }/Editor/Objects/ObjectManagerEventBus.h (100%) rename Code/{Sandbox => }/Editor/Objects/ObjectManagerLegacyUndo.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/ObjectManagerLegacyUndo.h (100%) rename Code/{Sandbox => }/Editor/Objects/SelectionGroup.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/SelectionGroup.h (100%) rename Code/{Sandbox => }/Editor/Objects/SubObjSelection.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/SubObjSelection.h (100%) rename Code/{Sandbox => }/Editor/Objects/TrackGizmo.cpp (100%) rename Code/{Sandbox => }/Editor/Objects/TrackGizmo.h (100%) rename Code/{Sandbox => }/Editor/PakManagerDlg.qrc (100%) rename Code/{Sandbox => }/Editor/PakManagerDlg.ui (100%) rename Code/{Sandbox => }/Editor/Platform/Android/editor_android.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Android/editor_lib_android.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Common/Clang/editor_lib_clang.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp (100%) rename Code/{Sandbox => }/Editor/Platform/Linux/editor_core_files_linux.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Linux/editor_lib_linux.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Linux/editor_linux.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Linux/platform_linux_files.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/Contents.json (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/editor_core_files_mac.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/editor_lib_mac.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/editor_mac.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/gui_info.plist (100%) rename Code/{Sandbox => }/Editor/Platform/Mac/platform_mac_files.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Windows/Util/Mailer_Windows.cpp (100%) rename Code/{Sandbox => }/Editor/Platform/Windows/editor_core_files_windows.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Windows/editor_lib_windows.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Windows/editor_windows.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/Windows/platform_windows_files.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/iOS/editor_ios.cmake (100%) rename Code/{Sandbox => }/Editor/Platform/iOS/editor_lib_ios.cmake (100%) rename Code/{Sandbox => }/Editor/Plugin.cpp (100%) rename Code/{Sandbox => }/Editor/Plugin.h (100%) rename Code/{Sandbox => }/Editor/PluginManager.cpp (100%) rename Code/{Sandbox => }/Editor/PluginManager.h (100%) rename Code/{Sandbox => }/Editor/PreferencesStdPages.cpp (100%) rename Code/{Sandbox => }/Editor/PreferencesStdPages.h (100%) rename Code/{Sandbox => }/Editor/ProcessInfo.cpp (100%) rename Code/{Sandbox => }/Editor/ProcessInfo.h (100%) rename Code/{Sandbox => }/Editor/PythonEditorEventsBus.h (100%) rename Code/{Sandbox => }/Editor/PythonEditorFuncs.cpp (100%) rename Code/{Sandbox => }/Editor/PythonEditorFuncs.h (100%) rename Code/{Sandbox => }/Editor/QtUI/ClickableLabel.cpp (100%) rename Code/{Sandbox => }/Editor/QtUI/ClickableLabel.h (100%) rename Code/{Sandbox => }/Editor/QtUI/ColorButton.cpp (100%) rename Code/{Sandbox => }/Editor/QtUI/ColorButton.h (100%) rename Code/{Sandbox => }/Editor/QtUI/ColorButton_mac.mm (100%) rename Code/{Sandbox => }/Editor/QtUI/PixmapLabelPreview.cpp (100%) rename Code/{Sandbox => }/Editor/QtUI/PixmapLabelPreview.h (100%) rename Code/{Sandbox => }/Editor/QtUI/QCollapsibleGroupBox.cpp (100%) rename Code/{Sandbox => }/Editor/QtUI/QCollapsibleGroupBox.h (100%) rename Code/{Sandbox => }/Editor/QtUI/WaitCursor.cpp (100%) rename Code/{Sandbox => }/Editor/QtUI/WaitCursor.h (100%) rename Code/{Sandbox => }/Editor/QtUtil.h (100%) rename Code/{Sandbox => }/Editor/QtUtilWin.h (100%) rename Code/{Sandbox => }/Editor/QtViewPane.h (100%) rename Code/{Sandbox => }/Editor/QtViewPaneManager.cpp (100%) rename Code/{Sandbox => }/Editor/QtViewPaneManager.h (100%) rename Code/{Sandbox => }/Editor/QuickAccessBar.cpp (100%) rename Code/{Sandbox => }/Editor/QuickAccessBar.h (100%) rename Code/{Sandbox => }/Editor/QuickAccessBar.ui (100%) rename Code/{Sandbox => }/Editor/RenderHelpers/AxisHelper.cpp (100%) rename Code/{Sandbox => }/Editor/RenderHelpers/AxisHelper.h (100%) rename Code/{Sandbox => }/Editor/RenderHelpers/AxisHelperShared.inl (100%) rename Code/{Sandbox => }/Editor/RenderViewport.cpp (100%) rename Code/{Sandbox => }/Editor/RenderViewport.h (100%) rename Code/{Sandbox => }/Editor/RenderViewport_mac.mm (100%) rename Code/{Sandbox => }/Editor/Report.h (100%) rename Code/{Sandbox => }/Editor/ResizeResolutionDialog.cpp (100%) rename Code/{Sandbox => }/Editor/ResizeResolutionDialog.h (100%) rename Code/{Sandbox => }/Editor/ResizeResolutionDialog.ui (100%) rename Code/{Sandbox => }/Editor/Resource.h (100%) rename Code/{Sandbox => }/Editor/ResourceSelectorHost.cpp (100%) rename Code/{Sandbox => }/Editor/ResourceSelectorHost.h (100%) rename Code/{Sandbox => }/Editor/SelectEAXPresetDlg.cpp (100%) rename Code/{Sandbox => }/Editor/SelectEAXPresetDlg.h (100%) rename Code/{Sandbox => }/Editor/SelectEAXPresetDlg.ui (100%) rename Code/{Sandbox => }/Editor/SelectLightAnimationDialog.cpp (100%) rename Code/{Sandbox => }/Editor/SelectLightAnimationDialog.h (100%) rename Code/{Sandbox => }/Editor/SelectSequenceDialog.cpp (100%) rename Code/{Sandbox => }/Editor/SelectSequenceDialog.h (100%) rename Code/{Sandbox => }/Editor/Settings.cpp (100%) rename Code/{Sandbox => }/Editor/Settings.h (100%) rename Code/{Sandbox => }/Editor/SettingsManager.cpp (100%) rename Code/{Sandbox => }/Editor/SettingsManager.h (100%) rename Code/{Sandbox => }/Editor/SettingsManagerDialog.cpp (100%) rename Code/{Sandbox => }/Editor/SettingsManagerDialog.h (100%) rename Code/{Sandbox => }/Editor/SettingsManagerDialog.ui (100%) rename Code/{Sandbox => }/Editor/ShortcutDispatcher.cpp (100%) rename Code/{Sandbox => }/Editor/ShortcutDispatcher.h (100%) rename Code/{Sandbox => }/Editor/StartupLogoDialog.cpp (100%) rename Code/{Sandbox => }/Editor/StartupLogoDialog.h (100%) rename Code/{Sandbox => }/Editor/StartupLogoDialog.qrc (100%) rename Code/{Sandbox => }/Editor/StartupLogoDialog.ui (100%) rename Code/{Sandbox => }/Editor/StartupTraceHandler.cpp (100%) rename Code/{Sandbox => }/Editor/StartupTraceHandler.h (100%) rename Code/{Sandbox => }/Editor/StringDlg.cpp (100%) rename Code/{Sandbox => }/Editor/StringDlg.h (100%) rename Code/{Sandbox => }/Editor/Style/Editor.qss (100%) rename Code/{Sandbox => }/Editor/Style/EditorPreferencesDialog.qss (100%) rename Code/{Sandbox => }/Editor/Style/EditorStylesheetVariables_Dark.json (100%) rename Code/{Sandbox => }/Editor/Style/GraphicsSettingsDialog.qss (100%) rename Code/{Sandbox => }/Editor/Style/LayoutConfigDialog.qss (100%) rename Code/{Sandbox => }/Editor/Style/NewEditorStylesheet.qss (100%) rename Code/{Sandbox => }/Editor/Style/resources.qrc (100%) rename Code/{Sandbox => }/Editor/SurfaceTypeValidator.cpp (100%) rename Code/{Sandbox => }/Editor/SurfaceTypeValidator.h (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-00.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-01.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-02.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-03.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-04.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-05.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-06.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-07.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-08.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-09.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-10.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-11.png (100%) rename Code/{Sandbox => }/Editor/TimeOfDay/main-12.png (100%) rename Code/{Sandbox => }/Editor/ToolBox.cpp (100%) rename Code/{Sandbox => }/Editor/ToolBox.h (100%) rename Code/{Sandbox => }/Editor/ToolbarCustomizationDialog.cpp (100%) rename Code/{Sandbox => }/Editor/ToolbarCustomizationDialog.h (100%) rename Code/{Sandbox => }/Editor/ToolbarCustomizationDialog.ui (100%) rename Code/{Sandbox => }/Editor/ToolbarManager.cpp (100%) rename Code/{Sandbox => }/Editor/ToolbarManager.h (100%) rename Code/{Sandbox => }/Editor/ToolsConfigPage.cpp (100%) rename Code/{Sandbox => }/Editor/ToolsConfigPage.h (100%) rename Code/{Sandbox => }/Editor/ToolsConfigPage.ui (100%) rename Code/{Sandbox => }/Editor/TopRendererWnd.cpp (100%) rename Code/{Sandbox => }/Editor/TopRendererWnd.h (100%) rename Code/{Sandbox => }/Editor/TrackView/2DBezierKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/AssetBlendKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/AtomOutputFrameCapture.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/AtomOutputFrameCapture.h (100%) rename Code/{Sandbox => }/Editor/TrackView/CaptureKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/CharacterKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/CommentKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/CommentNodeAnimator.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/CommentNodeAnimator.h (100%) rename Code/{Sandbox => }/Editor/TrackView/ConsoleKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/DirectorNodeAnimator.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/DirectorNodeAnimator.h (100%) rename Code/{Sandbox => }/Editor/TrackView/EditorTrackViewEventsBus.h (100%) rename Code/{Sandbox => }/Editor/TrackView/EventKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/GotoKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/ScreenFaderKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/SelectKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/SequenceBatchRenderDialog.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/SequenceBatchRenderDialog.h (100%) rename Code/{Sandbox => }/Editor/TrackView/SequenceBatchRenderDialog.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/SequenceKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/SoundKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TVCustomizeTrackColorsDialog.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TVCustomizeTrackColorsDlg.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TVEventsDialog.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TVEventsDialog.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TVEventsDialog.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/TVSequenceProps.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TVSequenceProps.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TVSequenceProps.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/TimeRangeKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackEventKeyUIControls.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewAnimNode.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewAnimNode.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewCurveEditor.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewCurveEditor.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewCurveEditor.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewDialog.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewDialog.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewDialog.qrc (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewDopeSheetBase.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewDopeSheetBase.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewDoubleSpinBox.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewDoubleSpinBox.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewEventNode.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewEventNode.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewFindDlg.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewFindDlg.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewFindDlg.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewKeyPropertiesDlg.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewNode.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewNode.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewNodeFactories.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewNodeFactories.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewNodes.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewNodes.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewNodes.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewPythonFuncs.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewPythonFuncs.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewSequence.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewSequence.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewSequenceManager.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewSequenceManager.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewSplineCtrl.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewSplineCtrl.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewTimeline.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewTimeline.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewTrack.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewTrack.h (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewTrackPropsDlg.ui (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewUndo.cpp (100%) rename Code/{Sandbox => }/Editor/TrackView/TrackViewUndo.h (100%) rename Code/{Sandbox => }/Editor/TrackView/bmp00016_00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/bmp00016_01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/clapperboard_cancel.png (100%) rename Code/{Sandbox => }/Editor/TrackView/clapperboard_ready.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_02.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_03.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_04.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_05.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_06.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_07.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_08.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_09.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_10.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_11.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_12.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_13.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_14.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_15.png (100%) rename Code/{Sandbox => }/Editor/TrackView/spline_edit_bar_16.png (100%) rename Code/{Sandbox => }/Editor/TrackView/trackview_keys_00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/trackview_keys_01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/trackview_keys_02.png (100%) rename Code/{Sandbox => }/Editor/TrackView/trackview_keys_03.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-02.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-03.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-04.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-05.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-06.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-07.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-08.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-09.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-10.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-11.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvkeys-12.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-02.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-03.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-04.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-05.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-06.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-07.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-08.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvmain-09.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-02.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-03.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-04.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-05.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-06.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-07.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-08.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-09.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-10.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-11.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-12.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-13.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-14.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-15.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-16.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-17.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-18.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-19.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-20.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-21.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-22.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-23.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-24.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-25.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-26.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-27.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-28.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvnodes-29.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-02.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-03.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-04.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-05.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-06.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-07.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-08.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-09.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvplay-10.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvview-00.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvview-01.png (100%) rename Code/{Sandbox => }/Editor/TrackView/tvview-02.png (100%) rename Code/{Sandbox => }/Editor/TrackViewExportKeyTimeDlg.cpp (100%) rename Code/{Sandbox => }/Editor/TrackViewExportKeyTimeDlg.h (100%) rename Code/{Sandbox => }/Editor/TrackViewExportKeyTimeDlg.ui (100%) rename Code/{Sandbox => }/Editor/TrackViewFBXImportPreviewDialog.cpp (100%) rename Code/{Sandbox => }/Editor/TrackViewFBXImportPreviewDialog.h (100%) rename Code/{Sandbox => }/Editor/TrackViewFBXImportPreviewDialog.ui (100%) rename Code/{Sandbox => }/Editor/TrackViewNewSequenceDialog.cpp (100%) rename Code/{Sandbox => }/Editor/TrackViewNewSequenceDialog.h (100%) rename Code/{Sandbox => }/Editor/TrackViewNewSequenceDialog.ui (100%) rename Code/{Sandbox => }/Editor/Translations/assetbrowser_en-us.ts (100%) rename Code/{Sandbox => }/Editor/Translations/editor_en-us.ts (100%) rename Code/{Sandbox => }/Editor/TrustInfo.manifest (100%) rename Code/{Sandbox => }/Editor/UIEnumsDatabase.cpp (100%) rename Code/{Sandbox => }/Editor/UIEnumsDatabase.h (100%) rename Code/{Sandbox => }/Editor/Undo/IUndoManagerListener.h (100%) rename Code/{Sandbox => }/Editor/Undo/IUndoObject.h (100%) rename Code/{Sandbox => }/Editor/Undo/Undo.cpp (100%) rename Code/{Sandbox => }/Editor/Undo/Undo.h (100%) rename Code/{Sandbox => }/Editor/Undo/UndoVariableChange.h (100%) rename Code/{Sandbox => }/Editor/UndoConfigSpec.cpp (100%) rename Code/{Sandbox => }/Editor/UndoConfigSpec.h (100%) rename Code/{Sandbox => }/Editor/UndoDropDown.cpp (100%) rename Code/{Sandbox => }/Editor/UndoDropDown.h (100%) rename Code/{Sandbox => }/Editor/UndoViewPosition.cpp (100%) rename Code/{Sandbox => }/Editor/UndoViewPosition.h (100%) rename Code/{Sandbox => }/Editor/UndoViewRotation.cpp (100%) rename Code/{Sandbox => }/Editor/UndoViewRotation.h (100%) rename Code/{Sandbox => }/Editor/UsedResources.cpp (100%) rename Code/{Sandbox => }/Editor/UsedResources.h (100%) rename Code/{Sandbox => }/Editor/UserMessageDefines.h (100%) rename Code/{Sandbox => }/Editor/Util/3DConnexionDriver.cpp (100%) rename Code/{Sandbox => }/Editor/Util/3DConnexionDriver.h (100%) rename Code/{Sandbox => }/Editor/Util/AbstractGroupProxyModel.cpp (100%) rename Code/{Sandbox => }/Editor/Util/AbstractGroupProxyModel.h (100%) rename Code/{Sandbox => }/Editor/Util/AbstractSortModel.cpp (100%) rename Code/{Sandbox => }/Editor/Util/AbstractSortModel.h (100%) rename Code/{Sandbox => }/Editor/Util/AffineParts.cpp (100%) rename Code/{Sandbox => }/Editor/Util/AffineParts.h (100%) rename Code/{Sandbox => }/Editor/Util/AutoDirectoryRestoreFileDialog.cpp (100%) rename Code/{Sandbox => }/Editor/Util/AutoDirectoryRestoreFileDialog.h (100%) rename Code/{Sandbox => }/Editor/Util/AutoLogTime.cpp (100%) rename Code/{Sandbox => }/Editor/Util/AutoLogTime.h (100%) rename Code/{Sandbox => }/Editor/Util/ColorUtils.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ColorUtils.h (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupHeaderView.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupHeaderView.h (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupItemDelegate.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupItemDelegate.h (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupProxyModel.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupProxyModel.h (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupTreeView.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ColumnGroupTreeView.h (100%) rename Code/{Sandbox => }/Editor/Util/ColumnSortProxyModel.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ColumnSortProxyModel.h (100%) rename Code/{Sandbox => }/Editor/Util/Contrib/NvFloatMath.inl (100%) rename Code/{Sandbox => }/Editor/Util/CryMemFile.h (100%) rename Code/{Sandbox => }/Editor/Util/DynamicArray2D.cpp (100%) rename Code/{Sandbox => }/Editor/Util/DynamicArray2D.h (100%) rename Code/{Sandbox => }/Editor/Util/EditorAutoLevelLoadTest.cpp (100%) rename Code/{Sandbox => }/Editor/Util/EditorAutoLevelLoadTest.h (100%) rename Code/{Sandbox => }/Editor/Util/EditorUtils.cpp (100%) rename Code/{Sandbox => }/Editor/Util/EditorUtils.h (100%) rename Code/{Sandbox => }/Editor/Util/FileChangeMonitor.cpp (100%) rename Code/{Sandbox => }/Editor/Util/FileChangeMonitor.h (100%) rename Code/{Sandbox => }/Editor/Util/FileEnum.cpp (100%) rename Code/{Sandbox => }/Editor/Util/FileEnum.h (100%) rename Code/{Sandbox => }/Editor/Util/FileUtil.cpp (100%) rename Code/{Sandbox => }/Editor/Util/FileUtil.h (100%) rename Code/{Sandbox => }/Editor/Util/FileUtil_impl.cpp (100%) rename Code/{Sandbox => }/Editor/Util/FileUtil_impl.h (100%) rename Code/{Sandbox => }/Editor/Util/GdiUtil.cpp (100%) rename Code/{Sandbox => }/Editor/Util/GdiUtil.h (100%) rename Code/{Sandbox => }/Editor/Util/GeometryUtil.cpp (100%) rename Code/{Sandbox => }/Editor/Util/GeometryUtil.h (100%) rename Code/{Sandbox => }/Editor/Util/GuidUtil.cpp (100%) rename Code/{Sandbox => }/Editor/Util/GuidUtil.h (100%) rename Code/{Sandbox => }/Editor/Util/IObservable.h (100%) rename Code/{Sandbox => }/Editor/Util/IXmlHistoryManager.h (100%) rename Code/{Sandbox => }/Editor/Util/Image.cpp (100%) rename Code/{Sandbox => }/Editor/Util/Image.h (100%) rename Code/{Sandbox => }/Editor/Util/ImageASC.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImageASC.h (100%) rename Code/{Sandbox => }/Editor/Util/ImageBT.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImageBT.h (100%) rename Code/{Sandbox => }/Editor/Util/ImageGif.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImageGif.h (100%) rename Code/{Sandbox => }/Editor/Util/ImageHistogram.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImageHistogram.h (100%) rename Code/{Sandbox => }/Editor/Util/ImagePainter.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImagePainter.h (100%) rename Code/{Sandbox => }/Editor/Util/ImageTIF.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImageTIF.h (100%) rename Code/{Sandbox => }/Editor/Util/ImageUtil.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImageUtil.h (100%) rename Code/{Sandbox => }/Editor/Util/ImageUtil_impl.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ImageUtil_impl.h (100%) rename Code/{Sandbox => }/Editor/Util/IndexedFiles.cpp (100%) rename Code/{Sandbox => }/Editor/Util/IndexedFiles.h (100%) rename Code/{Sandbox => }/Editor/Util/KDTree.cpp (100%) rename Code/{Sandbox => }/Editor/Util/KDTree.h (100%) rename Code/{Sandbox => }/Editor/Util/Mailer.h (100%) rename Code/{Sandbox => }/Editor/Util/Math.h (100%) rename Code/{Sandbox => }/Editor/Util/MemoryBlock.cpp (100%) rename Code/{Sandbox => }/Editor/Util/MemoryBlock.h (100%) rename Code/{Sandbox => }/Editor/Util/ModalWindowDismisser.cpp (100%) rename Code/{Sandbox => }/Editor/Util/ModalWindowDismisser.h (100%) rename Code/{Sandbox => }/Editor/Util/NamedData.cpp (100%) rename Code/{Sandbox => }/Editor/Util/NamedData.h (100%) rename Code/{Sandbox => }/Editor/Util/Observable.h (100%) rename Code/{Sandbox => }/Editor/Util/PakFile.cpp (100%) rename Code/{Sandbox => }/Editor/Util/PakFile.h (100%) rename Code/{Sandbox => }/Editor/Util/PathUtil.cpp (100%) rename Code/{Sandbox => }/Editor/Util/PathUtil.h (100%) rename Code/{Sandbox => }/Editor/Util/PredefinedAspectRatios.cpp (100%) rename Code/{Sandbox => }/Editor/Util/PredefinedAspectRatios.h (100%) rename Code/{Sandbox => }/Editor/Util/RefCountBase.h (100%) rename Code/{Sandbox => }/Editor/Util/StringHelpers.cpp (100%) rename Code/{Sandbox => }/Editor/Util/StringHelpers.h (100%) rename Code/{Sandbox => }/Editor/Util/StringNoCasePredicate.h (100%) rename Code/{Sandbox => }/Editor/Util/TRefCountBase.h (100%) rename Code/{Sandbox => }/Editor/Util/Triangulate.cpp (100%) rename Code/{Sandbox => }/Editor/Util/Triangulate.h (100%) rename Code/{Sandbox => }/Editor/Util/UIEnumerations.cpp (100%) rename Code/{Sandbox => }/Editor/Util/UIEnumerations.h (100%) rename Code/{Sandbox => }/Editor/Util/UndoUtil.cpp (100%) rename Code/{Sandbox => }/Editor/Util/UndoUtil.h (100%) rename Code/{Sandbox => }/Editor/Util/Util.h (100%) rename Code/{Sandbox => }/Editor/Util/Variable.cpp (100%) rename Code/{Sandbox => }/Editor/Util/Variable.h (100%) rename Code/{Sandbox => }/Editor/Util/VariablePropertyType.cpp (100%) rename Code/{Sandbox => }/Editor/Util/VariablePropertyType.h (100%) rename Code/{Sandbox => }/Editor/Util/XmlArchive.cpp (100%) rename Code/{Sandbox => }/Editor/Util/XmlArchive.h (100%) rename Code/{Sandbox => }/Editor/Util/XmlHistoryManager.cpp (100%) rename Code/{Sandbox => }/Editor/Util/XmlHistoryManager.h (100%) rename Code/{Sandbox => }/Editor/Util/XmlTemplate.cpp (100%) rename Code/{Sandbox => }/Editor/Util/XmlTemplate.h (100%) rename Code/{Sandbox => }/Editor/Util/bitarray.h (100%) rename Code/{Sandbox => }/Editor/Util/fastlib.h (100%) rename Code/{Sandbox => }/Editor/Util/smartptr.h (100%) rename Code/{Sandbox => }/Editor/ViewManager.cpp (100%) rename Code/{Sandbox => }/Editor/ViewManager.h (100%) rename Code/{Sandbox => }/Editor/ViewPane.cpp (100%) rename Code/{Sandbox => }/Editor/ViewPane.h (100%) rename Code/{Sandbox => }/Editor/Viewport.cpp (100%) rename Code/{Sandbox => }/Editor/Viewport.h (100%) rename Code/{Sandbox => }/Editor/ViewportManipulatorController.cpp (100%) rename Code/{Sandbox => }/Editor/ViewportManipulatorController.h (100%) rename Code/{Sandbox => }/Editor/ViewportTitleDlg.cpp (100%) rename Code/{Sandbox => }/Editor/ViewportTitleDlg.h (100%) rename Code/{Sandbox => }/Editor/ViewportTitleDlg.ui (100%) rename Code/{Sandbox => }/Editor/WaitProgress.cpp (100%) rename Code/{Sandbox => }/Editor/WaitProgress.h (100%) rename Code/{Sandbox => }/Editor/WelcomeScreen/DefaultActiveProject.png (100%) rename Code/{Sandbox => }/Editor/WelcomeScreen/WelcomeScreenDialog.cpp (100%) rename Code/{Sandbox => }/Editor/WelcomeScreen/WelcomeScreenDialog.h (100%) rename Code/{Sandbox => }/Editor/WelcomeScreen/WelcomeScreenDialog.qrc (100%) rename Code/{Sandbox => }/Editor/WelcomeScreen/WelcomeScreenDialog.ui (100%) rename Code/{Sandbox => }/Editor/WinWidgetId.h (100%) rename Code/{Sandbox => }/Editor/WindowObserver_mac.h (100%) rename Code/{Sandbox => }/Editor/WindowObserver_mac.mm (100%) rename Code/{Sandbox => }/Editor/WipFeatureManager.cpp (100%) rename Code/{Sandbox => }/Editor/WipFeatureManager.h (100%) rename Code/{Sandbox => }/Editor/WipFeaturesDlg.cpp (100%) rename Code/{Sandbox => }/Editor/WipFeaturesDlg.h (100%) rename Code/{Sandbox => }/Editor/WipFeaturesDlg.qrc (100%) rename Code/{Sandbox => }/Editor/WipFeaturesDlg.ui (100%) rename Code/{Sandbox => }/Editor/arhitype_tree_00.png (100%) rename Code/{Sandbox => }/Editor/arhitype_tree_01.png (100%) rename Code/{Sandbox => }/Editor/arhitype_tree_02.png (100%) rename Code/{Sandbox => }/Editor/arhitype_tree_03.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_00.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_01.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_02.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_03.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_04.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_05.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_06.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_07.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_08.png (100%) rename Code/{Sandbox => }/Editor/bmp00005_09.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_00.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_01.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_02.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_03.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_04.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_05.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_06.png (100%) rename Code/{Sandbox => }/Editor/bmp00006_07.png (100%) rename Code/{Sandbox => }/Editor/editor_core_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_core_test_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_darwin_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_headers_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_lib_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_lib_terrain_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_lib_test_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_lib_test_terrain_files.cmake (100%) rename Code/{Sandbox => }/Editor/editor_win_files.cmake (100%) rename Code/{Sandbox => }/Editor/graphicssettingsdialog.ui (100%) rename Code/{Sandbox => }/Editor/main.cpp (100%) rename Code/{Sandbox => }/Editor/o3de_logo.svg (100%) rename Code/{Sandbox => }/Editor/particles_tree_00.png (100%) rename Code/{Sandbox => }/Editor/particles_tree_01.png (100%) rename Code/{Sandbox => }/Editor/particles_tree_02.png (100%) rename Code/{Sandbox => }/Editor/particles_tree_03.png (100%) rename Code/{Sandbox => }/Editor/particles_tree_04.png (100%) rename Code/{Sandbox => }/Editor/particles_tree_05.png (100%) rename Code/{Sandbox => }/Editor/particles_tree_06.png (100%) rename Code/{Sandbox => }/Editor/particles_tree_07.png (100%) rename Code/{Sandbox => }/Editor/res/4WAY01.CUR (100%) rename Code/{Sandbox => }/Editor/res/AVI_Recorder.bmp (100%) rename Code/{Sandbox => }/Editor/res/AWS_preferences_icon.svg (100%) rename Code/{Sandbox => }/Editor/res/Camera.svg (100%) rename Code/{Sandbox => }/Editor/res/ConsoleToolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/CryEdit.ico (100%) rename Code/{Sandbox => }/Editor/res/CryEdit.rc2 (100%) rename Code/{Sandbox => }/Editor/res/CryEditDoc.ico (100%) rename Code/{Sandbox => }/Editor/res/Cursor_2.cur (100%) rename Code/{Sandbox => }/Editor/res/Debug.svg (100%) rename Code/{Sandbox => }/Editor/res/Default_closed.svg (100%) rename Code/{Sandbox => }/Editor/res/Default_open.svg (100%) rename Code/{Sandbox => }/Editor/res/Entity.svg (100%) rename Code/{Sandbox => }/Editor/res/Entity_Editor_Only.svg (100%) rename Code/{Sandbox => }/Editor/res/Entity_Not_Active.svg (100%) rename Code/{Sandbox => }/Editor/res/Experimental.svg (100%) rename Code/{Sandbox => }/Editor/res/Eye.svg (100%) rename Code/{Sandbox => }/Editor/res/Eye_Open.tif (100%) rename Code/{Sandbox => }/Editor/res/Eye_Open_Hidden.tif (100%) rename Code/{Sandbox => }/Editor/res/Eye_Open_Hover.tif (100%) rename Code/{Sandbox => }/Editor/res/Eye_Partial_Open.tif (100%) rename Code/{Sandbox => }/Editor/res/Eye_Partial_Slash.tif (100%) rename Code/{Sandbox => }/Editor/res/Eye_Slash.tif (100%) rename Code/{Sandbox => }/Editor/res/Eye_Slash_Hidden.tif (100%) rename Code/{Sandbox => }/Editor/res/Eye_Slash_Hover.tif (100%) rename Code/{Sandbox => }/Editor/res/Files.svg (100%) rename Code/{Sandbox => }/Editor/res/Gizmos.svg (100%) rename Code/{Sandbox => }/Editor/res/Global.svg (100%) rename Code/{Sandbox => }/Editor/res/LegacyLogo.bmp (100%) rename Code/{Sandbox => }/Editor/res/MannFileManagerImageList.bmp (100%) rename Code/{Sandbox => }/Editor/res/Motion.svg (100%) rename Code/{Sandbox => }/Editor/res/Mouse.cur (100%) rename Code/{Sandbox => }/Editor/res/Padlock.svg (100%) rename Code/{Sandbox => }/Editor/res/Padlock_Disabled.tif (100%) rename Code/{Sandbox => }/Editor/res/Padlock_Disabled_Hover.tif (100%) rename Code/{Sandbox => }/Editor/res/Padlock_Enabled.tif (100%) rename Code/{Sandbox => }/Editor/res/Padlock_Enabled_Hover.tif (100%) rename Code/{Sandbox => }/Editor/res/Padlock_Partial_Disabled.tif (100%) rename Code/{Sandbox => }/Editor/res/Padlock_Partial_Enabled.tif (100%) rename Code/{Sandbox => }/Editor/res/Preferences.bmp (100%) rename Code/{Sandbox => }/Editor/res/Preferences_00.png (100%) rename Code/{Sandbox => }/Editor/res/Preferences_01.png (100%) rename Code/{Sandbox => }/Editor/res/Preferences_02.png (100%) rename Code/{Sandbox => }/Editor/res/Preferences_03.png (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Editor_Only.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Modified.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Modified_Editor_Only.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Modified_Editor_Only_Unsavable.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Modified_Not_Active.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Modified_Not_Active_Unsavable.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Modified_Unsavable.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Entity_Not_Active.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Handle.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Handle_Editor_Only.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Handle_Modified.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Handle_Modified_Editor_Only.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Handle_Modified_Not_Active.svg (100%) rename Code/{Sandbox => }/Editor/res/Slice_Handle_Not_Active.svg (100%) rename Code/{Sandbox => }/Editor/res/Toolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/TreeView.bmp (100%) rename Code/{Sandbox => }/Editor/res/Viewport.svg (100%) rename Code/{Sandbox => }/Editor/res/VisualLog_PlayerButtons.bmp (100%) rename Code/{Sandbox => }/Editor/res/ab_toolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/about_dark.bmp (100%) rename Code/{Sandbox => }/Editor/res/add.png (100%) rename Code/{Sandbox => }/Editor/res/anim.bmp (100%) rename Code/{Sandbox => }/Editor/res/animatio.bmp (100%) rename Code/{Sandbox => }/Editor/res/animations_tree_soundevent.bmp (100%) rename Code/{Sandbox => }/Editor/res/animflag_inside_pak.bmp (100%) rename Code/{Sandbox => }/Editor/res/animflag_on_disk.bmp (100%) rename Code/{Sandbox => }/Editor/res/animtree.bmp (100%) rename Code/{Sandbox => }/Editor/res/arhitype_tree.bmp (100%) rename Code/{Sandbox => }/Editor/res/arr_addkey.cur (100%) rename Code/{Sandbox => }/Editor/res/arrow.cur (100%) rename Code/{Sandbox => }/Editor/res/arrow_down.cur (100%) rename Code/{Sandbox => }/Editor/res/arrow_down_black.ico (100%) rename Code/{Sandbox => }/Editor/res/arrow_downright.cur (100%) rename Code/{Sandbox => }/Editor/res/arrow_up.cur (100%) rename Code/{Sandbox => }/Editor/res/arrow_up_black.ico (100%) rename Code/{Sandbox => }/Editor/res/arrow_upright.cur (100%) rename Code/{Sandbox => }/Editor/res/arrowcop.cur (100%) rename Code/{Sandbox => }/Editor/res/assetIsDraggable.ico (100%) rename Code/{Sandbox => }/Editor/res/avi_reco.bmp (100%) rename Code/{Sandbox => }/Editor/res/ball_disabled.ico (100%) rename Code/{Sandbox => }/Editor/res/ball_offline.ico (100%) rename Code/{Sandbox => }/Editor/res/ball_online.ico (100%) rename Code/{Sandbox => }/Editor/res/ball_pending.ico (100%) rename Code/{Sandbox => }/Editor/res/bitmap5.bmp (100%) rename Code/{Sandbox => }/Editor/res/bitmap6.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00001.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00002.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00003.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00005.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00006.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00007.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00007_0.png (100%) rename Code/{Sandbox => }/Editor/res/bmp00007_1.png (100%) rename Code/{Sandbox => }/Editor/res/bmp00007_2.png (100%) rename Code/{Sandbox => }/Editor/res/bmp00007_3.png (100%) rename Code/{Sandbox => }/Editor/res/bmp00007_4.png (100%) rename Code/{Sandbox => }/Editor/res/bmp00007_5.png (100%) rename Code/{Sandbox => }/Editor/res/bmp00007_6.png (100%) rename Code/{Sandbox => }/Editor/res/bmp00008.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00009.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00010.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00011.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00012.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00013.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00014.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00015.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00016.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00017.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00019.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00020.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00024.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00025.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00026.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00027.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00028.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00029.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00030.bmp (100%) rename Code/{Sandbox => }/Editor/res/bmp00031.bmp (100%) rename Code/{Sandbox => }/Editor/res/brush24bpp.bmp (100%) rename Code/{Sandbox => }/Editor/res/ce_animations_toolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/character_parts_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/charedit.bmp (100%) rename Code/{Sandbox => }/Editor/res/chrparamsicons.bmp (100%) rename Code/{Sandbox => }/Editor/res/clapperboard_cancel.bmp (100%) rename Code/{Sandbox => }/Editor/res/clapperboard_ready.bmp (100%) rename Code/{Sandbox => }/Editor/res/clone.ico (100%) rename Code/{Sandbox => }/Editor/res/cur00001.cur (100%) rename Code/{Sandbox => }/Editor/res/cur00002.cur (100%) rename Code/{Sandbox => }/Editor/res/cur00003.cur (100%) rename Code/{Sandbox => }/Editor/res/cur00004.cur (100%) rename Code/{Sandbox => }/Editor/res/cur00005.cur (100%) rename Code/{Sandbox => }/Editor/res/cursor1.cur (100%) rename Code/{Sandbox => }/Editor/res/cursor2.cur (100%) rename Code/{Sandbox => }/Editor/res/cvar_dark.bmp (100%) rename Code/{Sandbox => }/Editor/res/db_gametoken.bmp (100%) rename Code/{Sandbox => }/Editor/res/db_library_add.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_additem.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_assignitem.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/db_library_bar_00.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_bar_01.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_bar_02.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_bar_03.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_bar_04.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_bar_05.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_cloneitem.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_copy.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_delete.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_getproperties.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_item_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/db_library_item_bar_00.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_item_bar_01.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_item_bar_02.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_item_bar_03.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_item_bar_04.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_item_bar_05.png (100%) rename Code/{Sandbox => }/Editor/res/db_library_open.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_paste.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_redo.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_refresh.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_reload.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_removeitem.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_save.svg (100%) rename Code/{Sandbox => }/Editor/res/db_library_undo.svg (100%) rename Code/{Sandbox => }/Editor/res/db_music.bmp (100%) rename Code/{Sandbox => }/Editor/res/db_music_logic.bmp (100%) rename Code/{Sandbox => }/Editor/res/db_standart.bmp (100%) rename Code/{Sandbox => }/Editor/res/db_standart_00.png (100%) rename Code/{Sandbox => }/Editor/res/db_standart_01.png (100%) rename Code/{Sandbox => }/Editor/res/db_standart_02.png (100%) rename Code/{Sandbox => }/Editor/res/db_standart_03.png (100%) rename Code/{Sandbox => }/Editor/res/desc_editor_toolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/down_arr.ico (100%) rename Code/{Sandbox => }/Editor/res/down_arrow.ico (100%) rename Code/{Sandbox => }/Editor/res/dynamichelp.bmp (100%) rename Code/{Sandbox => }/Editor/res/edit_mod.bmp (100%) rename Code/{Sandbox => }/Editor/res/editwithbutton.bmp (100%) rename Code/{Sandbox => }/Editor/res/editwithbutton_dark.bmp (100%) rename Code/{Sandbox => }/Editor/res/emptycontainer.png (100%) rename Code/{Sandbox => }/Editor/res/entitybar.bmp (100%) rename Code/{Sandbox => }/Editor/res/error_report.bmp (100%) rename Code/{Sandbox => }/Editor/res/error_report_checkmark.svg (100%) rename Code/{Sandbox => }/Editor/res/error_report_comment.svg (100%) rename Code/{Sandbox => }/Editor/res/error_report_error.svg (100%) rename Code/{Sandbox => }/Editor/res/error_report_warning.svg (100%) rename Code/{Sandbox => }/Editor/res/expand1.ico (100%) rename Code/{Sandbox => }/Editor/res/expand2.ico (100%) rename Code/{Sandbox => }/Editor/res/faceit_playbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/faceit_slidersbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/faceit_spline_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/facejoystickbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/facesequence_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/facialsequence_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/feedback.ico (100%) rename Code/{Sandbox => }/Editor/res/file_browse.ico (100%) rename Code/{Sandbox => }/Editor/res/filesimage.bmp (100%) rename Code/{Sandbox => }/Editor/res/filesimage_00.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_01.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_02.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_03.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_04.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_05.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_06.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_07.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_08.png (100%) rename Code/{Sandbox => }/Editor/res/filesimage_09.png (100%) rename Code/{Sandbox => }/Editor/res/filestatus.bmp (100%) rename Code/{Sandbox => }/Editor/res/folder.ico (100%) rename Code/{Sandbox => }/Editor/res/folder.png (100%) rename Code/{Sandbox => }/Editor/res/fopen_back.ico (100%) rename Code/{Sandbox => }/Editor/res/fopen_back.png (100%) rename Code/{Sandbox => }/Editor/res/fopen_up.ico (100%) rename Code/{Sandbox => }/Editor/res/fopen_up.png (100%) rename Code/{Sandbox => }/Editor/res/grid.ico (100%) rename Code/{Sandbox => }/Editor/res/group_closed.png (100%) rename Code/{Sandbox => }/Editor/res/group_open.png (100%) rename Code/{Sandbox => }/Editor/res/handDrag.cur (100%) rename Code/{Sandbox => }/Editor/res/hit.cur (100%) rename Code/{Sandbox => }/Editor/res/hypergraph_components.bmp (100%) rename Code/{Sandbox => }/Editor/res/hypergraphtree.bmp (100%) rename Code/{Sandbox => }/Editor/res/ico00001.ico (100%) rename Code/{Sandbox => }/Editor/res/ico00002.ico (100%) rename Code/{Sandbox => }/Editor/res/icon1.ico (100%) rename Code/{Sandbox => }/Editor/res/icon_delete.ico (100%) rename Code/{Sandbox => }/Editor/res/icon_export.ico (100%) rename Code/{Sandbox => }/Editor/res/icon_import.ico (100%) rename Code/{Sandbox => }/Editor/res/icon_new.ico (100%) rename Code/{Sandbox => }/Editor/res/icon_pause.ico (100%) rename Code/{Sandbox => }/Editor/res/icon_play.ico (100%) rename Code/{Sandbox => }/Editor/res/icon_question.bmp (100%) rename Code/{Sandbox => }/Editor/res/icon_question.ico (100%) rename Code/{Sandbox => }/Editor/res/idb_.bmp (100%) rename Code/{Sandbox => }/Editor/res/infobar/CameraCollision-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/GotoLocation-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/LockScale-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/LockSelection-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/Mute-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/NoPlayerSync-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/NoPlayerSync-selected.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/Pause-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/PausePlay-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/PhysicsCol-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/VR-default.svg (100%) rename Code/{Sandbox => }/Editor/res/infobar/XYZ-default.svg (100%) rename Code/{Sandbox => }/Editor/res/k_PlayerButtons.bmp (100%) rename Code/{Sandbox => }/Editor/res/layer_editor_layer_buttons-0.png (100%) rename Code/{Sandbox => }/Editor/res/layer_editor_layer_buttons-1.png (100%) rename Code/{Sandbox => }/Editor/res/layer_icon.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts.bmp (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-0.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-1.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-2.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-3.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-4.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-5.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-6.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-7.svg (100%) rename Code/{Sandbox => }/Editor/res/layouts/layouts-8.svg (100%) rename Code/{Sandbox => }/Editor/res/lc_connecting.ico (100%) rename Code/{Sandbox => }/Editor/res/lc_running.ico (100%) rename Code/{Sandbox => }/Editor/res/leftright.cur (100%) rename Code/{Sandbox => }/Editor/res/litebulb.bmp (100%) rename Code/{Sandbox => }/Editor/res/lock_circle_default.svg (100%) rename Code/{Sandbox => }/Editor/res/lock_circle_transparent.svg (100%) rename Code/{Sandbox => }/Editor/res/lock_on_NotTransparent.svg (100%) rename Code/{Sandbox => }/Editor/res/lock_on_transparent.svg (100%) rename Code/{Sandbox => }/Editor/res/lock_sel.bmp (100%) rename Code/{Sandbox => }/Editor/res/locked.svg (100%) rename Code/{Sandbox => }/Editor/res/locksele.bmp (100%) rename Code/{Sandbox => }/Editor/res/logo.bmp (100%) rename Code/{Sandbox => }/Editor/res/logo.gif (100%) rename Code/{Sandbox => }/Editor/res/lyeditor_small.ico (100%) rename Code/{Sandbox => }/Editor/res/mainfram.bmp (100%) rename Code/{Sandbox => }/Editor/res/mann_tagdef_toolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/mann_tagdef_tree.bmp (100%) rename Code/{Sandbox => }/Editor/res/material.bmp (100%) rename Code/{Sandbox => }/Editor/res/material_browser.bmp (100%) rename Code/{Sandbox => }/Editor/res/materialbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/maximize.ico (100%) rename Code/{Sandbox => }/Editor/res/minus.ico (100%) rename Code/{Sandbox => }/Editor/res/misc_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/model_viewport_dock.bmp (100%) rename Code/{Sandbox => }/Editor/res/model_viewport_fullscreen.bmp (100%) rename Code/{Sandbox => }/Editor/res/motion_b.bmp (100%) rename Code/{Sandbox => }/Editor/res/musictree.bmp (100%) rename Code/{Sandbox => }/Editor/res/nodrop.cur (100%) rename Code/{Sandbox => }/Editor/res/o3de_editor.ico (100%) rename Code/{Sandbox => }/Editor/res/object_move.cur (100%) rename Code/{Sandbox => }/Editor/res/object_rotate.cur (100%) rename Code/{Sandbox => }/Editor/res/object_scale.cur (100%) rename Code/{Sandbox => }/Editor/res/objectsbrowser.bmp (100%) rename Code/{Sandbox => }/Editor/res/pakmanager_file.png (100%) rename Code/{Sandbox => }/Editor/res/pakmanager_folder.png (100%) rename Code/{Sandbox => }/Editor/res/panel_ve.bmp (100%) rename Code/{Sandbox => }/Editor/res/panel_veg.bmp (100%) rename Code/{Sandbox => }/Editor/res/panel_veg2.bmp (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation-00.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation-01.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation-02.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation-03.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation-04.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation-05.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation_2-00.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation_2-01.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation_2-02.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation_2-03.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation_2-04.png (100%) rename Code/{Sandbox => }/Editor/res/panel_vegetation_2-05.png (100%) rename Code/{Sandbox => }/Editor/res/particles_tree.bmp (100%) rename Code/{Sandbox => }/Editor/res/particlesbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/pick.bmp (100%) rename Code/{Sandbox => }/Editor/res/pick_cursor.cur (100%) rename Code/{Sandbox => }/Editor/res/plus.ico (100%) rename Code/{Sandbox => }/Editor/res/pointerDragItem.cur (100%) rename Code/{Sandbox => }/Editor/res/pointerHit.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_flatten.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_getheight.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_link.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_linknow.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_minus.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_plus.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_smooth.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_so_sel_plus.cur (100%) rename Code/{Sandbox => }/Editor/res/pointer_so_select.cur (100%) rename Code/{Sandbox => }/Editor/res/proceduralmaterial_toolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/progslider_end.bmp (100%) rename Code/{Sandbox => }/Editor/res/progslider_marker.bmp (100%) rename Code/{Sandbox => }/Editor/res/progslider_start.bmp (100%) rename Code/{Sandbox => }/Editor/res/progslider_thumb.bmp (100%) rename Code/{Sandbox => }/Editor/res/progslider_track.bmp (100%) rename Code/{Sandbox => }/Editor/res/properties.bmp (100%) rename Code/{Sandbox => }/Editor/res/psd.ico (100%) rename Code/{Sandbox => }/Editor/res/remove.png (100%) rename Code/{Sandbox => }/Editor/res/rename.ico (100%) rename Code/{Sandbox => }/Editor/res/replace.ico (100%) rename Code/{Sandbox => }/Editor/res/ribbon_system_button.png (100%) rename Code/{Sandbox => }/Editor/res/sandbox_dark.bmp (100%) rename Code/{Sandbox => }/Editor/res/sb_welcome_dark.bmp (100%) rename Code/{Sandbox => }/Editor/res/selectobj.bmp (100%) rename Code/{Sandbox => }/Editor/res/seq_1_colour_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/seq_2_colour_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/seq_3_colour_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/seq_4_colour_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/seq_5_colour_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/seq_6_colour_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/seq_7_colour_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/sequencer_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/sequencer_nodes.bmp (100%) rename Code/{Sandbox => }/Editor/res/soundfiles.bmp (100%) rename Code/{Sandbox => }/Editor/res/soundmood.bmp (100%) rename Code/{Sandbox => }/Editor/res/soundpre.bmp (100%) rename Code/{Sandbox => }/Editor/res/source_control-not_setup.svg (100%) rename Code/{Sandbox => }/Editor/res/source_control-warning_v2.svg (100%) rename Code/{Sandbox => }/Editor/res/source_control_buttons.bmp (100%) rename Code/{Sandbox => }/Editor/res/source_control_connected.svg (100%) rename Code/{Sandbox => }/Editor/res/source_control_error_v2.svg (100%) rename Code/{Sandbox => }/Editor/res/spline_edit_bar.bmp (100%) rename Code/{Sandbox => }/Editor/res/splineextrabar.bmp (100%) rename Code/{Sandbox => }/Editor/res/status_mem_low1.ico (100%) rename Code/{Sandbox => }/Editor/res/status_mem_low2.ico (100%) rename Code/{Sandbox => }/Editor/res/status_mem_ok.ico (100%) rename Code/{Sandbox => }/Editor/res/stdviews.bmp (100%) rename Code/{Sandbox => }/Editor/res/subobjseltype.bmp (100%) rename Code/{Sandbox => }/Editor/res/sw_mapbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/sw_toolbar.bmp (100%) rename Code/{Sandbox => }/Editor/res/tabPanel.bmp (100%) rename Code/{Sandbox => }/Editor/res/tiff.ico (100%) rename Code/{Sandbox => }/Editor/res/toolbar1.bmp (100%) rename Code/{Sandbox => }/Editor/res/toolbar2.bmp (100%) rename Code/{Sandbox => }/Editor/res/toolbox.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackvie.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackview.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackview1.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackview_key.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackview_keys.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackview_nodes.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackview_play.bmp (100%) rename Code/{Sandbox => }/Editor/res/trackview_view.bmp (100%) rename Code/{Sandbox => }/Editor/res/tree_vie.bmp (100%) rename Code/{Sandbox => }/Editor/res/tree_view_folder.png (100%) rename Code/{Sandbox => }/Editor/res/tree_view_level.png (100%) rename Code/{Sandbox => }/Editor/res/uieditor_main.bmp (100%) rename Code/{Sandbox => }/Editor/res/unlocked.svg (100%) rename Code/{Sandbox => }/Editor/res/up_arrow.ico (100%) rename Code/{Sandbox => }/Editor/res/value_types.bmp (100%) rename Code/{Sandbox => }/Editor/res/veed_tree.bmp (100%) rename Code/{Sandbox => }/Editor/res/vegetati.bmp (100%) rename Code/{Sandbox => }/Editor/res/vegtree.bmp (100%) rename Code/{Sandbox => }/Editor/res/video_record.ico (100%) rename Code/{Sandbox => }/Editor/res/vis_circle_default.svg (100%) rename Code/{Sandbox => }/Editor/res/vis_circle_transparent.svg (100%) rename Code/{Sandbox => }/Editor/res/vis_on_NotTransparent.svg (100%) rename Code/{Sandbox => }/Editor/res/vis_on_transparent.svg (100%) rename Code/{Sandbox => }/Editor/res/visb.svg (100%) rename Code/{Sandbox => }/Editor/res/visb_hidden.svg (100%) rename Code/{Sandbox => }/Editor/res/warning16x16.ico (100%) rename Code/{Sandbox => }/Editor/res/water.bmp (100%) rename Code/{Sandbox => }/Editor/res/work_in_progress_icon.ico (100%) rename Code/{Sandbox => }/Editor/res/work_in_progress_icon.png (100%) rename Code/{Sandbox => }/Editor/splashscreen_background_gradient.jpg (100%) rename Code/{Sandbox => }/Editor/water.png (100%) diff --git a/Code/Sandbox/Editor/2DViewport.cpp b/Code/Editor/2DViewport.cpp similarity index 100% rename from Code/Sandbox/Editor/2DViewport.cpp rename to Code/Editor/2DViewport.cpp diff --git a/Code/Sandbox/Editor/2DViewport.h b/Code/Editor/2DViewport.h similarity index 100% rename from Code/Sandbox/Editor/2DViewport.h rename to Code/Editor/2DViewport.h diff --git a/Code/Sandbox/Editor/AboutDialog.cpp b/Code/Editor/AboutDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/AboutDialog.cpp rename to Code/Editor/AboutDialog.cpp diff --git a/Code/Sandbox/Editor/AboutDialog.h b/Code/Editor/AboutDialog.h similarity index 100% rename from Code/Sandbox/Editor/AboutDialog.h rename to Code/Editor/AboutDialog.h diff --git a/Code/Sandbox/Editor/AboutDialog.ui b/Code/Editor/AboutDialog.ui similarity index 100% rename from Code/Sandbox/Editor/AboutDialog.ui rename to Code/Editor/AboutDialog.ui diff --git a/Code/Sandbox/Editor/ActionManager.cpp b/Code/Editor/ActionManager.cpp similarity index 100% rename from Code/Sandbox/Editor/ActionManager.cpp rename to Code/Editor/ActionManager.cpp diff --git a/Code/Sandbox/Editor/ActionManager.h b/Code/Editor/ActionManager.h similarity index 100% rename from Code/Sandbox/Editor/ActionManager.h rename to Code/Editor/ActionManager.h diff --git a/Code/Sandbox/Editor/Animation/AnimationBipedBoneNames.cpp b/Code/Editor/Animation/AnimationBipedBoneNames.cpp similarity index 100% rename from Code/Sandbox/Editor/Animation/AnimationBipedBoneNames.cpp rename to Code/Editor/Animation/AnimationBipedBoneNames.cpp diff --git a/Code/Sandbox/Editor/Animation/AnimationBipedBoneNames.h b/Code/Editor/Animation/AnimationBipedBoneNames.h similarity index 100% rename from Code/Sandbox/Editor/Animation/AnimationBipedBoneNames.h rename to Code/Editor/Animation/AnimationBipedBoneNames.h diff --git a/Code/Sandbox/Editor/Animation/SkeletonHierarchy.cpp b/Code/Editor/Animation/SkeletonHierarchy.cpp similarity index 100% rename from Code/Sandbox/Editor/Animation/SkeletonHierarchy.cpp rename to Code/Editor/Animation/SkeletonHierarchy.cpp diff --git a/Code/Sandbox/Editor/Animation/SkeletonHierarchy.h b/Code/Editor/Animation/SkeletonHierarchy.h similarity index 100% rename from Code/Sandbox/Editor/Animation/SkeletonHierarchy.h rename to Code/Editor/Animation/SkeletonHierarchy.h diff --git a/Code/Sandbox/Editor/Animation/SkeletonMapper.cpp b/Code/Editor/Animation/SkeletonMapper.cpp similarity index 100% rename from Code/Sandbox/Editor/Animation/SkeletonMapper.cpp rename to Code/Editor/Animation/SkeletonMapper.cpp diff --git a/Code/Sandbox/Editor/Animation/SkeletonMapper.h b/Code/Editor/Animation/SkeletonMapper.h similarity index 100% rename from Code/Sandbox/Editor/Animation/SkeletonMapper.h rename to Code/Editor/Animation/SkeletonMapper.h diff --git a/Code/Sandbox/Editor/Animation/SkeletonMapperOperator.cpp b/Code/Editor/Animation/SkeletonMapperOperator.cpp similarity index 100% rename from Code/Sandbox/Editor/Animation/SkeletonMapperOperator.cpp rename to Code/Editor/Animation/SkeletonMapperOperator.cpp diff --git a/Code/Sandbox/Editor/Animation/SkeletonMapperOperator.h b/Code/Editor/Animation/SkeletonMapperOperator.h similarity index 100% rename from Code/Sandbox/Editor/Animation/SkeletonMapperOperator.h rename to Code/Editor/Animation/SkeletonMapperOperator.h diff --git a/Code/Sandbox/Editor/AnimationContext.cpp b/Code/Editor/AnimationContext.cpp similarity index 100% rename from Code/Sandbox/Editor/AnimationContext.cpp rename to Code/Editor/AnimationContext.cpp diff --git a/Code/Sandbox/Editor/AnimationContext.cpp.rej b/Code/Editor/AnimationContext.cpp.rej similarity index 100% rename from Code/Sandbox/Editor/AnimationContext.cpp.rej rename to Code/Editor/AnimationContext.cpp.rej diff --git a/Code/Sandbox/Editor/AnimationContext.h b/Code/Editor/AnimationContext.h similarity index 100% rename from Code/Sandbox/Editor/AnimationContext.h rename to Code/Editor/AnimationContext.h diff --git a/Code/Sandbox/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp b/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp rename to Code/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp diff --git a/Code/Sandbox/Editor/AssetDatabase/AssetDatabaseLocationListener.h b/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.h similarity index 100% rename from Code/Sandbox/Editor/AssetDatabase/AssetDatabaseLocationListener.h rename to Code/Editor/AssetDatabase/AssetDatabaseLocationListener.h diff --git a/Code/Sandbox/Editor/AssetEditor/AssetEditorRequestsHandler.cpp b/Code/Editor/AssetEditor/AssetEditorRequestsHandler.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetEditor/AssetEditorRequestsHandler.cpp rename to Code/Editor/AssetEditor/AssetEditorRequestsHandler.cpp diff --git a/Code/Sandbox/Editor/AssetEditor/AssetEditorRequestsHandler.h b/Code/Editor/AssetEditor/AssetEditorRequestsHandler.h similarity index 100% rename from Code/Sandbox/Editor/AssetEditor/AssetEditorRequestsHandler.h rename to Code/Editor/AssetEditor/AssetEditorRequestsHandler.h diff --git a/Code/Sandbox/Editor/AssetEditor/AssetEditorWindow.cpp b/Code/Editor/AssetEditor/AssetEditorWindow.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetEditor/AssetEditorWindow.cpp rename to Code/Editor/AssetEditor/AssetEditorWindow.cpp diff --git a/Code/Sandbox/Editor/AssetEditor/AssetEditorWindow.h b/Code/Editor/AssetEditor/AssetEditorWindow.h similarity index 100% rename from Code/Sandbox/Editor/AssetEditor/AssetEditorWindow.h rename to Code/Editor/AssetEditor/AssetEditorWindow.h diff --git a/Code/Sandbox/Editor/AssetEditor/AssetEditorWindow.ui b/Code/Editor/AssetEditor/AssetEditorWindow.ui similarity index 100% rename from Code/Sandbox/Editor/AssetEditor/AssetEditorWindow.ui rename to Code/Editor/AssetEditor/AssetEditorWindow.ui diff --git a/Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp rename to Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp diff --git a/Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h rename to Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h diff --git a/Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp rename to Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp diff --git a/Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h rename to Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h diff --git a/Code/Sandbox/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp b/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp rename to Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp diff --git a/Code/Sandbox/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h b/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h rename to Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h diff --git a/Code/Sandbox/Editor/AssetImporter/UI/FilesAlreadyExistDialog.ui b/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.ui similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/FilesAlreadyExistDialog.ui rename to Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.ui diff --git a/Code/Sandbox/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp b/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp rename to Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp diff --git a/Code/Sandbox/Editor/AssetImporter/UI/ProcessingAssetsDialog.h b/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.h similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/ProcessingAssetsDialog.h rename to Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.h diff --git a/Code/Sandbox/Editor/AssetImporter/UI/ProcessingAssetsDialog.ui b/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.ui similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/ProcessingAssetsDialog.ui rename to Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.ui diff --git a/Code/Sandbox/Editor/AssetImporter/UI/SelectDestinationDialog.cpp b/Code/Editor/AssetImporter/UI/SelectDestinationDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/SelectDestinationDialog.cpp rename to Code/Editor/AssetImporter/UI/SelectDestinationDialog.cpp diff --git a/Code/Sandbox/Editor/AssetImporter/UI/SelectDestinationDialog.h b/Code/Editor/AssetImporter/UI/SelectDestinationDialog.h similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/SelectDestinationDialog.h rename to Code/Editor/AssetImporter/UI/SelectDestinationDialog.h diff --git a/Code/Sandbox/Editor/AssetImporter/UI/SelectDestinationDialog.ui b/Code/Editor/AssetImporter/UI/SelectDestinationDialog.ui similarity index 100% rename from Code/Sandbox/Editor/AssetImporter/UI/SelectDestinationDialog.ui rename to Code/Editor/AssetImporter/UI/SelectDestinationDialog.ui diff --git a/Code/Sandbox/Editor/AzAssetBrowser/AssetBrowserWindow.cpp b/Code/Editor/AzAssetBrowser/AssetBrowserWindow.cpp similarity index 100% rename from Code/Sandbox/Editor/AzAssetBrowser/AssetBrowserWindow.cpp rename to Code/Editor/AzAssetBrowser/AssetBrowserWindow.cpp diff --git a/Code/Sandbox/Editor/AzAssetBrowser/AssetBrowserWindow.h b/Code/Editor/AzAssetBrowser/AssetBrowserWindow.h similarity index 100% rename from Code/Sandbox/Editor/AzAssetBrowser/AssetBrowserWindow.h rename to Code/Editor/AzAssetBrowser/AssetBrowserWindow.h diff --git a/Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp similarity index 100% rename from Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp rename to Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp diff --git a/Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h similarity index 100% rename from Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h rename to Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h diff --git a/Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp similarity index 100% rename from Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp rename to Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp diff --git a/Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserWindow.h b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.h similarity index 100% rename from Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserWindow.h rename to Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.h diff --git a/Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserWindow.ui b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.ui similarity index 100% rename from Code/Sandbox/Editor/AzAssetBrowser/AzAssetBrowserWindow.ui rename to Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.ui diff --git a/Code/Sandbox/Editor/BaseLibrary.cpp b/Code/Editor/BaseLibrary.cpp similarity index 100% rename from Code/Sandbox/Editor/BaseLibrary.cpp rename to Code/Editor/BaseLibrary.cpp diff --git a/Code/Sandbox/Editor/BaseLibrary.h b/Code/Editor/BaseLibrary.h similarity index 100% rename from Code/Sandbox/Editor/BaseLibrary.h rename to Code/Editor/BaseLibrary.h diff --git a/Code/Sandbox/Editor/BaseLibraryItem.cpp b/Code/Editor/BaseLibraryItem.cpp similarity index 100% rename from Code/Sandbox/Editor/BaseLibraryItem.cpp rename to Code/Editor/BaseLibraryItem.cpp diff --git a/Code/Sandbox/Editor/BaseLibraryItem.h b/Code/Editor/BaseLibraryItem.h similarity index 100% rename from Code/Sandbox/Editor/BaseLibraryItem.h rename to Code/Editor/BaseLibraryItem.h diff --git a/Code/Sandbox/Editor/BaseLibraryManager.cpp b/Code/Editor/BaseLibraryManager.cpp similarity index 100% rename from Code/Sandbox/Editor/BaseLibraryManager.cpp rename to Code/Editor/BaseLibraryManager.cpp diff --git a/Code/Sandbox/Editor/BaseLibraryManager.h b/Code/Editor/BaseLibraryManager.h similarity index 100% rename from Code/Sandbox/Editor/BaseLibraryManager.h rename to Code/Editor/BaseLibraryManager.h diff --git a/Code/Sandbox/Editor/CMakeLists.txt b/Code/Editor/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Editor/CMakeLists.txt rename to Code/Editor/CMakeLists.txt diff --git a/Code/Sandbox/Editor/CVarMenu.cpp b/Code/Editor/CVarMenu.cpp similarity index 100% rename from Code/Sandbox/Editor/CVarMenu.cpp rename to Code/Editor/CVarMenu.cpp diff --git a/Code/Sandbox/Editor/CVarMenu.h b/Code/Editor/CVarMenu.h similarity index 100% rename from Code/Sandbox/Editor/CVarMenu.h rename to Code/Editor/CVarMenu.h diff --git a/Code/Sandbox/Editor/CheckOutDialog.cpp b/Code/Editor/CheckOutDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/CheckOutDialog.cpp rename to Code/Editor/CheckOutDialog.cpp diff --git a/Code/Sandbox/Editor/CheckOutDialog.h b/Code/Editor/CheckOutDialog.h similarity index 100% rename from Code/Sandbox/Editor/CheckOutDialog.h rename to Code/Editor/CheckOutDialog.h diff --git a/Code/Sandbox/Editor/CheckOutDialog.ui b/Code/Editor/CheckOutDialog.ui similarity index 100% rename from Code/Sandbox/Editor/CheckOutDialog.ui rename to Code/Editor/CheckOutDialog.ui diff --git a/Code/Sandbox/Editor/Clipboard.cpp b/Code/Editor/Clipboard.cpp similarity index 100% rename from Code/Sandbox/Editor/Clipboard.cpp rename to Code/Editor/Clipboard.cpp diff --git a/Code/Sandbox/Editor/Clipboard.h b/Code/Editor/Clipboard.h similarity index 100% rename from Code/Sandbox/Editor/Clipboard.h rename to Code/Editor/Clipboard.h diff --git a/Code/Sandbox/Editor/Commands/CommandManager.cpp b/Code/Editor/Commands/CommandManager.cpp similarity index 100% rename from Code/Sandbox/Editor/Commands/CommandManager.cpp rename to Code/Editor/Commands/CommandManager.cpp diff --git a/Code/Sandbox/Editor/Commands/CommandManager.h b/Code/Editor/Commands/CommandManager.h similarity index 100% rename from Code/Sandbox/Editor/Commands/CommandManager.h rename to Code/Editor/Commands/CommandManager.h diff --git a/Code/Sandbox/Editor/Commands/CommandManagerBus.h b/Code/Editor/Commands/CommandManagerBus.h similarity index 100% rename from Code/Sandbox/Editor/Commands/CommandManagerBus.h rename to Code/Editor/Commands/CommandManagerBus.h diff --git a/Code/Sandbox/Editor/Common/spline_edit-00.png b/Code/Editor/Common/spline_edit-00.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-00.png rename to Code/Editor/Common/spline_edit-00.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-01.png b/Code/Editor/Common/spline_edit-01.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-01.png rename to Code/Editor/Common/spline_edit-01.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-02.png b/Code/Editor/Common/spline_edit-02.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-02.png rename to Code/Editor/Common/spline_edit-02.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-03.png b/Code/Editor/Common/spline_edit-03.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-03.png rename to Code/Editor/Common/spline_edit-03.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-04.png b/Code/Editor/Common/spline_edit-04.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-04.png rename to Code/Editor/Common/spline_edit-04.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-05.png b/Code/Editor/Common/spline_edit-05.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-05.png rename to Code/Editor/Common/spline_edit-05.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-06.png b/Code/Editor/Common/spline_edit-06.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-06.png rename to Code/Editor/Common/spline_edit-06.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-07.png b/Code/Editor/Common/spline_edit-07.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-07.png rename to Code/Editor/Common/spline_edit-07.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-08.png b/Code/Editor/Common/spline_edit-08.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-08.png rename to Code/Editor/Common/spline_edit-08.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-09.png b/Code/Editor/Common/spline_edit-09.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-09.png rename to Code/Editor/Common/spline_edit-09.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-10.png b/Code/Editor/Common/spline_edit-10.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-10.png rename to Code/Editor/Common/spline_edit-10.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-11.png b/Code/Editor/Common/spline_edit-11.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-11.png rename to Code/Editor/Common/spline_edit-11.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-12.png b/Code/Editor/Common/spline_edit-12.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-12.png rename to Code/Editor/Common/spline_edit-12.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-13.png b/Code/Editor/Common/spline_edit-13.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-13.png rename to Code/Editor/Common/spline_edit-13.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-14.png b/Code/Editor/Common/spline_edit-14.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-14.png rename to Code/Editor/Common/spline_edit-14.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-15.png b/Code/Editor/Common/spline_edit-15.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-15.png rename to Code/Editor/Common/spline_edit-15.png diff --git a/Code/Sandbox/Editor/Common/spline_edit-16.png b/Code/Editor/Common/spline_edit-16.png similarity index 100% rename from Code/Sandbox/Editor/Common/spline_edit-16.png rename to Code/Editor/Common/spline_edit-16.png diff --git a/Code/Sandbox/Editor/ConfigGroup.cpp b/Code/Editor/ConfigGroup.cpp similarity index 100% rename from Code/Sandbox/Editor/ConfigGroup.cpp rename to Code/Editor/ConfigGroup.cpp diff --git a/Code/Sandbox/Editor/ConfigGroup.h b/Code/Editor/ConfigGroup.h similarity index 100% rename from Code/Sandbox/Editor/ConfigGroup.h rename to Code/Editor/ConfigGroup.h diff --git a/Code/Sandbox/Editor/ConsoleDialog.cpp b/Code/Editor/ConsoleDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/ConsoleDialog.cpp rename to Code/Editor/ConsoleDialog.cpp diff --git a/Code/Sandbox/Editor/ConsoleDialog.h b/Code/Editor/ConsoleDialog.h similarity index 100% rename from Code/Sandbox/Editor/ConsoleDialog.h rename to Code/Editor/ConsoleDialog.h diff --git a/Code/Sandbox/Editor/ControlMRU.cpp b/Code/Editor/ControlMRU.cpp similarity index 100% rename from Code/Sandbox/Editor/ControlMRU.cpp rename to Code/Editor/ControlMRU.cpp diff --git a/Code/Sandbox/Editor/ControlMRU.h b/Code/Editor/ControlMRU.h similarity index 100% rename from Code/Sandbox/Editor/ControlMRU.h rename to Code/Editor/ControlMRU.h diff --git a/Code/Sandbox/Editor/Controls/BitmapToolTip.cpp b/Code/Editor/Controls/BitmapToolTip.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/BitmapToolTip.cpp rename to Code/Editor/Controls/BitmapToolTip.cpp diff --git a/Code/Sandbox/Editor/Controls/BitmapToolTip.h b/Code/Editor/Controls/BitmapToolTip.h similarity index 100% rename from Code/Sandbox/Editor/Controls/BitmapToolTip.h rename to Code/Editor/Controls/BitmapToolTip.h diff --git a/Code/Sandbox/Editor/Controls/ColorGradientCtrl.cpp b/Code/Editor/Controls/ColorGradientCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ColorGradientCtrl.cpp rename to Code/Editor/Controls/ColorGradientCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ColorGradientCtrl.h b/Code/Editor/Controls/ColorGradientCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ColorGradientCtrl.h rename to Code/Editor/Controls/ColorGradientCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ConsoleSCB.cpp b/Code/Editor/Controls/ConsoleSCB.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ConsoleSCB.cpp rename to Code/Editor/Controls/ConsoleSCB.cpp diff --git a/Code/Sandbox/Editor/Controls/ConsoleSCB.h b/Code/Editor/Controls/ConsoleSCB.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ConsoleSCB.h rename to Code/Editor/Controls/ConsoleSCB.h diff --git a/Code/Sandbox/Editor/Controls/ConsoleSCB.qrc b/Code/Editor/Controls/ConsoleSCB.qrc similarity index 100% rename from Code/Sandbox/Editor/Controls/ConsoleSCB.qrc rename to Code/Editor/Controls/ConsoleSCB.qrc diff --git a/Code/Sandbox/Editor/Controls/ConsoleSCB.ui b/Code/Editor/Controls/ConsoleSCB.ui similarity index 100% rename from Code/Sandbox/Editor/Controls/ConsoleSCB.ui rename to Code/Editor/Controls/ConsoleSCB.ui diff --git a/Code/Sandbox/Editor/Controls/ConsoleSCBMFC.cpp b/Code/Editor/Controls/ConsoleSCBMFC.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ConsoleSCBMFC.cpp rename to Code/Editor/Controls/ConsoleSCBMFC.cpp diff --git a/Code/Sandbox/Editor/Controls/ConsoleSCBMFC.h b/Code/Editor/Controls/ConsoleSCBMFC.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ConsoleSCBMFC.h rename to Code/Editor/Controls/ConsoleSCBMFC.h diff --git a/Code/Sandbox/Editor/Controls/ConsoleSCBMFC.ui b/Code/Editor/Controls/ConsoleSCBMFC.ui similarity index 100% rename from Code/Sandbox/Editor/Controls/ConsoleSCBMFC.ui rename to Code/Editor/Controls/ConsoleSCBMFC.ui diff --git a/Code/Sandbox/Editor/Controls/FolderTreeCtrl.cpp b/Code/Editor/Controls/FolderTreeCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/FolderTreeCtrl.cpp rename to Code/Editor/Controls/FolderTreeCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/FolderTreeCtrl.h b/Code/Editor/Controls/FolderTreeCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/FolderTreeCtrl.h rename to Code/Editor/Controls/FolderTreeCtrl.h diff --git a/Code/Sandbox/Editor/Controls/HotTrackingTreeCtrl.cpp b/Code/Editor/Controls/HotTrackingTreeCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/HotTrackingTreeCtrl.cpp rename to Code/Editor/Controls/HotTrackingTreeCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/HotTrackingTreeCtrl.h b/Code/Editor/Controls/HotTrackingTreeCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/HotTrackingTreeCtrl.h rename to Code/Editor/Controls/HotTrackingTreeCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ImageHistogramCtrl.cpp b/Code/Editor/Controls/ImageHistogramCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ImageHistogramCtrl.cpp rename to Code/Editor/Controls/ImageHistogramCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ImageHistogramCtrl.h b/Code/Editor/Controls/ImageHistogramCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ImageHistogramCtrl.h rename to Code/Editor/Controls/ImageHistogramCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ImageListCtrl.cpp b/Code/Editor/Controls/ImageListCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ImageListCtrl.cpp rename to Code/Editor/Controls/ImageListCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ImageListCtrl.h b/Code/Editor/Controls/ImageListCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ImageListCtrl.h rename to Code/Editor/Controls/ImageListCtrl.h diff --git a/Code/Sandbox/Editor/Controls/MultiMonHelper.cpp b/Code/Editor/Controls/MultiMonHelper.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/MultiMonHelper.cpp rename to Code/Editor/Controls/MultiMonHelper.cpp diff --git a/Code/Sandbox/Editor/Controls/MultiMonHelper.h b/Code/Editor/Controls/MultiMonHelper.h similarity index 100% rename from Code/Sandbox/Editor/Controls/MultiMonHelper.h rename to Code/Editor/Controls/MultiMonHelper.h diff --git a/Code/Sandbox/Editor/Controls/NumberCtrl.cpp b/Code/Editor/Controls/NumberCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/NumberCtrl.cpp rename to Code/Editor/Controls/NumberCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/NumberCtrl.h b/Code/Editor/Controls/NumberCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/NumberCtrl.h rename to Code/Editor/Controls/NumberCtrl.h diff --git a/Code/Sandbox/Editor/Controls/QBitmapPreviewDialog.cpp b/Code/Editor/Controls/QBitmapPreviewDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/QBitmapPreviewDialog.cpp rename to Code/Editor/Controls/QBitmapPreviewDialog.cpp diff --git a/Code/Sandbox/Editor/Controls/QBitmapPreviewDialog.h b/Code/Editor/Controls/QBitmapPreviewDialog.h similarity index 100% rename from Code/Sandbox/Editor/Controls/QBitmapPreviewDialog.h rename to Code/Editor/Controls/QBitmapPreviewDialog.h diff --git a/Code/Sandbox/Editor/Controls/QBitmapPreviewDialog.ui b/Code/Editor/Controls/QBitmapPreviewDialog.ui similarity index 100% rename from Code/Sandbox/Editor/Controls/QBitmapPreviewDialog.ui rename to Code/Editor/Controls/QBitmapPreviewDialog.ui diff --git a/Code/Sandbox/Editor/Controls/QBitmapPreviewDialogImp.cpp b/Code/Editor/Controls/QBitmapPreviewDialogImp.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/QBitmapPreviewDialogImp.cpp rename to Code/Editor/Controls/QBitmapPreviewDialogImp.cpp diff --git a/Code/Sandbox/Editor/Controls/QBitmapPreviewDialogImp.h b/Code/Editor/Controls/QBitmapPreviewDialogImp.h similarity index 100% rename from Code/Sandbox/Editor/Controls/QBitmapPreviewDialogImp.h rename to Code/Editor/Controls/QBitmapPreviewDialogImp.h diff --git a/Code/Sandbox/Editor/Controls/QToolTipWidget.cpp b/Code/Editor/Controls/QToolTipWidget.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/QToolTipWidget.cpp rename to Code/Editor/Controls/QToolTipWidget.cpp diff --git a/Code/Sandbox/Editor/Controls/QToolTipWidget.h b/Code/Editor/Controls/QToolTipWidget.h similarity index 100% rename from Code/Sandbox/Editor/Controls/QToolTipWidget.h rename to Code/Editor/Controls/QToolTipWidget.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h rename to Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.qrc b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.qrc similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.qrc rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.qrc diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h rename to Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/resources/apply.png b/Code/Editor/Controls/ReflectedPropertyControl/resources/apply.png similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/resources/apply.png rename to Code/Editor/Controls/ReflectedPropertyControl/resources/apply.png diff --git a/Code/Sandbox/Editor/Controls/ReflectedPropertyControl/resources/file_browse.png b/Code/Editor/Controls/ReflectedPropertyControl/resources/file_browse.png similarity index 100% rename from Code/Sandbox/Editor/Controls/ReflectedPropertyControl/resources/file_browse.png rename to Code/Editor/Controls/ReflectedPropertyControl/resources/file_browse.png diff --git a/Code/Sandbox/Editor/Controls/SplineCtrl.cpp b/Code/Editor/Controls/SplineCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/SplineCtrl.cpp rename to Code/Editor/Controls/SplineCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/SplineCtrl.h b/Code/Editor/Controls/SplineCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/SplineCtrl.h rename to Code/Editor/Controls/SplineCtrl.h diff --git a/Code/Sandbox/Editor/Controls/SplineCtrlEx.cpp b/Code/Editor/Controls/SplineCtrlEx.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/SplineCtrlEx.cpp rename to Code/Editor/Controls/SplineCtrlEx.cpp diff --git a/Code/Sandbox/Editor/Controls/SplineCtrlEx.h b/Code/Editor/Controls/SplineCtrlEx.h similarity index 100% rename from Code/Sandbox/Editor/Controls/SplineCtrlEx.h rename to Code/Editor/Controls/SplineCtrlEx.h diff --git a/Code/Sandbox/Editor/Controls/TextEditorCtrl.cpp b/Code/Editor/Controls/TextEditorCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/TextEditorCtrl.cpp rename to Code/Editor/Controls/TextEditorCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/TextEditorCtrl.h b/Code/Editor/Controls/TextEditorCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/TextEditorCtrl.h rename to Code/Editor/Controls/TextEditorCtrl.h diff --git a/Code/Sandbox/Editor/Controls/TimelineCtrl.cpp b/Code/Editor/Controls/TimelineCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/Controls/TimelineCtrl.cpp rename to Code/Editor/Controls/TimelineCtrl.cpp diff --git a/Code/Sandbox/Editor/Controls/TimelineCtrl.h b/Code/Editor/Controls/TimelineCtrl.h similarity index 100% rename from Code/Sandbox/Editor/Controls/TimelineCtrl.h rename to Code/Editor/Controls/TimelineCtrl.h diff --git a/Code/Sandbox/Editor/Controls/TreeCtrlUtils.h b/Code/Editor/Controls/TreeCtrlUtils.h similarity index 100% rename from Code/Sandbox/Editor/Controls/TreeCtrlUtils.h rename to Code/Editor/Controls/TreeCtrlUtils.h diff --git a/Code/Sandbox/Editor/Controls/WndGridHelper.h b/Code/Editor/Controls/WndGridHelper.h similarity index 100% rename from Code/Sandbox/Editor/Controls/WndGridHelper.h rename to Code/Editor/Controls/WndGridHelper.h diff --git a/Code/Sandbox/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp b/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp similarity index 100% rename from Code/Sandbox/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp rename to Code/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp diff --git a/Code/Sandbox/Editor/Core/EditorMetricsPlainTextNameRegistration.h b/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.h similarity index 100% rename from Code/Sandbox/Editor/Core/EditorMetricsPlainTextNameRegistration.h rename to Code/Editor/Core/EditorMetricsPlainTextNameRegistration.h diff --git a/Code/Sandbox/Editor/Core/LevelEditorMenuHandler.cpp b/Code/Editor/Core/LevelEditorMenuHandler.cpp similarity index 100% rename from Code/Sandbox/Editor/Core/LevelEditorMenuHandler.cpp rename to Code/Editor/Core/LevelEditorMenuHandler.cpp diff --git a/Code/Sandbox/Editor/Core/LevelEditorMenuHandler.h b/Code/Editor/Core/LevelEditorMenuHandler.h similarity index 100% rename from Code/Sandbox/Editor/Core/LevelEditorMenuHandler.h rename to Code/Editor/Core/LevelEditorMenuHandler.h diff --git a/Code/Sandbox/Editor/Core/QtEditorApplication.cpp b/Code/Editor/Core/QtEditorApplication.cpp similarity index 100% rename from Code/Sandbox/Editor/Core/QtEditorApplication.cpp rename to Code/Editor/Core/QtEditorApplication.cpp diff --git a/Code/Sandbox/Editor/Core/QtEditorApplication.h b/Code/Editor/Core/QtEditorApplication.h similarity index 100% rename from Code/Sandbox/Editor/Core/QtEditorApplication.h rename to Code/Editor/Core/QtEditorApplication.h diff --git a/Code/Sandbox/Editor/Core/QtEditorApplication_linux.cpp b/Code/Editor/Core/QtEditorApplication_linux.cpp similarity index 100% rename from Code/Sandbox/Editor/Core/QtEditorApplication_linux.cpp rename to Code/Editor/Core/QtEditorApplication_linux.cpp diff --git a/Code/Sandbox/Editor/Core/QtEditorApplication_mac.mm b/Code/Editor/Core/QtEditorApplication_mac.mm similarity index 100% rename from Code/Sandbox/Editor/Core/QtEditorApplication_mac.mm rename to Code/Editor/Core/QtEditorApplication_mac.mm diff --git a/Code/Sandbox/Editor/Core/Tests/test_Archive.cpp b/Code/Editor/Core/Tests/test_Archive.cpp similarity index 100% rename from Code/Sandbox/Editor/Core/Tests/test_Archive.cpp rename to Code/Editor/Core/Tests/test_Archive.cpp diff --git a/Code/Sandbox/Editor/Core/Tests/test_Main.cpp b/Code/Editor/Core/Tests/test_Main.cpp similarity index 100% rename from Code/Sandbox/Editor/Core/Tests/test_Main.cpp rename to Code/Editor/Core/Tests/test_Main.cpp diff --git a/Code/Sandbox/Editor/Core/Tests/test_PathUtil.cpp b/Code/Editor/Core/Tests/test_PathUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Core/Tests/test_PathUtil.cpp rename to Code/Editor/Core/Tests/test_PathUtil.cpp diff --git a/Code/Sandbox/Editor/CrtDebug.cpp b/Code/Editor/CrtDebug.cpp similarity index 100% rename from Code/Sandbox/Editor/CrtDebug.cpp rename to Code/Editor/CrtDebug.cpp diff --git a/Code/Sandbox/Editor/CryEdit.cpp b/Code/Editor/CryEdit.cpp similarity index 100% rename from Code/Sandbox/Editor/CryEdit.cpp rename to Code/Editor/CryEdit.cpp diff --git a/Code/Sandbox/Editor/CryEdit.h b/Code/Editor/CryEdit.h similarity index 100% rename from Code/Sandbox/Editor/CryEdit.h rename to Code/Editor/CryEdit.h diff --git a/Code/Sandbox/Editor/CryEdit.rc b/Code/Editor/CryEdit.rc similarity index 100% rename from Code/Sandbox/Editor/CryEdit.rc rename to Code/Editor/CryEdit.rc diff --git a/Code/Sandbox/Editor/CryEditDoc.cpp b/Code/Editor/CryEditDoc.cpp similarity index 100% rename from Code/Sandbox/Editor/CryEditDoc.cpp rename to Code/Editor/CryEditDoc.cpp diff --git a/Code/Sandbox/Editor/CryEditDoc.h b/Code/Editor/CryEditDoc.h similarity index 100% rename from Code/Sandbox/Editor/CryEditDoc.h rename to Code/Editor/CryEditDoc.h diff --git a/Code/Sandbox/Editor/CryEditLiveCreate.rc b/Code/Editor/CryEditLiveCreate.rc similarity index 100% rename from Code/Sandbox/Editor/CryEditLiveCreate.rc rename to Code/Editor/CryEditLiveCreate.rc diff --git a/Code/Sandbox/Editor/CryEditPy.cpp b/Code/Editor/CryEditPy.cpp similarity index 100% rename from Code/Sandbox/Editor/CryEditPy.cpp rename to Code/Editor/CryEditPy.cpp diff --git a/Code/Sandbox/Editor/CustomAspectRatioDlg.cpp b/Code/Editor/CustomAspectRatioDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/CustomAspectRatioDlg.cpp rename to Code/Editor/CustomAspectRatioDlg.cpp diff --git a/Code/Sandbox/Editor/CustomAspectRatioDlg.h b/Code/Editor/CustomAspectRatioDlg.h similarity index 100% rename from Code/Sandbox/Editor/CustomAspectRatioDlg.h rename to Code/Editor/CustomAspectRatioDlg.h diff --git a/Code/Sandbox/Editor/CustomAspectRatioDlg.ui b/Code/Editor/CustomAspectRatioDlg.ui similarity index 100% rename from Code/Sandbox/Editor/CustomAspectRatioDlg.ui rename to Code/Editor/CustomAspectRatioDlg.ui diff --git a/Code/Sandbox/Editor/CustomResolutionDlg.cpp b/Code/Editor/CustomResolutionDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/CustomResolutionDlg.cpp rename to Code/Editor/CustomResolutionDlg.cpp diff --git a/Code/Sandbox/Editor/CustomResolutionDlg.h b/Code/Editor/CustomResolutionDlg.h similarity index 100% rename from Code/Sandbox/Editor/CustomResolutionDlg.h rename to Code/Editor/CustomResolutionDlg.h diff --git a/Code/Sandbox/Editor/CustomResolutionDlg.ui b/Code/Editor/CustomResolutionDlg.ui similarity index 100% rename from Code/Sandbox/Editor/CustomResolutionDlg.ui rename to Code/Editor/CustomResolutionDlg.ui diff --git a/Code/Sandbox/Editor/CustomizeKeyboardDialog.cpp b/Code/Editor/CustomizeKeyboardDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/CustomizeKeyboardDialog.cpp rename to Code/Editor/CustomizeKeyboardDialog.cpp diff --git a/Code/Sandbox/Editor/CustomizeKeyboardDialog.h b/Code/Editor/CustomizeKeyboardDialog.h similarity index 100% rename from Code/Sandbox/Editor/CustomizeKeyboardDialog.h rename to Code/Editor/CustomizeKeyboardDialog.h diff --git a/Code/Sandbox/Editor/CustomizeKeyboardDialog.ui b/Code/Editor/CustomizeKeyboardDialog.ui similarity index 100% rename from Code/Sandbox/Editor/CustomizeKeyboardDialog.ui rename to Code/Editor/CustomizeKeyboardDialog.ui diff --git a/Code/Sandbox/Editor/DPIAware.xml b/Code/Editor/DPIAware.xml similarity index 100% rename from Code/Sandbox/Editor/DPIAware.xml rename to Code/Editor/DPIAware.xml diff --git a/Code/Sandbox/Editor/Dialogs/ErrorsDlg.cpp b/Code/Editor/Dialogs/ErrorsDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/Dialogs/ErrorsDlg.cpp rename to Code/Editor/Dialogs/ErrorsDlg.cpp diff --git a/Code/Sandbox/Editor/Dialogs/ErrorsDlg.h b/Code/Editor/Dialogs/ErrorsDlg.h similarity index 100% rename from Code/Sandbox/Editor/Dialogs/ErrorsDlg.h rename to Code/Editor/Dialogs/ErrorsDlg.h diff --git a/Code/Sandbox/Editor/Dialogs/ErrorsDlg.ui b/Code/Editor/Dialogs/ErrorsDlg.ui similarity index 100% rename from Code/Sandbox/Editor/Dialogs/ErrorsDlg.ui rename to Code/Editor/Dialogs/ErrorsDlg.ui diff --git a/Code/Sandbox/Editor/Dialogs/Generic/UserOptions.cpp b/Code/Editor/Dialogs/Generic/UserOptions.cpp similarity index 100% rename from Code/Sandbox/Editor/Dialogs/Generic/UserOptions.cpp rename to Code/Editor/Dialogs/Generic/UserOptions.cpp diff --git a/Code/Sandbox/Editor/Dialogs/Generic/UserOptions.h b/Code/Editor/Dialogs/Generic/UserOptions.h similarity index 100% rename from Code/Sandbox/Editor/Dialogs/Generic/UserOptions.h rename to Code/Editor/Dialogs/Generic/UserOptions.h diff --git a/Code/Sandbox/Editor/Dialogs/PythonScriptsDialog.cpp b/Code/Editor/Dialogs/PythonScriptsDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/Dialogs/PythonScriptsDialog.cpp rename to Code/Editor/Dialogs/PythonScriptsDialog.cpp diff --git a/Code/Sandbox/Editor/Dialogs/PythonScriptsDialog.h b/Code/Editor/Dialogs/PythonScriptsDialog.h similarity index 100% rename from Code/Sandbox/Editor/Dialogs/PythonScriptsDialog.h rename to Code/Editor/Dialogs/PythonScriptsDialog.h diff --git a/Code/Sandbox/Editor/Dialogs/PythonScriptsDialog.ui b/Code/Editor/Dialogs/PythonScriptsDialog.ui similarity index 100% rename from Code/Sandbox/Editor/Dialogs/PythonScriptsDialog.ui rename to Code/Editor/Dialogs/PythonScriptsDialog.ui diff --git a/Code/Sandbox/Editor/DimensionsDialog.cpp b/Code/Editor/DimensionsDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/DimensionsDialog.cpp rename to Code/Editor/DimensionsDialog.cpp diff --git a/Code/Sandbox/Editor/DimensionsDialog.h b/Code/Editor/DimensionsDialog.h similarity index 100% rename from Code/Sandbox/Editor/DimensionsDialog.h rename to Code/Editor/DimensionsDialog.h diff --git a/Code/Sandbox/Editor/DimensionsDialog.ui b/Code/Editor/DimensionsDialog.ui similarity index 100% rename from Code/Sandbox/Editor/DimensionsDialog.ui rename to Code/Editor/DimensionsDialog.ui diff --git a/Code/Sandbox/Editor/DisplaySettings.cpp b/Code/Editor/DisplaySettings.cpp similarity index 100% rename from Code/Sandbox/Editor/DisplaySettings.cpp rename to Code/Editor/DisplaySettings.cpp diff --git a/Code/Sandbox/Editor/DisplaySettings.h b/Code/Editor/DisplaySettings.h similarity index 100% rename from Code/Sandbox/Editor/DisplaySettings.h rename to Code/Editor/DisplaySettings.h diff --git a/Code/Sandbox/Editor/DisplaySettingsPythonFuncs.cpp b/Code/Editor/DisplaySettingsPythonFuncs.cpp similarity index 100% rename from Code/Sandbox/Editor/DisplaySettingsPythonFuncs.cpp rename to Code/Editor/DisplaySettingsPythonFuncs.cpp diff --git a/Code/Sandbox/Editor/DisplaySettingsPythonFuncs.h b/Code/Editor/DisplaySettingsPythonFuncs.h similarity index 100% rename from Code/Sandbox/Editor/DisplaySettingsPythonFuncs.h rename to Code/Editor/DisplaySettingsPythonFuncs.h diff --git a/Code/Sandbox/Editor/DocMultiArchive.h b/Code/Editor/DocMultiArchive.h similarity index 100% rename from Code/Sandbox/Editor/DocMultiArchive.h rename to Code/Editor/DocMultiArchive.h diff --git a/Code/Sandbox/Editor/EditMode/DeepSelection.cpp b/Code/Editor/EditMode/DeepSelection.cpp similarity index 100% rename from Code/Sandbox/Editor/EditMode/DeepSelection.cpp rename to Code/Editor/EditMode/DeepSelection.cpp diff --git a/Code/Sandbox/Editor/EditMode/DeepSelection.h b/Code/Editor/EditMode/DeepSelection.h similarity index 100% rename from Code/Sandbox/Editor/EditMode/DeepSelection.h rename to Code/Editor/EditMode/DeepSelection.h diff --git a/Code/Sandbox/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp similarity index 100% rename from Code/Sandbox/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp rename to Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp diff --git a/Code/Sandbox/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h similarity index 100% rename from Code/Sandbox/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h rename to Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h diff --git a/Code/Sandbox/Editor/EditorCryEdit.rc b/Code/Editor/EditorCryEdit.rc similarity index 100% rename from Code/Sandbox/Editor/EditorCryEdit.rc rename to Code/Editor/EditorCryEdit.rc diff --git a/Code/Sandbox/Editor/EditorDefs.h b/Code/Editor/EditorDefs.h similarity index 100% rename from Code/Sandbox/Editor/EditorDefs.h rename to Code/Editor/EditorDefs.h diff --git a/Code/Sandbox/Editor/EditorEnvironment.cpp b/Code/Editor/EditorEnvironment.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorEnvironment.cpp rename to Code/Editor/EditorEnvironment.cpp diff --git a/Code/Sandbox/Editor/EditorEnvironment.h b/Code/Editor/EditorEnvironment.h similarity index 100% rename from Code/Sandbox/Editor/EditorEnvironment.h rename to Code/Editor/EditorEnvironment.h diff --git a/Code/Sandbox/Editor/EditorFileMonitor.cpp b/Code/Editor/EditorFileMonitor.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorFileMonitor.cpp rename to Code/Editor/EditorFileMonitor.cpp diff --git a/Code/Sandbox/Editor/EditorFileMonitor.h b/Code/Editor/EditorFileMonitor.h similarity index 100% rename from Code/Sandbox/Editor/EditorFileMonitor.h rename to Code/Editor/EditorFileMonitor.h diff --git a/Code/Sandbox/Editor/EditorPanelUtils.cpp b/Code/Editor/EditorPanelUtils.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPanelUtils.cpp rename to Code/Editor/EditorPanelUtils.cpp diff --git a/Code/Sandbox/Editor/EditorPanelUtils.h b/Code/Editor/EditorPanelUtils.h similarity index 100% rename from Code/Sandbox/Editor/EditorPanelUtils.h rename to Code/Editor/EditorPanelUtils.h diff --git a/Code/Sandbox/Editor/EditorPreferencesBus.h b/Code/Editor/EditorPreferencesBus.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesBus.h rename to Code/Editor/EditorPreferencesBus.h diff --git a/Code/Sandbox/Editor/EditorPreferencesDialog.cpp b/Code/Editor/EditorPreferencesDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesDialog.cpp rename to Code/Editor/EditorPreferencesDialog.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesDialog.h b/Code/Editor/EditorPreferencesDialog.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesDialog.h rename to Code/Editor/EditorPreferencesDialog.h diff --git a/Code/Sandbox/Editor/EditorPreferencesDialog.ui b/Code/Editor/EditorPreferencesDialog.ui similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesDialog.ui rename to Code/Editor/EditorPreferencesDialog.ui diff --git a/Code/Sandbox/Editor/EditorPreferencesPageAWS.cpp b/Code/Editor/EditorPreferencesPageAWS.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageAWS.cpp rename to Code/Editor/EditorPreferencesPageAWS.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageAWS.h b/Code/Editor/EditorPreferencesPageAWS.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageAWS.h rename to Code/Editor/EditorPreferencesPageAWS.h diff --git a/Code/Sandbox/Editor/EditorPreferencesPageExperimentalLighting.cpp b/Code/Editor/EditorPreferencesPageExperimentalLighting.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageExperimentalLighting.cpp rename to Code/Editor/EditorPreferencesPageExperimentalLighting.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageExperimentalLighting.h b/Code/Editor/EditorPreferencesPageExperimentalLighting.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageExperimentalLighting.h rename to Code/Editor/EditorPreferencesPageExperimentalLighting.h diff --git a/Code/Sandbox/Editor/EditorPreferencesPageFiles.cpp b/Code/Editor/EditorPreferencesPageFiles.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageFiles.cpp rename to Code/Editor/EditorPreferencesPageFiles.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageFiles.h b/Code/Editor/EditorPreferencesPageFiles.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageFiles.h rename to Code/Editor/EditorPreferencesPageFiles.h diff --git a/Code/Sandbox/Editor/EditorPreferencesPageGeneral.cpp b/Code/Editor/EditorPreferencesPageGeneral.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageGeneral.cpp rename to Code/Editor/EditorPreferencesPageGeneral.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageGeneral.h b/Code/Editor/EditorPreferencesPageGeneral.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageGeneral.h rename to Code/Editor/EditorPreferencesPageGeneral.h diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportDebug.cpp b/Code/Editor/EditorPreferencesPageViewportDebug.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportDebug.cpp rename to Code/Editor/EditorPreferencesPageViewportDebug.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportDebug.h b/Code/Editor/EditorPreferencesPageViewportDebug.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportDebug.h rename to Code/Editor/EditorPreferencesPageViewportDebug.h diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportGeneral.cpp b/Code/Editor/EditorPreferencesPageViewportGeneral.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportGeneral.cpp rename to Code/Editor/EditorPreferencesPageViewportGeneral.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportGeneral.h b/Code/Editor/EditorPreferencesPageViewportGeneral.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportGeneral.h rename to Code/Editor/EditorPreferencesPageViewportGeneral.h diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportGizmo.cpp b/Code/Editor/EditorPreferencesPageViewportGizmo.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportGizmo.cpp rename to Code/Editor/EditorPreferencesPageViewportGizmo.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportGizmo.h b/Code/Editor/EditorPreferencesPageViewportGizmo.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportGizmo.h rename to Code/Editor/EditorPreferencesPageViewportGizmo.h diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportMovement.cpp b/Code/Editor/EditorPreferencesPageViewportMovement.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportMovement.cpp rename to Code/Editor/EditorPreferencesPageViewportMovement.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesPageViewportMovement.h b/Code/Editor/EditorPreferencesPageViewportMovement.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesPageViewportMovement.h rename to Code/Editor/EditorPreferencesPageViewportMovement.h diff --git a/Code/Sandbox/Editor/EditorPreferencesTreeWidgetItem.cpp b/Code/Editor/EditorPreferencesTreeWidgetItem.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesTreeWidgetItem.cpp rename to Code/Editor/EditorPreferencesTreeWidgetItem.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesTreeWidgetItem.h b/Code/Editor/EditorPreferencesTreeWidgetItem.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesTreeWidgetItem.h rename to Code/Editor/EditorPreferencesTreeWidgetItem.h diff --git a/Code/Sandbox/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp b/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp rename to Code/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp diff --git a/Code/Sandbox/Editor/EditorPreferencesTreeWidgetItemDelegate.h b/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.h similarity index 100% rename from Code/Sandbox/Editor/EditorPreferencesTreeWidgetItemDelegate.h rename to Code/Editor/EditorPreferencesTreeWidgetItemDelegate.h diff --git a/Code/Sandbox/Editor/EditorToolsApplication.cpp b/Code/Editor/EditorToolsApplication.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorToolsApplication.cpp rename to Code/Editor/EditorToolsApplication.cpp diff --git a/Code/Sandbox/Editor/EditorToolsApplication.h b/Code/Editor/EditorToolsApplication.h similarity index 100% rename from Code/Sandbox/Editor/EditorToolsApplication.h rename to Code/Editor/EditorToolsApplication.h diff --git a/Code/Sandbox/Editor/EditorToolsApplicationAPI.h b/Code/Editor/EditorToolsApplicationAPI.h similarity index 100% rename from Code/Sandbox/Editor/EditorToolsApplicationAPI.h rename to Code/Editor/EditorToolsApplicationAPI.h diff --git a/Code/Sandbox/Editor/EditorVersion.rc b/Code/Editor/EditorVersion.rc similarity index 100% rename from Code/Sandbox/Editor/EditorVersion.rc rename to Code/Editor/EditorVersion.rc diff --git a/Code/Sandbox/Editor/EditorViewportSettings.cpp b/Code/Editor/EditorViewportSettings.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorViewportSettings.cpp rename to Code/Editor/EditorViewportSettings.cpp diff --git a/Code/Sandbox/Editor/EditorViewportSettings.h b/Code/Editor/EditorViewportSettings.h similarity index 100% rename from Code/Sandbox/Editor/EditorViewportSettings.h rename to Code/Editor/EditorViewportSettings.h diff --git a/Code/Sandbox/Editor/EditorViewportWidget.cpp b/Code/Editor/EditorViewportWidget.cpp similarity index 100% rename from Code/Sandbox/Editor/EditorViewportWidget.cpp rename to Code/Editor/EditorViewportWidget.cpp diff --git a/Code/Sandbox/Editor/EditorViewportWidget.h b/Code/Editor/EditorViewportWidget.h similarity index 100% rename from Code/Sandbox/Editor/EditorViewportWidget.h rename to Code/Editor/EditorViewportWidget.h diff --git a/Code/Sandbox/Editor/ErrorDialog.cpp b/Code/Editor/ErrorDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/ErrorDialog.cpp rename to Code/Editor/ErrorDialog.cpp diff --git a/Code/Sandbox/Editor/ErrorDialog.h b/Code/Editor/ErrorDialog.h similarity index 100% rename from Code/Sandbox/Editor/ErrorDialog.h rename to Code/Editor/ErrorDialog.h diff --git a/Code/Sandbox/Editor/ErrorDialog.ui b/Code/Editor/ErrorDialog.ui similarity index 100% rename from Code/Sandbox/Editor/ErrorDialog.ui rename to Code/Editor/ErrorDialog.ui diff --git a/Code/Sandbox/Editor/ErrorRecorder.cpp b/Code/Editor/ErrorRecorder.cpp similarity index 100% rename from Code/Sandbox/Editor/ErrorRecorder.cpp rename to Code/Editor/ErrorRecorder.cpp diff --git a/Code/Sandbox/Editor/ErrorRecorder.h b/Code/Editor/ErrorRecorder.h similarity index 100% rename from Code/Sandbox/Editor/ErrorRecorder.h rename to Code/Editor/ErrorRecorder.h diff --git a/Code/Sandbox/Editor/ErrorReport.cpp b/Code/Editor/ErrorReport.cpp similarity index 100% rename from Code/Sandbox/Editor/ErrorReport.cpp rename to Code/Editor/ErrorReport.cpp diff --git a/Code/Sandbox/Editor/ErrorReport.h b/Code/Editor/ErrorReport.h similarity index 100% rename from Code/Sandbox/Editor/ErrorReport.h rename to Code/Editor/ErrorReport.h diff --git a/Code/Sandbox/Editor/ErrorReportDialog.cpp b/Code/Editor/ErrorReportDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/ErrorReportDialog.cpp rename to Code/Editor/ErrorReportDialog.cpp diff --git a/Code/Sandbox/Editor/ErrorReportDialog.h b/Code/Editor/ErrorReportDialog.h similarity index 100% rename from Code/Sandbox/Editor/ErrorReportDialog.h rename to Code/Editor/ErrorReportDialog.h diff --git a/Code/Sandbox/Editor/ErrorReportDialog.ui b/Code/Editor/ErrorReportDialog.ui similarity index 100% rename from Code/Sandbox/Editor/ErrorReportDialog.ui rename to Code/Editor/ErrorReportDialog.ui diff --git a/Code/Sandbox/Editor/ErrorReportTableModel.cpp b/Code/Editor/ErrorReportTableModel.cpp similarity index 100% rename from Code/Sandbox/Editor/ErrorReportTableModel.cpp rename to Code/Editor/ErrorReportTableModel.cpp diff --git a/Code/Sandbox/Editor/ErrorReportTableModel.h b/Code/Editor/ErrorReportTableModel.h similarity index 100% rename from Code/Sandbox/Editor/ErrorReportTableModel.h rename to Code/Editor/ErrorReportTableModel.h diff --git a/Code/Sandbox/Editor/Export/ExportManager.cpp b/Code/Editor/Export/ExportManager.cpp similarity index 100% rename from Code/Sandbox/Editor/Export/ExportManager.cpp rename to Code/Editor/Export/ExportManager.cpp diff --git a/Code/Sandbox/Editor/Export/ExportManager.h b/Code/Editor/Export/ExportManager.h similarity index 100% rename from Code/Sandbox/Editor/Export/ExportManager.h rename to Code/Editor/Export/ExportManager.h diff --git a/Code/Sandbox/Editor/Export/OBJExporter.cpp b/Code/Editor/Export/OBJExporter.cpp similarity index 100% rename from Code/Sandbox/Editor/Export/OBJExporter.cpp rename to Code/Editor/Export/OBJExporter.cpp diff --git a/Code/Sandbox/Editor/Export/OBJExporter.h b/Code/Editor/Export/OBJExporter.h similarity index 100% rename from Code/Sandbox/Editor/Export/OBJExporter.h rename to Code/Editor/Export/OBJExporter.h diff --git a/Code/Sandbox/Editor/Export/OCMExporter.cpp b/Code/Editor/Export/OCMExporter.cpp similarity index 100% rename from Code/Sandbox/Editor/Export/OCMExporter.cpp rename to Code/Editor/Export/OCMExporter.cpp diff --git a/Code/Sandbox/Editor/Export/OCMExporter.h b/Code/Editor/Export/OCMExporter.h similarity index 100% rename from Code/Sandbox/Editor/Export/OCMExporter.h rename to Code/Editor/Export/OCMExporter.h diff --git a/Code/Sandbox/Editor/FBXExporterDialog.cpp b/Code/Editor/FBXExporterDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/FBXExporterDialog.cpp rename to Code/Editor/FBXExporterDialog.cpp diff --git a/Code/Sandbox/Editor/FBXExporterDialog.h b/Code/Editor/FBXExporterDialog.h similarity index 100% rename from Code/Sandbox/Editor/FBXExporterDialog.h rename to Code/Editor/FBXExporterDialog.h diff --git a/Code/Sandbox/Editor/FBXExporterDialog.ui b/Code/Editor/FBXExporterDialog.ui similarity index 100% rename from Code/Sandbox/Editor/FBXExporterDialog.ui rename to Code/Editor/FBXExporterDialog.ui diff --git a/Code/Sandbox/Editor/FileTypeUtils.cpp b/Code/Editor/FileTypeUtils.cpp similarity index 100% rename from Code/Sandbox/Editor/FileTypeUtils.cpp rename to Code/Editor/FileTypeUtils.cpp diff --git a/Code/Sandbox/Editor/FileTypeUtils.h b/Code/Editor/FileTypeUtils.h similarity index 100% rename from Code/Sandbox/Editor/FileTypeUtils.h rename to Code/Editor/FileTypeUtils.h diff --git a/Code/Sandbox/Editor/GameEngine.cpp b/Code/Editor/GameEngine.cpp similarity index 100% rename from Code/Sandbox/Editor/GameEngine.cpp rename to Code/Editor/GameEngine.cpp diff --git a/Code/Sandbox/Editor/GameEngine.h b/Code/Editor/GameEngine.h similarity index 100% rename from Code/Sandbox/Editor/GameEngine.h rename to Code/Editor/GameEngine.h diff --git a/Code/Sandbox/Editor/GameExporter.cpp b/Code/Editor/GameExporter.cpp similarity index 100% rename from Code/Sandbox/Editor/GameExporter.cpp rename to Code/Editor/GameExporter.cpp diff --git a/Code/Sandbox/Editor/GameExporter.h b/Code/Editor/GameExporter.h similarity index 100% rename from Code/Sandbox/Editor/GameExporter.h rename to Code/Editor/GameExporter.h diff --git a/Code/Sandbox/Editor/GameResourcesExporter.cpp b/Code/Editor/GameResourcesExporter.cpp similarity index 100% rename from Code/Sandbox/Editor/GameResourcesExporter.cpp rename to Code/Editor/GameResourcesExporter.cpp diff --git a/Code/Sandbox/Editor/GameResourcesExporter.h b/Code/Editor/GameResourcesExporter.h similarity index 100% rename from Code/Sandbox/Editor/GameResourcesExporter.h rename to Code/Editor/GameResourcesExporter.h diff --git a/Code/Sandbox/Editor/GenericSelectItemDialog.cpp b/Code/Editor/GenericSelectItemDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/GenericSelectItemDialog.cpp rename to Code/Editor/GenericSelectItemDialog.cpp diff --git a/Code/Sandbox/Editor/GenericSelectItemDialog.h b/Code/Editor/GenericSelectItemDialog.h similarity index 100% rename from Code/Sandbox/Editor/GenericSelectItemDialog.h rename to Code/Editor/GenericSelectItemDialog.h diff --git a/Code/Sandbox/Editor/GenericSelectItemDialog.ui b/Code/Editor/GenericSelectItemDialog.ui similarity index 100% rename from Code/Sandbox/Editor/GenericSelectItemDialog.ui rename to Code/Editor/GenericSelectItemDialog.ui diff --git a/Code/Sandbox/Editor/Geometry/TriMesh.cpp b/Code/Editor/Geometry/TriMesh.cpp similarity index 100% rename from Code/Sandbox/Editor/Geometry/TriMesh.cpp rename to Code/Editor/Geometry/TriMesh.cpp diff --git a/Code/Sandbox/Editor/Geometry/TriMesh.h b/Code/Editor/Geometry/TriMesh.h similarity index 100% rename from Code/Sandbox/Editor/Geometry/TriMesh.h rename to Code/Editor/Geometry/TriMesh.h diff --git a/Code/Sandbox/Editor/GotoPositionDlg.cpp b/Code/Editor/GotoPositionDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/GotoPositionDlg.cpp rename to Code/Editor/GotoPositionDlg.cpp diff --git a/Code/Sandbox/Editor/GotoPositionDlg.h b/Code/Editor/GotoPositionDlg.h similarity index 100% rename from Code/Sandbox/Editor/GotoPositionDlg.h rename to Code/Editor/GotoPositionDlg.h diff --git a/Code/Sandbox/Editor/GotoPositionDlg.ui b/Code/Editor/GotoPositionDlg.ui similarity index 100% rename from Code/Sandbox/Editor/GotoPositionDlg.ui rename to Code/Editor/GotoPositionDlg.ui diff --git a/Code/Sandbox/Editor/GraphicsSettingsDialog.cpp b/Code/Editor/GraphicsSettingsDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/GraphicsSettingsDialog.cpp rename to Code/Editor/GraphicsSettingsDialog.cpp diff --git a/Code/Sandbox/Editor/GraphicsSettingsDialog.h b/Code/Editor/GraphicsSettingsDialog.h similarity index 100% rename from Code/Sandbox/Editor/GraphicsSettingsDialog.h rename to Code/Editor/GraphicsSettingsDialog.h diff --git a/Code/Sandbox/Editor/GridUtils.h b/Code/Editor/GridUtils.h similarity index 100% rename from Code/Sandbox/Editor/GridUtils.h rename to Code/Editor/GridUtils.h diff --git a/Code/Sandbox/Editor/IEditor.h b/Code/Editor/IEditor.h similarity index 100% rename from Code/Sandbox/Editor/IEditor.h rename to Code/Editor/IEditor.h diff --git a/Code/Sandbox/Editor/IEditorImpl.cpp b/Code/Editor/IEditorImpl.cpp similarity index 100% rename from Code/Sandbox/Editor/IEditorImpl.cpp rename to Code/Editor/IEditorImpl.cpp diff --git a/Code/Sandbox/Editor/IEditorImpl.h b/Code/Editor/IEditorImpl.h similarity index 100% rename from Code/Sandbox/Editor/IEditorImpl.h rename to Code/Editor/IEditorImpl.h diff --git a/Code/Sandbox/Editor/IEditorPanelUtils.h b/Code/Editor/IEditorPanelUtils.h similarity index 100% rename from Code/Sandbox/Editor/IEditorPanelUtils.h rename to Code/Editor/IEditorPanelUtils.h diff --git a/Code/Sandbox/Editor/IObservable.h b/Code/Editor/IObservable.h similarity index 100% rename from Code/Sandbox/Editor/IObservable.h rename to Code/Editor/IObservable.h diff --git a/Code/Sandbox/Editor/IPostRenderer.h b/Code/Editor/IPostRenderer.h similarity index 100% rename from Code/Sandbox/Editor/IPostRenderer.h rename to Code/Editor/IPostRenderer.h diff --git a/Code/Sandbox/Editor/IconListDialog.ui b/Code/Editor/IconListDialog.ui similarity index 100% rename from Code/Sandbox/Editor/IconListDialog.ui rename to Code/Editor/IconListDialog.ui diff --git a/Code/Sandbox/Editor/IconManager.cpp b/Code/Editor/IconManager.cpp similarity index 100% rename from Code/Sandbox/Editor/IconManager.cpp rename to Code/Editor/IconManager.cpp diff --git a/Code/Sandbox/Editor/IconManager.h b/Code/Editor/IconManager.h similarity index 100% rename from Code/Sandbox/Editor/IconManager.h rename to Code/Editor/IconManager.h diff --git a/Code/Sandbox/Editor/Include/Command.h b/Code/Editor/Include/Command.h similarity index 100% rename from Code/Sandbox/Editor/Include/Command.h rename to Code/Editor/Include/Command.h diff --git a/Code/Sandbox/Editor/Include/EditorCoreAPI.cpp b/Code/Editor/Include/EditorCoreAPI.cpp similarity index 100% rename from Code/Sandbox/Editor/Include/EditorCoreAPI.cpp rename to Code/Editor/Include/EditorCoreAPI.cpp diff --git a/Code/Sandbox/Editor/Include/EditorCoreAPI.h b/Code/Editor/Include/EditorCoreAPI.h similarity index 100% rename from Code/Sandbox/Editor/Include/EditorCoreAPI.h rename to Code/Editor/Include/EditorCoreAPI.h diff --git a/Code/Sandbox/Editor/Include/HitContext.h b/Code/Editor/Include/HitContext.h similarity index 100% rename from Code/Sandbox/Editor/Include/HitContext.h rename to Code/Editor/Include/HitContext.h diff --git a/Code/Sandbox/Editor/Include/IAnimationCompressionManager.h b/Code/Editor/Include/IAnimationCompressionManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IAnimationCompressionManager.h rename to Code/Editor/Include/IAnimationCompressionManager.h diff --git a/Code/Sandbox/Editor/Include/IAssetItem.h b/Code/Editor/Include/IAssetItem.h similarity index 100% rename from Code/Sandbox/Editor/Include/IAssetItem.h rename to Code/Editor/Include/IAssetItem.h diff --git a/Code/Sandbox/Editor/Include/IAssetItemDatabase.h b/Code/Editor/Include/IAssetItemDatabase.h similarity index 100% rename from Code/Sandbox/Editor/Include/IAssetItemDatabase.h rename to Code/Editor/Include/IAssetItemDatabase.h diff --git a/Code/Sandbox/Editor/Include/IAssetViewer.h b/Code/Editor/Include/IAssetViewer.h similarity index 100% rename from Code/Sandbox/Editor/Include/IAssetViewer.h rename to Code/Editor/Include/IAssetViewer.h diff --git a/Code/Sandbox/Editor/Include/IBaseLibraryManager.h b/Code/Editor/Include/IBaseLibraryManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IBaseLibraryManager.h rename to Code/Editor/Include/IBaseLibraryManager.h diff --git a/Code/Sandbox/Editor/Include/ICommandManager.h b/Code/Editor/Include/ICommandManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/ICommandManager.h rename to Code/Editor/Include/ICommandManager.h diff --git a/Code/Sandbox/Editor/Include/IConsoleConnectivity.h b/Code/Editor/Include/IConsoleConnectivity.h similarity index 100% rename from Code/Sandbox/Editor/Include/IConsoleConnectivity.h rename to Code/Editor/Include/IConsoleConnectivity.h diff --git a/Code/Sandbox/Editor/Include/IDataBaseItem.h b/Code/Editor/Include/IDataBaseItem.h similarity index 100% rename from Code/Sandbox/Editor/Include/IDataBaseItem.h rename to Code/Editor/Include/IDataBaseItem.h diff --git a/Code/Sandbox/Editor/Include/IDataBaseLibrary.h b/Code/Editor/Include/IDataBaseLibrary.h similarity index 100% rename from Code/Sandbox/Editor/Include/IDataBaseLibrary.h rename to Code/Editor/Include/IDataBaseLibrary.h diff --git a/Code/Sandbox/Editor/Include/IDataBaseManager.h b/Code/Editor/Include/IDataBaseManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IDataBaseManager.h rename to Code/Editor/Include/IDataBaseManager.h diff --git a/Code/Sandbox/Editor/Include/IDisplayViewport.h b/Code/Editor/Include/IDisplayViewport.h similarity index 100% rename from Code/Sandbox/Editor/Include/IDisplayViewport.h rename to Code/Editor/Include/IDisplayViewport.h diff --git a/Code/Sandbox/Editor/Include/IEditorClassFactory.h b/Code/Editor/Include/IEditorClassFactory.h similarity index 100% rename from Code/Sandbox/Editor/Include/IEditorClassFactory.h rename to Code/Editor/Include/IEditorClassFactory.h diff --git a/Code/Sandbox/Editor/Include/IEditorFileMonitor.h b/Code/Editor/Include/IEditorFileMonitor.h similarity index 100% rename from Code/Sandbox/Editor/Include/IEditorFileMonitor.h rename to Code/Editor/Include/IEditorFileMonitor.h diff --git a/Code/Sandbox/Editor/Include/IEditorMaterial.h b/Code/Editor/Include/IEditorMaterial.h similarity index 100% rename from Code/Sandbox/Editor/Include/IEditorMaterial.h rename to Code/Editor/Include/IEditorMaterial.h diff --git a/Code/Sandbox/Editor/Include/IEditorMaterialManager.h b/Code/Editor/Include/IEditorMaterialManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IEditorMaterialManager.h rename to Code/Editor/Include/IEditorMaterialManager.h diff --git a/Code/Sandbox/Editor/Include/IErrorReport.h b/Code/Editor/Include/IErrorReport.h similarity index 100% rename from Code/Sandbox/Editor/Include/IErrorReport.h rename to Code/Editor/Include/IErrorReport.h diff --git a/Code/Sandbox/Editor/Include/IEventLoopHook.h b/Code/Editor/Include/IEventLoopHook.h similarity index 100% rename from Code/Sandbox/Editor/Include/IEventLoopHook.h rename to Code/Editor/Include/IEventLoopHook.h diff --git a/Code/Sandbox/Editor/Include/IExportManager.h b/Code/Editor/Include/IExportManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IExportManager.h rename to Code/Editor/Include/IExportManager.h diff --git a/Code/Sandbox/Editor/Include/IFacialEditor.h b/Code/Editor/Include/IFacialEditor.h similarity index 100% rename from Code/Sandbox/Editor/Include/IFacialEditor.h rename to Code/Editor/Include/IFacialEditor.h diff --git a/Code/Sandbox/Editor/Include/IFileUtil.h b/Code/Editor/Include/IFileUtil.h similarity index 100% rename from Code/Sandbox/Editor/Include/IFileUtil.h rename to Code/Editor/Include/IFileUtil.h diff --git a/Code/Sandbox/Editor/Include/IGizmoManager.h b/Code/Editor/Include/IGizmoManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IGizmoManager.h rename to Code/Editor/Include/IGizmoManager.h diff --git a/Code/Sandbox/Editor/Include/IIconManager.h b/Code/Editor/Include/IIconManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IIconManager.h rename to Code/Editor/Include/IIconManager.h diff --git a/Code/Sandbox/Editor/Include/IImageUtil.h b/Code/Editor/Include/IImageUtil.h similarity index 100% rename from Code/Sandbox/Editor/Include/IImageUtil.h rename to Code/Editor/Include/IImageUtil.h diff --git a/Code/Sandbox/Editor/Include/IKeyTimeSet.h b/Code/Editor/Include/IKeyTimeSet.h similarity index 100% rename from Code/Sandbox/Editor/Include/IKeyTimeSet.h rename to Code/Editor/Include/IKeyTimeSet.h diff --git a/Code/Sandbox/Editor/Include/ILogFile.h b/Code/Editor/Include/ILogFile.h similarity index 100% rename from Code/Sandbox/Editor/Include/ILogFile.h rename to Code/Editor/Include/ILogFile.h diff --git a/Code/Sandbox/Editor/Include/IObjectManager.h b/Code/Editor/Include/IObjectManager.h similarity index 100% rename from Code/Sandbox/Editor/Include/IObjectManager.h rename to Code/Editor/Include/IObjectManager.h diff --git a/Code/Sandbox/Editor/Include/IPlugin.h b/Code/Editor/Include/IPlugin.h similarity index 100% rename from Code/Sandbox/Editor/Include/IPlugin.h rename to Code/Editor/Include/IPlugin.h diff --git a/Code/Sandbox/Editor/Include/IPreferencesPage.h b/Code/Editor/Include/IPreferencesPage.h similarity index 100% rename from Code/Sandbox/Editor/Include/IPreferencesPage.h rename to Code/Editor/Include/IPreferencesPage.h diff --git a/Code/Sandbox/Editor/Include/IRenderListener.h b/Code/Editor/Include/IRenderListener.h similarity index 100% rename from Code/Sandbox/Editor/Include/IRenderListener.h rename to Code/Editor/Include/IRenderListener.h diff --git a/Code/Sandbox/Editor/Include/IResourceSelectorHost.h b/Code/Editor/Include/IResourceSelectorHost.h similarity index 100% rename from Code/Sandbox/Editor/Include/IResourceSelectorHost.h rename to Code/Editor/Include/IResourceSelectorHost.h diff --git a/Code/Sandbox/Editor/Include/ISourceControl.h b/Code/Editor/Include/ISourceControl.h similarity index 100% rename from Code/Sandbox/Editor/Include/ISourceControl.h rename to Code/Editor/Include/ISourceControl.h diff --git a/Code/Sandbox/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h b/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h similarity index 100% rename from Code/Sandbox/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h rename to Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h diff --git a/Code/Sandbox/Editor/Include/ITextureDatabaseUpdater.h b/Code/Editor/Include/ITextureDatabaseUpdater.h similarity index 100% rename from Code/Sandbox/Editor/Include/ITextureDatabaseUpdater.h rename to Code/Editor/Include/ITextureDatabaseUpdater.h diff --git a/Code/Sandbox/Editor/Include/ITransformManipulator.h b/Code/Editor/Include/ITransformManipulator.h similarity index 100% rename from Code/Sandbox/Editor/Include/ITransformManipulator.h rename to Code/Editor/Include/ITransformManipulator.h diff --git a/Code/Sandbox/Editor/Include/IViewPane.h b/Code/Editor/Include/IViewPane.h similarity index 100% rename from Code/Sandbox/Editor/Include/IViewPane.h rename to Code/Editor/Include/IViewPane.h diff --git a/Code/Sandbox/Editor/Include/ObjectEvent.h b/Code/Editor/Include/ObjectEvent.h similarity index 100% rename from Code/Sandbox/Editor/Include/ObjectEvent.h rename to Code/Editor/Include/ObjectEvent.h diff --git a/Code/Sandbox/Editor/Include/SandboxAPI.h b/Code/Editor/Include/SandboxAPI.h similarity index 100% rename from Code/Sandbox/Editor/Include/SandboxAPI.h rename to Code/Editor/Include/SandboxAPI.h diff --git a/Code/Sandbox/Editor/InfoBar.qrc b/Code/Editor/InfoBar.qrc similarity index 100% rename from Code/Sandbox/Editor/InfoBar.qrc rename to Code/Editor/InfoBar.qrc diff --git a/Code/Sandbox/Editor/KeyboardCustomizationSettings.cpp b/Code/Editor/KeyboardCustomizationSettings.cpp similarity index 100% rename from Code/Sandbox/Editor/KeyboardCustomizationSettings.cpp rename to Code/Editor/KeyboardCustomizationSettings.cpp diff --git a/Code/Sandbox/Editor/KeyboardCustomizationSettings.h b/Code/Editor/KeyboardCustomizationSettings.h similarity index 100% rename from Code/Sandbox/Editor/KeyboardCustomizationSettings.h rename to Code/Editor/KeyboardCustomizationSettings.h diff --git a/Code/Sandbox/Editor/Launcher/editor_launcher.rc b/Code/Editor/Launcher/editor_launcher.rc similarity index 100% rename from Code/Sandbox/Editor/Launcher/editor_launcher.rc rename to Code/Editor/Launcher/editor_launcher.rc diff --git a/Code/Sandbox/Editor/Launcher/resource.h b/Code/Editor/Launcher/resource.h similarity index 100% rename from Code/Sandbox/Editor/Launcher/resource.h rename to Code/Editor/Launcher/resource.h diff --git a/Code/Sandbox/Editor/LayoutConfigDialog.cpp b/Code/Editor/LayoutConfigDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/LayoutConfigDialog.cpp rename to Code/Editor/LayoutConfigDialog.cpp diff --git a/Code/Sandbox/Editor/LayoutConfigDialog.h b/Code/Editor/LayoutConfigDialog.h similarity index 100% rename from Code/Sandbox/Editor/LayoutConfigDialog.h rename to Code/Editor/LayoutConfigDialog.h diff --git a/Code/Sandbox/Editor/LayoutConfigDialog.qrc b/Code/Editor/LayoutConfigDialog.qrc similarity index 100% rename from Code/Sandbox/Editor/LayoutConfigDialog.qrc rename to Code/Editor/LayoutConfigDialog.qrc diff --git a/Code/Sandbox/Editor/LayoutConfigDialog.ui b/Code/Editor/LayoutConfigDialog.ui similarity index 100% rename from Code/Sandbox/Editor/LayoutConfigDialog.ui rename to Code/Editor/LayoutConfigDialog.ui diff --git a/Code/Sandbox/Editor/LayoutWnd.cpp b/Code/Editor/LayoutWnd.cpp similarity index 100% rename from Code/Sandbox/Editor/LayoutWnd.cpp rename to Code/Editor/LayoutWnd.cpp diff --git a/Code/Sandbox/Editor/LayoutWnd.h b/Code/Editor/LayoutWnd.h similarity index 100% rename from Code/Sandbox/Editor/LayoutWnd.h rename to Code/Editor/LayoutWnd.h diff --git a/Code/Sandbox/Editor/LegacyViewportCameraController.cpp b/Code/Editor/LegacyViewportCameraController.cpp similarity index 100% rename from Code/Sandbox/Editor/LegacyViewportCameraController.cpp rename to Code/Editor/LegacyViewportCameraController.cpp diff --git a/Code/Sandbox/Editor/LegacyViewportCameraController.h b/Code/Editor/LegacyViewportCameraController.h similarity index 100% rename from Code/Sandbox/Editor/LegacyViewportCameraController.h rename to Code/Editor/LegacyViewportCameraController.h diff --git a/Code/Sandbox/Editor/LevelFileDialog.cpp b/Code/Editor/LevelFileDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/LevelFileDialog.cpp rename to Code/Editor/LevelFileDialog.cpp diff --git a/Code/Sandbox/Editor/LevelFileDialog.h b/Code/Editor/LevelFileDialog.h similarity index 100% rename from Code/Sandbox/Editor/LevelFileDialog.h rename to Code/Editor/LevelFileDialog.h diff --git a/Code/Sandbox/Editor/LevelFileDialog.qrc b/Code/Editor/LevelFileDialog.qrc similarity index 100% rename from Code/Sandbox/Editor/LevelFileDialog.qrc rename to Code/Editor/LevelFileDialog.qrc diff --git a/Code/Sandbox/Editor/LevelFileDialog.ui b/Code/Editor/LevelFileDialog.ui similarity index 100% rename from Code/Sandbox/Editor/LevelFileDialog.ui rename to Code/Editor/LevelFileDialog.ui diff --git a/Code/Sandbox/Editor/LevelIndependentFileMan.cpp b/Code/Editor/LevelIndependentFileMan.cpp similarity index 100% rename from Code/Sandbox/Editor/LevelIndependentFileMan.cpp rename to Code/Editor/LevelIndependentFileMan.cpp diff --git a/Code/Sandbox/Editor/LevelIndependentFileMan.h b/Code/Editor/LevelIndependentFileMan.h similarity index 100% rename from Code/Sandbox/Editor/LevelIndependentFileMan.h rename to Code/Editor/LevelIndependentFileMan.h diff --git a/Code/Sandbox/Editor/LevelInfo.cpp b/Code/Editor/LevelInfo.cpp similarity index 100% rename from Code/Sandbox/Editor/LevelInfo.cpp rename to Code/Editor/LevelInfo.cpp diff --git a/Code/Sandbox/Editor/LevelInfo.h b/Code/Editor/LevelInfo.h similarity index 100% rename from Code/Sandbox/Editor/LevelInfo.h rename to Code/Editor/LevelInfo.h diff --git a/Code/Sandbox/Editor/LevelTreeModel.cpp b/Code/Editor/LevelTreeModel.cpp similarity index 100% rename from Code/Sandbox/Editor/LevelTreeModel.cpp rename to Code/Editor/LevelTreeModel.cpp diff --git a/Code/Sandbox/Editor/LevelTreeModel.h b/Code/Editor/LevelTreeModel.h similarity index 100% rename from Code/Sandbox/Editor/LevelTreeModel.h rename to Code/Editor/LevelTreeModel.h diff --git a/Code/Sandbox/Editor/Lib/Tests/IEditorMock.h b/Code/Editor/Lib/Tests/IEditorMock.h similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/IEditorMock.h rename to Code/Editor/Lib/Tests/IEditorMock.h diff --git a/Code/Sandbox/Editor/Lib/Tests/test_ClickableLabel.cpp b/Code/Editor/Lib/Tests/test_ClickableLabel.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_ClickableLabel.cpp rename to Code/Editor/Lib/Tests/test_ClickableLabel.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp b/Code/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_CryEditPythonBindings.cpp b/Code/Editor/Lib/Tests/test_CryEditPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_CryEditPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_CryEditPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp b/Code/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_EditorPythonBindings.cpp b/Code/Editor/Lib/Tests/test_EditorPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_EditorPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_EditorPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_EditorUtils.cpp b/Code/Editor/Lib/Tests/test_EditorUtils.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_EditorUtils.cpp rename to Code/Editor/Lib/Tests/test_EditorUtils.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_Main.cpp b/Code/Editor/Lib/Tests/test_Main.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_Main.cpp rename to Code/Editor/Lib/Tests/test_Main.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp b/Code/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp b/Code/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_TerrainPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_TerrainPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_TerrainPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp rename to Code/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp b/Code/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp rename to Code/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp diff --git a/Code/Sandbox/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp b/Code/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp similarity index 100% rename from Code/Sandbox/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp rename to Code/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp diff --git a/Code/Sandbox/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp b/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp similarity index 100% rename from Code/Sandbox/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp rename to Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp diff --git a/Code/Sandbox/Editor/LightmapCompiler/SimpleTriangleRasterizer.h b/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.h similarity index 100% rename from Code/Sandbox/Editor/LightmapCompiler/SimpleTriangleRasterizer.h rename to Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.h diff --git a/Code/Sandbox/Editor/LogFile.cpp b/Code/Editor/LogFile.cpp similarity index 100% rename from Code/Sandbox/Editor/LogFile.cpp rename to Code/Editor/LogFile.cpp diff --git a/Code/Sandbox/Editor/LogFile.h b/Code/Editor/LogFile.h similarity index 100% rename from Code/Sandbox/Editor/LogFile.h rename to Code/Editor/LogFile.h diff --git a/Code/Sandbox/Editor/LogFileImpl.cpp b/Code/Editor/LogFileImpl.cpp similarity index 100% rename from Code/Sandbox/Editor/LogFileImpl.cpp rename to Code/Editor/LogFileImpl.cpp diff --git a/Code/Sandbox/Editor/LogFileImpl.h b/Code/Editor/LogFileImpl.h similarity index 100% rename from Code/Sandbox/Editor/LogFileImpl.h rename to Code/Editor/LogFileImpl.h diff --git a/Code/Sandbox/Editor/LogFile_mac.mm b/Code/Editor/LogFile_mac.mm similarity index 100% rename from Code/Sandbox/Editor/LogFile_mac.mm rename to Code/Editor/LogFile_mac.mm diff --git a/Code/Sandbox/Editor/LyViewPaneNames.h b/Code/Editor/LyViewPaneNames.h similarity index 100% rename from Code/Sandbox/Editor/LyViewPaneNames.h rename to Code/Editor/LyViewPaneNames.h diff --git a/Code/Sandbox/Editor/MainStatusBar.cpp b/Code/Editor/MainStatusBar.cpp similarity index 100% rename from Code/Sandbox/Editor/MainStatusBar.cpp rename to Code/Editor/MainStatusBar.cpp diff --git a/Code/Sandbox/Editor/MainStatusBar.h b/Code/Editor/MainStatusBar.h similarity index 100% rename from Code/Sandbox/Editor/MainStatusBar.h rename to Code/Editor/MainStatusBar.h diff --git a/Code/Sandbox/Editor/MainStatusBarItems.h b/Code/Editor/MainStatusBarItems.h similarity index 100% rename from Code/Sandbox/Editor/MainStatusBarItems.h rename to Code/Editor/MainStatusBarItems.h diff --git a/Code/Sandbox/Editor/MainWindow.cpp b/Code/Editor/MainWindow.cpp similarity index 100% rename from Code/Sandbox/Editor/MainWindow.cpp rename to Code/Editor/MainWindow.cpp diff --git a/Code/Sandbox/Editor/MainWindow.h b/Code/Editor/MainWindow.h similarity index 100% rename from Code/Sandbox/Editor/MainWindow.h rename to Code/Editor/MainWindow.h diff --git a/Code/Sandbox/Editor/MainWindow.qrc b/Code/Editor/MainWindow.qrc similarity index 100% rename from Code/Sandbox/Editor/MainWindow.qrc rename to Code/Editor/MainWindow.qrc diff --git a/Code/Sandbox/Editor/MainWindow/ObjSelection.png b/Code/Editor/MainWindow/ObjSelection.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/ObjSelection.png rename to Code/Editor/MainWindow/ObjSelection.png diff --git a/Code/Sandbox/Editor/MainWindow/display_info.png b/Code/Editor/MainWindow/display_info.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/display_info.png rename to Code/Editor/MainWindow/display_info.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-00.png b/Code/Editor/MainWindow/edit_mode_toolbar-00.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-00.png rename to Code/Editor/MainWindow/edit_mode_toolbar-00.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-01.png b/Code/Editor/MainWindow/edit_mode_toolbar-01.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-01.png rename to Code/Editor/MainWindow/edit_mode_toolbar-01.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-02.png b/Code/Editor/MainWindow/edit_mode_toolbar-02.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-02.png rename to Code/Editor/MainWindow/edit_mode_toolbar-02.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-03.png b/Code/Editor/MainWindow/edit_mode_toolbar-03.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-03.png rename to Code/Editor/MainWindow/edit_mode_toolbar-03.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-05.png b/Code/Editor/MainWindow/edit_mode_toolbar-05.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-05.png rename to Code/Editor/MainWindow/edit_mode_toolbar-05.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-06.png b/Code/Editor/MainWindow/edit_mode_toolbar-06.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-06.png rename to Code/Editor/MainWindow/edit_mode_toolbar-06.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-07.png b/Code/Editor/MainWindow/edit_mode_toolbar-07.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-07.png rename to Code/Editor/MainWindow/edit_mode_toolbar-07.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-08.png b/Code/Editor/MainWindow/edit_mode_toolbar-08.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-08.png rename to Code/Editor/MainWindow/edit_mode_toolbar-08.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-09.png b/Code/Editor/MainWindow/edit_mode_toolbar-09.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-09.png rename to Code/Editor/MainWindow/edit_mode_toolbar-09.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-10.png b/Code/Editor/MainWindow/edit_mode_toolbar-10.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-10.png rename to Code/Editor/MainWindow/edit_mode_toolbar-10.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-11.png b/Code/Editor/MainWindow/edit_mode_toolbar-11.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-11.png rename to Code/Editor/MainWindow/edit_mode_toolbar-11.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-12.png b/Code/Editor/MainWindow/edit_mode_toolbar-12.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-12.png rename to Code/Editor/MainWindow/edit_mode_toolbar-12.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-13.png b/Code/Editor/MainWindow/edit_mode_toolbar-13.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-13.png rename to Code/Editor/MainWindow/edit_mode_toolbar-13.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-14.png b/Code/Editor/MainWindow/edit_mode_toolbar-14.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-14.png rename to Code/Editor/MainWindow/edit_mode_toolbar-14.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-15.png b/Code/Editor/MainWindow/edit_mode_toolbar-15.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-15.png rename to Code/Editor/MainWindow/edit_mode_toolbar-15.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-16.png b/Code/Editor/MainWindow/edit_mode_toolbar-16.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-16.png rename to Code/Editor/MainWindow/edit_mode_toolbar-16.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-17.png b/Code/Editor/MainWindow/edit_mode_toolbar-17.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-17.png rename to Code/Editor/MainWindow/edit_mode_toolbar-17.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-18.png b/Code/Editor/MainWindow/edit_mode_toolbar-18.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-18.png rename to Code/Editor/MainWindow/edit_mode_toolbar-18.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-19.png b/Code/Editor/MainWindow/edit_mode_toolbar-19.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-19.png rename to Code/Editor/MainWindow/edit_mode_toolbar-19.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-20.png b/Code/Editor/MainWindow/edit_mode_toolbar-20.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-20.png rename to Code/Editor/MainWindow/edit_mode_toolbar-20.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-22.png b/Code/Editor/MainWindow/edit_mode_toolbar-22.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-22.png rename to Code/Editor/MainWindow/edit_mode_toolbar-22.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-23.png b/Code/Editor/MainWindow/edit_mode_toolbar-23.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-23.png rename to Code/Editor/MainWindow/edit_mode_toolbar-23.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-24.png b/Code/Editor/MainWindow/edit_mode_toolbar-24.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-24.png rename to Code/Editor/MainWindow/edit_mode_toolbar-24.png diff --git a/Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-25.png b/Code/Editor/MainWindow/edit_mode_toolbar-25.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/edit_mode_toolbar-25.png rename to Code/Editor/MainWindow/edit_mode_toolbar-25.png diff --git a/Code/Sandbox/Editor/MainWindow/editwithbutton_dark.png b/Code/Editor/MainWindow/editwithbutton_dark.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/editwithbutton_dark.png rename to Code/Editor/MainWindow/editwithbutton_dark.png diff --git a/Code/Sandbox/Editor/MainWindow/editwithbutton_light.png b/Code/Editor/MainWindow/editwithbutton_light.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/editwithbutton_light.png rename to Code/Editor/MainWindow/editwithbutton_light.png diff --git a/Code/Sandbox/Editor/MainWindow/hide_helpers.png b/Code/Editor/MainWindow/hide_helpers.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/hide_helpers.png rename to Code/Editor/MainWindow/hide_helpers.png diff --git a/Code/Sandbox/Editor/MainWindow/maximize.png b/Code/Editor/MainWindow/maximize.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/maximize.png rename to Code/Editor/MainWindow/maximize.png diff --git a/Code/Sandbox/Editor/MainWindow/misc_toolbar-00.png b/Code/Editor/MainWindow/misc_toolbar-00.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/misc_toolbar-00.png rename to Code/Editor/MainWindow/misc_toolbar-00.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-00.png b/Code/Editor/MainWindow/object_toolbar-00.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-00.png rename to Code/Editor/MainWindow/object_toolbar-00.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-01.png b/Code/Editor/MainWindow/object_toolbar-01.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-01.png rename to Code/Editor/MainWindow/object_toolbar-01.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-02.png b/Code/Editor/MainWindow/object_toolbar-02.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-02.png rename to Code/Editor/MainWindow/object_toolbar-02.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-03.svg b/Code/Editor/MainWindow/object_toolbar-03.svg similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-03.svg rename to Code/Editor/MainWindow/object_toolbar-03.svg diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-04.png b/Code/Editor/MainWindow/object_toolbar-04.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-04.png rename to Code/Editor/MainWindow/object_toolbar-04.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-05.png b/Code/Editor/MainWindow/object_toolbar-05.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-05.png rename to Code/Editor/MainWindow/object_toolbar-05.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-06.png b/Code/Editor/MainWindow/object_toolbar-06.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-06.png rename to Code/Editor/MainWindow/object_toolbar-06.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-07.png b/Code/Editor/MainWindow/object_toolbar-07.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-07.png rename to Code/Editor/MainWindow/object_toolbar-07.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-08.png b/Code/Editor/MainWindow/object_toolbar-08.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-08.png rename to Code/Editor/MainWindow/object_toolbar-08.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-09.png b/Code/Editor/MainWindow/object_toolbar-09.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-09.png rename to Code/Editor/MainWindow/object_toolbar-09.png diff --git a/Code/Sandbox/Editor/MainWindow/object_toolbar-10.png b/Code/Editor/MainWindow/object_toolbar-10.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/object_toolbar-10.png rename to Code/Editor/MainWindow/object_toolbar-10.png diff --git a/Code/Sandbox/Editor/MainWindow/proceduralmaterial_toolbar.png b/Code/Editor/MainWindow/proceduralmaterial_toolbar.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/proceduralmaterial_toolbar.png rename to Code/Editor/MainWindow/proceduralmaterial_toolbar.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-00.png b/Code/Editor/MainWindow/standard_views_toolbar-00.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-00.png rename to Code/Editor/MainWindow/standard_views_toolbar-00.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-01.png b/Code/Editor/MainWindow/standard_views_toolbar-01.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-01.png rename to Code/Editor/MainWindow/standard_views_toolbar-01.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-02.png b/Code/Editor/MainWindow/standard_views_toolbar-02.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-02.png rename to Code/Editor/MainWindow/standard_views_toolbar-02.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-03.png b/Code/Editor/MainWindow/standard_views_toolbar-03.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-03.png rename to Code/Editor/MainWindow/standard_views_toolbar-03.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-04.png b/Code/Editor/MainWindow/standard_views_toolbar-04.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-04.png rename to Code/Editor/MainWindow/standard_views_toolbar-04.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-05.png b/Code/Editor/MainWindow/standard_views_toolbar-05.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-05.png rename to Code/Editor/MainWindow/standard_views_toolbar-05.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-06.png b/Code/Editor/MainWindow/standard_views_toolbar-06.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-06.png rename to Code/Editor/MainWindow/standard_views_toolbar-06.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-07.png b/Code/Editor/MainWindow/standard_views_toolbar-07.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-07.png rename to Code/Editor/MainWindow/standard_views_toolbar-07.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-08.png b/Code/Editor/MainWindow/standard_views_toolbar-08.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-08.png rename to Code/Editor/MainWindow/standard_views_toolbar-08.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-09.png b/Code/Editor/MainWindow/standard_views_toolbar-09.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-09.png rename to Code/Editor/MainWindow/standard_views_toolbar-09.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-10.png b/Code/Editor/MainWindow/standard_views_toolbar-10.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-10.png rename to Code/Editor/MainWindow/standard_views_toolbar-10.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-11.png b/Code/Editor/MainWindow/standard_views_toolbar-11.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-11.png rename to Code/Editor/MainWindow/standard_views_toolbar-11.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-12.png b/Code/Editor/MainWindow/standard_views_toolbar-12.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-12.png rename to Code/Editor/MainWindow/standard_views_toolbar-12.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-13.png b/Code/Editor/MainWindow/standard_views_toolbar-13.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-13.png rename to Code/Editor/MainWindow/standard_views_toolbar-13.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-14.png b/Code/Editor/MainWindow/standard_views_toolbar-14.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-14.png rename to Code/Editor/MainWindow/standard_views_toolbar-14.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-15.png b/Code/Editor/MainWindow/standard_views_toolbar-15.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-15.png rename to Code/Editor/MainWindow/standard_views_toolbar-15.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-16.png b/Code/Editor/MainWindow/standard_views_toolbar-16.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-16.png rename to Code/Editor/MainWindow/standard_views_toolbar-16.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-17.png b/Code/Editor/MainWindow/standard_views_toolbar-17.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-17.png rename to Code/Editor/MainWindow/standard_views_toolbar-17.png diff --git a/Code/Sandbox/Editor/MainWindow/standard_views_toolbar-18.png b/Code/Editor/MainWindow/standard_views_toolbar-18.png similarity index 100% rename from Code/Sandbox/Editor/MainWindow/standard_views_toolbar-18.png rename to Code/Editor/MainWindow/standard_views_toolbar-18.png diff --git a/Code/Sandbox/Editor/MainWindow_mac.mm b/Code/Editor/MainWindow_mac.mm similarity index 100% rename from Code/Sandbox/Editor/MainWindow_mac.mm rename to Code/Editor/MainWindow_mac.mm diff --git a/Code/Sandbox/Editor/NewLevelDialog.cpp b/Code/Editor/NewLevelDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/NewLevelDialog.cpp rename to Code/Editor/NewLevelDialog.cpp diff --git a/Code/Sandbox/Editor/NewLevelDialog.h b/Code/Editor/NewLevelDialog.h similarity index 100% rename from Code/Sandbox/Editor/NewLevelDialog.h rename to Code/Editor/NewLevelDialog.h diff --git a/Code/Sandbox/Editor/NewLevelDialog.ui b/Code/Editor/NewLevelDialog.ui similarity index 100% rename from Code/Sandbox/Editor/NewLevelDialog.ui rename to Code/Editor/NewLevelDialog.ui diff --git a/Code/Sandbox/Editor/NewTerrainDialog.cpp b/Code/Editor/NewTerrainDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/NewTerrainDialog.cpp rename to Code/Editor/NewTerrainDialog.cpp diff --git a/Code/Sandbox/Editor/NewTerrainDialog.h b/Code/Editor/NewTerrainDialog.h similarity index 100% rename from Code/Sandbox/Editor/NewTerrainDialog.h rename to Code/Editor/NewTerrainDialog.h diff --git a/Code/Sandbox/Editor/NewTerrainDialog.ui b/Code/Editor/NewTerrainDialog.ui similarity index 100% rename from Code/Sandbox/Editor/NewTerrainDialog.ui rename to Code/Editor/NewTerrainDialog.ui diff --git a/Code/Sandbox/Editor/Objects/AxisGizmo.cpp b/Code/Editor/Objects/AxisGizmo.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/AxisGizmo.cpp rename to Code/Editor/Objects/AxisGizmo.cpp diff --git a/Code/Sandbox/Editor/Objects/AxisGizmo.h b/Code/Editor/Objects/AxisGizmo.h similarity index 100% rename from Code/Sandbox/Editor/Objects/AxisGizmo.h rename to Code/Editor/Objects/AxisGizmo.h diff --git a/Code/Sandbox/Editor/Objects/BaseObject.cpp b/Code/Editor/Objects/BaseObject.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/BaseObject.cpp rename to Code/Editor/Objects/BaseObject.cpp diff --git a/Code/Sandbox/Editor/Objects/BaseObject.h b/Code/Editor/Objects/BaseObject.h similarity index 100% rename from Code/Sandbox/Editor/Objects/BaseObject.h rename to Code/Editor/Objects/BaseObject.h diff --git a/Code/Sandbox/Editor/Objects/ClassDesc.cpp b/Code/Editor/Objects/ClassDesc.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/ClassDesc.cpp rename to Code/Editor/Objects/ClassDesc.cpp diff --git a/Code/Sandbox/Editor/Objects/ClassDesc.h b/Code/Editor/Objects/ClassDesc.h similarity index 100% rename from Code/Sandbox/Editor/Objects/ClassDesc.h rename to Code/Editor/Objects/ClassDesc.h diff --git a/Code/Sandbox/Editor/Objects/DisplayContext.cpp b/Code/Editor/Objects/DisplayContext.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/DisplayContext.cpp rename to Code/Editor/Objects/DisplayContext.cpp diff --git a/Code/Sandbox/Editor/Objects/DisplayContext.h b/Code/Editor/Objects/DisplayContext.h similarity index 100% rename from Code/Sandbox/Editor/Objects/DisplayContext.h rename to Code/Editor/Objects/DisplayContext.h diff --git a/Code/Sandbox/Editor/Objects/DisplayContextShared.inl b/Code/Editor/Objects/DisplayContextShared.inl similarity index 100% rename from Code/Sandbox/Editor/Objects/DisplayContextShared.inl rename to Code/Editor/Objects/DisplayContextShared.inl diff --git a/Code/Sandbox/Editor/Objects/EntityObject.cpp b/Code/Editor/Objects/EntityObject.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/EntityObject.cpp rename to Code/Editor/Objects/EntityObject.cpp diff --git a/Code/Sandbox/Editor/Objects/EntityObject.h b/Code/Editor/Objects/EntityObject.h similarity index 100% rename from Code/Sandbox/Editor/Objects/EntityObject.h rename to Code/Editor/Objects/EntityObject.h diff --git a/Code/Sandbox/Editor/Objects/Gizmo.cpp b/Code/Editor/Objects/Gizmo.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/Gizmo.cpp rename to Code/Editor/Objects/Gizmo.cpp diff --git a/Code/Sandbox/Editor/Objects/Gizmo.h b/Code/Editor/Objects/Gizmo.h similarity index 100% rename from Code/Sandbox/Editor/Objects/Gizmo.h rename to Code/Editor/Objects/Gizmo.h diff --git a/Code/Sandbox/Editor/Objects/GizmoManager.cpp b/Code/Editor/Objects/GizmoManager.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/GizmoManager.cpp rename to Code/Editor/Objects/GizmoManager.cpp diff --git a/Code/Sandbox/Editor/Objects/GizmoManager.h b/Code/Editor/Objects/GizmoManager.h similarity index 100% rename from Code/Sandbox/Editor/Objects/GizmoManager.h rename to Code/Editor/Objects/GizmoManager.h diff --git a/Code/Sandbox/Editor/Objects/IEntityObjectListener.h b/Code/Editor/Objects/IEntityObjectListener.h similarity index 100% rename from Code/Sandbox/Editor/Objects/IEntityObjectListener.h rename to Code/Editor/Objects/IEntityObjectListener.h diff --git a/Code/Sandbox/Editor/Objects/LineGizmo.cpp b/Code/Editor/Objects/LineGizmo.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/LineGizmo.cpp rename to Code/Editor/Objects/LineGizmo.cpp diff --git a/Code/Sandbox/Editor/Objects/LineGizmo.h b/Code/Editor/Objects/LineGizmo.h similarity index 100% rename from Code/Sandbox/Editor/Objects/LineGizmo.h rename to Code/Editor/Objects/LineGizmo.h diff --git a/Code/Sandbox/Editor/Objects/ObjectLoader.cpp b/Code/Editor/Objects/ObjectLoader.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/ObjectLoader.cpp rename to Code/Editor/Objects/ObjectLoader.cpp diff --git a/Code/Sandbox/Editor/Objects/ObjectLoader.h b/Code/Editor/Objects/ObjectLoader.h similarity index 100% rename from Code/Sandbox/Editor/Objects/ObjectLoader.h rename to Code/Editor/Objects/ObjectLoader.h diff --git a/Code/Sandbox/Editor/Objects/ObjectManager.cpp b/Code/Editor/Objects/ObjectManager.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/ObjectManager.cpp rename to Code/Editor/Objects/ObjectManager.cpp diff --git a/Code/Sandbox/Editor/Objects/ObjectManager.h b/Code/Editor/Objects/ObjectManager.h similarity index 100% rename from Code/Sandbox/Editor/Objects/ObjectManager.h rename to Code/Editor/Objects/ObjectManager.h diff --git a/Code/Sandbox/Editor/Objects/ObjectManagerEventBus.h b/Code/Editor/Objects/ObjectManagerEventBus.h similarity index 100% rename from Code/Sandbox/Editor/Objects/ObjectManagerEventBus.h rename to Code/Editor/Objects/ObjectManagerEventBus.h diff --git a/Code/Sandbox/Editor/Objects/ObjectManagerLegacyUndo.cpp b/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/ObjectManagerLegacyUndo.cpp rename to Code/Editor/Objects/ObjectManagerLegacyUndo.cpp diff --git a/Code/Sandbox/Editor/Objects/ObjectManagerLegacyUndo.h b/Code/Editor/Objects/ObjectManagerLegacyUndo.h similarity index 100% rename from Code/Sandbox/Editor/Objects/ObjectManagerLegacyUndo.h rename to Code/Editor/Objects/ObjectManagerLegacyUndo.h diff --git a/Code/Sandbox/Editor/Objects/SelectionGroup.cpp b/Code/Editor/Objects/SelectionGroup.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/SelectionGroup.cpp rename to Code/Editor/Objects/SelectionGroup.cpp diff --git a/Code/Sandbox/Editor/Objects/SelectionGroup.h b/Code/Editor/Objects/SelectionGroup.h similarity index 100% rename from Code/Sandbox/Editor/Objects/SelectionGroup.h rename to Code/Editor/Objects/SelectionGroup.h diff --git a/Code/Sandbox/Editor/Objects/SubObjSelection.cpp b/Code/Editor/Objects/SubObjSelection.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/SubObjSelection.cpp rename to Code/Editor/Objects/SubObjSelection.cpp diff --git a/Code/Sandbox/Editor/Objects/SubObjSelection.h b/Code/Editor/Objects/SubObjSelection.h similarity index 100% rename from Code/Sandbox/Editor/Objects/SubObjSelection.h rename to Code/Editor/Objects/SubObjSelection.h diff --git a/Code/Sandbox/Editor/Objects/TrackGizmo.cpp b/Code/Editor/Objects/TrackGizmo.cpp similarity index 100% rename from Code/Sandbox/Editor/Objects/TrackGizmo.cpp rename to Code/Editor/Objects/TrackGizmo.cpp diff --git a/Code/Sandbox/Editor/Objects/TrackGizmo.h b/Code/Editor/Objects/TrackGizmo.h similarity index 100% rename from Code/Sandbox/Editor/Objects/TrackGizmo.h rename to Code/Editor/Objects/TrackGizmo.h diff --git a/Code/Sandbox/Editor/PakManagerDlg.qrc b/Code/Editor/PakManagerDlg.qrc similarity index 100% rename from Code/Sandbox/Editor/PakManagerDlg.qrc rename to Code/Editor/PakManagerDlg.qrc diff --git a/Code/Sandbox/Editor/PakManagerDlg.ui b/Code/Editor/PakManagerDlg.ui similarity index 100% rename from Code/Sandbox/Editor/PakManagerDlg.ui rename to Code/Editor/PakManagerDlg.ui diff --git a/Code/Sandbox/Editor/Platform/Android/editor_android.cmake b/Code/Editor/Platform/Android/editor_android.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Android/editor_android.cmake rename to Code/Editor/Platform/Android/editor_android.cmake diff --git a/Code/Sandbox/Editor/Platform/Android/editor_lib_android.cmake b/Code/Editor/Platform/Android/editor_lib_android.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Android/editor_lib_android.cmake rename to Code/Editor/Platform/Android/editor_lib_android.cmake diff --git a/Code/Sandbox/Editor/Platform/Common/Clang/editor_lib_clang.cmake b/Code/Editor/Platform/Common/Clang/editor_lib_clang.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Common/Clang/editor_lib_clang.cmake rename to Code/Editor/Platform/Common/Clang/editor_lib_clang.cmake diff --git a/Code/Sandbox/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake b/Code/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake rename to Code/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake diff --git a/Code/Sandbox/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp b/Code/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp similarity index 100% rename from Code/Sandbox/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp rename to Code/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp diff --git a/Code/Sandbox/Editor/Platform/Linux/editor_core_files_linux.cmake b/Code/Editor/Platform/Linux/editor_core_files_linux.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Linux/editor_core_files_linux.cmake rename to Code/Editor/Platform/Linux/editor_core_files_linux.cmake diff --git a/Code/Sandbox/Editor/Platform/Linux/editor_lib_linux.cmake b/Code/Editor/Platform/Linux/editor_lib_linux.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Linux/editor_lib_linux.cmake rename to Code/Editor/Platform/Linux/editor_lib_linux.cmake diff --git a/Code/Sandbox/Editor/Platform/Linux/editor_linux.cmake b/Code/Editor/Platform/Linux/editor_linux.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Linux/editor_linux.cmake rename to Code/Editor/Platform/Linux/editor_linux.cmake diff --git a/Code/Sandbox/Editor/Platform/Linux/platform_linux_files.cmake b/Code/Editor/Platform/Linux/platform_linux_files.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Linux/platform_linux_files.cmake rename to Code/Editor/Platform/Linux/platform_linux_files.cmake diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/Contents.json diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128 _2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_128.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_16_2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256 _2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_256.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_32_2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/AppIcon.appiconset/icon_512_2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/Contents.json b/Code/Editor/Platform/Mac/Images.xcassets/Contents.json similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/Contents.json rename to Code/Editor/Platform/Mac/Images.xcassets/Contents.json diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/Contents.json diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128 _2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_128.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_16_2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256 _2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_256.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_32_2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512.png diff --git a/Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png b/Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png rename to Code/Editor/Platform/Mac/Images.xcassets/EditorAppIcon.appiconset/icon_512_2x.png diff --git a/Code/Sandbox/Editor/Platform/Mac/editor_core_files_mac.cmake b/Code/Editor/Platform/Mac/editor_core_files_mac.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/editor_core_files_mac.cmake rename to Code/Editor/Platform/Mac/editor_core_files_mac.cmake diff --git a/Code/Sandbox/Editor/Platform/Mac/editor_lib_mac.cmake b/Code/Editor/Platform/Mac/editor_lib_mac.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/editor_lib_mac.cmake rename to Code/Editor/Platform/Mac/editor_lib_mac.cmake diff --git a/Code/Sandbox/Editor/Platform/Mac/editor_mac.cmake b/Code/Editor/Platform/Mac/editor_mac.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/editor_mac.cmake rename to Code/Editor/Platform/Mac/editor_mac.cmake diff --git a/Code/Sandbox/Editor/Platform/Mac/gui_info.plist b/Code/Editor/Platform/Mac/gui_info.plist similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/gui_info.plist rename to Code/Editor/Platform/Mac/gui_info.plist diff --git a/Code/Sandbox/Editor/Platform/Mac/platform_mac_files.cmake b/Code/Editor/Platform/Mac/platform_mac_files.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Mac/platform_mac_files.cmake rename to Code/Editor/Platform/Mac/platform_mac_files.cmake diff --git a/Code/Sandbox/Editor/Platform/Windows/Util/Mailer_Windows.cpp b/Code/Editor/Platform/Windows/Util/Mailer_Windows.cpp similarity index 100% rename from Code/Sandbox/Editor/Platform/Windows/Util/Mailer_Windows.cpp rename to Code/Editor/Platform/Windows/Util/Mailer_Windows.cpp diff --git a/Code/Sandbox/Editor/Platform/Windows/editor_core_files_windows.cmake b/Code/Editor/Platform/Windows/editor_core_files_windows.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Windows/editor_core_files_windows.cmake rename to Code/Editor/Platform/Windows/editor_core_files_windows.cmake diff --git a/Code/Sandbox/Editor/Platform/Windows/editor_lib_windows.cmake b/Code/Editor/Platform/Windows/editor_lib_windows.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Windows/editor_lib_windows.cmake rename to Code/Editor/Platform/Windows/editor_lib_windows.cmake diff --git a/Code/Sandbox/Editor/Platform/Windows/editor_windows.cmake b/Code/Editor/Platform/Windows/editor_windows.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Windows/editor_windows.cmake rename to Code/Editor/Platform/Windows/editor_windows.cmake diff --git a/Code/Sandbox/Editor/Platform/Windows/platform_windows_files.cmake b/Code/Editor/Platform/Windows/platform_windows_files.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/Windows/platform_windows_files.cmake rename to Code/Editor/Platform/Windows/platform_windows_files.cmake diff --git a/Code/Sandbox/Editor/Platform/iOS/editor_ios.cmake b/Code/Editor/Platform/iOS/editor_ios.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/iOS/editor_ios.cmake rename to Code/Editor/Platform/iOS/editor_ios.cmake diff --git a/Code/Sandbox/Editor/Platform/iOS/editor_lib_ios.cmake b/Code/Editor/Platform/iOS/editor_lib_ios.cmake similarity index 100% rename from Code/Sandbox/Editor/Platform/iOS/editor_lib_ios.cmake rename to Code/Editor/Platform/iOS/editor_lib_ios.cmake diff --git a/Code/Sandbox/Editor/Plugin.cpp b/Code/Editor/Plugin.cpp similarity index 100% rename from Code/Sandbox/Editor/Plugin.cpp rename to Code/Editor/Plugin.cpp diff --git a/Code/Sandbox/Editor/Plugin.h b/Code/Editor/Plugin.h similarity index 100% rename from Code/Sandbox/Editor/Plugin.h rename to Code/Editor/Plugin.h diff --git a/Code/Sandbox/Editor/PluginManager.cpp b/Code/Editor/PluginManager.cpp similarity index 100% rename from Code/Sandbox/Editor/PluginManager.cpp rename to Code/Editor/PluginManager.cpp diff --git a/Code/Sandbox/Editor/PluginManager.h b/Code/Editor/PluginManager.h similarity index 100% rename from Code/Sandbox/Editor/PluginManager.h rename to Code/Editor/PluginManager.h diff --git a/Code/Sandbox/Editor/PreferencesStdPages.cpp b/Code/Editor/PreferencesStdPages.cpp similarity index 100% rename from Code/Sandbox/Editor/PreferencesStdPages.cpp rename to Code/Editor/PreferencesStdPages.cpp diff --git a/Code/Sandbox/Editor/PreferencesStdPages.h b/Code/Editor/PreferencesStdPages.h similarity index 100% rename from Code/Sandbox/Editor/PreferencesStdPages.h rename to Code/Editor/PreferencesStdPages.h diff --git a/Code/Sandbox/Editor/ProcessInfo.cpp b/Code/Editor/ProcessInfo.cpp similarity index 100% rename from Code/Sandbox/Editor/ProcessInfo.cpp rename to Code/Editor/ProcessInfo.cpp diff --git a/Code/Sandbox/Editor/ProcessInfo.h b/Code/Editor/ProcessInfo.h similarity index 100% rename from Code/Sandbox/Editor/ProcessInfo.h rename to Code/Editor/ProcessInfo.h diff --git a/Code/Sandbox/Editor/PythonEditorEventsBus.h b/Code/Editor/PythonEditorEventsBus.h similarity index 100% rename from Code/Sandbox/Editor/PythonEditorEventsBus.h rename to Code/Editor/PythonEditorEventsBus.h diff --git a/Code/Sandbox/Editor/PythonEditorFuncs.cpp b/Code/Editor/PythonEditorFuncs.cpp similarity index 100% rename from Code/Sandbox/Editor/PythonEditorFuncs.cpp rename to Code/Editor/PythonEditorFuncs.cpp diff --git a/Code/Sandbox/Editor/PythonEditorFuncs.h b/Code/Editor/PythonEditorFuncs.h similarity index 100% rename from Code/Sandbox/Editor/PythonEditorFuncs.h rename to Code/Editor/PythonEditorFuncs.h diff --git a/Code/Sandbox/Editor/QtUI/ClickableLabel.cpp b/Code/Editor/QtUI/ClickableLabel.cpp similarity index 100% rename from Code/Sandbox/Editor/QtUI/ClickableLabel.cpp rename to Code/Editor/QtUI/ClickableLabel.cpp diff --git a/Code/Sandbox/Editor/QtUI/ClickableLabel.h b/Code/Editor/QtUI/ClickableLabel.h similarity index 100% rename from Code/Sandbox/Editor/QtUI/ClickableLabel.h rename to Code/Editor/QtUI/ClickableLabel.h diff --git a/Code/Sandbox/Editor/QtUI/ColorButton.cpp b/Code/Editor/QtUI/ColorButton.cpp similarity index 100% rename from Code/Sandbox/Editor/QtUI/ColorButton.cpp rename to Code/Editor/QtUI/ColorButton.cpp diff --git a/Code/Sandbox/Editor/QtUI/ColorButton.h b/Code/Editor/QtUI/ColorButton.h similarity index 100% rename from Code/Sandbox/Editor/QtUI/ColorButton.h rename to Code/Editor/QtUI/ColorButton.h diff --git a/Code/Sandbox/Editor/QtUI/ColorButton_mac.mm b/Code/Editor/QtUI/ColorButton_mac.mm similarity index 100% rename from Code/Sandbox/Editor/QtUI/ColorButton_mac.mm rename to Code/Editor/QtUI/ColorButton_mac.mm diff --git a/Code/Sandbox/Editor/QtUI/PixmapLabelPreview.cpp b/Code/Editor/QtUI/PixmapLabelPreview.cpp similarity index 100% rename from Code/Sandbox/Editor/QtUI/PixmapLabelPreview.cpp rename to Code/Editor/QtUI/PixmapLabelPreview.cpp diff --git a/Code/Sandbox/Editor/QtUI/PixmapLabelPreview.h b/Code/Editor/QtUI/PixmapLabelPreview.h similarity index 100% rename from Code/Sandbox/Editor/QtUI/PixmapLabelPreview.h rename to Code/Editor/QtUI/PixmapLabelPreview.h diff --git a/Code/Sandbox/Editor/QtUI/QCollapsibleGroupBox.cpp b/Code/Editor/QtUI/QCollapsibleGroupBox.cpp similarity index 100% rename from Code/Sandbox/Editor/QtUI/QCollapsibleGroupBox.cpp rename to Code/Editor/QtUI/QCollapsibleGroupBox.cpp diff --git a/Code/Sandbox/Editor/QtUI/QCollapsibleGroupBox.h b/Code/Editor/QtUI/QCollapsibleGroupBox.h similarity index 100% rename from Code/Sandbox/Editor/QtUI/QCollapsibleGroupBox.h rename to Code/Editor/QtUI/QCollapsibleGroupBox.h diff --git a/Code/Sandbox/Editor/QtUI/WaitCursor.cpp b/Code/Editor/QtUI/WaitCursor.cpp similarity index 100% rename from Code/Sandbox/Editor/QtUI/WaitCursor.cpp rename to Code/Editor/QtUI/WaitCursor.cpp diff --git a/Code/Sandbox/Editor/QtUI/WaitCursor.h b/Code/Editor/QtUI/WaitCursor.h similarity index 100% rename from Code/Sandbox/Editor/QtUI/WaitCursor.h rename to Code/Editor/QtUI/WaitCursor.h diff --git a/Code/Sandbox/Editor/QtUtil.h b/Code/Editor/QtUtil.h similarity index 100% rename from Code/Sandbox/Editor/QtUtil.h rename to Code/Editor/QtUtil.h diff --git a/Code/Sandbox/Editor/QtUtilWin.h b/Code/Editor/QtUtilWin.h similarity index 100% rename from Code/Sandbox/Editor/QtUtilWin.h rename to Code/Editor/QtUtilWin.h diff --git a/Code/Sandbox/Editor/QtViewPane.h b/Code/Editor/QtViewPane.h similarity index 100% rename from Code/Sandbox/Editor/QtViewPane.h rename to Code/Editor/QtViewPane.h diff --git a/Code/Sandbox/Editor/QtViewPaneManager.cpp b/Code/Editor/QtViewPaneManager.cpp similarity index 100% rename from Code/Sandbox/Editor/QtViewPaneManager.cpp rename to Code/Editor/QtViewPaneManager.cpp diff --git a/Code/Sandbox/Editor/QtViewPaneManager.h b/Code/Editor/QtViewPaneManager.h similarity index 100% rename from Code/Sandbox/Editor/QtViewPaneManager.h rename to Code/Editor/QtViewPaneManager.h diff --git a/Code/Sandbox/Editor/QuickAccessBar.cpp b/Code/Editor/QuickAccessBar.cpp similarity index 100% rename from Code/Sandbox/Editor/QuickAccessBar.cpp rename to Code/Editor/QuickAccessBar.cpp diff --git a/Code/Sandbox/Editor/QuickAccessBar.h b/Code/Editor/QuickAccessBar.h similarity index 100% rename from Code/Sandbox/Editor/QuickAccessBar.h rename to Code/Editor/QuickAccessBar.h diff --git a/Code/Sandbox/Editor/QuickAccessBar.ui b/Code/Editor/QuickAccessBar.ui similarity index 100% rename from Code/Sandbox/Editor/QuickAccessBar.ui rename to Code/Editor/QuickAccessBar.ui diff --git a/Code/Sandbox/Editor/RenderHelpers/AxisHelper.cpp b/Code/Editor/RenderHelpers/AxisHelper.cpp similarity index 100% rename from Code/Sandbox/Editor/RenderHelpers/AxisHelper.cpp rename to Code/Editor/RenderHelpers/AxisHelper.cpp diff --git a/Code/Sandbox/Editor/RenderHelpers/AxisHelper.h b/Code/Editor/RenderHelpers/AxisHelper.h similarity index 100% rename from Code/Sandbox/Editor/RenderHelpers/AxisHelper.h rename to Code/Editor/RenderHelpers/AxisHelper.h diff --git a/Code/Sandbox/Editor/RenderHelpers/AxisHelperShared.inl b/Code/Editor/RenderHelpers/AxisHelperShared.inl similarity index 100% rename from Code/Sandbox/Editor/RenderHelpers/AxisHelperShared.inl rename to Code/Editor/RenderHelpers/AxisHelperShared.inl diff --git a/Code/Sandbox/Editor/RenderViewport.cpp b/Code/Editor/RenderViewport.cpp similarity index 100% rename from Code/Sandbox/Editor/RenderViewport.cpp rename to Code/Editor/RenderViewport.cpp diff --git a/Code/Sandbox/Editor/RenderViewport.h b/Code/Editor/RenderViewport.h similarity index 100% rename from Code/Sandbox/Editor/RenderViewport.h rename to Code/Editor/RenderViewport.h diff --git a/Code/Sandbox/Editor/RenderViewport_mac.mm b/Code/Editor/RenderViewport_mac.mm similarity index 100% rename from Code/Sandbox/Editor/RenderViewport_mac.mm rename to Code/Editor/RenderViewport_mac.mm diff --git a/Code/Sandbox/Editor/Report.h b/Code/Editor/Report.h similarity index 100% rename from Code/Sandbox/Editor/Report.h rename to Code/Editor/Report.h diff --git a/Code/Sandbox/Editor/ResizeResolutionDialog.cpp b/Code/Editor/ResizeResolutionDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/ResizeResolutionDialog.cpp rename to Code/Editor/ResizeResolutionDialog.cpp diff --git a/Code/Sandbox/Editor/ResizeResolutionDialog.h b/Code/Editor/ResizeResolutionDialog.h similarity index 100% rename from Code/Sandbox/Editor/ResizeResolutionDialog.h rename to Code/Editor/ResizeResolutionDialog.h diff --git a/Code/Sandbox/Editor/ResizeResolutionDialog.ui b/Code/Editor/ResizeResolutionDialog.ui similarity index 100% rename from Code/Sandbox/Editor/ResizeResolutionDialog.ui rename to Code/Editor/ResizeResolutionDialog.ui diff --git a/Code/Sandbox/Editor/Resource.h b/Code/Editor/Resource.h similarity index 100% rename from Code/Sandbox/Editor/Resource.h rename to Code/Editor/Resource.h diff --git a/Code/Sandbox/Editor/ResourceSelectorHost.cpp b/Code/Editor/ResourceSelectorHost.cpp similarity index 100% rename from Code/Sandbox/Editor/ResourceSelectorHost.cpp rename to Code/Editor/ResourceSelectorHost.cpp diff --git a/Code/Sandbox/Editor/ResourceSelectorHost.h b/Code/Editor/ResourceSelectorHost.h similarity index 100% rename from Code/Sandbox/Editor/ResourceSelectorHost.h rename to Code/Editor/ResourceSelectorHost.h diff --git a/Code/Sandbox/Editor/SelectEAXPresetDlg.cpp b/Code/Editor/SelectEAXPresetDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/SelectEAXPresetDlg.cpp rename to Code/Editor/SelectEAXPresetDlg.cpp diff --git a/Code/Sandbox/Editor/SelectEAXPresetDlg.h b/Code/Editor/SelectEAXPresetDlg.h similarity index 100% rename from Code/Sandbox/Editor/SelectEAXPresetDlg.h rename to Code/Editor/SelectEAXPresetDlg.h diff --git a/Code/Sandbox/Editor/SelectEAXPresetDlg.ui b/Code/Editor/SelectEAXPresetDlg.ui similarity index 100% rename from Code/Sandbox/Editor/SelectEAXPresetDlg.ui rename to Code/Editor/SelectEAXPresetDlg.ui diff --git a/Code/Sandbox/Editor/SelectLightAnimationDialog.cpp b/Code/Editor/SelectLightAnimationDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/SelectLightAnimationDialog.cpp rename to Code/Editor/SelectLightAnimationDialog.cpp diff --git a/Code/Sandbox/Editor/SelectLightAnimationDialog.h b/Code/Editor/SelectLightAnimationDialog.h similarity index 100% rename from Code/Sandbox/Editor/SelectLightAnimationDialog.h rename to Code/Editor/SelectLightAnimationDialog.h diff --git a/Code/Sandbox/Editor/SelectSequenceDialog.cpp b/Code/Editor/SelectSequenceDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/SelectSequenceDialog.cpp rename to Code/Editor/SelectSequenceDialog.cpp diff --git a/Code/Sandbox/Editor/SelectSequenceDialog.h b/Code/Editor/SelectSequenceDialog.h similarity index 100% rename from Code/Sandbox/Editor/SelectSequenceDialog.h rename to Code/Editor/SelectSequenceDialog.h diff --git a/Code/Sandbox/Editor/Settings.cpp b/Code/Editor/Settings.cpp similarity index 100% rename from Code/Sandbox/Editor/Settings.cpp rename to Code/Editor/Settings.cpp diff --git a/Code/Sandbox/Editor/Settings.h b/Code/Editor/Settings.h similarity index 100% rename from Code/Sandbox/Editor/Settings.h rename to Code/Editor/Settings.h diff --git a/Code/Sandbox/Editor/SettingsManager.cpp b/Code/Editor/SettingsManager.cpp similarity index 100% rename from Code/Sandbox/Editor/SettingsManager.cpp rename to Code/Editor/SettingsManager.cpp diff --git a/Code/Sandbox/Editor/SettingsManager.h b/Code/Editor/SettingsManager.h similarity index 100% rename from Code/Sandbox/Editor/SettingsManager.h rename to Code/Editor/SettingsManager.h diff --git a/Code/Sandbox/Editor/SettingsManagerDialog.cpp b/Code/Editor/SettingsManagerDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/SettingsManagerDialog.cpp rename to Code/Editor/SettingsManagerDialog.cpp diff --git a/Code/Sandbox/Editor/SettingsManagerDialog.h b/Code/Editor/SettingsManagerDialog.h similarity index 100% rename from Code/Sandbox/Editor/SettingsManagerDialog.h rename to Code/Editor/SettingsManagerDialog.h diff --git a/Code/Sandbox/Editor/SettingsManagerDialog.ui b/Code/Editor/SettingsManagerDialog.ui similarity index 100% rename from Code/Sandbox/Editor/SettingsManagerDialog.ui rename to Code/Editor/SettingsManagerDialog.ui diff --git a/Code/Sandbox/Editor/ShortcutDispatcher.cpp b/Code/Editor/ShortcutDispatcher.cpp similarity index 100% rename from Code/Sandbox/Editor/ShortcutDispatcher.cpp rename to Code/Editor/ShortcutDispatcher.cpp diff --git a/Code/Sandbox/Editor/ShortcutDispatcher.h b/Code/Editor/ShortcutDispatcher.h similarity index 100% rename from Code/Sandbox/Editor/ShortcutDispatcher.h rename to Code/Editor/ShortcutDispatcher.h diff --git a/Code/Sandbox/Editor/StartupLogoDialog.cpp b/Code/Editor/StartupLogoDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/StartupLogoDialog.cpp rename to Code/Editor/StartupLogoDialog.cpp diff --git a/Code/Sandbox/Editor/StartupLogoDialog.h b/Code/Editor/StartupLogoDialog.h similarity index 100% rename from Code/Sandbox/Editor/StartupLogoDialog.h rename to Code/Editor/StartupLogoDialog.h diff --git a/Code/Sandbox/Editor/StartupLogoDialog.qrc b/Code/Editor/StartupLogoDialog.qrc similarity index 100% rename from Code/Sandbox/Editor/StartupLogoDialog.qrc rename to Code/Editor/StartupLogoDialog.qrc diff --git a/Code/Sandbox/Editor/StartupLogoDialog.ui b/Code/Editor/StartupLogoDialog.ui similarity index 100% rename from Code/Sandbox/Editor/StartupLogoDialog.ui rename to Code/Editor/StartupLogoDialog.ui diff --git a/Code/Sandbox/Editor/StartupTraceHandler.cpp b/Code/Editor/StartupTraceHandler.cpp similarity index 100% rename from Code/Sandbox/Editor/StartupTraceHandler.cpp rename to Code/Editor/StartupTraceHandler.cpp diff --git a/Code/Sandbox/Editor/StartupTraceHandler.h b/Code/Editor/StartupTraceHandler.h similarity index 100% rename from Code/Sandbox/Editor/StartupTraceHandler.h rename to Code/Editor/StartupTraceHandler.h diff --git a/Code/Sandbox/Editor/StringDlg.cpp b/Code/Editor/StringDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/StringDlg.cpp rename to Code/Editor/StringDlg.cpp diff --git a/Code/Sandbox/Editor/StringDlg.h b/Code/Editor/StringDlg.h similarity index 100% rename from Code/Sandbox/Editor/StringDlg.h rename to Code/Editor/StringDlg.h diff --git a/Code/Sandbox/Editor/Style/Editor.qss b/Code/Editor/Style/Editor.qss similarity index 100% rename from Code/Sandbox/Editor/Style/Editor.qss rename to Code/Editor/Style/Editor.qss diff --git a/Code/Sandbox/Editor/Style/EditorPreferencesDialog.qss b/Code/Editor/Style/EditorPreferencesDialog.qss similarity index 100% rename from Code/Sandbox/Editor/Style/EditorPreferencesDialog.qss rename to Code/Editor/Style/EditorPreferencesDialog.qss diff --git a/Code/Sandbox/Editor/Style/EditorStylesheetVariables_Dark.json b/Code/Editor/Style/EditorStylesheetVariables_Dark.json similarity index 100% rename from Code/Sandbox/Editor/Style/EditorStylesheetVariables_Dark.json rename to Code/Editor/Style/EditorStylesheetVariables_Dark.json diff --git a/Code/Sandbox/Editor/Style/GraphicsSettingsDialog.qss b/Code/Editor/Style/GraphicsSettingsDialog.qss similarity index 100% rename from Code/Sandbox/Editor/Style/GraphicsSettingsDialog.qss rename to Code/Editor/Style/GraphicsSettingsDialog.qss diff --git a/Code/Sandbox/Editor/Style/LayoutConfigDialog.qss b/Code/Editor/Style/LayoutConfigDialog.qss similarity index 100% rename from Code/Sandbox/Editor/Style/LayoutConfigDialog.qss rename to Code/Editor/Style/LayoutConfigDialog.qss diff --git a/Code/Sandbox/Editor/Style/NewEditorStylesheet.qss b/Code/Editor/Style/NewEditorStylesheet.qss similarity index 100% rename from Code/Sandbox/Editor/Style/NewEditorStylesheet.qss rename to Code/Editor/Style/NewEditorStylesheet.qss diff --git a/Code/Sandbox/Editor/Style/resources.qrc b/Code/Editor/Style/resources.qrc similarity index 100% rename from Code/Sandbox/Editor/Style/resources.qrc rename to Code/Editor/Style/resources.qrc diff --git a/Code/Sandbox/Editor/SurfaceTypeValidator.cpp b/Code/Editor/SurfaceTypeValidator.cpp similarity index 100% rename from Code/Sandbox/Editor/SurfaceTypeValidator.cpp rename to Code/Editor/SurfaceTypeValidator.cpp diff --git a/Code/Sandbox/Editor/SurfaceTypeValidator.h b/Code/Editor/SurfaceTypeValidator.h similarity index 100% rename from Code/Sandbox/Editor/SurfaceTypeValidator.h rename to Code/Editor/SurfaceTypeValidator.h diff --git a/Code/Sandbox/Editor/TimeOfDay/main-00.png b/Code/Editor/TimeOfDay/main-00.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-00.png rename to Code/Editor/TimeOfDay/main-00.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-01.png b/Code/Editor/TimeOfDay/main-01.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-01.png rename to Code/Editor/TimeOfDay/main-01.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-02.png b/Code/Editor/TimeOfDay/main-02.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-02.png rename to Code/Editor/TimeOfDay/main-02.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-03.png b/Code/Editor/TimeOfDay/main-03.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-03.png rename to Code/Editor/TimeOfDay/main-03.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-04.png b/Code/Editor/TimeOfDay/main-04.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-04.png rename to Code/Editor/TimeOfDay/main-04.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-05.png b/Code/Editor/TimeOfDay/main-05.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-05.png rename to Code/Editor/TimeOfDay/main-05.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-06.png b/Code/Editor/TimeOfDay/main-06.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-06.png rename to Code/Editor/TimeOfDay/main-06.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-07.png b/Code/Editor/TimeOfDay/main-07.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-07.png rename to Code/Editor/TimeOfDay/main-07.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-08.png b/Code/Editor/TimeOfDay/main-08.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-08.png rename to Code/Editor/TimeOfDay/main-08.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-09.png b/Code/Editor/TimeOfDay/main-09.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-09.png rename to Code/Editor/TimeOfDay/main-09.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-10.png b/Code/Editor/TimeOfDay/main-10.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-10.png rename to Code/Editor/TimeOfDay/main-10.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-11.png b/Code/Editor/TimeOfDay/main-11.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-11.png rename to Code/Editor/TimeOfDay/main-11.png diff --git a/Code/Sandbox/Editor/TimeOfDay/main-12.png b/Code/Editor/TimeOfDay/main-12.png similarity index 100% rename from Code/Sandbox/Editor/TimeOfDay/main-12.png rename to Code/Editor/TimeOfDay/main-12.png diff --git a/Code/Sandbox/Editor/ToolBox.cpp b/Code/Editor/ToolBox.cpp similarity index 100% rename from Code/Sandbox/Editor/ToolBox.cpp rename to Code/Editor/ToolBox.cpp diff --git a/Code/Sandbox/Editor/ToolBox.h b/Code/Editor/ToolBox.h similarity index 100% rename from Code/Sandbox/Editor/ToolBox.h rename to Code/Editor/ToolBox.h diff --git a/Code/Sandbox/Editor/ToolbarCustomizationDialog.cpp b/Code/Editor/ToolbarCustomizationDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/ToolbarCustomizationDialog.cpp rename to Code/Editor/ToolbarCustomizationDialog.cpp diff --git a/Code/Sandbox/Editor/ToolbarCustomizationDialog.h b/Code/Editor/ToolbarCustomizationDialog.h similarity index 100% rename from Code/Sandbox/Editor/ToolbarCustomizationDialog.h rename to Code/Editor/ToolbarCustomizationDialog.h diff --git a/Code/Sandbox/Editor/ToolbarCustomizationDialog.ui b/Code/Editor/ToolbarCustomizationDialog.ui similarity index 100% rename from Code/Sandbox/Editor/ToolbarCustomizationDialog.ui rename to Code/Editor/ToolbarCustomizationDialog.ui diff --git a/Code/Sandbox/Editor/ToolbarManager.cpp b/Code/Editor/ToolbarManager.cpp similarity index 100% rename from Code/Sandbox/Editor/ToolbarManager.cpp rename to Code/Editor/ToolbarManager.cpp diff --git a/Code/Sandbox/Editor/ToolbarManager.h b/Code/Editor/ToolbarManager.h similarity index 100% rename from Code/Sandbox/Editor/ToolbarManager.h rename to Code/Editor/ToolbarManager.h diff --git a/Code/Sandbox/Editor/ToolsConfigPage.cpp b/Code/Editor/ToolsConfigPage.cpp similarity index 100% rename from Code/Sandbox/Editor/ToolsConfigPage.cpp rename to Code/Editor/ToolsConfigPage.cpp diff --git a/Code/Sandbox/Editor/ToolsConfigPage.h b/Code/Editor/ToolsConfigPage.h similarity index 100% rename from Code/Sandbox/Editor/ToolsConfigPage.h rename to Code/Editor/ToolsConfigPage.h diff --git a/Code/Sandbox/Editor/ToolsConfigPage.ui b/Code/Editor/ToolsConfigPage.ui similarity index 100% rename from Code/Sandbox/Editor/ToolsConfigPage.ui rename to Code/Editor/ToolsConfigPage.ui diff --git a/Code/Sandbox/Editor/TopRendererWnd.cpp b/Code/Editor/TopRendererWnd.cpp similarity index 100% rename from Code/Sandbox/Editor/TopRendererWnd.cpp rename to Code/Editor/TopRendererWnd.cpp diff --git a/Code/Sandbox/Editor/TopRendererWnd.h b/Code/Editor/TopRendererWnd.h similarity index 100% rename from Code/Sandbox/Editor/TopRendererWnd.h rename to Code/Editor/TopRendererWnd.h diff --git a/Code/Sandbox/Editor/TrackView/2DBezierKeyUIControls.cpp b/Code/Editor/TrackView/2DBezierKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/2DBezierKeyUIControls.cpp rename to Code/Editor/TrackView/2DBezierKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/AssetBlendKeyUIControls.cpp b/Code/Editor/TrackView/AssetBlendKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/AssetBlendKeyUIControls.cpp rename to Code/Editor/TrackView/AssetBlendKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/AtomOutputFrameCapture.cpp b/Code/Editor/TrackView/AtomOutputFrameCapture.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/AtomOutputFrameCapture.cpp rename to Code/Editor/TrackView/AtomOutputFrameCapture.cpp diff --git a/Code/Sandbox/Editor/TrackView/AtomOutputFrameCapture.h b/Code/Editor/TrackView/AtomOutputFrameCapture.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/AtomOutputFrameCapture.h rename to Code/Editor/TrackView/AtomOutputFrameCapture.h diff --git a/Code/Sandbox/Editor/TrackView/CaptureKeyUIControls.cpp b/Code/Editor/TrackView/CaptureKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/CaptureKeyUIControls.cpp rename to Code/Editor/TrackView/CaptureKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/CharacterKeyUIControls.cpp b/Code/Editor/TrackView/CharacterKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/CharacterKeyUIControls.cpp rename to Code/Editor/TrackView/CharacterKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/CommentKeyUIControls.cpp b/Code/Editor/TrackView/CommentKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/CommentKeyUIControls.cpp rename to Code/Editor/TrackView/CommentKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/CommentNodeAnimator.cpp b/Code/Editor/TrackView/CommentNodeAnimator.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/CommentNodeAnimator.cpp rename to Code/Editor/TrackView/CommentNodeAnimator.cpp diff --git a/Code/Sandbox/Editor/TrackView/CommentNodeAnimator.h b/Code/Editor/TrackView/CommentNodeAnimator.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/CommentNodeAnimator.h rename to Code/Editor/TrackView/CommentNodeAnimator.h diff --git a/Code/Sandbox/Editor/TrackView/ConsoleKeyUIControls.cpp b/Code/Editor/TrackView/ConsoleKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/ConsoleKeyUIControls.cpp rename to Code/Editor/TrackView/ConsoleKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/DirectorNodeAnimator.cpp b/Code/Editor/TrackView/DirectorNodeAnimator.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/DirectorNodeAnimator.cpp rename to Code/Editor/TrackView/DirectorNodeAnimator.cpp diff --git a/Code/Sandbox/Editor/TrackView/DirectorNodeAnimator.h b/Code/Editor/TrackView/DirectorNodeAnimator.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/DirectorNodeAnimator.h rename to Code/Editor/TrackView/DirectorNodeAnimator.h diff --git a/Code/Sandbox/Editor/TrackView/EditorTrackViewEventsBus.h b/Code/Editor/TrackView/EditorTrackViewEventsBus.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/EditorTrackViewEventsBus.h rename to Code/Editor/TrackView/EditorTrackViewEventsBus.h diff --git a/Code/Sandbox/Editor/TrackView/EventKeyUIControls.cpp b/Code/Editor/TrackView/EventKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/EventKeyUIControls.cpp rename to Code/Editor/TrackView/EventKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/GotoKeyUIControls.cpp b/Code/Editor/TrackView/GotoKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/GotoKeyUIControls.cpp rename to Code/Editor/TrackView/GotoKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/ScreenFaderKeyUIControls.cpp b/Code/Editor/TrackView/ScreenFaderKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/ScreenFaderKeyUIControls.cpp rename to Code/Editor/TrackView/ScreenFaderKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/SelectKeyUIControls.cpp b/Code/Editor/TrackView/SelectKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/SelectKeyUIControls.cpp rename to Code/Editor/TrackView/SelectKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/SequenceBatchRenderDialog.cpp b/Code/Editor/TrackView/SequenceBatchRenderDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/SequenceBatchRenderDialog.cpp rename to Code/Editor/TrackView/SequenceBatchRenderDialog.cpp diff --git a/Code/Sandbox/Editor/TrackView/SequenceBatchRenderDialog.h b/Code/Editor/TrackView/SequenceBatchRenderDialog.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/SequenceBatchRenderDialog.h rename to Code/Editor/TrackView/SequenceBatchRenderDialog.h diff --git a/Code/Sandbox/Editor/TrackView/SequenceBatchRenderDialog.ui b/Code/Editor/TrackView/SequenceBatchRenderDialog.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/SequenceBatchRenderDialog.ui rename to Code/Editor/TrackView/SequenceBatchRenderDialog.ui diff --git a/Code/Sandbox/Editor/TrackView/SequenceKeyUIControls.cpp b/Code/Editor/TrackView/SequenceKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/SequenceKeyUIControls.cpp rename to Code/Editor/TrackView/SequenceKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/SoundKeyUIControls.cpp b/Code/Editor/TrackView/SoundKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/SoundKeyUIControls.cpp rename to Code/Editor/TrackView/SoundKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/TVCustomizeTrackColorsDialog.ui b/Code/Editor/TrackView/TVCustomizeTrackColorsDialog.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVCustomizeTrackColorsDialog.ui rename to Code/Editor/TrackView/TVCustomizeTrackColorsDialog.ui diff --git a/Code/Sandbox/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp rename to Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp diff --git a/Code/Sandbox/Editor/TrackView/TVCustomizeTrackColorsDlg.h b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVCustomizeTrackColorsDlg.h rename to Code/Editor/TrackView/TVCustomizeTrackColorsDlg.h diff --git a/Code/Sandbox/Editor/TrackView/TVEventsDialog.cpp b/Code/Editor/TrackView/TVEventsDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVEventsDialog.cpp rename to Code/Editor/TrackView/TVEventsDialog.cpp diff --git a/Code/Sandbox/Editor/TrackView/TVEventsDialog.h b/Code/Editor/TrackView/TVEventsDialog.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVEventsDialog.h rename to Code/Editor/TrackView/TVEventsDialog.h diff --git a/Code/Sandbox/Editor/TrackView/TVEventsDialog.ui b/Code/Editor/TrackView/TVEventsDialog.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVEventsDialog.ui rename to Code/Editor/TrackView/TVEventsDialog.ui diff --git a/Code/Sandbox/Editor/TrackView/TVSequenceProps.cpp b/Code/Editor/TrackView/TVSequenceProps.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVSequenceProps.cpp rename to Code/Editor/TrackView/TVSequenceProps.cpp diff --git a/Code/Sandbox/Editor/TrackView/TVSequenceProps.h b/Code/Editor/TrackView/TVSequenceProps.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVSequenceProps.h rename to Code/Editor/TrackView/TVSequenceProps.h diff --git a/Code/Sandbox/Editor/TrackView/TVSequenceProps.ui b/Code/Editor/TrackView/TVSequenceProps.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/TVSequenceProps.ui rename to Code/Editor/TrackView/TVSequenceProps.ui diff --git a/Code/Sandbox/Editor/TrackView/TimeRangeKeyUIControls.cpp b/Code/Editor/TrackView/TimeRangeKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TimeRangeKeyUIControls.cpp rename to Code/Editor/TrackView/TimeRangeKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackEventKeyUIControls.cpp b/Code/Editor/TrackView/TrackEventKeyUIControls.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackEventKeyUIControls.cpp rename to Code/Editor/TrackView/TrackEventKeyUIControls.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewAnimNode.cpp b/Code/Editor/TrackView/TrackViewAnimNode.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewAnimNode.cpp rename to Code/Editor/TrackView/TrackViewAnimNode.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewAnimNode.h b/Code/Editor/TrackView/TrackViewAnimNode.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewAnimNode.h rename to Code/Editor/TrackView/TrackViewAnimNode.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewCurveEditor.cpp b/Code/Editor/TrackView/TrackViewCurveEditor.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewCurveEditor.cpp rename to Code/Editor/TrackView/TrackViewCurveEditor.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewCurveEditor.h b/Code/Editor/TrackView/TrackViewCurveEditor.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewCurveEditor.h rename to Code/Editor/TrackView/TrackViewCurveEditor.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewCurveEditor.ui b/Code/Editor/TrackView/TrackViewCurveEditor.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewCurveEditor.ui rename to Code/Editor/TrackView/TrackViewCurveEditor.ui diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDialog.cpp b/Code/Editor/TrackView/TrackViewDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewDialog.cpp rename to Code/Editor/TrackView/TrackViewDialog.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDialog.h b/Code/Editor/TrackView/TrackViewDialog.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewDialog.h rename to Code/Editor/TrackView/TrackViewDialog.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDialog.qrc b/Code/Editor/TrackView/TrackViewDialog.qrc similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewDialog.qrc rename to Code/Editor/TrackView/TrackViewDialog.qrc diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDopeSheetBase.cpp b/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewDopeSheetBase.cpp rename to Code/Editor/TrackView/TrackViewDopeSheetBase.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDopeSheetBase.h b/Code/Editor/TrackView/TrackViewDopeSheetBase.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewDopeSheetBase.h rename to Code/Editor/TrackView/TrackViewDopeSheetBase.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDoubleSpinBox.cpp b/Code/Editor/TrackView/TrackViewDoubleSpinBox.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewDoubleSpinBox.cpp rename to Code/Editor/TrackView/TrackViewDoubleSpinBox.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewDoubleSpinBox.h b/Code/Editor/TrackView/TrackViewDoubleSpinBox.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewDoubleSpinBox.h rename to Code/Editor/TrackView/TrackViewDoubleSpinBox.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewEventNode.cpp b/Code/Editor/TrackView/TrackViewEventNode.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewEventNode.cpp rename to Code/Editor/TrackView/TrackViewEventNode.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewEventNode.h b/Code/Editor/TrackView/TrackViewEventNode.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewEventNode.h rename to Code/Editor/TrackView/TrackViewEventNode.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewFindDlg.cpp b/Code/Editor/TrackView/TrackViewFindDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewFindDlg.cpp rename to Code/Editor/TrackView/TrackViewFindDlg.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewFindDlg.h b/Code/Editor/TrackView/TrackViewFindDlg.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewFindDlg.h rename to Code/Editor/TrackView/TrackViewFindDlg.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewFindDlg.ui b/Code/Editor/TrackView/TrackViewFindDlg.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewFindDlg.ui rename to Code/Editor/TrackView/TrackViewFindDlg.ui diff --git a/Code/Sandbox/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp b/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp rename to Code/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewKeyPropertiesDlg.h b/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewKeyPropertiesDlg.h rename to Code/Editor/TrackView/TrackViewKeyPropertiesDlg.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewNode.cpp b/Code/Editor/TrackView/TrackViewNode.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewNode.cpp rename to Code/Editor/TrackView/TrackViewNode.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewNode.h b/Code/Editor/TrackView/TrackViewNode.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewNode.h rename to Code/Editor/TrackView/TrackViewNode.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewNodeFactories.cpp b/Code/Editor/TrackView/TrackViewNodeFactories.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewNodeFactories.cpp rename to Code/Editor/TrackView/TrackViewNodeFactories.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewNodeFactories.h b/Code/Editor/TrackView/TrackViewNodeFactories.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewNodeFactories.h rename to Code/Editor/TrackView/TrackViewNodeFactories.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewNodes.cpp b/Code/Editor/TrackView/TrackViewNodes.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewNodes.cpp rename to Code/Editor/TrackView/TrackViewNodes.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewNodes.h b/Code/Editor/TrackView/TrackViewNodes.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewNodes.h rename to Code/Editor/TrackView/TrackViewNodes.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewNodes.ui b/Code/Editor/TrackView/TrackViewNodes.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewNodes.ui rename to Code/Editor/TrackView/TrackViewNodes.ui diff --git a/Code/Sandbox/Editor/TrackView/TrackViewPythonFuncs.cpp b/Code/Editor/TrackView/TrackViewPythonFuncs.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewPythonFuncs.cpp rename to Code/Editor/TrackView/TrackViewPythonFuncs.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewPythonFuncs.h b/Code/Editor/TrackView/TrackViewPythonFuncs.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewPythonFuncs.h rename to Code/Editor/TrackView/TrackViewPythonFuncs.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewSequence.cpp b/Code/Editor/TrackView/TrackViewSequence.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewSequence.cpp rename to Code/Editor/TrackView/TrackViewSequence.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewSequence.h b/Code/Editor/TrackView/TrackViewSequence.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewSequence.h rename to Code/Editor/TrackView/TrackViewSequence.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewSequenceManager.cpp b/Code/Editor/TrackView/TrackViewSequenceManager.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewSequenceManager.cpp rename to Code/Editor/TrackView/TrackViewSequenceManager.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewSequenceManager.h b/Code/Editor/TrackView/TrackViewSequenceManager.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewSequenceManager.h rename to Code/Editor/TrackView/TrackViewSequenceManager.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewSplineCtrl.cpp b/Code/Editor/TrackView/TrackViewSplineCtrl.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewSplineCtrl.cpp rename to Code/Editor/TrackView/TrackViewSplineCtrl.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewSplineCtrl.h b/Code/Editor/TrackView/TrackViewSplineCtrl.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewSplineCtrl.h rename to Code/Editor/TrackView/TrackViewSplineCtrl.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewTimeline.cpp b/Code/Editor/TrackView/TrackViewTimeline.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewTimeline.cpp rename to Code/Editor/TrackView/TrackViewTimeline.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewTimeline.h b/Code/Editor/TrackView/TrackViewTimeline.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewTimeline.h rename to Code/Editor/TrackView/TrackViewTimeline.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewTrack.cpp b/Code/Editor/TrackView/TrackViewTrack.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewTrack.cpp rename to Code/Editor/TrackView/TrackViewTrack.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewTrack.h b/Code/Editor/TrackView/TrackViewTrack.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewTrack.h rename to Code/Editor/TrackView/TrackViewTrack.h diff --git a/Code/Sandbox/Editor/TrackView/TrackViewTrackPropsDlg.ui b/Code/Editor/TrackView/TrackViewTrackPropsDlg.ui similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewTrackPropsDlg.ui rename to Code/Editor/TrackView/TrackViewTrackPropsDlg.ui diff --git a/Code/Sandbox/Editor/TrackView/TrackViewUndo.cpp b/Code/Editor/TrackView/TrackViewUndo.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewUndo.cpp rename to Code/Editor/TrackView/TrackViewUndo.cpp diff --git a/Code/Sandbox/Editor/TrackView/TrackViewUndo.h b/Code/Editor/TrackView/TrackViewUndo.h similarity index 100% rename from Code/Sandbox/Editor/TrackView/TrackViewUndo.h rename to Code/Editor/TrackView/TrackViewUndo.h diff --git a/Code/Sandbox/Editor/TrackView/bmp00016_00.png b/Code/Editor/TrackView/bmp00016_00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/bmp00016_00.png rename to Code/Editor/TrackView/bmp00016_00.png diff --git a/Code/Sandbox/Editor/TrackView/bmp00016_01.png b/Code/Editor/TrackView/bmp00016_01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/bmp00016_01.png rename to Code/Editor/TrackView/bmp00016_01.png diff --git a/Code/Sandbox/Editor/TrackView/clapperboard_cancel.png b/Code/Editor/TrackView/clapperboard_cancel.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/clapperboard_cancel.png rename to Code/Editor/TrackView/clapperboard_cancel.png diff --git a/Code/Sandbox/Editor/TrackView/clapperboard_ready.png b/Code/Editor/TrackView/clapperboard_ready.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/clapperboard_ready.png rename to Code/Editor/TrackView/clapperboard_ready.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_00.png b/Code/Editor/TrackView/spline_edit_bar_00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_00.png rename to Code/Editor/TrackView/spline_edit_bar_00.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_01.png b/Code/Editor/TrackView/spline_edit_bar_01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_01.png rename to Code/Editor/TrackView/spline_edit_bar_01.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_02.png b/Code/Editor/TrackView/spline_edit_bar_02.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_02.png rename to Code/Editor/TrackView/spline_edit_bar_02.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_03.png b/Code/Editor/TrackView/spline_edit_bar_03.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_03.png rename to Code/Editor/TrackView/spline_edit_bar_03.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_04.png b/Code/Editor/TrackView/spline_edit_bar_04.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_04.png rename to Code/Editor/TrackView/spline_edit_bar_04.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_05.png b/Code/Editor/TrackView/spline_edit_bar_05.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_05.png rename to Code/Editor/TrackView/spline_edit_bar_05.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_06.png b/Code/Editor/TrackView/spline_edit_bar_06.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_06.png rename to Code/Editor/TrackView/spline_edit_bar_06.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_07.png b/Code/Editor/TrackView/spline_edit_bar_07.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_07.png rename to Code/Editor/TrackView/spline_edit_bar_07.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_08.png b/Code/Editor/TrackView/spline_edit_bar_08.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_08.png rename to Code/Editor/TrackView/spline_edit_bar_08.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_09.png b/Code/Editor/TrackView/spline_edit_bar_09.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_09.png rename to Code/Editor/TrackView/spline_edit_bar_09.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_10.png b/Code/Editor/TrackView/spline_edit_bar_10.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_10.png rename to Code/Editor/TrackView/spline_edit_bar_10.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_11.png b/Code/Editor/TrackView/spline_edit_bar_11.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_11.png rename to Code/Editor/TrackView/spline_edit_bar_11.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_12.png b/Code/Editor/TrackView/spline_edit_bar_12.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_12.png rename to Code/Editor/TrackView/spline_edit_bar_12.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_13.png b/Code/Editor/TrackView/spline_edit_bar_13.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_13.png rename to Code/Editor/TrackView/spline_edit_bar_13.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_14.png b/Code/Editor/TrackView/spline_edit_bar_14.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_14.png rename to Code/Editor/TrackView/spline_edit_bar_14.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_15.png b/Code/Editor/TrackView/spline_edit_bar_15.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_15.png rename to Code/Editor/TrackView/spline_edit_bar_15.png diff --git a/Code/Sandbox/Editor/TrackView/spline_edit_bar_16.png b/Code/Editor/TrackView/spline_edit_bar_16.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/spline_edit_bar_16.png rename to Code/Editor/TrackView/spline_edit_bar_16.png diff --git a/Code/Sandbox/Editor/TrackView/trackview_keys_00.png b/Code/Editor/TrackView/trackview_keys_00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/trackview_keys_00.png rename to Code/Editor/TrackView/trackview_keys_00.png diff --git a/Code/Sandbox/Editor/TrackView/trackview_keys_01.png b/Code/Editor/TrackView/trackview_keys_01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/trackview_keys_01.png rename to Code/Editor/TrackView/trackview_keys_01.png diff --git a/Code/Sandbox/Editor/TrackView/trackview_keys_02.png b/Code/Editor/TrackView/trackview_keys_02.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/trackview_keys_02.png rename to Code/Editor/TrackView/trackview_keys_02.png diff --git a/Code/Sandbox/Editor/TrackView/trackview_keys_03.png b/Code/Editor/TrackView/trackview_keys_03.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/trackview_keys_03.png rename to Code/Editor/TrackView/trackview_keys_03.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-00.png b/Code/Editor/TrackView/tvkeys-00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-00.png rename to Code/Editor/TrackView/tvkeys-00.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-01.png b/Code/Editor/TrackView/tvkeys-01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-01.png rename to Code/Editor/TrackView/tvkeys-01.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-02.png b/Code/Editor/TrackView/tvkeys-02.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-02.png rename to Code/Editor/TrackView/tvkeys-02.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-03.png b/Code/Editor/TrackView/tvkeys-03.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-03.png rename to Code/Editor/TrackView/tvkeys-03.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-04.png b/Code/Editor/TrackView/tvkeys-04.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-04.png rename to Code/Editor/TrackView/tvkeys-04.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-05.png b/Code/Editor/TrackView/tvkeys-05.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-05.png rename to Code/Editor/TrackView/tvkeys-05.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-06.png b/Code/Editor/TrackView/tvkeys-06.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-06.png rename to Code/Editor/TrackView/tvkeys-06.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-07.png b/Code/Editor/TrackView/tvkeys-07.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-07.png rename to Code/Editor/TrackView/tvkeys-07.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-08.png b/Code/Editor/TrackView/tvkeys-08.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-08.png rename to Code/Editor/TrackView/tvkeys-08.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-09.png b/Code/Editor/TrackView/tvkeys-09.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-09.png rename to Code/Editor/TrackView/tvkeys-09.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-10.png b/Code/Editor/TrackView/tvkeys-10.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-10.png rename to Code/Editor/TrackView/tvkeys-10.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-11.png b/Code/Editor/TrackView/tvkeys-11.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-11.png rename to Code/Editor/TrackView/tvkeys-11.png diff --git a/Code/Sandbox/Editor/TrackView/tvkeys-12.png b/Code/Editor/TrackView/tvkeys-12.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvkeys-12.png rename to Code/Editor/TrackView/tvkeys-12.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-00.png b/Code/Editor/TrackView/tvmain-00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-00.png rename to Code/Editor/TrackView/tvmain-00.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-01.png b/Code/Editor/TrackView/tvmain-01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-01.png rename to Code/Editor/TrackView/tvmain-01.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-02.png b/Code/Editor/TrackView/tvmain-02.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-02.png rename to Code/Editor/TrackView/tvmain-02.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-03.png b/Code/Editor/TrackView/tvmain-03.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-03.png rename to Code/Editor/TrackView/tvmain-03.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-04.png b/Code/Editor/TrackView/tvmain-04.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-04.png rename to Code/Editor/TrackView/tvmain-04.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-05.png b/Code/Editor/TrackView/tvmain-05.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-05.png rename to Code/Editor/TrackView/tvmain-05.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-06.png b/Code/Editor/TrackView/tvmain-06.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-06.png rename to Code/Editor/TrackView/tvmain-06.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-07.png b/Code/Editor/TrackView/tvmain-07.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-07.png rename to Code/Editor/TrackView/tvmain-07.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-08.png b/Code/Editor/TrackView/tvmain-08.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-08.png rename to Code/Editor/TrackView/tvmain-08.png diff --git a/Code/Sandbox/Editor/TrackView/tvmain-09.png b/Code/Editor/TrackView/tvmain-09.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvmain-09.png rename to Code/Editor/TrackView/tvmain-09.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-00.png b/Code/Editor/TrackView/tvnodes-00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-00.png rename to Code/Editor/TrackView/tvnodes-00.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-01.png b/Code/Editor/TrackView/tvnodes-01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-01.png rename to Code/Editor/TrackView/tvnodes-01.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-02.png b/Code/Editor/TrackView/tvnodes-02.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-02.png rename to Code/Editor/TrackView/tvnodes-02.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-03.png b/Code/Editor/TrackView/tvnodes-03.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-03.png rename to Code/Editor/TrackView/tvnodes-03.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-04.png b/Code/Editor/TrackView/tvnodes-04.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-04.png rename to Code/Editor/TrackView/tvnodes-04.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-05.png b/Code/Editor/TrackView/tvnodes-05.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-05.png rename to Code/Editor/TrackView/tvnodes-05.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-06.png b/Code/Editor/TrackView/tvnodes-06.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-06.png rename to Code/Editor/TrackView/tvnodes-06.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-07.png b/Code/Editor/TrackView/tvnodes-07.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-07.png rename to Code/Editor/TrackView/tvnodes-07.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-08.png b/Code/Editor/TrackView/tvnodes-08.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-08.png rename to Code/Editor/TrackView/tvnodes-08.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-09.png b/Code/Editor/TrackView/tvnodes-09.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-09.png rename to Code/Editor/TrackView/tvnodes-09.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-10.png b/Code/Editor/TrackView/tvnodes-10.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-10.png rename to Code/Editor/TrackView/tvnodes-10.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-11.png b/Code/Editor/TrackView/tvnodes-11.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-11.png rename to Code/Editor/TrackView/tvnodes-11.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-12.png b/Code/Editor/TrackView/tvnodes-12.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-12.png rename to Code/Editor/TrackView/tvnodes-12.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-13.png b/Code/Editor/TrackView/tvnodes-13.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-13.png rename to Code/Editor/TrackView/tvnodes-13.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-14.png b/Code/Editor/TrackView/tvnodes-14.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-14.png rename to Code/Editor/TrackView/tvnodes-14.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-15.png b/Code/Editor/TrackView/tvnodes-15.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-15.png rename to Code/Editor/TrackView/tvnodes-15.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-16.png b/Code/Editor/TrackView/tvnodes-16.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-16.png rename to Code/Editor/TrackView/tvnodes-16.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-17.png b/Code/Editor/TrackView/tvnodes-17.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-17.png rename to Code/Editor/TrackView/tvnodes-17.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-18.png b/Code/Editor/TrackView/tvnodes-18.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-18.png rename to Code/Editor/TrackView/tvnodes-18.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-19.png b/Code/Editor/TrackView/tvnodes-19.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-19.png rename to Code/Editor/TrackView/tvnodes-19.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-20.png b/Code/Editor/TrackView/tvnodes-20.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-20.png rename to Code/Editor/TrackView/tvnodes-20.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-21.png b/Code/Editor/TrackView/tvnodes-21.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-21.png rename to Code/Editor/TrackView/tvnodes-21.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-22.png b/Code/Editor/TrackView/tvnodes-22.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-22.png rename to Code/Editor/TrackView/tvnodes-22.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-23.png b/Code/Editor/TrackView/tvnodes-23.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-23.png rename to Code/Editor/TrackView/tvnodes-23.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-24.png b/Code/Editor/TrackView/tvnodes-24.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-24.png rename to Code/Editor/TrackView/tvnodes-24.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-25.png b/Code/Editor/TrackView/tvnodes-25.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-25.png rename to Code/Editor/TrackView/tvnodes-25.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-26.png b/Code/Editor/TrackView/tvnodes-26.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-26.png rename to Code/Editor/TrackView/tvnodes-26.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-27.png b/Code/Editor/TrackView/tvnodes-27.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-27.png rename to Code/Editor/TrackView/tvnodes-27.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-28.png b/Code/Editor/TrackView/tvnodes-28.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-28.png rename to Code/Editor/TrackView/tvnodes-28.png diff --git a/Code/Sandbox/Editor/TrackView/tvnodes-29.png b/Code/Editor/TrackView/tvnodes-29.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvnodes-29.png rename to Code/Editor/TrackView/tvnodes-29.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-00.png b/Code/Editor/TrackView/tvplay-00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-00.png rename to Code/Editor/TrackView/tvplay-00.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-01.png b/Code/Editor/TrackView/tvplay-01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-01.png rename to Code/Editor/TrackView/tvplay-01.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-02.png b/Code/Editor/TrackView/tvplay-02.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-02.png rename to Code/Editor/TrackView/tvplay-02.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-03.png b/Code/Editor/TrackView/tvplay-03.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-03.png rename to Code/Editor/TrackView/tvplay-03.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-04.png b/Code/Editor/TrackView/tvplay-04.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-04.png rename to Code/Editor/TrackView/tvplay-04.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-05.png b/Code/Editor/TrackView/tvplay-05.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-05.png rename to Code/Editor/TrackView/tvplay-05.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-06.png b/Code/Editor/TrackView/tvplay-06.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-06.png rename to Code/Editor/TrackView/tvplay-06.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-07.png b/Code/Editor/TrackView/tvplay-07.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-07.png rename to Code/Editor/TrackView/tvplay-07.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-08.png b/Code/Editor/TrackView/tvplay-08.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-08.png rename to Code/Editor/TrackView/tvplay-08.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-09.png b/Code/Editor/TrackView/tvplay-09.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-09.png rename to Code/Editor/TrackView/tvplay-09.png diff --git a/Code/Sandbox/Editor/TrackView/tvplay-10.png b/Code/Editor/TrackView/tvplay-10.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvplay-10.png rename to Code/Editor/TrackView/tvplay-10.png diff --git a/Code/Sandbox/Editor/TrackView/tvview-00.png b/Code/Editor/TrackView/tvview-00.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvview-00.png rename to Code/Editor/TrackView/tvview-00.png diff --git a/Code/Sandbox/Editor/TrackView/tvview-01.png b/Code/Editor/TrackView/tvview-01.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvview-01.png rename to Code/Editor/TrackView/tvview-01.png diff --git a/Code/Sandbox/Editor/TrackView/tvview-02.png b/Code/Editor/TrackView/tvview-02.png similarity index 100% rename from Code/Sandbox/Editor/TrackView/tvview-02.png rename to Code/Editor/TrackView/tvview-02.png diff --git a/Code/Sandbox/Editor/TrackViewExportKeyTimeDlg.cpp b/Code/Editor/TrackViewExportKeyTimeDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackViewExportKeyTimeDlg.cpp rename to Code/Editor/TrackViewExportKeyTimeDlg.cpp diff --git a/Code/Sandbox/Editor/TrackViewExportKeyTimeDlg.h b/Code/Editor/TrackViewExportKeyTimeDlg.h similarity index 100% rename from Code/Sandbox/Editor/TrackViewExportKeyTimeDlg.h rename to Code/Editor/TrackViewExportKeyTimeDlg.h diff --git a/Code/Sandbox/Editor/TrackViewExportKeyTimeDlg.ui b/Code/Editor/TrackViewExportKeyTimeDlg.ui similarity index 100% rename from Code/Sandbox/Editor/TrackViewExportKeyTimeDlg.ui rename to Code/Editor/TrackViewExportKeyTimeDlg.ui diff --git a/Code/Sandbox/Editor/TrackViewFBXImportPreviewDialog.cpp b/Code/Editor/TrackViewFBXImportPreviewDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackViewFBXImportPreviewDialog.cpp rename to Code/Editor/TrackViewFBXImportPreviewDialog.cpp diff --git a/Code/Sandbox/Editor/TrackViewFBXImportPreviewDialog.h b/Code/Editor/TrackViewFBXImportPreviewDialog.h similarity index 100% rename from Code/Sandbox/Editor/TrackViewFBXImportPreviewDialog.h rename to Code/Editor/TrackViewFBXImportPreviewDialog.h diff --git a/Code/Sandbox/Editor/TrackViewFBXImportPreviewDialog.ui b/Code/Editor/TrackViewFBXImportPreviewDialog.ui similarity index 100% rename from Code/Sandbox/Editor/TrackViewFBXImportPreviewDialog.ui rename to Code/Editor/TrackViewFBXImportPreviewDialog.ui diff --git a/Code/Sandbox/Editor/TrackViewNewSequenceDialog.cpp b/Code/Editor/TrackViewNewSequenceDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/TrackViewNewSequenceDialog.cpp rename to Code/Editor/TrackViewNewSequenceDialog.cpp diff --git a/Code/Sandbox/Editor/TrackViewNewSequenceDialog.h b/Code/Editor/TrackViewNewSequenceDialog.h similarity index 100% rename from Code/Sandbox/Editor/TrackViewNewSequenceDialog.h rename to Code/Editor/TrackViewNewSequenceDialog.h diff --git a/Code/Sandbox/Editor/TrackViewNewSequenceDialog.ui b/Code/Editor/TrackViewNewSequenceDialog.ui similarity index 100% rename from Code/Sandbox/Editor/TrackViewNewSequenceDialog.ui rename to Code/Editor/TrackViewNewSequenceDialog.ui diff --git a/Code/Sandbox/Editor/Translations/assetbrowser_en-us.ts b/Code/Editor/Translations/assetbrowser_en-us.ts similarity index 100% rename from Code/Sandbox/Editor/Translations/assetbrowser_en-us.ts rename to Code/Editor/Translations/assetbrowser_en-us.ts diff --git a/Code/Sandbox/Editor/Translations/editor_en-us.ts b/Code/Editor/Translations/editor_en-us.ts similarity index 100% rename from Code/Sandbox/Editor/Translations/editor_en-us.ts rename to Code/Editor/Translations/editor_en-us.ts diff --git a/Code/Sandbox/Editor/TrustInfo.manifest b/Code/Editor/TrustInfo.manifest similarity index 100% rename from Code/Sandbox/Editor/TrustInfo.manifest rename to Code/Editor/TrustInfo.manifest diff --git a/Code/Sandbox/Editor/UIEnumsDatabase.cpp b/Code/Editor/UIEnumsDatabase.cpp similarity index 100% rename from Code/Sandbox/Editor/UIEnumsDatabase.cpp rename to Code/Editor/UIEnumsDatabase.cpp diff --git a/Code/Sandbox/Editor/UIEnumsDatabase.h b/Code/Editor/UIEnumsDatabase.h similarity index 100% rename from Code/Sandbox/Editor/UIEnumsDatabase.h rename to Code/Editor/UIEnumsDatabase.h diff --git a/Code/Sandbox/Editor/Undo/IUndoManagerListener.h b/Code/Editor/Undo/IUndoManagerListener.h similarity index 100% rename from Code/Sandbox/Editor/Undo/IUndoManagerListener.h rename to Code/Editor/Undo/IUndoManagerListener.h diff --git a/Code/Sandbox/Editor/Undo/IUndoObject.h b/Code/Editor/Undo/IUndoObject.h similarity index 100% rename from Code/Sandbox/Editor/Undo/IUndoObject.h rename to Code/Editor/Undo/IUndoObject.h diff --git a/Code/Sandbox/Editor/Undo/Undo.cpp b/Code/Editor/Undo/Undo.cpp similarity index 100% rename from Code/Sandbox/Editor/Undo/Undo.cpp rename to Code/Editor/Undo/Undo.cpp diff --git a/Code/Sandbox/Editor/Undo/Undo.h b/Code/Editor/Undo/Undo.h similarity index 100% rename from Code/Sandbox/Editor/Undo/Undo.h rename to Code/Editor/Undo/Undo.h diff --git a/Code/Sandbox/Editor/Undo/UndoVariableChange.h b/Code/Editor/Undo/UndoVariableChange.h similarity index 100% rename from Code/Sandbox/Editor/Undo/UndoVariableChange.h rename to Code/Editor/Undo/UndoVariableChange.h diff --git a/Code/Sandbox/Editor/UndoConfigSpec.cpp b/Code/Editor/UndoConfigSpec.cpp similarity index 100% rename from Code/Sandbox/Editor/UndoConfigSpec.cpp rename to Code/Editor/UndoConfigSpec.cpp diff --git a/Code/Sandbox/Editor/UndoConfigSpec.h b/Code/Editor/UndoConfigSpec.h similarity index 100% rename from Code/Sandbox/Editor/UndoConfigSpec.h rename to Code/Editor/UndoConfigSpec.h diff --git a/Code/Sandbox/Editor/UndoDropDown.cpp b/Code/Editor/UndoDropDown.cpp similarity index 100% rename from Code/Sandbox/Editor/UndoDropDown.cpp rename to Code/Editor/UndoDropDown.cpp diff --git a/Code/Sandbox/Editor/UndoDropDown.h b/Code/Editor/UndoDropDown.h similarity index 100% rename from Code/Sandbox/Editor/UndoDropDown.h rename to Code/Editor/UndoDropDown.h diff --git a/Code/Sandbox/Editor/UndoViewPosition.cpp b/Code/Editor/UndoViewPosition.cpp similarity index 100% rename from Code/Sandbox/Editor/UndoViewPosition.cpp rename to Code/Editor/UndoViewPosition.cpp diff --git a/Code/Sandbox/Editor/UndoViewPosition.h b/Code/Editor/UndoViewPosition.h similarity index 100% rename from Code/Sandbox/Editor/UndoViewPosition.h rename to Code/Editor/UndoViewPosition.h diff --git a/Code/Sandbox/Editor/UndoViewRotation.cpp b/Code/Editor/UndoViewRotation.cpp similarity index 100% rename from Code/Sandbox/Editor/UndoViewRotation.cpp rename to Code/Editor/UndoViewRotation.cpp diff --git a/Code/Sandbox/Editor/UndoViewRotation.h b/Code/Editor/UndoViewRotation.h similarity index 100% rename from Code/Sandbox/Editor/UndoViewRotation.h rename to Code/Editor/UndoViewRotation.h diff --git a/Code/Sandbox/Editor/UsedResources.cpp b/Code/Editor/UsedResources.cpp similarity index 100% rename from Code/Sandbox/Editor/UsedResources.cpp rename to Code/Editor/UsedResources.cpp diff --git a/Code/Sandbox/Editor/UsedResources.h b/Code/Editor/UsedResources.h similarity index 100% rename from Code/Sandbox/Editor/UsedResources.h rename to Code/Editor/UsedResources.h diff --git a/Code/Sandbox/Editor/UserMessageDefines.h b/Code/Editor/UserMessageDefines.h similarity index 100% rename from Code/Sandbox/Editor/UserMessageDefines.h rename to Code/Editor/UserMessageDefines.h diff --git a/Code/Sandbox/Editor/Util/3DConnexionDriver.cpp b/Code/Editor/Util/3DConnexionDriver.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/3DConnexionDriver.cpp rename to Code/Editor/Util/3DConnexionDriver.cpp diff --git a/Code/Sandbox/Editor/Util/3DConnexionDriver.h b/Code/Editor/Util/3DConnexionDriver.h similarity index 100% rename from Code/Sandbox/Editor/Util/3DConnexionDriver.h rename to Code/Editor/Util/3DConnexionDriver.h diff --git a/Code/Sandbox/Editor/Util/AbstractGroupProxyModel.cpp b/Code/Editor/Util/AbstractGroupProxyModel.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/AbstractGroupProxyModel.cpp rename to Code/Editor/Util/AbstractGroupProxyModel.cpp diff --git a/Code/Sandbox/Editor/Util/AbstractGroupProxyModel.h b/Code/Editor/Util/AbstractGroupProxyModel.h similarity index 100% rename from Code/Sandbox/Editor/Util/AbstractGroupProxyModel.h rename to Code/Editor/Util/AbstractGroupProxyModel.h diff --git a/Code/Sandbox/Editor/Util/AbstractSortModel.cpp b/Code/Editor/Util/AbstractSortModel.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/AbstractSortModel.cpp rename to Code/Editor/Util/AbstractSortModel.cpp diff --git a/Code/Sandbox/Editor/Util/AbstractSortModel.h b/Code/Editor/Util/AbstractSortModel.h similarity index 100% rename from Code/Sandbox/Editor/Util/AbstractSortModel.h rename to Code/Editor/Util/AbstractSortModel.h diff --git a/Code/Sandbox/Editor/Util/AffineParts.cpp b/Code/Editor/Util/AffineParts.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/AffineParts.cpp rename to Code/Editor/Util/AffineParts.cpp diff --git a/Code/Sandbox/Editor/Util/AffineParts.h b/Code/Editor/Util/AffineParts.h similarity index 100% rename from Code/Sandbox/Editor/Util/AffineParts.h rename to Code/Editor/Util/AffineParts.h diff --git a/Code/Sandbox/Editor/Util/AutoDirectoryRestoreFileDialog.cpp b/Code/Editor/Util/AutoDirectoryRestoreFileDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/AutoDirectoryRestoreFileDialog.cpp rename to Code/Editor/Util/AutoDirectoryRestoreFileDialog.cpp diff --git a/Code/Sandbox/Editor/Util/AutoDirectoryRestoreFileDialog.h b/Code/Editor/Util/AutoDirectoryRestoreFileDialog.h similarity index 100% rename from Code/Sandbox/Editor/Util/AutoDirectoryRestoreFileDialog.h rename to Code/Editor/Util/AutoDirectoryRestoreFileDialog.h diff --git a/Code/Sandbox/Editor/Util/AutoLogTime.cpp b/Code/Editor/Util/AutoLogTime.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/AutoLogTime.cpp rename to Code/Editor/Util/AutoLogTime.cpp diff --git a/Code/Sandbox/Editor/Util/AutoLogTime.h b/Code/Editor/Util/AutoLogTime.h similarity index 100% rename from Code/Sandbox/Editor/Util/AutoLogTime.h rename to Code/Editor/Util/AutoLogTime.h diff --git a/Code/Sandbox/Editor/Util/ColorUtils.cpp b/Code/Editor/Util/ColorUtils.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ColorUtils.cpp rename to Code/Editor/Util/ColorUtils.cpp diff --git a/Code/Sandbox/Editor/Util/ColorUtils.h b/Code/Editor/Util/ColorUtils.h similarity index 100% rename from Code/Sandbox/Editor/Util/ColorUtils.h rename to Code/Editor/Util/ColorUtils.h diff --git a/Code/Sandbox/Editor/Util/ColumnGroupHeaderView.cpp b/Code/Editor/Util/ColumnGroupHeaderView.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupHeaderView.cpp rename to Code/Editor/Util/ColumnGroupHeaderView.cpp diff --git a/Code/Sandbox/Editor/Util/ColumnGroupHeaderView.h b/Code/Editor/Util/ColumnGroupHeaderView.h similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupHeaderView.h rename to Code/Editor/Util/ColumnGroupHeaderView.h diff --git a/Code/Sandbox/Editor/Util/ColumnGroupItemDelegate.cpp b/Code/Editor/Util/ColumnGroupItemDelegate.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupItemDelegate.cpp rename to Code/Editor/Util/ColumnGroupItemDelegate.cpp diff --git a/Code/Sandbox/Editor/Util/ColumnGroupItemDelegate.h b/Code/Editor/Util/ColumnGroupItemDelegate.h similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupItemDelegate.h rename to Code/Editor/Util/ColumnGroupItemDelegate.h diff --git a/Code/Sandbox/Editor/Util/ColumnGroupProxyModel.cpp b/Code/Editor/Util/ColumnGroupProxyModel.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupProxyModel.cpp rename to Code/Editor/Util/ColumnGroupProxyModel.cpp diff --git a/Code/Sandbox/Editor/Util/ColumnGroupProxyModel.h b/Code/Editor/Util/ColumnGroupProxyModel.h similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupProxyModel.h rename to Code/Editor/Util/ColumnGroupProxyModel.h diff --git a/Code/Sandbox/Editor/Util/ColumnGroupTreeView.cpp b/Code/Editor/Util/ColumnGroupTreeView.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupTreeView.cpp rename to Code/Editor/Util/ColumnGroupTreeView.cpp diff --git a/Code/Sandbox/Editor/Util/ColumnGroupTreeView.h b/Code/Editor/Util/ColumnGroupTreeView.h similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnGroupTreeView.h rename to Code/Editor/Util/ColumnGroupTreeView.h diff --git a/Code/Sandbox/Editor/Util/ColumnSortProxyModel.cpp b/Code/Editor/Util/ColumnSortProxyModel.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnSortProxyModel.cpp rename to Code/Editor/Util/ColumnSortProxyModel.cpp diff --git a/Code/Sandbox/Editor/Util/ColumnSortProxyModel.h b/Code/Editor/Util/ColumnSortProxyModel.h similarity index 100% rename from Code/Sandbox/Editor/Util/ColumnSortProxyModel.h rename to Code/Editor/Util/ColumnSortProxyModel.h diff --git a/Code/Sandbox/Editor/Util/Contrib/NvFloatMath.inl b/Code/Editor/Util/Contrib/NvFloatMath.inl similarity index 100% rename from Code/Sandbox/Editor/Util/Contrib/NvFloatMath.inl rename to Code/Editor/Util/Contrib/NvFloatMath.inl diff --git a/Code/Sandbox/Editor/Util/CryMemFile.h b/Code/Editor/Util/CryMemFile.h similarity index 100% rename from Code/Sandbox/Editor/Util/CryMemFile.h rename to Code/Editor/Util/CryMemFile.h diff --git a/Code/Sandbox/Editor/Util/DynamicArray2D.cpp b/Code/Editor/Util/DynamicArray2D.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/DynamicArray2D.cpp rename to Code/Editor/Util/DynamicArray2D.cpp diff --git a/Code/Sandbox/Editor/Util/DynamicArray2D.h b/Code/Editor/Util/DynamicArray2D.h similarity index 100% rename from Code/Sandbox/Editor/Util/DynamicArray2D.h rename to Code/Editor/Util/DynamicArray2D.h diff --git a/Code/Sandbox/Editor/Util/EditorAutoLevelLoadTest.cpp b/Code/Editor/Util/EditorAutoLevelLoadTest.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/EditorAutoLevelLoadTest.cpp rename to Code/Editor/Util/EditorAutoLevelLoadTest.cpp diff --git a/Code/Sandbox/Editor/Util/EditorAutoLevelLoadTest.h b/Code/Editor/Util/EditorAutoLevelLoadTest.h similarity index 100% rename from Code/Sandbox/Editor/Util/EditorAutoLevelLoadTest.h rename to Code/Editor/Util/EditorAutoLevelLoadTest.h diff --git a/Code/Sandbox/Editor/Util/EditorUtils.cpp b/Code/Editor/Util/EditorUtils.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/EditorUtils.cpp rename to Code/Editor/Util/EditorUtils.cpp diff --git a/Code/Sandbox/Editor/Util/EditorUtils.h b/Code/Editor/Util/EditorUtils.h similarity index 100% rename from Code/Sandbox/Editor/Util/EditorUtils.h rename to Code/Editor/Util/EditorUtils.h diff --git a/Code/Sandbox/Editor/Util/FileChangeMonitor.cpp b/Code/Editor/Util/FileChangeMonitor.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/FileChangeMonitor.cpp rename to Code/Editor/Util/FileChangeMonitor.cpp diff --git a/Code/Sandbox/Editor/Util/FileChangeMonitor.h b/Code/Editor/Util/FileChangeMonitor.h similarity index 100% rename from Code/Sandbox/Editor/Util/FileChangeMonitor.h rename to Code/Editor/Util/FileChangeMonitor.h diff --git a/Code/Sandbox/Editor/Util/FileEnum.cpp b/Code/Editor/Util/FileEnum.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/FileEnum.cpp rename to Code/Editor/Util/FileEnum.cpp diff --git a/Code/Sandbox/Editor/Util/FileEnum.h b/Code/Editor/Util/FileEnum.h similarity index 100% rename from Code/Sandbox/Editor/Util/FileEnum.h rename to Code/Editor/Util/FileEnum.h diff --git a/Code/Sandbox/Editor/Util/FileUtil.cpp b/Code/Editor/Util/FileUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/FileUtil.cpp rename to Code/Editor/Util/FileUtil.cpp diff --git a/Code/Sandbox/Editor/Util/FileUtil.h b/Code/Editor/Util/FileUtil.h similarity index 100% rename from Code/Sandbox/Editor/Util/FileUtil.h rename to Code/Editor/Util/FileUtil.h diff --git a/Code/Sandbox/Editor/Util/FileUtil_impl.cpp b/Code/Editor/Util/FileUtil_impl.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/FileUtil_impl.cpp rename to Code/Editor/Util/FileUtil_impl.cpp diff --git a/Code/Sandbox/Editor/Util/FileUtil_impl.h b/Code/Editor/Util/FileUtil_impl.h similarity index 100% rename from Code/Sandbox/Editor/Util/FileUtil_impl.h rename to Code/Editor/Util/FileUtil_impl.h diff --git a/Code/Sandbox/Editor/Util/GdiUtil.cpp b/Code/Editor/Util/GdiUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/GdiUtil.cpp rename to Code/Editor/Util/GdiUtil.cpp diff --git a/Code/Sandbox/Editor/Util/GdiUtil.h b/Code/Editor/Util/GdiUtil.h similarity index 100% rename from Code/Sandbox/Editor/Util/GdiUtil.h rename to Code/Editor/Util/GdiUtil.h diff --git a/Code/Sandbox/Editor/Util/GeometryUtil.cpp b/Code/Editor/Util/GeometryUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/GeometryUtil.cpp rename to Code/Editor/Util/GeometryUtil.cpp diff --git a/Code/Sandbox/Editor/Util/GeometryUtil.h b/Code/Editor/Util/GeometryUtil.h similarity index 100% rename from Code/Sandbox/Editor/Util/GeometryUtil.h rename to Code/Editor/Util/GeometryUtil.h diff --git a/Code/Sandbox/Editor/Util/GuidUtil.cpp b/Code/Editor/Util/GuidUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/GuidUtil.cpp rename to Code/Editor/Util/GuidUtil.cpp diff --git a/Code/Sandbox/Editor/Util/GuidUtil.h b/Code/Editor/Util/GuidUtil.h similarity index 100% rename from Code/Sandbox/Editor/Util/GuidUtil.h rename to Code/Editor/Util/GuidUtil.h diff --git a/Code/Sandbox/Editor/Util/IObservable.h b/Code/Editor/Util/IObservable.h similarity index 100% rename from Code/Sandbox/Editor/Util/IObservable.h rename to Code/Editor/Util/IObservable.h diff --git a/Code/Sandbox/Editor/Util/IXmlHistoryManager.h b/Code/Editor/Util/IXmlHistoryManager.h similarity index 100% rename from Code/Sandbox/Editor/Util/IXmlHistoryManager.h rename to Code/Editor/Util/IXmlHistoryManager.h diff --git a/Code/Sandbox/Editor/Util/Image.cpp b/Code/Editor/Util/Image.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/Image.cpp rename to Code/Editor/Util/Image.cpp diff --git a/Code/Sandbox/Editor/Util/Image.h b/Code/Editor/Util/Image.h similarity index 100% rename from Code/Sandbox/Editor/Util/Image.h rename to Code/Editor/Util/Image.h diff --git a/Code/Sandbox/Editor/Util/ImageASC.cpp b/Code/Editor/Util/ImageASC.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImageASC.cpp rename to Code/Editor/Util/ImageASC.cpp diff --git a/Code/Sandbox/Editor/Util/ImageASC.h b/Code/Editor/Util/ImageASC.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImageASC.h rename to Code/Editor/Util/ImageASC.h diff --git a/Code/Sandbox/Editor/Util/ImageBT.cpp b/Code/Editor/Util/ImageBT.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImageBT.cpp rename to Code/Editor/Util/ImageBT.cpp diff --git a/Code/Sandbox/Editor/Util/ImageBT.h b/Code/Editor/Util/ImageBT.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImageBT.h rename to Code/Editor/Util/ImageBT.h diff --git a/Code/Sandbox/Editor/Util/ImageGif.cpp b/Code/Editor/Util/ImageGif.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImageGif.cpp rename to Code/Editor/Util/ImageGif.cpp diff --git a/Code/Sandbox/Editor/Util/ImageGif.h b/Code/Editor/Util/ImageGif.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImageGif.h rename to Code/Editor/Util/ImageGif.h diff --git a/Code/Sandbox/Editor/Util/ImageHistogram.cpp b/Code/Editor/Util/ImageHistogram.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImageHistogram.cpp rename to Code/Editor/Util/ImageHistogram.cpp diff --git a/Code/Sandbox/Editor/Util/ImageHistogram.h b/Code/Editor/Util/ImageHistogram.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImageHistogram.h rename to Code/Editor/Util/ImageHistogram.h diff --git a/Code/Sandbox/Editor/Util/ImagePainter.cpp b/Code/Editor/Util/ImagePainter.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImagePainter.cpp rename to Code/Editor/Util/ImagePainter.cpp diff --git a/Code/Sandbox/Editor/Util/ImagePainter.h b/Code/Editor/Util/ImagePainter.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImagePainter.h rename to Code/Editor/Util/ImagePainter.h diff --git a/Code/Sandbox/Editor/Util/ImageTIF.cpp b/Code/Editor/Util/ImageTIF.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImageTIF.cpp rename to Code/Editor/Util/ImageTIF.cpp diff --git a/Code/Sandbox/Editor/Util/ImageTIF.h b/Code/Editor/Util/ImageTIF.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImageTIF.h rename to Code/Editor/Util/ImageTIF.h diff --git a/Code/Sandbox/Editor/Util/ImageUtil.cpp b/Code/Editor/Util/ImageUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImageUtil.cpp rename to Code/Editor/Util/ImageUtil.cpp diff --git a/Code/Sandbox/Editor/Util/ImageUtil.h b/Code/Editor/Util/ImageUtil.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImageUtil.h rename to Code/Editor/Util/ImageUtil.h diff --git a/Code/Sandbox/Editor/Util/ImageUtil_impl.cpp b/Code/Editor/Util/ImageUtil_impl.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ImageUtil_impl.cpp rename to Code/Editor/Util/ImageUtil_impl.cpp diff --git a/Code/Sandbox/Editor/Util/ImageUtil_impl.h b/Code/Editor/Util/ImageUtil_impl.h similarity index 100% rename from Code/Sandbox/Editor/Util/ImageUtil_impl.h rename to Code/Editor/Util/ImageUtil_impl.h diff --git a/Code/Sandbox/Editor/Util/IndexedFiles.cpp b/Code/Editor/Util/IndexedFiles.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/IndexedFiles.cpp rename to Code/Editor/Util/IndexedFiles.cpp diff --git a/Code/Sandbox/Editor/Util/IndexedFiles.h b/Code/Editor/Util/IndexedFiles.h similarity index 100% rename from Code/Sandbox/Editor/Util/IndexedFiles.h rename to Code/Editor/Util/IndexedFiles.h diff --git a/Code/Sandbox/Editor/Util/KDTree.cpp b/Code/Editor/Util/KDTree.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/KDTree.cpp rename to Code/Editor/Util/KDTree.cpp diff --git a/Code/Sandbox/Editor/Util/KDTree.h b/Code/Editor/Util/KDTree.h similarity index 100% rename from Code/Sandbox/Editor/Util/KDTree.h rename to Code/Editor/Util/KDTree.h diff --git a/Code/Sandbox/Editor/Util/Mailer.h b/Code/Editor/Util/Mailer.h similarity index 100% rename from Code/Sandbox/Editor/Util/Mailer.h rename to Code/Editor/Util/Mailer.h diff --git a/Code/Sandbox/Editor/Util/Math.h b/Code/Editor/Util/Math.h similarity index 100% rename from Code/Sandbox/Editor/Util/Math.h rename to Code/Editor/Util/Math.h diff --git a/Code/Sandbox/Editor/Util/MemoryBlock.cpp b/Code/Editor/Util/MemoryBlock.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/MemoryBlock.cpp rename to Code/Editor/Util/MemoryBlock.cpp diff --git a/Code/Sandbox/Editor/Util/MemoryBlock.h b/Code/Editor/Util/MemoryBlock.h similarity index 100% rename from Code/Sandbox/Editor/Util/MemoryBlock.h rename to Code/Editor/Util/MemoryBlock.h diff --git a/Code/Sandbox/Editor/Util/ModalWindowDismisser.cpp b/Code/Editor/Util/ModalWindowDismisser.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/ModalWindowDismisser.cpp rename to Code/Editor/Util/ModalWindowDismisser.cpp diff --git a/Code/Sandbox/Editor/Util/ModalWindowDismisser.h b/Code/Editor/Util/ModalWindowDismisser.h similarity index 100% rename from Code/Sandbox/Editor/Util/ModalWindowDismisser.h rename to Code/Editor/Util/ModalWindowDismisser.h diff --git a/Code/Sandbox/Editor/Util/NamedData.cpp b/Code/Editor/Util/NamedData.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/NamedData.cpp rename to Code/Editor/Util/NamedData.cpp diff --git a/Code/Sandbox/Editor/Util/NamedData.h b/Code/Editor/Util/NamedData.h similarity index 100% rename from Code/Sandbox/Editor/Util/NamedData.h rename to Code/Editor/Util/NamedData.h diff --git a/Code/Sandbox/Editor/Util/Observable.h b/Code/Editor/Util/Observable.h similarity index 100% rename from Code/Sandbox/Editor/Util/Observable.h rename to Code/Editor/Util/Observable.h diff --git a/Code/Sandbox/Editor/Util/PakFile.cpp b/Code/Editor/Util/PakFile.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/PakFile.cpp rename to Code/Editor/Util/PakFile.cpp diff --git a/Code/Sandbox/Editor/Util/PakFile.h b/Code/Editor/Util/PakFile.h similarity index 100% rename from Code/Sandbox/Editor/Util/PakFile.h rename to Code/Editor/Util/PakFile.h diff --git a/Code/Sandbox/Editor/Util/PathUtil.cpp b/Code/Editor/Util/PathUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/PathUtil.cpp rename to Code/Editor/Util/PathUtil.cpp diff --git a/Code/Sandbox/Editor/Util/PathUtil.h b/Code/Editor/Util/PathUtil.h similarity index 100% rename from Code/Sandbox/Editor/Util/PathUtil.h rename to Code/Editor/Util/PathUtil.h diff --git a/Code/Sandbox/Editor/Util/PredefinedAspectRatios.cpp b/Code/Editor/Util/PredefinedAspectRatios.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/PredefinedAspectRatios.cpp rename to Code/Editor/Util/PredefinedAspectRatios.cpp diff --git a/Code/Sandbox/Editor/Util/PredefinedAspectRatios.h b/Code/Editor/Util/PredefinedAspectRatios.h similarity index 100% rename from Code/Sandbox/Editor/Util/PredefinedAspectRatios.h rename to Code/Editor/Util/PredefinedAspectRatios.h diff --git a/Code/Sandbox/Editor/Util/RefCountBase.h b/Code/Editor/Util/RefCountBase.h similarity index 100% rename from Code/Sandbox/Editor/Util/RefCountBase.h rename to Code/Editor/Util/RefCountBase.h diff --git a/Code/Sandbox/Editor/Util/StringHelpers.cpp b/Code/Editor/Util/StringHelpers.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/StringHelpers.cpp rename to Code/Editor/Util/StringHelpers.cpp diff --git a/Code/Sandbox/Editor/Util/StringHelpers.h b/Code/Editor/Util/StringHelpers.h similarity index 100% rename from Code/Sandbox/Editor/Util/StringHelpers.h rename to Code/Editor/Util/StringHelpers.h diff --git a/Code/Sandbox/Editor/Util/StringNoCasePredicate.h b/Code/Editor/Util/StringNoCasePredicate.h similarity index 100% rename from Code/Sandbox/Editor/Util/StringNoCasePredicate.h rename to Code/Editor/Util/StringNoCasePredicate.h diff --git a/Code/Sandbox/Editor/Util/TRefCountBase.h b/Code/Editor/Util/TRefCountBase.h similarity index 100% rename from Code/Sandbox/Editor/Util/TRefCountBase.h rename to Code/Editor/Util/TRefCountBase.h diff --git a/Code/Sandbox/Editor/Util/Triangulate.cpp b/Code/Editor/Util/Triangulate.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/Triangulate.cpp rename to Code/Editor/Util/Triangulate.cpp diff --git a/Code/Sandbox/Editor/Util/Triangulate.h b/Code/Editor/Util/Triangulate.h similarity index 100% rename from Code/Sandbox/Editor/Util/Triangulate.h rename to Code/Editor/Util/Triangulate.h diff --git a/Code/Sandbox/Editor/Util/UIEnumerations.cpp b/Code/Editor/Util/UIEnumerations.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/UIEnumerations.cpp rename to Code/Editor/Util/UIEnumerations.cpp diff --git a/Code/Sandbox/Editor/Util/UIEnumerations.h b/Code/Editor/Util/UIEnumerations.h similarity index 100% rename from Code/Sandbox/Editor/Util/UIEnumerations.h rename to Code/Editor/Util/UIEnumerations.h diff --git a/Code/Sandbox/Editor/Util/UndoUtil.cpp b/Code/Editor/Util/UndoUtil.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/UndoUtil.cpp rename to Code/Editor/Util/UndoUtil.cpp diff --git a/Code/Sandbox/Editor/Util/UndoUtil.h b/Code/Editor/Util/UndoUtil.h similarity index 100% rename from Code/Sandbox/Editor/Util/UndoUtil.h rename to Code/Editor/Util/UndoUtil.h diff --git a/Code/Sandbox/Editor/Util/Util.h b/Code/Editor/Util/Util.h similarity index 100% rename from Code/Sandbox/Editor/Util/Util.h rename to Code/Editor/Util/Util.h diff --git a/Code/Sandbox/Editor/Util/Variable.cpp b/Code/Editor/Util/Variable.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/Variable.cpp rename to Code/Editor/Util/Variable.cpp diff --git a/Code/Sandbox/Editor/Util/Variable.h b/Code/Editor/Util/Variable.h similarity index 100% rename from Code/Sandbox/Editor/Util/Variable.h rename to Code/Editor/Util/Variable.h diff --git a/Code/Sandbox/Editor/Util/VariablePropertyType.cpp b/Code/Editor/Util/VariablePropertyType.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/VariablePropertyType.cpp rename to Code/Editor/Util/VariablePropertyType.cpp diff --git a/Code/Sandbox/Editor/Util/VariablePropertyType.h b/Code/Editor/Util/VariablePropertyType.h similarity index 100% rename from Code/Sandbox/Editor/Util/VariablePropertyType.h rename to Code/Editor/Util/VariablePropertyType.h diff --git a/Code/Sandbox/Editor/Util/XmlArchive.cpp b/Code/Editor/Util/XmlArchive.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/XmlArchive.cpp rename to Code/Editor/Util/XmlArchive.cpp diff --git a/Code/Sandbox/Editor/Util/XmlArchive.h b/Code/Editor/Util/XmlArchive.h similarity index 100% rename from Code/Sandbox/Editor/Util/XmlArchive.h rename to Code/Editor/Util/XmlArchive.h diff --git a/Code/Sandbox/Editor/Util/XmlHistoryManager.cpp b/Code/Editor/Util/XmlHistoryManager.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/XmlHistoryManager.cpp rename to Code/Editor/Util/XmlHistoryManager.cpp diff --git a/Code/Sandbox/Editor/Util/XmlHistoryManager.h b/Code/Editor/Util/XmlHistoryManager.h similarity index 100% rename from Code/Sandbox/Editor/Util/XmlHistoryManager.h rename to Code/Editor/Util/XmlHistoryManager.h diff --git a/Code/Sandbox/Editor/Util/XmlTemplate.cpp b/Code/Editor/Util/XmlTemplate.cpp similarity index 100% rename from Code/Sandbox/Editor/Util/XmlTemplate.cpp rename to Code/Editor/Util/XmlTemplate.cpp diff --git a/Code/Sandbox/Editor/Util/XmlTemplate.h b/Code/Editor/Util/XmlTemplate.h similarity index 100% rename from Code/Sandbox/Editor/Util/XmlTemplate.h rename to Code/Editor/Util/XmlTemplate.h diff --git a/Code/Sandbox/Editor/Util/bitarray.h b/Code/Editor/Util/bitarray.h similarity index 100% rename from Code/Sandbox/Editor/Util/bitarray.h rename to Code/Editor/Util/bitarray.h diff --git a/Code/Sandbox/Editor/Util/fastlib.h b/Code/Editor/Util/fastlib.h similarity index 100% rename from Code/Sandbox/Editor/Util/fastlib.h rename to Code/Editor/Util/fastlib.h diff --git a/Code/Sandbox/Editor/Util/smartptr.h b/Code/Editor/Util/smartptr.h similarity index 100% rename from Code/Sandbox/Editor/Util/smartptr.h rename to Code/Editor/Util/smartptr.h diff --git a/Code/Sandbox/Editor/ViewManager.cpp b/Code/Editor/ViewManager.cpp similarity index 100% rename from Code/Sandbox/Editor/ViewManager.cpp rename to Code/Editor/ViewManager.cpp diff --git a/Code/Sandbox/Editor/ViewManager.h b/Code/Editor/ViewManager.h similarity index 100% rename from Code/Sandbox/Editor/ViewManager.h rename to Code/Editor/ViewManager.h diff --git a/Code/Sandbox/Editor/ViewPane.cpp b/Code/Editor/ViewPane.cpp similarity index 100% rename from Code/Sandbox/Editor/ViewPane.cpp rename to Code/Editor/ViewPane.cpp diff --git a/Code/Sandbox/Editor/ViewPane.h b/Code/Editor/ViewPane.h similarity index 100% rename from Code/Sandbox/Editor/ViewPane.h rename to Code/Editor/ViewPane.h diff --git a/Code/Sandbox/Editor/Viewport.cpp b/Code/Editor/Viewport.cpp similarity index 100% rename from Code/Sandbox/Editor/Viewport.cpp rename to Code/Editor/Viewport.cpp diff --git a/Code/Sandbox/Editor/Viewport.h b/Code/Editor/Viewport.h similarity index 100% rename from Code/Sandbox/Editor/Viewport.h rename to Code/Editor/Viewport.h diff --git a/Code/Sandbox/Editor/ViewportManipulatorController.cpp b/Code/Editor/ViewportManipulatorController.cpp similarity index 100% rename from Code/Sandbox/Editor/ViewportManipulatorController.cpp rename to Code/Editor/ViewportManipulatorController.cpp diff --git a/Code/Sandbox/Editor/ViewportManipulatorController.h b/Code/Editor/ViewportManipulatorController.h similarity index 100% rename from Code/Sandbox/Editor/ViewportManipulatorController.h rename to Code/Editor/ViewportManipulatorController.h diff --git a/Code/Sandbox/Editor/ViewportTitleDlg.cpp b/Code/Editor/ViewportTitleDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/ViewportTitleDlg.cpp rename to Code/Editor/ViewportTitleDlg.cpp diff --git a/Code/Sandbox/Editor/ViewportTitleDlg.h b/Code/Editor/ViewportTitleDlg.h similarity index 100% rename from Code/Sandbox/Editor/ViewportTitleDlg.h rename to Code/Editor/ViewportTitleDlg.h diff --git a/Code/Sandbox/Editor/ViewportTitleDlg.ui b/Code/Editor/ViewportTitleDlg.ui similarity index 100% rename from Code/Sandbox/Editor/ViewportTitleDlg.ui rename to Code/Editor/ViewportTitleDlg.ui diff --git a/Code/Sandbox/Editor/WaitProgress.cpp b/Code/Editor/WaitProgress.cpp similarity index 100% rename from Code/Sandbox/Editor/WaitProgress.cpp rename to Code/Editor/WaitProgress.cpp diff --git a/Code/Sandbox/Editor/WaitProgress.h b/Code/Editor/WaitProgress.h similarity index 100% rename from Code/Sandbox/Editor/WaitProgress.h rename to Code/Editor/WaitProgress.h diff --git a/Code/Sandbox/Editor/WelcomeScreen/DefaultActiveProject.png b/Code/Editor/WelcomeScreen/DefaultActiveProject.png similarity index 100% rename from Code/Sandbox/Editor/WelcomeScreen/DefaultActiveProject.png rename to Code/Editor/WelcomeScreen/DefaultActiveProject.png diff --git a/Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.cpp b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp similarity index 100% rename from Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.cpp rename to Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp diff --git a/Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.h b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.h similarity index 100% rename from Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.h rename to Code/Editor/WelcomeScreen/WelcomeScreenDialog.h diff --git a/Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.qrc b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.qrc similarity index 100% rename from Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.qrc rename to Code/Editor/WelcomeScreen/WelcomeScreenDialog.qrc diff --git a/Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.ui b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.ui similarity index 100% rename from Code/Sandbox/Editor/WelcomeScreen/WelcomeScreenDialog.ui rename to Code/Editor/WelcomeScreen/WelcomeScreenDialog.ui diff --git a/Code/Sandbox/Editor/WinWidgetId.h b/Code/Editor/WinWidgetId.h similarity index 100% rename from Code/Sandbox/Editor/WinWidgetId.h rename to Code/Editor/WinWidgetId.h diff --git a/Code/Sandbox/Editor/WindowObserver_mac.h b/Code/Editor/WindowObserver_mac.h similarity index 100% rename from Code/Sandbox/Editor/WindowObserver_mac.h rename to Code/Editor/WindowObserver_mac.h diff --git a/Code/Sandbox/Editor/WindowObserver_mac.mm b/Code/Editor/WindowObserver_mac.mm similarity index 100% rename from Code/Sandbox/Editor/WindowObserver_mac.mm rename to Code/Editor/WindowObserver_mac.mm diff --git a/Code/Sandbox/Editor/WipFeatureManager.cpp b/Code/Editor/WipFeatureManager.cpp similarity index 100% rename from Code/Sandbox/Editor/WipFeatureManager.cpp rename to Code/Editor/WipFeatureManager.cpp diff --git a/Code/Sandbox/Editor/WipFeatureManager.h b/Code/Editor/WipFeatureManager.h similarity index 100% rename from Code/Sandbox/Editor/WipFeatureManager.h rename to Code/Editor/WipFeatureManager.h diff --git a/Code/Sandbox/Editor/WipFeaturesDlg.cpp b/Code/Editor/WipFeaturesDlg.cpp similarity index 100% rename from Code/Sandbox/Editor/WipFeaturesDlg.cpp rename to Code/Editor/WipFeaturesDlg.cpp diff --git a/Code/Sandbox/Editor/WipFeaturesDlg.h b/Code/Editor/WipFeaturesDlg.h similarity index 100% rename from Code/Sandbox/Editor/WipFeaturesDlg.h rename to Code/Editor/WipFeaturesDlg.h diff --git a/Code/Sandbox/Editor/WipFeaturesDlg.qrc b/Code/Editor/WipFeaturesDlg.qrc similarity index 100% rename from Code/Sandbox/Editor/WipFeaturesDlg.qrc rename to Code/Editor/WipFeaturesDlg.qrc diff --git a/Code/Sandbox/Editor/WipFeaturesDlg.ui b/Code/Editor/WipFeaturesDlg.ui similarity index 100% rename from Code/Sandbox/Editor/WipFeaturesDlg.ui rename to Code/Editor/WipFeaturesDlg.ui diff --git a/Code/Sandbox/Editor/arhitype_tree_00.png b/Code/Editor/arhitype_tree_00.png similarity index 100% rename from Code/Sandbox/Editor/arhitype_tree_00.png rename to Code/Editor/arhitype_tree_00.png diff --git a/Code/Sandbox/Editor/arhitype_tree_01.png b/Code/Editor/arhitype_tree_01.png similarity index 100% rename from Code/Sandbox/Editor/arhitype_tree_01.png rename to Code/Editor/arhitype_tree_01.png diff --git a/Code/Sandbox/Editor/arhitype_tree_02.png b/Code/Editor/arhitype_tree_02.png similarity index 100% rename from Code/Sandbox/Editor/arhitype_tree_02.png rename to Code/Editor/arhitype_tree_02.png diff --git a/Code/Sandbox/Editor/arhitype_tree_03.png b/Code/Editor/arhitype_tree_03.png similarity index 100% rename from Code/Sandbox/Editor/arhitype_tree_03.png rename to Code/Editor/arhitype_tree_03.png diff --git a/Code/Sandbox/Editor/bmp00005_00.png b/Code/Editor/bmp00005_00.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_00.png rename to Code/Editor/bmp00005_00.png diff --git a/Code/Sandbox/Editor/bmp00005_01.png b/Code/Editor/bmp00005_01.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_01.png rename to Code/Editor/bmp00005_01.png diff --git a/Code/Sandbox/Editor/bmp00005_02.png b/Code/Editor/bmp00005_02.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_02.png rename to Code/Editor/bmp00005_02.png diff --git a/Code/Sandbox/Editor/bmp00005_03.png b/Code/Editor/bmp00005_03.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_03.png rename to Code/Editor/bmp00005_03.png diff --git a/Code/Sandbox/Editor/bmp00005_04.png b/Code/Editor/bmp00005_04.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_04.png rename to Code/Editor/bmp00005_04.png diff --git a/Code/Sandbox/Editor/bmp00005_05.png b/Code/Editor/bmp00005_05.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_05.png rename to Code/Editor/bmp00005_05.png diff --git a/Code/Sandbox/Editor/bmp00005_06.png b/Code/Editor/bmp00005_06.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_06.png rename to Code/Editor/bmp00005_06.png diff --git a/Code/Sandbox/Editor/bmp00005_07.png b/Code/Editor/bmp00005_07.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_07.png rename to Code/Editor/bmp00005_07.png diff --git a/Code/Sandbox/Editor/bmp00005_08.png b/Code/Editor/bmp00005_08.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_08.png rename to Code/Editor/bmp00005_08.png diff --git a/Code/Sandbox/Editor/bmp00005_09.png b/Code/Editor/bmp00005_09.png similarity index 100% rename from Code/Sandbox/Editor/bmp00005_09.png rename to Code/Editor/bmp00005_09.png diff --git a/Code/Sandbox/Editor/bmp00006_00.png b/Code/Editor/bmp00006_00.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_00.png rename to Code/Editor/bmp00006_00.png diff --git a/Code/Sandbox/Editor/bmp00006_01.png b/Code/Editor/bmp00006_01.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_01.png rename to Code/Editor/bmp00006_01.png diff --git a/Code/Sandbox/Editor/bmp00006_02.png b/Code/Editor/bmp00006_02.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_02.png rename to Code/Editor/bmp00006_02.png diff --git a/Code/Sandbox/Editor/bmp00006_03.png b/Code/Editor/bmp00006_03.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_03.png rename to Code/Editor/bmp00006_03.png diff --git a/Code/Sandbox/Editor/bmp00006_04.png b/Code/Editor/bmp00006_04.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_04.png rename to Code/Editor/bmp00006_04.png diff --git a/Code/Sandbox/Editor/bmp00006_05.png b/Code/Editor/bmp00006_05.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_05.png rename to Code/Editor/bmp00006_05.png diff --git a/Code/Sandbox/Editor/bmp00006_06.png b/Code/Editor/bmp00006_06.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_06.png rename to Code/Editor/bmp00006_06.png diff --git a/Code/Sandbox/Editor/bmp00006_07.png b/Code/Editor/bmp00006_07.png similarity index 100% rename from Code/Sandbox/Editor/bmp00006_07.png rename to Code/Editor/bmp00006_07.png diff --git a/Code/Sandbox/Editor/editor_core_files.cmake b/Code/Editor/editor_core_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_core_files.cmake rename to Code/Editor/editor_core_files.cmake diff --git a/Code/Sandbox/Editor/editor_core_test_files.cmake b/Code/Editor/editor_core_test_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_core_test_files.cmake rename to Code/Editor/editor_core_test_files.cmake diff --git a/Code/Sandbox/Editor/editor_darwin_files.cmake b/Code/Editor/editor_darwin_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_darwin_files.cmake rename to Code/Editor/editor_darwin_files.cmake diff --git a/Code/Sandbox/Editor/editor_files.cmake b/Code/Editor/editor_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_files.cmake rename to Code/Editor/editor_files.cmake diff --git a/Code/Sandbox/Editor/editor_headers_files.cmake b/Code/Editor/editor_headers_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_headers_files.cmake rename to Code/Editor/editor_headers_files.cmake diff --git a/Code/Sandbox/Editor/editor_lib_files.cmake b/Code/Editor/editor_lib_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_lib_files.cmake rename to Code/Editor/editor_lib_files.cmake diff --git a/Code/Sandbox/Editor/editor_lib_terrain_files.cmake b/Code/Editor/editor_lib_terrain_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_lib_terrain_files.cmake rename to Code/Editor/editor_lib_terrain_files.cmake diff --git a/Code/Sandbox/Editor/editor_lib_test_files.cmake b/Code/Editor/editor_lib_test_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_lib_test_files.cmake rename to Code/Editor/editor_lib_test_files.cmake diff --git a/Code/Sandbox/Editor/editor_lib_test_terrain_files.cmake b/Code/Editor/editor_lib_test_terrain_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_lib_test_terrain_files.cmake rename to Code/Editor/editor_lib_test_terrain_files.cmake diff --git a/Code/Sandbox/Editor/editor_win_files.cmake b/Code/Editor/editor_win_files.cmake similarity index 100% rename from Code/Sandbox/Editor/editor_win_files.cmake rename to Code/Editor/editor_win_files.cmake diff --git a/Code/Sandbox/Editor/graphicssettingsdialog.ui b/Code/Editor/graphicssettingsdialog.ui similarity index 100% rename from Code/Sandbox/Editor/graphicssettingsdialog.ui rename to Code/Editor/graphicssettingsdialog.ui diff --git a/Code/Sandbox/Editor/main.cpp b/Code/Editor/main.cpp similarity index 100% rename from Code/Sandbox/Editor/main.cpp rename to Code/Editor/main.cpp diff --git a/Code/Sandbox/Editor/o3de_logo.svg b/Code/Editor/o3de_logo.svg similarity index 100% rename from Code/Sandbox/Editor/o3de_logo.svg rename to Code/Editor/o3de_logo.svg diff --git a/Code/Sandbox/Editor/particles_tree_00.png b/Code/Editor/particles_tree_00.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_00.png rename to Code/Editor/particles_tree_00.png diff --git a/Code/Sandbox/Editor/particles_tree_01.png b/Code/Editor/particles_tree_01.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_01.png rename to Code/Editor/particles_tree_01.png diff --git a/Code/Sandbox/Editor/particles_tree_02.png b/Code/Editor/particles_tree_02.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_02.png rename to Code/Editor/particles_tree_02.png diff --git a/Code/Sandbox/Editor/particles_tree_03.png b/Code/Editor/particles_tree_03.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_03.png rename to Code/Editor/particles_tree_03.png diff --git a/Code/Sandbox/Editor/particles_tree_04.png b/Code/Editor/particles_tree_04.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_04.png rename to Code/Editor/particles_tree_04.png diff --git a/Code/Sandbox/Editor/particles_tree_05.png b/Code/Editor/particles_tree_05.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_05.png rename to Code/Editor/particles_tree_05.png diff --git a/Code/Sandbox/Editor/particles_tree_06.png b/Code/Editor/particles_tree_06.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_06.png rename to Code/Editor/particles_tree_06.png diff --git a/Code/Sandbox/Editor/particles_tree_07.png b/Code/Editor/particles_tree_07.png similarity index 100% rename from Code/Sandbox/Editor/particles_tree_07.png rename to Code/Editor/particles_tree_07.png diff --git a/Code/Sandbox/Editor/res/4WAY01.CUR b/Code/Editor/res/4WAY01.CUR similarity index 100% rename from Code/Sandbox/Editor/res/4WAY01.CUR rename to Code/Editor/res/4WAY01.CUR diff --git a/Code/Sandbox/Editor/res/AVI_Recorder.bmp b/Code/Editor/res/AVI_Recorder.bmp similarity index 100% rename from Code/Sandbox/Editor/res/AVI_Recorder.bmp rename to Code/Editor/res/AVI_Recorder.bmp diff --git a/Code/Sandbox/Editor/res/AWS_preferences_icon.svg b/Code/Editor/res/AWS_preferences_icon.svg similarity index 100% rename from Code/Sandbox/Editor/res/AWS_preferences_icon.svg rename to Code/Editor/res/AWS_preferences_icon.svg diff --git a/Code/Sandbox/Editor/res/Camera.svg b/Code/Editor/res/Camera.svg similarity index 100% rename from Code/Sandbox/Editor/res/Camera.svg rename to Code/Editor/res/Camera.svg diff --git a/Code/Sandbox/Editor/res/ConsoleToolbar.bmp b/Code/Editor/res/ConsoleToolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/ConsoleToolbar.bmp rename to Code/Editor/res/ConsoleToolbar.bmp diff --git a/Code/Sandbox/Editor/res/CryEdit.ico b/Code/Editor/res/CryEdit.ico similarity index 100% rename from Code/Sandbox/Editor/res/CryEdit.ico rename to Code/Editor/res/CryEdit.ico diff --git a/Code/Sandbox/Editor/res/CryEdit.rc2 b/Code/Editor/res/CryEdit.rc2 similarity index 100% rename from Code/Sandbox/Editor/res/CryEdit.rc2 rename to Code/Editor/res/CryEdit.rc2 diff --git a/Code/Sandbox/Editor/res/CryEditDoc.ico b/Code/Editor/res/CryEditDoc.ico similarity index 100% rename from Code/Sandbox/Editor/res/CryEditDoc.ico rename to Code/Editor/res/CryEditDoc.ico diff --git a/Code/Sandbox/Editor/res/Cursor_2.cur b/Code/Editor/res/Cursor_2.cur similarity index 100% rename from Code/Sandbox/Editor/res/Cursor_2.cur rename to Code/Editor/res/Cursor_2.cur diff --git a/Code/Sandbox/Editor/res/Debug.svg b/Code/Editor/res/Debug.svg similarity index 100% rename from Code/Sandbox/Editor/res/Debug.svg rename to Code/Editor/res/Debug.svg diff --git a/Code/Sandbox/Editor/res/Default_closed.svg b/Code/Editor/res/Default_closed.svg similarity index 100% rename from Code/Sandbox/Editor/res/Default_closed.svg rename to Code/Editor/res/Default_closed.svg diff --git a/Code/Sandbox/Editor/res/Default_open.svg b/Code/Editor/res/Default_open.svg similarity index 100% rename from Code/Sandbox/Editor/res/Default_open.svg rename to Code/Editor/res/Default_open.svg diff --git a/Code/Sandbox/Editor/res/Entity.svg b/Code/Editor/res/Entity.svg similarity index 100% rename from Code/Sandbox/Editor/res/Entity.svg rename to Code/Editor/res/Entity.svg diff --git a/Code/Sandbox/Editor/res/Entity_Editor_Only.svg b/Code/Editor/res/Entity_Editor_Only.svg similarity index 100% rename from Code/Sandbox/Editor/res/Entity_Editor_Only.svg rename to Code/Editor/res/Entity_Editor_Only.svg diff --git a/Code/Sandbox/Editor/res/Entity_Not_Active.svg b/Code/Editor/res/Entity_Not_Active.svg similarity index 100% rename from Code/Sandbox/Editor/res/Entity_Not_Active.svg rename to Code/Editor/res/Entity_Not_Active.svg diff --git a/Code/Sandbox/Editor/res/Experimental.svg b/Code/Editor/res/Experimental.svg similarity index 100% rename from Code/Sandbox/Editor/res/Experimental.svg rename to Code/Editor/res/Experimental.svg diff --git a/Code/Sandbox/Editor/res/Eye.svg b/Code/Editor/res/Eye.svg similarity index 100% rename from Code/Sandbox/Editor/res/Eye.svg rename to Code/Editor/res/Eye.svg diff --git a/Code/Sandbox/Editor/res/Eye_Open.tif b/Code/Editor/res/Eye_Open.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Open.tif rename to Code/Editor/res/Eye_Open.tif diff --git a/Code/Sandbox/Editor/res/Eye_Open_Hidden.tif b/Code/Editor/res/Eye_Open_Hidden.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Open_Hidden.tif rename to Code/Editor/res/Eye_Open_Hidden.tif diff --git a/Code/Sandbox/Editor/res/Eye_Open_Hover.tif b/Code/Editor/res/Eye_Open_Hover.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Open_Hover.tif rename to Code/Editor/res/Eye_Open_Hover.tif diff --git a/Code/Sandbox/Editor/res/Eye_Partial_Open.tif b/Code/Editor/res/Eye_Partial_Open.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Partial_Open.tif rename to Code/Editor/res/Eye_Partial_Open.tif diff --git a/Code/Sandbox/Editor/res/Eye_Partial_Slash.tif b/Code/Editor/res/Eye_Partial_Slash.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Partial_Slash.tif rename to Code/Editor/res/Eye_Partial_Slash.tif diff --git a/Code/Sandbox/Editor/res/Eye_Slash.tif b/Code/Editor/res/Eye_Slash.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Slash.tif rename to Code/Editor/res/Eye_Slash.tif diff --git a/Code/Sandbox/Editor/res/Eye_Slash_Hidden.tif b/Code/Editor/res/Eye_Slash_Hidden.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Slash_Hidden.tif rename to Code/Editor/res/Eye_Slash_Hidden.tif diff --git a/Code/Sandbox/Editor/res/Eye_Slash_Hover.tif b/Code/Editor/res/Eye_Slash_Hover.tif similarity index 100% rename from Code/Sandbox/Editor/res/Eye_Slash_Hover.tif rename to Code/Editor/res/Eye_Slash_Hover.tif diff --git a/Code/Sandbox/Editor/res/Files.svg b/Code/Editor/res/Files.svg similarity index 100% rename from Code/Sandbox/Editor/res/Files.svg rename to Code/Editor/res/Files.svg diff --git a/Code/Sandbox/Editor/res/Gizmos.svg b/Code/Editor/res/Gizmos.svg similarity index 100% rename from Code/Sandbox/Editor/res/Gizmos.svg rename to Code/Editor/res/Gizmos.svg diff --git a/Code/Sandbox/Editor/res/Global.svg b/Code/Editor/res/Global.svg similarity index 100% rename from Code/Sandbox/Editor/res/Global.svg rename to Code/Editor/res/Global.svg diff --git a/Code/Sandbox/Editor/res/LegacyLogo.bmp b/Code/Editor/res/LegacyLogo.bmp similarity index 100% rename from Code/Sandbox/Editor/res/LegacyLogo.bmp rename to Code/Editor/res/LegacyLogo.bmp diff --git a/Code/Sandbox/Editor/res/MannFileManagerImageList.bmp b/Code/Editor/res/MannFileManagerImageList.bmp similarity index 100% rename from Code/Sandbox/Editor/res/MannFileManagerImageList.bmp rename to Code/Editor/res/MannFileManagerImageList.bmp diff --git a/Code/Sandbox/Editor/res/Motion.svg b/Code/Editor/res/Motion.svg similarity index 100% rename from Code/Sandbox/Editor/res/Motion.svg rename to Code/Editor/res/Motion.svg diff --git a/Code/Sandbox/Editor/res/Mouse.cur b/Code/Editor/res/Mouse.cur similarity index 100% rename from Code/Sandbox/Editor/res/Mouse.cur rename to Code/Editor/res/Mouse.cur diff --git a/Code/Sandbox/Editor/res/Padlock.svg b/Code/Editor/res/Padlock.svg similarity index 100% rename from Code/Sandbox/Editor/res/Padlock.svg rename to Code/Editor/res/Padlock.svg diff --git a/Code/Sandbox/Editor/res/Padlock_Disabled.tif b/Code/Editor/res/Padlock_Disabled.tif similarity index 100% rename from Code/Sandbox/Editor/res/Padlock_Disabled.tif rename to Code/Editor/res/Padlock_Disabled.tif diff --git a/Code/Sandbox/Editor/res/Padlock_Disabled_Hover.tif b/Code/Editor/res/Padlock_Disabled_Hover.tif similarity index 100% rename from Code/Sandbox/Editor/res/Padlock_Disabled_Hover.tif rename to Code/Editor/res/Padlock_Disabled_Hover.tif diff --git a/Code/Sandbox/Editor/res/Padlock_Enabled.tif b/Code/Editor/res/Padlock_Enabled.tif similarity index 100% rename from Code/Sandbox/Editor/res/Padlock_Enabled.tif rename to Code/Editor/res/Padlock_Enabled.tif diff --git a/Code/Sandbox/Editor/res/Padlock_Enabled_Hover.tif b/Code/Editor/res/Padlock_Enabled_Hover.tif similarity index 100% rename from Code/Sandbox/Editor/res/Padlock_Enabled_Hover.tif rename to Code/Editor/res/Padlock_Enabled_Hover.tif diff --git a/Code/Sandbox/Editor/res/Padlock_Partial_Disabled.tif b/Code/Editor/res/Padlock_Partial_Disabled.tif similarity index 100% rename from Code/Sandbox/Editor/res/Padlock_Partial_Disabled.tif rename to Code/Editor/res/Padlock_Partial_Disabled.tif diff --git a/Code/Sandbox/Editor/res/Padlock_Partial_Enabled.tif b/Code/Editor/res/Padlock_Partial_Enabled.tif similarity index 100% rename from Code/Sandbox/Editor/res/Padlock_Partial_Enabled.tif rename to Code/Editor/res/Padlock_Partial_Enabled.tif diff --git a/Code/Sandbox/Editor/res/Preferences.bmp b/Code/Editor/res/Preferences.bmp similarity index 100% rename from Code/Sandbox/Editor/res/Preferences.bmp rename to Code/Editor/res/Preferences.bmp diff --git a/Code/Sandbox/Editor/res/Preferences_00.png b/Code/Editor/res/Preferences_00.png similarity index 100% rename from Code/Sandbox/Editor/res/Preferences_00.png rename to Code/Editor/res/Preferences_00.png diff --git a/Code/Sandbox/Editor/res/Preferences_01.png b/Code/Editor/res/Preferences_01.png similarity index 100% rename from Code/Sandbox/Editor/res/Preferences_01.png rename to Code/Editor/res/Preferences_01.png diff --git a/Code/Sandbox/Editor/res/Preferences_02.png b/Code/Editor/res/Preferences_02.png similarity index 100% rename from Code/Sandbox/Editor/res/Preferences_02.png rename to Code/Editor/res/Preferences_02.png diff --git a/Code/Sandbox/Editor/res/Preferences_03.png b/Code/Editor/res/Preferences_03.png similarity index 100% rename from Code/Sandbox/Editor/res/Preferences_03.png rename to Code/Editor/res/Preferences_03.png diff --git a/Code/Sandbox/Editor/res/Slice_Entity.svg b/Code/Editor/res/Slice_Entity.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity.svg rename to Code/Editor/res/Slice_Entity.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Editor_Only.svg b/Code/Editor/res/Slice_Entity_Editor_Only.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Editor_Only.svg rename to Code/Editor/res/Slice_Entity_Editor_Only.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Modified.svg b/Code/Editor/res/Slice_Entity_Modified.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Modified.svg rename to Code/Editor/res/Slice_Entity_Modified.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Modified_Editor_Only.svg b/Code/Editor/res/Slice_Entity_Modified_Editor_Only.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Modified_Editor_Only.svg rename to Code/Editor/res/Slice_Entity_Modified_Editor_Only.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Modified_Editor_Only_Unsavable.svg b/Code/Editor/res/Slice_Entity_Modified_Editor_Only_Unsavable.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Modified_Editor_Only_Unsavable.svg rename to Code/Editor/res/Slice_Entity_Modified_Editor_Only_Unsavable.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Modified_Not_Active.svg b/Code/Editor/res/Slice_Entity_Modified_Not_Active.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Modified_Not_Active.svg rename to Code/Editor/res/Slice_Entity_Modified_Not_Active.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Modified_Not_Active_Unsavable.svg b/Code/Editor/res/Slice_Entity_Modified_Not_Active_Unsavable.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Modified_Not_Active_Unsavable.svg rename to Code/Editor/res/Slice_Entity_Modified_Not_Active_Unsavable.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Modified_Unsavable.svg b/Code/Editor/res/Slice_Entity_Modified_Unsavable.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Modified_Unsavable.svg rename to Code/Editor/res/Slice_Entity_Modified_Unsavable.svg diff --git a/Code/Sandbox/Editor/res/Slice_Entity_Not_Active.svg b/Code/Editor/res/Slice_Entity_Not_Active.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Entity_Not_Active.svg rename to Code/Editor/res/Slice_Entity_Not_Active.svg diff --git a/Code/Sandbox/Editor/res/Slice_Handle.svg b/Code/Editor/res/Slice_Handle.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Handle.svg rename to Code/Editor/res/Slice_Handle.svg diff --git a/Code/Sandbox/Editor/res/Slice_Handle_Editor_Only.svg b/Code/Editor/res/Slice_Handle_Editor_Only.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Handle_Editor_Only.svg rename to Code/Editor/res/Slice_Handle_Editor_Only.svg diff --git a/Code/Sandbox/Editor/res/Slice_Handle_Modified.svg b/Code/Editor/res/Slice_Handle_Modified.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Handle_Modified.svg rename to Code/Editor/res/Slice_Handle_Modified.svg diff --git a/Code/Sandbox/Editor/res/Slice_Handle_Modified_Editor_Only.svg b/Code/Editor/res/Slice_Handle_Modified_Editor_Only.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Handle_Modified_Editor_Only.svg rename to Code/Editor/res/Slice_Handle_Modified_Editor_Only.svg diff --git a/Code/Sandbox/Editor/res/Slice_Handle_Modified_Not_Active.svg b/Code/Editor/res/Slice_Handle_Modified_Not_Active.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Handle_Modified_Not_Active.svg rename to Code/Editor/res/Slice_Handle_Modified_Not_Active.svg diff --git a/Code/Sandbox/Editor/res/Slice_Handle_Not_Active.svg b/Code/Editor/res/Slice_Handle_Not_Active.svg similarity index 100% rename from Code/Sandbox/Editor/res/Slice_Handle_Not_Active.svg rename to Code/Editor/res/Slice_Handle_Not_Active.svg diff --git a/Code/Sandbox/Editor/res/Toolbar.bmp b/Code/Editor/res/Toolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/Toolbar.bmp rename to Code/Editor/res/Toolbar.bmp diff --git a/Code/Sandbox/Editor/res/TreeView.bmp b/Code/Editor/res/TreeView.bmp similarity index 100% rename from Code/Sandbox/Editor/res/TreeView.bmp rename to Code/Editor/res/TreeView.bmp diff --git a/Code/Sandbox/Editor/res/Viewport.svg b/Code/Editor/res/Viewport.svg similarity index 100% rename from Code/Sandbox/Editor/res/Viewport.svg rename to Code/Editor/res/Viewport.svg diff --git a/Code/Sandbox/Editor/res/VisualLog_PlayerButtons.bmp b/Code/Editor/res/VisualLog_PlayerButtons.bmp similarity index 100% rename from Code/Sandbox/Editor/res/VisualLog_PlayerButtons.bmp rename to Code/Editor/res/VisualLog_PlayerButtons.bmp diff --git a/Code/Sandbox/Editor/res/ab_toolbar.bmp b/Code/Editor/res/ab_toolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/ab_toolbar.bmp rename to Code/Editor/res/ab_toolbar.bmp diff --git a/Code/Sandbox/Editor/res/about_dark.bmp b/Code/Editor/res/about_dark.bmp similarity index 100% rename from Code/Sandbox/Editor/res/about_dark.bmp rename to Code/Editor/res/about_dark.bmp diff --git a/Code/Sandbox/Editor/res/add.png b/Code/Editor/res/add.png similarity index 100% rename from Code/Sandbox/Editor/res/add.png rename to Code/Editor/res/add.png diff --git a/Code/Sandbox/Editor/res/anim.bmp b/Code/Editor/res/anim.bmp similarity index 100% rename from Code/Sandbox/Editor/res/anim.bmp rename to Code/Editor/res/anim.bmp diff --git a/Code/Sandbox/Editor/res/animatio.bmp b/Code/Editor/res/animatio.bmp similarity index 100% rename from Code/Sandbox/Editor/res/animatio.bmp rename to Code/Editor/res/animatio.bmp diff --git a/Code/Sandbox/Editor/res/animations_tree_soundevent.bmp b/Code/Editor/res/animations_tree_soundevent.bmp similarity index 100% rename from Code/Sandbox/Editor/res/animations_tree_soundevent.bmp rename to Code/Editor/res/animations_tree_soundevent.bmp diff --git a/Code/Sandbox/Editor/res/animflag_inside_pak.bmp b/Code/Editor/res/animflag_inside_pak.bmp similarity index 100% rename from Code/Sandbox/Editor/res/animflag_inside_pak.bmp rename to Code/Editor/res/animflag_inside_pak.bmp diff --git a/Code/Sandbox/Editor/res/animflag_on_disk.bmp b/Code/Editor/res/animflag_on_disk.bmp similarity index 100% rename from Code/Sandbox/Editor/res/animflag_on_disk.bmp rename to Code/Editor/res/animflag_on_disk.bmp diff --git a/Code/Sandbox/Editor/res/animtree.bmp b/Code/Editor/res/animtree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/animtree.bmp rename to Code/Editor/res/animtree.bmp diff --git a/Code/Sandbox/Editor/res/arhitype_tree.bmp b/Code/Editor/res/arhitype_tree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/arhitype_tree.bmp rename to Code/Editor/res/arhitype_tree.bmp diff --git a/Code/Sandbox/Editor/res/arr_addkey.cur b/Code/Editor/res/arr_addkey.cur similarity index 100% rename from Code/Sandbox/Editor/res/arr_addkey.cur rename to Code/Editor/res/arr_addkey.cur diff --git a/Code/Sandbox/Editor/res/arrow.cur b/Code/Editor/res/arrow.cur similarity index 100% rename from Code/Sandbox/Editor/res/arrow.cur rename to Code/Editor/res/arrow.cur diff --git a/Code/Sandbox/Editor/res/arrow_down.cur b/Code/Editor/res/arrow_down.cur similarity index 100% rename from Code/Sandbox/Editor/res/arrow_down.cur rename to Code/Editor/res/arrow_down.cur diff --git a/Code/Sandbox/Editor/res/arrow_down_black.ico b/Code/Editor/res/arrow_down_black.ico similarity index 100% rename from Code/Sandbox/Editor/res/arrow_down_black.ico rename to Code/Editor/res/arrow_down_black.ico diff --git a/Code/Sandbox/Editor/res/arrow_downright.cur b/Code/Editor/res/arrow_downright.cur similarity index 100% rename from Code/Sandbox/Editor/res/arrow_downright.cur rename to Code/Editor/res/arrow_downright.cur diff --git a/Code/Sandbox/Editor/res/arrow_up.cur b/Code/Editor/res/arrow_up.cur similarity index 100% rename from Code/Sandbox/Editor/res/arrow_up.cur rename to Code/Editor/res/arrow_up.cur diff --git a/Code/Sandbox/Editor/res/arrow_up_black.ico b/Code/Editor/res/arrow_up_black.ico similarity index 100% rename from Code/Sandbox/Editor/res/arrow_up_black.ico rename to Code/Editor/res/arrow_up_black.ico diff --git a/Code/Sandbox/Editor/res/arrow_upright.cur b/Code/Editor/res/arrow_upright.cur similarity index 100% rename from Code/Sandbox/Editor/res/arrow_upright.cur rename to Code/Editor/res/arrow_upright.cur diff --git a/Code/Sandbox/Editor/res/arrowcop.cur b/Code/Editor/res/arrowcop.cur similarity index 100% rename from Code/Sandbox/Editor/res/arrowcop.cur rename to Code/Editor/res/arrowcop.cur diff --git a/Code/Sandbox/Editor/res/assetIsDraggable.ico b/Code/Editor/res/assetIsDraggable.ico similarity index 100% rename from Code/Sandbox/Editor/res/assetIsDraggable.ico rename to Code/Editor/res/assetIsDraggable.ico diff --git a/Code/Sandbox/Editor/res/avi_reco.bmp b/Code/Editor/res/avi_reco.bmp similarity index 100% rename from Code/Sandbox/Editor/res/avi_reco.bmp rename to Code/Editor/res/avi_reco.bmp diff --git a/Code/Sandbox/Editor/res/ball_disabled.ico b/Code/Editor/res/ball_disabled.ico similarity index 100% rename from Code/Sandbox/Editor/res/ball_disabled.ico rename to Code/Editor/res/ball_disabled.ico diff --git a/Code/Sandbox/Editor/res/ball_offline.ico b/Code/Editor/res/ball_offline.ico similarity index 100% rename from Code/Sandbox/Editor/res/ball_offline.ico rename to Code/Editor/res/ball_offline.ico diff --git a/Code/Sandbox/Editor/res/ball_online.ico b/Code/Editor/res/ball_online.ico similarity index 100% rename from Code/Sandbox/Editor/res/ball_online.ico rename to Code/Editor/res/ball_online.ico diff --git a/Code/Sandbox/Editor/res/ball_pending.ico b/Code/Editor/res/ball_pending.ico similarity index 100% rename from Code/Sandbox/Editor/res/ball_pending.ico rename to Code/Editor/res/ball_pending.ico diff --git a/Code/Sandbox/Editor/res/bitmap5.bmp b/Code/Editor/res/bitmap5.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bitmap5.bmp rename to Code/Editor/res/bitmap5.bmp diff --git a/Code/Sandbox/Editor/res/bitmap6.bmp b/Code/Editor/res/bitmap6.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bitmap6.bmp rename to Code/Editor/res/bitmap6.bmp diff --git a/Code/Sandbox/Editor/res/bmp00001.bmp b/Code/Editor/res/bmp00001.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00001.bmp rename to Code/Editor/res/bmp00001.bmp diff --git a/Code/Sandbox/Editor/res/bmp00002.bmp b/Code/Editor/res/bmp00002.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00002.bmp rename to Code/Editor/res/bmp00002.bmp diff --git a/Code/Sandbox/Editor/res/bmp00003.bmp b/Code/Editor/res/bmp00003.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00003.bmp rename to Code/Editor/res/bmp00003.bmp diff --git a/Code/Sandbox/Editor/res/bmp00005.bmp b/Code/Editor/res/bmp00005.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00005.bmp rename to Code/Editor/res/bmp00005.bmp diff --git a/Code/Sandbox/Editor/res/bmp00006.bmp b/Code/Editor/res/bmp00006.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00006.bmp rename to Code/Editor/res/bmp00006.bmp diff --git a/Code/Sandbox/Editor/res/bmp00007.bmp b/Code/Editor/res/bmp00007.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007.bmp rename to Code/Editor/res/bmp00007.bmp diff --git a/Code/Sandbox/Editor/res/bmp00007_0.png b/Code/Editor/res/bmp00007_0.png similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007_0.png rename to Code/Editor/res/bmp00007_0.png diff --git a/Code/Sandbox/Editor/res/bmp00007_1.png b/Code/Editor/res/bmp00007_1.png similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007_1.png rename to Code/Editor/res/bmp00007_1.png diff --git a/Code/Sandbox/Editor/res/bmp00007_2.png b/Code/Editor/res/bmp00007_2.png similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007_2.png rename to Code/Editor/res/bmp00007_2.png diff --git a/Code/Sandbox/Editor/res/bmp00007_3.png b/Code/Editor/res/bmp00007_3.png similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007_3.png rename to Code/Editor/res/bmp00007_3.png diff --git a/Code/Sandbox/Editor/res/bmp00007_4.png b/Code/Editor/res/bmp00007_4.png similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007_4.png rename to Code/Editor/res/bmp00007_4.png diff --git a/Code/Sandbox/Editor/res/bmp00007_5.png b/Code/Editor/res/bmp00007_5.png similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007_5.png rename to Code/Editor/res/bmp00007_5.png diff --git a/Code/Sandbox/Editor/res/bmp00007_6.png b/Code/Editor/res/bmp00007_6.png similarity index 100% rename from Code/Sandbox/Editor/res/bmp00007_6.png rename to Code/Editor/res/bmp00007_6.png diff --git a/Code/Sandbox/Editor/res/bmp00008.bmp b/Code/Editor/res/bmp00008.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00008.bmp rename to Code/Editor/res/bmp00008.bmp diff --git a/Code/Sandbox/Editor/res/bmp00009.bmp b/Code/Editor/res/bmp00009.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00009.bmp rename to Code/Editor/res/bmp00009.bmp diff --git a/Code/Sandbox/Editor/res/bmp00010.bmp b/Code/Editor/res/bmp00010.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00010.bmp rename to Code/Editor/res/bmp00010.bmp diff --git a/Code/Sandbox/Editor/res/bmp00011.bmp b/Code/Editor/res/bmp00011.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00011.bmp rename to Code/Editor/res/bmp00011.bmp diff --git a/Code/Sandbox/Editor/res/bmp00012.bmp b/Code/Editor/res/bmp00012.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00012.bmp rename to Code/Editor/res/bmp00012.bmp diff --git a/Code/Sandbox/Editor/res/bmp00013.bmp b/Code/Editor/res/bmp00013.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00013.bmp rename to Code/Editor/res/bmp00013.bmp diff --git a/Code/Sandbox/Editor/res/bmp00014.bmp b/Code/Editor/res/bmp00014.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00014.bmp rename to Code/Editor/res/bmp00014.bmp diff --git a/Code/Sandbox/Editor/res/bmp00015.bmp b/Code/Editor/res/bmp00015.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00015.bmp rename to Code/Editor/res/bmp00015.bmp diff --git a/Code/Sandbox/Editor/res/bmp00016.bmp b/Code/Editor/res/bmp00016.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00016.bmp rename to Code/Editor/res/bmp00016.bmp diff --git a/Code/Sandbox/Editor/res/bmp00017.bmp b/Code/Editor/res/bmp00017.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00017.bmp rename to Code/Editor/res/bmp00017.bmp diff --git a/Code/Sandbox/Editor/res/bmp00019.bmp b/Code/Editor/res/bmp00019.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00019.bmp rename to Code/Editor/res/bmp00019.bmp diff --git a/Code/Sandbox/Editor/res/bmp00020.bmp b/Code/Editor/res/bmp00020.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00020.bmp rename to Code/Editor/res/bmp00020.bmp diff --git a/Code/Sandbox/Editor/res/bmp00024.bmp b/Code/Editor/res/bmp00024.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00024.bmp rename to Code/Editor/res/bmp00024.bmp diff --git a/Code/Sandbox/Editor/res/bmp00025.bmp b/Code/Editor/res/bmp00025.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00025.bmp rename to Code/Editor/res/bmp00025.bmp diff --git a/Code/Sandbox/Editor/res/bmp00026.bmp b/Code/Editor/res/bmp00026.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00026.bmp rename to Code/Editor/res/bmp00026.bmp diff --git a/Code/Sandbox/Editor/res/bmp00027.bmp b/Code/Editor/res/bmp00027.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00027.bmp rename to Code/Editor/res/bmp00027.bmp diff --git a/Code/Sandbox/Editor/res/bmp00028.bmp b/Code/Editor/res/bmp00028.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00028.bmp rename to Code/Editor/res/bmp00028.bmp diff --git a/Code/Sandbox/Editor/res/bmp00029.bmp b/Code/Editor/res/bmp00029.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00029.bmp rename to Code/Editor/res/bmp00029.bmp diff --git a/Code/Sandbox/Editor/res/bmp00030.bmp b/Code/Editor/res/bmp00030.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00030.bmp rename to Code/Editor/res/bmp00030.bmp diff --git a/Code/Sandbox/Editor/res/bmp00031.bmp b/Code/Editor/res/bmp00031.bmp similarity index 100% rename from Code/Sandbox/Editor/res/bmp00031.bmp rename to Code/Editor/res/bmp00031.bmp diff --git a/Code/Sandbox/Editor/res/brush24bpp.bmp b/Code/Editor/res/brush24bpp.bmp similarity index 100% rename from Code/Sandbox/Editor/res/brush24bpp.bmp rename to Code/Editor/res/brush24bpp.bmp diff --git a/Code/Sandbox/Editor/res/ce_animations_toolbar.bmp b/Code/Editor/res/ce_animations_toolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/ce_animations_toolbar.bmp rename to Code/Editor/res/ce_animations_toolbar.bmp diff --git a/Code/Sandbox/Editor/res/character_parts_bar.bmp b/Code/Editor/res/character_parts_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/character_parts_bar.bmp rename to Code/Editor/res/character_parts_bar.bmp diff --git a/Code/Sandbox/Editor/res/charedit.bmp b/Code/Editor/res/charedit.bmp similarity index 100% rename from Code/Sandbox/Editor/res/charedit.bmp rename to Code/Editor/res/charedit.bmp diff --git a/Code/Sandbox/Editor/res/chrparamsicons.bmp b/Code/Editor/res/chrparamsicons.bmp similarity index 100% rename from Code/Sandbox/Editor/res/chrparamsicons.bmp rename to Code/Editor/res/chrparamsicons.bmp diff --git a/Code/Sandbox/Editor/res/clapperboard_cancel.bmp b/Code/Editor/res/clapperboard_cancel.bmp similarity index 100% rename from Code/Sandbox/Editor/res/clapperboard_cancel.bmp rename to Code/Editor/res/clapperboard_cancel.bmp diff --git a/Code/Sandbox/Editor/res/clapperboard_ready.bmp b/Code/Editor/res/clapperboard_ready.bmp similarity index 100% rename from Code/Sandbox/Editor/res/clapperboard_ready.bmp rename to Code/Editor/res/clapperboard_ready.bmp diff --git a/Code/Sandbox/Editor/res/clone.ico b/Code/Editor/res/clone.ico similarity index 100% rename from Code/Sandbox/Editor/res/clone.ico rename to Code/Editor/res/clone.ico diff --git a/Code/Sandbox/Editor/res/cur00001.cur b/Code/Editor/res/cur00001.cur similarity index 100% rename from Code/Sandbox/Editor/res/cur00001.cur rename to Code/Editor/res/cur00001.cur diff --git a/Code/Sandbox/Editor/res/cur00002.cur b/Code/Editor/res/cur00002.cur similarity index 100% rename from Code/Sandbox/Editor/res/cur00002.cur rename to Code/Editor/res/cur00002.cur diff --git a/Code/Sandbox/Editor/res/cur00003.cur b/Code/Editor/res/cur00003.cur similarity index 100% rename from Code/Sandbox/Editor/res/cur00003.cur rename to Code/Editor/res/cur00003.cur diff --git a/Code/Sandbox/Editor/res/cur00004.cur b/Code/Editor/res/cur00004.cur similarity index 100% rename from Code/Sandbox/Editor/res/cur00004.cur rename to Code/Editor/res/cur00004.cur diff --git a/Code/Sandbox/Editor/res/cur00005.cur b/Code/Editor/res/cur00005.cur similarity index 100% rename from Code/Sandbox/Editor/res/cur00005.cur rename to Code/Editor/res/cur00005.cur diff --git a/Code/Sandbox/Editor/res/cursor1.cur b/Code/Editor/res/cursor1.cur similarity index 100% rename from Code/Sandbox/Editor/res/cursor1.cur rename to Code/Editor/res/cursor1.cur diff --git a/Code/Sandbox/Editor/res/cursor2.cur b/Code/Editor/res/cursor2.cur similarity index 100% rename from Code/Sandbox/Editor/res/cursor2.cur rename to Code/Editor/res/cursor2.cur diff --git a/Code/Sandbox/Editor/res/cvar_dark.bmp b/Code/Editor/res/cvar_dark.bmp similarity index 100% rename from Code/Sandbox/Editor/res/cvar_dark.bmp rename to Code/Editor/res/cvar_dark.bmp diff --git a/Code/Sandbox/Editor/res/db_gametoken.bmp b/Code/Editor/res/db_gametoken.bmp similarity index 100% rename from Code/Sandbox/Editor/res/db_gametoken.bmp rename to Code/Editor/res/db_gametoken.bmp diff --git a/Code/Sandbox/Editor/res/db_library_add.svg b/Code/Editor/res/db_library_add.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_add.svg rename to Code/Editor/res/db_library_add.svg diff --git a/Code/Sandbox/Editor/res/db_library_additem.svg b/Code/Editor/res/db_library_additem.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_additem.svg rename to Code/Editor/res/db_library_additem.svg diff --git a/Code/Sandbox/Editor/res/db_library_assignitem.svg b/Code/Editor/res/db_library_assignitem.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_assignitem.svg rename to Code/Editor/res/db_library_assignitem.svg diff --git a/Code/Sandbox/Editor/res/db_library_bar.bmp b/Code/Editor/res/db_library_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/db_library_bar.bmp rename to Code/Editor/res/db_library_bar.bmp diff --git a/Code/Sandbox/Editor/res/db_library_bar_00.png b/Code/Editor/res/db_library_bar_00.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_bar_00.png rename to Code/Editor/res/db_library_bar_00.png diff --git a/Code/Sandbox/Editor/res/db_library_bar_01.png b/Code/Editor/res/db_library_bar_01.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_bar_01.png rename to Code/Editor/res/db_library_bar_01.png diff --git a/Code/Sandbox/Editor/res/db_library_bar_02.png b/Code/Editor/res/db_library_bar_02.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_bar_02.png rename to Code/Editor/res/db_library_bar_02.png diff --git a/Code/Sandbox/Editor/res/db_library_bar_03.png b/Code/Editor/res/db_library_bar_03.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_bar_03.png rename to Code/Editor/res/db_library_bar_03.png diff --git a/Code/Sandbox/Editor/res/db_library_bar_04.png b/Code/Editor/res/db_library_bar_04.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_bar_04.png rename to Code/Editor/res/db_library_bar_04.png diff --git a/Code/Sandbox/Editor/res/db_library_bar_05.png b/Code/Editor/res/db_library_bar_05.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_bar_05.png rename to Code/Editor/res/db_library_bar_05.png diff --git a/Code/Sandbox/Editor/res/db_library_cloneitem.svg b/Code/Editor/res/db_library_cloneitem.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_cloneitem.svg rename to Code/Editor/res/db_library_cloneitem.svg diff --git a/Code/Sandbox/Editor/res/db_library_copy.svg b/Code/Editor/res/db_library_copy.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_copy.svg rename to Code/Editor/res/db_library_copy.svg diff --git a/Code/Sandbox/Editor/res/db_library_delete.svg b/Code/Editor/res/db_library_delete.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_delete.svg rename to Code/Editor/res/db_library_delete.svg diff --git a/Code/Sandbox/Editor/res/db_library_getproperties.svg b/Code/Editor/res/db_library_getproperties.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_getproperties.svg rename to Code/Editor/res/db_library_getproperties.svg diff --git a/Code/Sandbox/Editor/res/db_library_item_bar.bmp b/Code/Editor/res/db_library_item_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/db_library_item_bar.bmp rename to Code/Editor/res/db_library_item_bar.bmp diff --git a/Code/Sandbox/Editor/res/db_library_item_bar_00.png b/Code/Editor/res/db_library_item_bar_00.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_item_bar_00.png rename to Code/Editor/res/db_library_item_bar_00.png diff --git a/Code/Sandbox/Editor/res/db_library_item_bar_01.png b/Code/Editor/res/db_library_item_bar_01.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_item_bar_01.png rename to Code/Editor/res/db_library_item_bar_01.png diff --git a/Code/Sandbox/Editor/res/db_library_item_bar_02.png b/Code/Editor/res/db_library_item_bar_02.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_item_bar_02.png rename to Code/Editor/res/db_library_item_bar_02.png diff --git a/Code/Sandbox/Editor/res/db_library_item_bar_03.png b/Code/Editor/res/db_library_item_bar_03.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_item_bar_03.png rename to Code/Editor/res/db_library_item_bar_03.png diff --git a/Code/Sandbox/Editor/res/db_library_item_bar_04.png b/Code/Editor/res/db_library_item_bar_04.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_item_bar_04.png rename to Code/Editor/res/db_library_item_bar_04.png diff --git a/Code/Sandbox/Editor/res/db_library_item_bar_05.png b/Code/Editor/res/db_library_item_bar_05.png similarity index 100% rename from Code/Sandbox/Editor/res/db_library_item_bar_05.png rename to Code/Editor/res/db_library_item_bar_05.png diff --git a/Code/Sandbox/Editor/res/db_library_open.svg b/Code/Editor/res/db_library_open.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_open.svg rename to Code/Editor/res/db_library_open.svg diff --git a/Code/Sandbox/Editor/res/db_library_paste.svg b/Code/Editor/res/db_library_paste.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_paste.svg rename to Code/Editor/res/db_library_paste.svg diff --git a/Code/Sandbox/Editor/res/db_library_redo.svg b/Code/Editor/res/db_library_redo.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_redo.svg rename to Code/Editor/res/db_library_redo.svg diff --git a/Code/Sandbox/Editor/res/db_library_refresh.svg b/Code/Editor/res/db_library_refresh.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_refresh.svg rename to Code/Editor/res/db_library_refresh.svg diff --git a/Code/Sandbox/Editor/res/db_library_reload.svg b/Code/Editor/res/db_library_reload.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_reload.svg rename to Code/Editor/res/db_library_reload.svg diff --git a/Code/Sandbox/Editor/res/db_library_removeitem.svg b/Code/Editor/res/db_library_removeitem.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_removeitem.svg rename to Code/Editor/res/db_library_removeitem.svg diff --git a/Code/Sandbox/Editor/res/db_library_save.svg b/Code/Editor/res/db_library_save.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_save.svg rename to Code/Editor/res/db_library_save.svg diff --git a/Code/Sandbox/Editor/res/db_library_undo.svg b/Code/Editor/res/db_library_undo.svg similarity index 100% rename from Code/Sandbox/Editor/res/db_library_undo.svg rename to Code/Editor/res/db_library_undo.svg diff --git a/Code/Sandbox/Editor/res/db_music.bmp b/Code/Editor/res/db_music.bmp similarity index 100% rename from Code/Sandbox/Editor/res/db_music.bmp rename to Code/Editor/res/db_music.bmp diff --git a/Code/Sandbox/Editor/res/db_music_logic.bmp b/Code/Editor/res/db_music_logic.bmp similarity index 100% rename from Code/Sandbox/Editor/res/db_music_logic.bmp rename to Code/Editor/res/db_music_logic.bmp diff --git a/Code/Sandbox/Editor/res/db_standart.bmp b/Code/Editor/res/db_standart.bmp similarity index 100% rename from Code/Sandbox/Editor/res/db_standart.bmp rename to Code/Editor/res/db_standart.bmp diff --git a/Code/Sandbox/Editor/res/db_standart_00.png b/Code/Editor/res/db_standart_00.png similarity index 100% rename from Code/Sandbox/Editor/res/db_standart_00.png rename to Code/Editor/res/db_standart_00.png diff --git a/Code/Sandbox/Editor/res/db_standart_01.png b/Code/Editor/res/db_standart_01.png similarity index 100% rename from Code/Sandbox/Editor/res/db_standart_01.png rename to Code/Editor/res/db_standart_01.png diff --git a/Code/Sandbox/Editor/res/db_standart_02.png b/Code/Editor/res/db_standart_02.png similarity index 100% rename from Code/Sandbox/Editor/res/db_standart_02.png rename to Code/Editor/res/db_standart_02.png diff --git a/Code/Sandbox/Editor/res/db_standart_03.png b/Code/Editor/res/db_standart_03.png similarity index 100% rename from Code/Sandbox/Editor/res/db_standart_03.png rename to Code/Editor/res/db_standart_03.png diff --git a/Code/Sandbox/Editor/res/desc_editor_toolbar.bmp b/Code/Editor/res/desc_editor_toolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/desc_editor_toolbar.bmp rename to Code/Editor/res/desc_editor_toolbar.bmp diff --git a/Code/Sandbox/Editor/res/down_arr.ico b/Code/Editor/res/down_arr.ico similarity index 100% rename from Code/Sandbox/Editor/res/down_arr.ico rename to Code/Editor/res/down_arr.ico diff --git a/Code/Sandbox/Editor/res/down_arrow.ico b/Code/Editor/res/down_arrow.ico similarity index 100% rename from Code/Sandbox/Editor/res/down_arrow.ico rename to Code/Editor/res/down_arrow.ico diff --git a/Code/Sandbox/Editor/res/dynamichelp.bmp b/Code/Editor/res/dynamichelp.bmp similarity index 100% rename from Code/Sandbox/Editor/res/dynamichelp.bmp rename to Code/Editor/res/dynamichelp.bmp diff --git a/Code/Sandbox/Editor/res/edit_mod.bmp b/Code/Editor/res/edit_mod.bmp similarity index 100% rename from Code/Sandbox/Editor/res/edit_mod.bmp rename to Code/Editor/res/edit_mod.bmp diff --git a/Code/Sandbox/Editor/res/editwithbutton.bmp b/Code/Editor/res/editwithbutton.bmp similarity index 100% rename from Code/Sandbox/Editor/res/editwithbutton.bmp rename to Code/Editor/res/editwithbutton.bmp diff --git a/Code/Sandbox/Editor/res/editwithbutton_dark.bmp b/Code/Editor/res/editwithbutton_dark.bmp similarity index 100% rename from Code/Sandbox/Editor/res/editwithbutton_dark.bmp rename to Code/Editor/res/editwithbutton_dark.bmp diff --git a/Code/Sandbox/Editor/res/emptycontainer.png b/Code/Editor/res/emptycontainer.png similarity index 100% rename from Code/Sandbox/Editor/res/emptycontainer.png rename to Code/Editor/res/emptycontainer.png diff --git a/Code/Sandbox/Editor/res/entitybar.bmp b/Code/Editor/res/entitybar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/entitybar.bmp rename to Code/Editor/res/entitybar.bmp diff --git a/Code/Sandbox/Editor/res/error_report.bmp b/Code/Editor/res/error_report.bmp similarity index 100% rename from Code/Sandbox/Editor/res/error_report.bmp rename to Code/Editor/res/error_report.bmp diff --git a/Code/Sandbox/Editor/res/error_report_checkmark.svg b/Code/Editor/res/error_report_checkmark.svg similarity index 100% rename from Code/Sandbox/Editor/res/error_report_checkmark.svg rename to Code/Editor/res/error_report_checkmark.svg diff --git a/Code/Sandbox/Editor/res/error_report_comment.svg b/Code/Editor/res/error_report_comment.svg similarity index 100% rename from Code/Sandbox/Editor/res/error_report_comment.svg rename to Code/Editor/res/error_report_comment.svg diff --git a/Code/Sandbox/Editor/res/error_report_error.svg b/Code/Editor/res/error_report_error.svg similarity index 100% rename from Code/Sandbox/Editor/res/error_report_error.svg rename to Code/Editor/res/error_report_error.svg diff --git a/Code/Sandbox/Editor/res/error_report_warning.svg b/Code/Editor/res/error_report_warning.svg similarity index 100% rename from Code/Sandbox/Editor/res/error_report_warning.svg rename to Code/Editor/res/error_report_warning.svg diff --git a/Code/Sandbox/Editor/res/expand1.ico b/Code/Editor/res/expand1.ico similarity index 100% rename from Code/Sandbox/Editor/res/expand1.ico rename to Code/Editor/res/expand1.ico diff --git a/Code/Sandbox/Editor/res/expand2.ico b/Code/Editor/res/expand2.ico similarity index 100% rename from Code/Sandbox/Editor/res/expand2.ico rename to Code/Editor/res/expand2.ico diff --git a/Code/Sandbox/Editor/res/faceit_playbar.bmp b/Code/Editor/res/faceit_playbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/faceit_playbar.bmp rename to Code/Editor/res/faceit_playbar.bmp diff --git a/Code/Sandbox/Editor/res/faceit_slidersbar.bmp b/Code/Editor/res/faceit_slidersbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/faceit_slidersbar.bmp rename to Code/Editor/res/faceit_slidersbar.bmp diff --git a/Code/Sandbox/Editor/res/faceit_spline_bar.bmp b/Code/Editor/res/faceit_spline_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/faceit_spline_bar.bmp rename to Code/Editor/res/faceit_spline_bar.bmp diff --git a/Code/Sandbox/Editor/res/facejoystickbar.bmp b/Code/Editor/res/facejoystickbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/facejoystickbar.bmp rename to Code/Editor/res/facejoystickbar.bmp diff --git a/Code/Sandbox/Editor/res/facesequence_bar.bmp b/Code/Editor/res/facesequence_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/facesequence_bar.bmp rename to Code/Editor/res/facesequence_bar.bmp diff --git a/Code/Sandbox/Editor/res/facialsequence_bar.bmp b/Code/Editor/res/facialsequence_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/facialsequence_bar.bmp rename to Code/Editor/res/facialsequence_bar.bmp diff --git a/Code/Sandbox/Editor/res/feedback.ico b/Code/Editor/res/feedback.ico similarity index 100% rename from Code/Sandbox/Editor/res/feedback.ico rename to Code/Editor/res/feedback.ico diff --git a/Code/Sandbox/Editor/res/file_browse.ico b/Code/Editor/res/file_browse.ico similarity index 100% rename from Code/Sandbox/Editor/res/file_browse.ico rename to Code/Editor/res/file_browse.ico diff --git a/Code/Sandbox/Editor/res/filesimage.bmp b/Code/Editor/res/filesimage.bmp similarity index 100% rename from Code/Sandbox/Editor/res/filesimage.bmp rename to Code/Editor/res/filesimage.bmp diff --git a/Code/Sandbox/Editor/res/filesimage_00.png b/Code/Editor/res/filesimage_00.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_00.png rename to Code/Editor/res/filesimage_00.png diff --git a/Code/Sandbox/Editor/res/filesimage_01.png b/Code/Editor/res/filesimage_01.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_01.png rename to Code/Editor/res/filesimage_01.png diff --git a/Code/Sandbox/Editor/res/filesimage_02.png b/Code/Editor/res/filesimage_02.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_02.png rename to Code/Editor/res/filesimage_02.png diff --git a/Code/Sandbox/Editor/res/filesimage_03.png b/Code/Editor/res/filesimage_03.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_03.png rename to Code/Editor/res/filesimage_03.png diff --git a/Code/Sandbox/Editor/res/filesimage_04.png b/Code/Editor/res/filesimage_04.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_04.png rename to Code/Editor/res/filesimage_04.png diff --git a/Code/Sandbox/Editor/res/filesimage_05.png b/Code/Editor/res/filesimage_05.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_05.png rename to Code/Editor/res/filesimage_05.png diff --git a/Code/Sandbox/Editor/res/filesimage_06.png b/Code/Editor/res/filesimage_06.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_06.png rename to Code/Editor/res/filesimage_06.png diff --git a/Code/Sandbox/Editor/res/filesimage_07.png b/Code/Editor/res/filesimage_07.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_07.png rename to Code/Editor/res/filesimage_07.png diff --git a/Code/Sandbox/Editor/res/filesimage_08.png b/Code/Editor/res/filesimage_08.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_08.png rename to Code/Editor/res/filesimage_08.png diff --git a/Code/Sandbox/Editor/res/filesimage_09.png b/Code/Editor/res/filesimage_09.png similarity index 100% rename from Code/Sandbox/Editor/res/filesimage_09.png rename to Code/Editor/res/filesimage_09.png diff --git a/Code/Sandbox/Editor/res/filestatus.bmp b/Code/Editor/res/filestatus.bmp similarity index 100% rename from Code/Sandbox/Editor/res/filestatus.bmp rename to Code/Editor/res/filestatus.bmp diff --git a/Code/Sandbox/Editor/res/folder.ico b/Code/Editor/res/folder.ico similarity index 100% rename from Code/Sandbox/Editor/res/folder.ico rename to Code/Editor/res/folder.ico diff --git a/Code/Sandbox/Editor/res/folder.png b/Code/Editor/res/folder.png similarity index 100% rename from Code/Sandbox/Editor/res/folder.png rename to Code/Editor/res/folder.png diff --git a/Code/Sandbox/Editor/res/fopen_back.ico b/Code/Editor/res/fopen_back.ico similarity index 100% rename from Code/Sandbox/Editor/res/fopen_back.ico rename to Code/Editor/res/fopen_back.ico diff --git a/Code/Sandbox/Editor/res/fopen_back.png b/Code/Editor/res/fopen_back.png similarity index 100% rename from Code/Sandbox/Editor/res/fopen_back.png rename to Code/Editor/res/fopen_back.png diff --git a/Code/Sandbox/Editor/res/fopen_up.ico b/Code/Editor/res/fopen_up.ico similarity index 100% rename from Code/Sandbox/Editor/res/fopen_up.ico rename to Code/Editor/res/fopen_up.ico diff --git a/Code/Sandbox/Editor/res/fopen_up.png b/Code/Editor/res/fopen_up.png similarity index 100% rename from Code/Sandbox/Editor/res/fopen_up.png rename to Code/Editor/res/fopen_up.png diff --git a/Code/Sandbox/Editor/res/grid.ico b/Code/Editor/res/grid.ico similarity index 100% rename from Code/Sandbox/Editor/res/grid.ico rename to Code/Editor/res/grid.ico diff --git a/Code/Sandbox/Editor/res/group_closed.png b/Code/Editor/res/group_closed.png similarity index 100% rename from Code/Sandbox/Editor/res/group_closed.png rename to Code/Editor/res/group_closed.png diff --git a/Code/Sandbox/Editor/res/group_open.png b/Code/Editor/res/group_open.png similarity index 100% rename from Code/Sandbox/Editor/res/group_open.png rename to Code/Editor/res/group_open.png diff --git a/Code/Sandbox/Editor/res/handDrag.cur b/Code/Editor/res/handDrag.cur similarity index 100% rename from Code/Sandbox/Editor/res/handDrag.cur rename to Code/Editor/res/handDrag.cur diff --git a/Code/Sandbox/Editor/res/hit.cur b/Code/Editor/res/hit.cur similarity index 100% rename from Code/Sandbox/Editor/res/hit.cur rename to Code/Editor/res/hit.cur diff --git a/Code/Sandbox/Editor/res/hypergraph_components.bmp b/Code/Editor/res/hypergraph_components.bmp similarity index 100% rename from Code/Sandbox/Editor/res/hypergraph_components.bmp rename to Code/Editor/res/hypergraph_components.bmp diff --git a/Code/Sandbox/Editor/res/hypergraphtree.bmp b/Code/Editor/res/hypergraphtree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/hypergraphtree.bmp rename to Code/Editor/res/hypergraphtree.bmp diff --git a/Code/Sandbox/Editor/res/ico00001.ico b/Code/Editor/res/ico00001.ico similarity index 100% rename from Code/Sandbox/Editor/res/ico00001.ico rename to Code/Editor/res/ico00001.ico diff --git a/Code/Sandbox/Editor/res/ico00002.ico b/Code/Editor/res/ico00002.ico similarity index 100% rename from Code/Sandbox/Editor/res/ico00002.ico rename to Code/Editor/res/ico00002.ico diff --git a/Code/Sandbox/Editor/res/icon1.ico b/Code/Editor/res/icon1.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon1.ico rename to Code/Editor/res/icon1.ico diff --git a/Code/Sandbox/Editor/res/icon_delete.ico b/Code/Editor/res/icon_delete.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon_delete.ico rename to Code/Editor/res/icon_delete.ico diff --git a/Code/Sandbox/Editor/res/icon_export.ico b/Code/Editor/res/icon_export.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon_export.ico rename to Code/Editor/res/icon_export.ico diff --git a/Code/Sandbox/Editor/res/icon_import.ico b/Code/Editor/res/icon_import.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon_import.ico rename to Code/Editor/res/icon_import.ico diff --git a/Code/Sandbox/Editor/res/icon_new.ico b/Code/Editor/res/icon_new.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon_new.ico rename to Code/Editor/res/icon_new.ico diff --git a/Code/Sandbox/Editor/res/icon_pause.ico b/Code/Editor/res/icon_pause.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon_pause.ico rename to Code/Editor/res/icon_pause.ico diff --git a/Code/Sandbox/Editor/res/icon_play.ico b/Code/Editor/res/icon_play.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon_play.ico rename to Code/Editor/res/icon_play.ico diff --git a/Code/Sandbox/Editor/res/icon_question.bmp b/Code/Editor/res/icon_question.bmp similarity index 100% rename from Code/Sandbox/Editor/res/icon_question.bmp rename to Code/Editor/res/icon_question.bmp diff --git a/Code/Sandbox/Editor/res/icon_question.ico b/Code/Editor/res/icon_question.ico similarity index 100% rename from Code/Sandbox/Editor/res/icon_question.ico rename to Code/Editor/res/icon_question.ico diff --git a/Code/Sandbox/Editor/res/idb_.bmp b/Code/Editor/res/idb_.bmp similarity index 100% rename from Code/Sandbox/Editor/res/idb_.bmp rename to Code/Editor/res/idb_.bmp diff --git a/Code/Sandbox/Editor/res/infobar/CameraCollision-default.svg b/Code/Editor/res/infobar/CameraCollision-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/CameraCollision-default.svg rename to Code/Editor/res/infobar/CameraCollision-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/GotoLocation-default.svg b/Code/Editor/res/infobar/GotoLocation-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/GotoLocation-default.svg rename to Code/Editor/res/infobar/GotoLocation-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/LockScale-default.svg b/Code/Editor/res/infobar/LockScale-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/LockScale-default.svg rename to Code/Editor/res/infobar/LockScale-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/LockSelection-default.svg b/Code/Editor/res/infobar/LockSelection-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/LockSelection-default.svg rename to Code/Editor/res/infobar/LockSelection-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/Mute-default.svg b/Code/Editor/res/infobar/Mute-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/Mute-default.svg rename to Code/Editor/res/infobar/Mute-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/NoPlayerSync-default.svg b/Code/Editor/res/infobar/NoPlayerSync-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/NoPlayerSync-default.svg rename to Code/Editor/res/infobar/NoPlayerSync-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/NoPlayerSync-selected.svg b/Code/Editor/res/infobar/NoPlayerSync-selected.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/NoPlayerSync-selected.svg rename to Code/Editor/res/infobar/NoPlayerSync-selected.svg diff --git a/Code/Sandbox/Editor/res/infobar/Pause-default.svg b/Code/Editor/res/infobar/Pause-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/Pause-default.svg rename to Code/Editor/res/infobar/Pause-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/PausePlay-default.svg b/Code/Editor/res/infobar/PausePlay-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/PausePlay-default.svg rename to Code/Editor/res/infobar/PausePlay-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/PhysicsCol-default.svg b/Code/Editor/res/infobar/PhysicsCol-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/PhysicsCol-default.svg rename to Code/Editor/res/infobar/PhysicsCol-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/VR-default.svg b/Code/Editor/res/infobar/VR-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/VR-default.svg rename to Code/Editor/res/infobar/VR-default.svg diff --git a/Code/Sandbox/Editor/res/infobar/XYZ-default.svg b/Code/Editor/res/infobar/XYZ-default.svg similarity index 100% rename from Code/Sandbox/Editor/res/infobar/XYZ-default.svg rename to Code/Editor/res/infobar/XYZ-default.svg diff --git a/Code/Sandbox/Editor/res/k_PlayerButtons.bmp b/Code/Editor/res/k_PlayerButtons.bmp similarity index 100% rename from Code/Sandbox/Editor/res/k_PlayerButtons.bmp rename to Code/Editor/res/k_PlayerButtons.bmp diff --git a/Code/Sandbox/Editor/res/layer_editor_layer_buttons-0.png b/Code/Editor/res/layer_editor_layer_buttons-0.png similarity index 100% rename from Code/Sandbox/Editor/res/layer_editor_layer_buttons-0.png rename to Code/Editor/res/layer_editor_layer_buttons-0.png diff --git a/Code/Sandbox/Editor/res/layer_editor_layer_buttons-1.png b/Code/Editor/res/layer_editor_layer_buttons-1.png similarity index 100% rename from Code/Sandbox/Editor/res/layer_editor_layer_buttons-1.png rename to Code/Editor/res/layer_editor_layer_buttons-1.png diff --git a/Code/Sandbox/Editor/res/layer_icon.svg b/Code/Editor/res/layer_icon.svg similarity index 100% rename from Code/Sandbox/Editor/res/layer_icon.svg rename to Code/Editor/res/layer_icon.svg diff --git a/Code/Sandbox/Editor/res/layouts.bmp b/Code/Editor/res/layouts.bmp similarity index 100% rename from Code/Sandbox/Editor/res/layouts.bmp rename to Code/Editor/res/layouts.bmp diff --git a/Code/Sandbox/Editor/res/layouts/layouts-0.svg b/Code/Editor/res/layouts/layouts-0.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-0.svg rename to Code/Editor/res/layouts/layouts-0.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-1.svg b/Code/Editor/res/layouts/layouts-1.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-1.svg rename to Code/Editor/res/layouts/layouts-1.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-2.svg b/Code/Editor/res/layouts/layouts-2.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-2.svg rename to Code/Editor/res/layouts/layouts-2.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-3.svg b/Code/Editor/res/layouts/layouts-3.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-3.svg rename to Code/Editor/res/layouts/layouts-3.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-4.svg b/Code/Editor/res/layouts/layouts-4.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-4.svg rename to Code/Editor/res/layouts/layouts-4.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-5.svg b/Code/Editor/res/layouts/layouts-5.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-5.svg rename to Code/Editor/res/layouts/layouts-5.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-6.svg b/Code/Editor/res/layouts/layouts-6.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-6.svg rename to Code/Editor/res/layouts/layouts-6.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-7.svg b/Code/Editor/res/layouts/layouts-7.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-7.svg rename to Code/Editor/res/layouts/layouts-7.svg diff --git a/Code/Sandbox/Editor/res/layouts/layouts-8.svg b/Code/Editor/res/layouts/layouts-8.svg similarity index 100% rename from Code/Sandbox/Editor/res/layouts/layouts-8.svg rename to Code/Editor/res/layouts/layouts-8.svg diff --git a/Code/Sandbox/Editor/res/lc_connecting.ico b/Code/Editor/res/lc_connecting.ico similarity index 100% rename from Code/Sandbox/Editor/res/lc_connecting.ico rename to Code/Editor/res/lc_connecting.ico diff --git a/Code/Sandbox/Editor/res/lc_running.ico b/Code/Editor/res/lc_running.ico similarity index 100% rename from Code/Sandbox/Editor/res/lc_running.ico rename to Code/Editor/res/lc_running.ico diff --git a/Code/Sandbox/Editor/res/leftright.cur b/Code/Editor/res/leftright.cur similarity index 100% rename from Code/Sandbox/Editor/res/leftright.cur rename to Code/Editor/res/leftright.cur diff --git a/Code/Sandbox/Editor/res/litebulb.bmp b/Code/Editor/res/litebulb.bmp similarity index 100% rename from Code/Sandbox/Editor/res/litebulb.bmp rename to Code/Editor/res/litebulb.bmp diff --git a/Code/Sandbox/Editor/res/lock_circle_default.svg b/Code/Editor/res/lock_circle_default.svg similarity index 100% rename from Code/Sandbox/Editor/res/lock_circle_default.svg rename to Code/Editor/res/lock_circle_default.svg diff --git a/Code/Sandbox/Editor/res/lock_circle_transparent.svg b/Code/Editor/res/lock_circle_transparent.svg similarity index 100% rename from Code/Sandbox/Editor/res/lock_circle_transparent.svg rename to Code/Editor/res/lock_circle_transparent.svg diff --git a/Code/Sandbox/Editor/res/lock_on_NotTransparent.svg b/Code/Editor/res/lock_on_NotTransparent.svg similarity index 100% rename from Code/Sandbox/Editor/res/lock_on_NotTransparent.svg rename to Code/Editor/res/lock_on_NotTransparent.svg diff --git a/Code/Sandbox/Editor/res/lock_on_transparent.svg b/Code/Editor/res/lock_on_transparent.svg similarity index 100% rename from Code/Sandbox/Editor/res/lock_on_transparent.svg rename to Code/Editor/res/lock_on_transparent.svg diff --git a/Code/Sandbox/Editor/res/lock_sel.bmp b/Code/Editor/res/lock_sel.bmp similarity index 100% rename from Code/Sandbox/Editor/res/lock_sel.bmp rename to Code/Editor/res/lock_sel.bmp diff --git a/Code/Sandbox/Editor/res/locked.svg b/Code/Editor/res/locked.svg similarity index 100% rename from Code/Sandbox/Editor/res/locked.svg rename to Code/Editor/res/locked.svg diff --git a/Code/Sandbox/Editor/res/locksele.bmp b/Code/Editor/res/locksele.bmp similarity index 100% rename from Code/Sandbox/Editor/res/locksele.bmp rename to Code/Editor/res/locksele.bmp diff --git a/Code/Sandbox/Editor/res/logo.bmp b/Code/Editor/res/logo.bmp similarity index 100% rename from Code/Sandbox/Editor/res/logo.bmp rename to Code/Editor/res/logo.bmp diff --git a/Code/Sandbox/Editor/res/logo.gif b/Code/Editor/res/logo.gif similarity index 100% rename from Code/Sandbox/Editor/res/logo.gif rename to Code/Editor/res/logo.gif diff --git a/Code/Sandbox/Editor/res/lyeditor_small.ico b/Code/Editor/res/lyeditor_small.ico similarity index 100% rename from Code/Sandbox/Editor/res/lyeditor_small.ico rename to Code/Editor/res/lyeditor_small.ico diff --git a/Code/Sandbox/Editor/res/mainfram.bmp b/Code/Editor/res/mainfram.bmp similarity index 100% rename from Code/Sandbox/Editor/res/mainfram.bmp rename to Code/Editor/res/mainfram.bmp diff --git a/Code/Sandbox/Editor/res/mann_tagdef_toolbar.bmp b/Code/Editor/res/mann_tagdef_toolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/mann_tagdef_toolbar.bmp rename to Code/Editor/res/mann_tagdef_toolbar.bmp diff --git a/Code/Sandbox/Editor/res/mann_tagdef_tree.bmp b/Code/Editor/res/mann_tagdef_tree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/mann_tagdef_tree.bmp rename to Code/Editor/res/mann_tagdef_tree.bmp diff --git a/Code/Sandbox/Editor/res/material.bmp b/Code/Editor/res/material.bmp similarity index 100% rename from Code/Sandbox/Editor/res/material.bmp rename to Code/Editor/res/material.bmp diff --git a/Code/Sandbox/Editor/res/material_browser.bmp b/Code/Editor/res/material_browser.bmp similarity index 100% rename from Code/Sandbox/Editor/res/material_browser.bmp rename to Code/Editor/res/material_browser.bmp diff --git a/Code/Sandbox/Editor/res/materialbar.bmp b/Code/Editor/res/materialbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/materialbar.bmp rename to Code/Editor/res/materialbar.bmp diff --git a/Code/Sandbox/Editor/res/maximize.ico b/Code/Editor/res/maximize.ico similarity index 100% rename from Code/Sandbox/Editor/res/maximize.ico rename to Code/Editor/res/maximize.ico diff --git a/Code/Sandbox/Editor/res/minus.ico b/Code/Editor/res/minus.ico similarity index 100% rename from Code/Sandbox/Editor/res/minus.ico rename to Code/Editor/res/minus.ico diff --git a/Code/Sandbox/Editor/res/misc_bar.bmp b/Code/Editor/res/misc_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/misc_bar.bmp rename to Code/Editor/res/misc_bar.bmp diff --git a/Code/Sandbox/Editor/res/model_viewport_dock.bmp b/Code/Editor/res/model_viewport_dock.bmp similarity index 100% rename from Code/Sandbox/Editor/res/model_viewport_dock.bmp rename to Code/Editor/res/model_viewport_dock.bmp diff --git a/Code/Sandbox/Editor/res/model_viewport_fullscreen.bmp b/Code/Editor/res/model_viewport_fullscreen.bmp similarity index 100% rename from Code/Sandbox/Editor/res/model_viewport_fullscreen.bmp rename to Code/Editor/res/model_viewport_fullscreen.bmp diff --git a/Code/Sandbox/Editor/res/motion_b.bmp b/Code/Editor/res/motion_b.bmp similarity index 100% rename from Code/Sandbox/Editor/res/motion_b.bmp rename to Code/Editor/res/motion_b.bmp diff --git a/Code/Sandbox/Editor/res/musictree.bmp b/Code/Editor/res/musictree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/musictree.bmp rename to Code/Editor/res/musictree.bmp diff --git a/Code/Sandbox/Editor/res/nodrop.cur b/Code/Editor/res/nodrop.cur similarity index 100% rename from Code/Sandbox/Editor/res/nodrop.cur rename to Code/Editor/res/nodrop.cur diff --git a/Code/Sandbox/Editor/res/o3de_editor.ico b/Code/Editor/res/o3de_editor.ico similarity index 100% rename from Code/Sandbox/Editor/res/o3de_editor.ico rename to Code/Editor/res/o3de_editor.ico diff --git a/Code/Sandbox/Editor/res/object_move.cur b/Code/Editor/res/object_move.cur similarity index 100% rename from Code/Sandbox/Editor/res/object_move.cur rename to Code/Editor/res/object_move.cur diff --git a/Code/Sandbox/Editor/res/object_rotate.cur b/Code/Editor/res/object_rotate.cur similarity index 100% rename from Code/Sandbox/Editor/res/object_rotate.cur rename to Code/Editor/res/object_rotate.cur diff --git a/Code/Sandbox/Editor/res/object_scale.cur b/Code/Editor/res/object_scale.cur similarity index 100% rename from Code/Sandbox/Editor/res/object_scale.cur rename to Code/Editor/res/object_scale.cur diff --git a/Code/Sandbox/Editor/res/objectsbrowser.bmp b/Code/Editor/res/objectsbrowser.bmp similarity index 100% rename from Code/Sandbox/Editor/res/objectsbrowser.bmp rename to Code/Editor/res/objectsbrowser.bmp diff --git a/Code/Sandbox/Editor/res/pakmanager_file.png b/Code/Editor/res/pakmanager_file.png similarity index 100% rename from Code/Sandbox/Editor/res/pakmanager_file.png rename to Code/Editor/res/pakmanager_file.png diff --git a/Code/Sandbox/Editor/res/pakmanager_folder.png b/Code/Editor/res/pakmanager_folder.png similarity index 100% rename from Code/Sandbox/Editor/res/pakmanager_folder.png rename to Code/Editor/res/pakmanager_folder.png diff --git a/Code/Sandbox/Editor/res/panel_ve.bmp b/Code/Editor/res/panel_ve.bmp similarity index 100% rename from Code/Sandbox/Editor/res/panel_ve.bmp rename to Code/Editor/res/panel_ve.bmp diff --git a/Code/Sandbox/Editor/res/panel_veg.bmp b/Code/Editor/res/panel_veg.bmp similarity index 100% rename from Code/Sandbox/Editor/res/panel_veg.bmp rename to Code/Editor/res/panel_veg.bmp diff --git a/Code/Sandbox/Editor/res/panel_veg2.bmp b/Code/Editor/res/panel_veg2.bmp similarity index 100% rename from Code/Sandbox/Editor/res/panel_veg2.bmp rename to Code/Editor/res/panel_veg2.bmp diff --git a/Code/Sandbox/Editor/res/panel_vegetation-00.png b/Code/Editor/res/panel_vegetation-00.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation-00.png rename to Code/Editor/res/panel_vegetation-00.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation-01.png b/Code/Editor/res/panel_vegetation-01.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation-01.png rename to Code/Editor/res/panel_vegetation-01.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation-02.png b/Code/Editor/res/panel_vegetation-02.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation-02.png rename to Code/Editor/res/panel_vegetation-02.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation-03.png b/Code/Editor/res/panel_vegetation-03.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation-03.png rename to Code/Editor/res/panel_vegetation-03.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation-04.png b/Code/Editor/res/panel_vegetation-04.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation-04.png rename to Code/Editor/res/panel_vegetation-04.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation-05.png b/Code/Editor/res/panel_vegetation-05.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation-05.png rename to Code/Editor/res/panel_vegetation-05.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation_2-00.png b/Code/Editor/res/panel_vegetation_2-00.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation_2-00.png rename to Code/Editor/res/panel_vegetation_2-00.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation_2-01.png b/Code/Editor/res/panel_vegetation_2-01.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation_2-01.png rename to Code/Editor/res/panel_vegetation_2-01.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation_2-02.png b/Code/Editor/res/panel_vegetation_2-02.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation_2-02.png rename to Code/Editor/res/panel_vegetation_2-02.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation_2-03.png b/Code/Editor/res/panel_vegetation_2-03.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation_2-03.png rename to Code/Editor/res/panel_vegetation_2-03.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation_2-04.png b/Code/Editor/res/panel_vegetation_2-04.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation_2-04.png rename to Code/Editor/res/panel_vegetation_2-04.png diff --git a/Code/Sandbox/Editor/res/panel_vegetation_2-05.png b/Code/Editor/res/panel_vegetation_2-05.png similarity index 100% rename from Code/Sandbox/Editor/res/panel_vegetation_2-05.png rename to Code/Editor/res/panel_vegetation_2-05.png diff --git a/Code/Sandbox/Editor/res/particles_tree.bmp b/Code/Editor/res/particles_tree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/particles_tree.bmp rename to Code/Editor/res/particles_tree.bmp diff --git a/Code/Sandbox/Editor/res/particlesbar.bmp b/Code/Editor/res/particlesbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/particlesbar.bmp rename to Code/Editor/res/particlesbar.bmp diff --git a/Code/Sandbox/Editor/res/pick.bmp b/Code/Editor/res/pick.bmp similarity index 100% rename from Code/Sandbox/Editor/res/pick.bmp rename to Code/Editor/res/pick.bmp diff --git a/Code/Sandbox/Editor/res/pick_cursor.cur b/Code/Editor/res/pick_cursor.cur similarity index 100% rename from Code/Sandbox/Editor/res/pick_cursor.cur rename to Code/Editor/res/pick_cursor.cur diff --git a/Code/Sandbox/Editor/res/plus.ico b/Code/Editor/res/plus.ico similarity index 100% rename from Code/Sandbox/Editor/res/plus.ico rename to Code/Editor/res/plus.ico diff --git a/Code/Sandbox/Editor/res/pointerDragItem.cur b/Code/Editor/res/pointerDragItem.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointerDragItem.cur rename to Code/Editor/res/pointerDragItem.cur diff --git a/Code/Sandbox/Editor/res/pointerHit.cur b/Code/Editor/res/pointerHit.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointerHit.cur rename to Code/Editor/res/pointerHit.cur diff --git a/Code/Sandbox/Editor/res/pointer_.cur b/Code/Editor/res/pointer_.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_.cur rename to Code/Editor/res/pointer_.cur diff --git a/Code/Sandbox/Editor/res/pointer_flatten.cur b/Code/Editor/res/pointer_flatten.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_flatten.cur rename to Code/Editor/res/pointer_flatten.cur diff --git a/Code/Sandbox/Editor/res/pointer_getheight.cur b/Code/Editor/res/pointer_getheight.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_getheight.cur rename to Code/Editor/res/pointer_getheight.cur diff --git a/Code/Sandbox/Editor/res/pointer_link.cur b/Code/Editor/res/pointer_link.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_link.cur rename to Code/Editor/res/pointer_link.cur diff --git a/Code/Sandbox/Editor/res/pointer_linknow.cur b/Code/Editor/res/pointer_linknow.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_linknow.cur rename to Code/Editor/res/pointer_linknow.cur diff --git a/Code/Sandbox/Editor/res/pointer_minus.cur b/Code/Editor/res/pointer_minus.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_minus.cur rename to Code/Editor/res/pointer_minus.cur diff --git a/Code/Sandbox/Editor/res/pointer_plus.cur b/Code/Editor/res/pointer_plus.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_plus.cur rename to Code/Editor/res/pointer_plus.cur diff --git a/Code/Sandbox/Editor/res/pointer_smooth.cur b/Code/Editor/res/pointer_smooth.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_smooth.cur rename to Code/Editor/res/pointer_smooth.cur diff --git a/Code/Sandbox/Editor/res/pointer_so_sel_plus.cur b/Code/Editor/res/pointer_so_sel_plus.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_so_sel_plus.cur rename to Code/Editor/res/pointer_so_sel_plus.cur diff --git a/Code/Sandbox/Editor/res/pointer_so_select.cur b/Code/Editor/res/pointer_so_select.cur similarity index 100% rename from Code/Sandbox/Editor/res/pointer_so_select.cur rename to Code/Editor/res/pointer_so_select.cur diff --git a/Code/Sandbox/Editor/res/proceduralmaterial_toolbar.bmp b/Code/Editor/res/proceduralmaterial_toolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/proceduralmaterial_toolbar.bmp rename to Code/Editor/res/proceduralmaterial_toolbar.bmp diff --git a/Code/Sandbox/Editor/res/progslider_end.bmp b/Code/Editor/res/progslider_end.bmp similarity index 100% rename from Code/Sandbox/Editor/res/progslider_end.bmp rename to Code/Editor/res/progslider_end.bmp diff --git a/Code/Sandbox/Editor/res/progslider_marker.bmp b/Code/Editor/res/progslider_marker.bmp similarity index 100% rename from Code/Sandbox/Editor/res/progslider_marker.bmp rename to Code/Editor/res/progslider_marker.bmp diff --git a/Code/Sandbox/Editor/res/progslider_start.bmp b/Code/Editor/res/progslider_start.bmp similarity index 100% rename from Code/Sandbox/Editor/res/progslider_start.bmp rename to Code/Editor/res/progslider_start.bmp diff --git a/Code/Sandbox/Editor/res/progslider_thumb.bmp b/Code/Editor/res/progslider_thumb.bmp similarity index 100% rename from Code/Sandbox/Editor/res/progslider_thumb.bmp rename to Code/Editor/res/progslider_thumb.bmp diff --git a/Code/Sandbox/Editor/res/progslider_track.bmp b/Code/Editor/res/progslider_track.bmp similarity index 100% rename from Code/Sandbox/Editor/res/progslider_track.bmp rename to Code/Editor/res/progslider_track.bmp diff --git a/Code/Sandbox/Editor/res/properties.bmp b/Code/Editor/res/properties.bmp similarity index 100% rename from Code/Sandbox/Editor/res/properties.bmp rename to Code/Editor/res/properties.bmp diff --git a/Code/Sandbox/Editor/res/psd.ico b/Code/Editor/res/psd.ico similarity index 100% rename from Code/Sandbox/Editor/res/psd.ico rename to Code/Editor/res/psd.ico diff --git a/Code/Sandbox/Editor/res/remove.png b/Code/Editor/res/remove.png similarity index 100% rename from Code/Sandbox/Editor/res/remove.png rename to Code/Editor/res/remove.png diff --git a/Code/Sandbox/Editor/res/rename.ico b/Code/Editor/res/rename.ico similarity index 100% rename from Code/Sandbox/Editor/res/rename.ico rename to Code/Editor/res/rename.ico diff --git a/Code/Sandbox/Editor/res/replace.ico b/Code/Editor/res/replace.ico similarity index 100% rename from Code/Sandbox/Editor/res/replace.ico rename to Code/Editor/res/replace.ico diff --git a/Code/Sandbox/Editor/res/ribbon_system_button.png b/Code/Editor/res/ribbon_system_button.png similarity index 100% rename from Code/Sandbox/Editor/res/ribbon_system_button.png rename to Code/Editor/res/ribbon_system_button.png diff --git a/Code/Sandbox/Editor/res/sandbox_dark.bmp b/Code/Editor/res/sandbox_dark.bmp similarity index 100% rename from Code/Sandbox/Editor/res/sandbox_dark.bmp rename to Code/Editor/res/sandbox_dark.bmp diff --git a/Code/Sandbox/Editor/res/sb_welcome_dark.bmp b/Code/Editor/res/sb_welcome_dark.bmp similarity index 100% rename from Code/Sandbox/Editor/res/sb_welcome_dark.bmp rename to Code/Editor/res/sb_welcome_dark.bmp diff --git a/Code/Sandbox/Editor/res/selectobj.bmp b/Code/Editor/res/selectobj.bmp similarity index 100% rename from Code/Sandbox/Editor/res/selectobj.bmp rename to Code/Editor/res/selectobj.bmp diff --git a/Code/Sandbox/Editor/res/seq_1_colour_keys.bmp b/Code/Editor/res/seq_1_colour_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/seq_1_colour_keys.bmp rename to Code/Editor/res/seq_1_colour_keys.bmp diff --git a/Code/Sandbox/Editor/res/seq_2_colour_keys.bmp b/Code/Editor/res/seq_2_colour_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/seq_2_colour_keys.bmp rename to Code/Editor/res/seq_2_colour_keys.bmp diff --git a/Code/Sandbox/Editor/res/seq_3_colour_keys.bmp b/Code/Editor/res/seq_3_colour_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/seq_3_colour_keys.bmp rename to Code/Editor/res/seq_3_colour_keys.bmp diff --git a/Code/Sandbox/Editor/res/seq_4_colour_keys.bmp b/Code/Editor/res/seq_4_colour_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/seq_4_colour_keys.bmp rename to Code/Editor/res/seq_4_colour_keys.bmp diff --git a/Code/Sandbox/Editor/res/seq_5_colour_keys.bmp b/Code/Editor/res/seq_5_colour_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/seq_5_colour_keys.bmp rename to Code/Editor/res/seq_5_colour_keys.bmp diff --git a/Code/Sandbox/Editor/res/seq_6_colour_keys.bmp b/Code/Editor/res/seq_6_colour_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/seq_6_colour_keys.bmp rename to Code/Editor/res/seq_6_colour_keys.bmp diff --git a/Code/Sandbox/Editor/res/seq_7_colour_keys.bmp b/Code/Editor/res/seq_7_colour_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/seq_7_colour_keys.bmp rename to Code/Editor/res/seq_7_colour_keys.bmp diff --git a/Code/Sandbox/Editor/res/sequencer_keys.bmp b/Code/Editor/res/sequencer_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/sequencer_keys.bmp rename to Code/Editor/res/sequencer_keys.bmp diff --git a/Code/Sandbox/Editor/res/sequencer_nodes.bmp b/Code/Editor/res/sequencer_nodes.bmp similarity index 100% rename from Code/Sandbox/Editor/res/sequencer_nodes.bmp rename to Code/Editor/res/sequencer_nodes.bmp diff --git a/Code/Sandbox/Editor/res/soundfiles.bmp b/Code/Editor/res/soundfiles.bmp similarity index 100% rename from Code/Sandbox/Editor/res/soundfiles.bmp rename to Code/Editor/res/soundfiles.bmp diff --git a/Code/Sandbox/Editor/res/soundmood.bmp b/Code/Editor/res/soundmood.bmp similarity index 100% rename from Code/Sandbox/Editor/res/soundmood.bmp rename to Code/Editor/res/soundmood.bmp diff --git a/Code/Sandbox/Editor/res/soundpre.bmp b/Code/Editor/res/soundpre.bmp similarity index 100% rename from Code/Sandbox/Editor/res/soundpre.bmp rename to Code/Editor/res/soundpre.bmp diff --git a/Code/Sandbox/Editor/res/source_control-not_setup.svg b/Code/Editor/res/source_control-not_setup.svg similarity index 100% rename from Code/Sandbox/Editor/res/source_control-not_setup.svg rename to Code/Editor/res/source_control-not_setup.svg diff --git a/Code/Sandbox/Editor/res/source_control-warning_v2.svg b/Code/Editor/res/source_control-warning_v2.svg similarity index 100% rename from Code/Sandbox/Editor/res/source_control-warning_v2.svg rename to Code/Editor/res/source_control-warning_v2.svg diff --git a/Code/Sandbox/Editor/res/source_control_buttons.bmp b/Code/Editor/res/source_control_buttons.bmp similarity index 100% rename from Code/Sandbox/Editor/res/source_control_buttons.bmp rename to Code/Editor/res/source_control_buttons.bmp diff --git a/Code/Sandbox/Editor/res/source_control_connected.svg b/Code/Editor/res/source_control_connected.svg similarity index 100% rename from Code/Sandbox/Editor/res/source_control_connected.svg rename to Code/Editor/res/source_control_connected.svg diff --git a/Code/Sandbox/Editor/res/source_control_error_v2.svg b/Code/Editor/res/source_control_error_v2.svg similarity index 100% rename from Code/Sandbox/Editor/res/source_control_error_v2.svg rename to Code/Editor/res/source_control_error_v2.svg diff --git a/Code/Sandbox/Editor/res/spline_edit_bar.bmp b/Code/Editor/res/spline_edit_bar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/spline_edit_bar.bmp rename to Code/Editor/res/spline_edit_bar.bmp diff --git a/Code/Sandbox/Editor/res/splineextrabar.bmp b/Code/Editor/res/splineextrabar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/splineextrabar.bmp rename to Code/Editor/res/splineextrabar.bmp diff --git a/Code/Sandbox/Editor/res/status_mem_low1.ico b/Code/Editor/res/status_mem_low1.ico similarity index 100% rename from Code/Sandbox/Editor/res/status_mem_low1.ico rename to Code/Editor/res/status_mem_low1.ico diff --git a/Code/Sandbox/Editor/res/status_mem_low2.ico b/Code/Editor/res/status_mem_low2.ico similarity index 100% rename from Code/Sandbox/Editor/res/status_mem_low2.ico rename to Code/Editor/res/status_mem_low2.ico diff --git a/Code/Sandbox/Editor/res/status_mem_ok.ico b/Code/Editor/res/status_mem_ok.ico similarity index 100% rename from Code/Sandbox/Editor/res/status_mem_ok.ico rename to Code/Editor/res/status_mem_ok.ico diff --git a/Code/Sandbox/Editor/res/stdviews.bmp b/Code/Editor/res/stdviews.bmp similarity index 100% rename from Code/Sandbox/Editor/res/stdviews.bmp rename to Code/Editor/res/stdviews.bmp diff --git a/Code/Sandbox/Editor/res/subobjseltype.bmp b/Code/Editor/res/subobjseltype.bmp similarity index 100% rename from Code/Sandbox/Editor/res/subobjseltype.bmp rename to Code/Editor/res/subobjseltype.bmp diff --git a/Code/Sandbox/Editor/res/sw_mapbar.bmp b/Code/Editor/res/sw_mapbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/sw_mapbar.bmp rename to Code/Editor/res/sw_mapbar.bmp diff --git a/Code/Sandbox/Editor/res/sw_toolbar.bmp b/Code/Editor/res/sw_toolbar.bmp similarity index 100% rename from Code/Sandbox/Editor/res/sw_toolbar.bmp rename to Code/Editor/res/sw_toolbar.bmp diff --git a/Code/Sandbox/Editor/res/tabPanel.bmp b/Code/Editor/res/tabPanel.bmp similarity index 100% rename from Code/Sandbox/Editor/res/tabPanel.bmp rename to Code/Editor/res/tabPanel.bmp diff --git a/Code/Sandbox/Editor/res/tiff.ico b/Code/Editor/res/tiff.ico similarity index 100% rename from Code/Sandbox/Editor/res/tiff.ico rename to Code/Editor/res/tiff.ico diff --git a/Code/Sandbox/Editor/res/toolbar1.bmp b/Code/Editor/res/toolbar1.bmp similarity index 100% rename from Code/Sandbox/Editor/res/toolbar1.bmp rename to Code/Editor/res/toolbar1.bmp diff --git a/Code/Sandbox/Editor/res/toolbar2.bmp b/Code/Editor/res/toolbar2.bmp similarity index 100% rename from Code/Sandbox/Editor/res/toolbar2.bmp rename to Code/Editor/res/toolbar2.bmp diff --git a/Code/Sandbox/Editor/res/toolbox.bmp b/Code/Editor/res/toolbox.bmp similarity index 100% rename from Code/Sandbox/Editor/res/toolbox.bmp rename to Code/Editor/res/toolbox.bmp diff --git a/Code/Sandbox/Editor/res/trackvie.bmp b/Code/Editor/res/trackvie.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackvie.bmp rename to Code/Editor/res/trackvie.bmp diff --git a/Code/Sandbox/Editor/res/trackview.bmp b/Code/Editor/res/trackview.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackview.bmp rename to Code/Editor/res/trackview.bmp diff --git a/Code/Sandbox/Editor/res/trackview1.bmp b/Code/Editor/res/trackview1.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackview1.bmp rename to Code/Editor/res/trackview1.bmp diff --git a/Code/Sandbox/Editor/res/trackview_key.bmp b/Code/Editor/res/trackview_key.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackview_key.bmp rename to Code/Editor/res/trackview_key.bmp diff --git a/Code/Sandbox/Editor/res/trackview_keys.bmp b/Code/Editor/res/trackview_keys.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackview_keys.bmp rename to Code/Editor/res/trackview_keys.bmp diff --git a/Code/Sandbox/Editor/res/trackview_nodes.bmp b/Code/Editor/res/trackview_nodes.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackview_nodes.bmp rename to Code/Editor/res/trackview_nodes.bmp diff --git a/Code/Sandbox/Editor/res/trackview_play.bmp b/Code/Editor/res/trackview_play.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackview_play.bmp rename to Code/Editor/res/trackview_play.bmp diff --git a/Code/Sandbox/Editor/res/trackview_view.bmp b/Code/Editor/res/trackview_view.bmp similarity index 100% rename from Code/Sandbox/Editor/res/trackview_view.bmp rename to Code/Editor/res/trackview_view.bmp diff --git a/Code/Sandbox/Editor/res/tree_vie.bmp b/Code/Editor/res/tree_vie.bmp similarity index 100% rename from Code/Sandbox/Editor/res/tree_vie.bmp rename to Code/Editor/res/tree_vie.bmp diff --git a/Code/Sandbox/Editor/res/tree_view_folder.png b/Code/Editor/res/tree_view_folder.png similarity index 100% rename from Code/Sandbox/Editor/res/tree_view_folder.png rename to Code/Editor/res/tree_view_folder.png diff --git a/Code/Sandbox/Editor/res/tree_view_level.png b/Code/Editor/res/tree_view_level.png similarity index 100% rename from Code/Sandbox/Editor/res/tree_view_level.png rename to Code/Editor/res/tree_view_level.png diff --git a/Code/Sandbox/Editor/res/uieditor_main.bmp b/Code/Editor/res/uieditor_main.bmp similarity index 100% rename from Code/Sandbox/Editor/res/uieditor_main.bmp rename to Code/Editor/res/uieditor_main.bmp diff --git a/Code/Sandbox/Editor/res/unlocked.svg b/Code/Editor/res/unlocked.svg similarity index 100% rename from Code/Sandbox/Editor/res/unlocked.svg rename to Code/Editor/res/unlocked.svg diff --git a/Code/Sandbox/Editor/res/up_arrow.ico b/Code/Editor/res/up_arrow.ico similarity index 100% rename from Code/Sandbox/Editor/res/up_arrow.ico rename to Code/Editor/res/up_arrow.ico diff --git a/Code/Sandbox/Editor/res/value_types.bmp b/Code/Editor/res/value_types.bmp similarity index 100% rename from Code/Sandbox/Editor/res/value_types.bmp rename to Code/Editor/res/value_types.bmp diff --git a/Code/Sandbox/Editor/res/veed_tree.bmp b/Code/Editor/res/veed_tree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/veed_tree.bmp rename to Code/Editor/res/veed_tree.bmp diff --git a/Code/Sandbox/Editor/res/vegetati.bmp b/Code/Editor/res/vegetati.bmp similarity index 100% rename from Code/Sandbox/Editor/res/vegetati.bmp rename to Code/Editor/res/vegetati.bmp diff --git a/Code/Sandbox/Editor/res/vegtree.bmp b/Code/Editor/res/vegtree.bmp similarity index 100% rename from Code/Sandbox/Editor/res/vegtree.bmp rename to Code/Editor/res/vegtree.bmp diff --git a/Code/Sandbox/Editor/res/video_record.ico b/Code/Editor/res/video_record.ico similarity index 100% rename from Code/Sandbox/Editor/res/video_record.ico rename to Code/Editor/res/video_record.ico diff --git a/Code/Sandbox/Editor/res/vis_circle_default.svg b/Code/Editor/res/vis_circle_default.svg similarity index 100% rename from Code/Sandbox/Editor/res/vis_circle_default.svg rename to Code/Editor/res/vis_circle_default.svg diff --git a/Code/Sandbox/Editor/res/vis_circle_transparent.svg b/Code/Editor/res/vis_circle_transparent.svg similarity index 100% rename from Code/Sandbox/Editor/res/vis_circle_transparent.svg rename to Code/Editor/res/vis_circle_transparent.svg diff --git a/Code/Sandbox/Editor/res/vis_on_NotTransparent.svg b/Code/Editor/res/vis_on_NotTransparent.svg similarity index 100% rename from Code/Sandbox/Editor/res/vis_on_NotTransparent.svg rename to Code/Editor/res/vis_on_NotTransparent.svg diff --git a/Code/Sandbox/Editor/res/vis_on_transparent.svg b/Code/Editor/res/vis_on_transparent.svg similarity index 100% rename from Code/Sandbox/Editor/res/vis_on_transparent.svg rename to Code/Editor/res/vis_on_transparent.svg diff --git a/Code/Sandbox/Editor/res/visb.svg b/Code/Editor/res/visb.svg similarity index 100% rename from Code/Sandbox/Editor/res/visb.svg rename to Code/Editor/res/visb.svg diff --git a/Code/Sandbox/Editor/res/visb_hidden.svg b/Code/Editor/res/visb_hidden.svg similarity index 100% rename from Code/Sandbox/Editor/res/visb_hidden.svg rename to Code/Editor/res/visb_hidden.svg diff --git a/Code/Sandbox/Editor/res/warning16x16.ico b/Code/Editor/res/warning16x16.ico similarity index 100% rename from Code/Sandbox/Editor/res/warning16x16.ico rename to Code/Editor/res/warning16x16.ico diff --git a/Code/Sandbox/Editor/res/water.bmp b/Code/Editor/res/water.bmp similarity index 100% rename from Code/Sandbox/Editor/res/water.bmp rename to Code/Editor/res/water.bmp diff --git a/Code/Sandbox/Editor/res/work_in_progress_icon.ico b/Code/Editor/res/work_in_progress_icon.ico similarity index 100% rename from Code/Sandbox/Editor/res/work_in_progress_icon.ico rename to Code/Editor/res/work_in_progress_icon.ico diff --git a/Code/Sandbox/Editor/res/work_in_progress_icon.png b/Code/Editor/res/work_in_progress_icon.png similarity index 100% rename from Code/Sandbox/Editor/res/work_in_progress_icon.png rename to Code/Editor/res/work_in_progress_icon.png diff --git a/Code/Sandbox/Editor/splashscreen_background_gradient.jpg b/Code/Editor/splashscreen_background_gradient.jpg similarity index 100% rename from Code/Sandbox/Editor/splashscreen_background_gradient.jpg rename to Code/Editor/splashscreen_background_gradient.jpg diff --git a/Code/Sandbox/Editor/water.png b/Code/Editor/water.png similarity index 100% rename from Code/Sandbox/Editor/water.png rename to Code/Editor/water.png From 16966802400d19679c4d27014bd81bd798e0a614 Mon Sep 17 00:00:00 2001 From: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> Date: Tue, 29 Jun 2021 12:42:54 -0700 Subject: [PATCH 039/111] git mv Code\Sandbox\Plugins Code/Editor/Plugins Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> --- Code/{Sandbox => Editor}/Plugins/CMakeLists.txt | 0 .../ComponentEntityEditorPlugin/CMakeLists.txt | 0 .../ComponentEntityEditorPlugin.cpp | 0 .../ComponentEntityEditorPlugin.h | 0 .../ComponentEntityEditorPlugin.mf | 0 .../ComponentEntityEditorPlugin_precompiled.h | 0 .../Objects/ComponentEntityObject.cpp | 0 .../Objects/ComponentEntityObject.h | 0 .../SandboxIntegration.cpp | 0 .../SandboxIntegration.h | 0 .../Tests/ComponentEntityObjectStateTests.cpp | 0 .../ComponentEntityEditorPlugin/Tests/test_Main.cpp | 0 .../UI/AssetCatalogModel.cpp | 0 .../UI/AssetCatalogModel.h | 0 .../UI/ComponentEntityEditorOutlinerWindow.qrc | 0 .../UI/ComponentPalette/CategoriesList.cpp | 0 .../UI/ComponentPalette/CategoriesList.h | 0 .../UI/ComponentPalette/ComponentDataModel.cpp | 0 .../UI/ComponentPalette/ComponentDataModel.h | 0 .../UI/ComponentPalette/ComponentPaletteSettings.h | 0 .../UI/ComponentPalette/ComponentPaletteWindow.cpp | 0 .../UI/ComponentPalette/ComponentPaletteWindow.h | 0 .../UI/ComponentPalette/FavoriteComponentList.cpp | 0 .../UI/ComponentPalette/FavoriteComponentList.h | 0 .../UI/ComponentPalette/FilteredComponentList.cpp | 0 .../UI/ComponentPalette/FilteredComponentList.h | 0 .../UI/ComponentPalette/InformationPanel.cpp | 0 .../UI/ComponentPalette/InformationPanel.h | 0 .../UI/Icons/lock_default.svg | 0 .../UI/Icons/lock_default_hover.svg | 0 .../UI/Icons/lock_default_transparent.svg | 0 .../UI/Icons/lock_on.svg | 0 .../UI/Icons/lock_on_hover.svg | 0 .../UI/Icons/lock_on_transparent.svg | 0 .../UI/Icons/sort_a_to_z.svg | 0 .../UI/Icons/sort_manually.svg | 0 .../UI/Icons/sort_z_to_a.svg | 0 .../UI/Icons/visibility_default.svg | 0 .../UI/Icons/visibility_default_hover.svg | 0 .../UI/Icons/visibility_default_transparent.svg | 0 .../UI/Icons/visibility_on.svg | 0 .../UI/Icons/visibility_on_hover.svg | 0 .../UI/Icons/visibility_on_transparent.svg | 0 .../UI/Outliner/EntityOutliner.qss | 0 .../UI/Outliner/OutlinerCacheBus.h | 0 .../UI/Outliner/OutlinerDisplayOptionsMenu.cpp | 0 .../UI/Outliner/OutlinerDisplayOptionsMenu.h | 0 .../UI/Outliner/OutlinerListModel.cpp | 0 .../UI/Outliner/OutlinerListModel.hxx | 0 .../UI/Outliner/OutlinerSearchWidget.cpp | 0 .../UI/Outliner/OutlinerSearchWidget.h | 0 .../UI/Outliner/OutlinerSortFilterProxyModel.cpp | 0 .../UI/Outliner/OutlinerSortFilterProxyModel.hxx | 0 .../UI/Outliner/OutlinerTreeView.cpp | 0 .../UI/Outliner/OutlinerTreeView.hxx | 0 .../UI/Outliner/OutlinerWidget.cpp | 0 .../UI/Outliner/OutlinerWidget.hxx | 0 .../UI/Outliner/OutlinerWidget.ui | 0 .../UI/Outliner/resources.qrc | 0 .../UI/QComponentEntityEditorMainWindow.cpp | 0 .../UI/QComponentEntityEditorMainWindow.h | 0 .../UI/QComponentEntityEditorOutlinerWindow.cpp | 0 .../UI/QComponentEntityEditorOutlinerWindow.h | 0 .../UI/QComponentLevelEntityEditorMainWindow.cpp | 0 .../UI/QComponentLevelEntityEditorMainWindow.h | 0 .../componententityeditorplugin_files.cmake | 0 .../componententityeditorplugin_test_files.cmake | 0 .../Plugins/ComponentEntityEditorPlugin/dllmain.cpp | 0 .../AssetBrowserContextProvider.cpp | 0 .../AssetBrowserContextProvider.h | 0 .../Plugins/EditorAssetImporter/AssetImporter.qrc | 0 .../EditorAssetImporter/AssetImporterDocument.cpp | 0 .../EditorAssetImporter/AssetImporterDocument.h | 0 .../EditorAssetImporter/AssetImporterPlugin.cpp | 0 .../EditorAssetImporter/AssetImporterPlugin.h | 0 .../EditorAssetImporter/AssetImporterWindow.cpp | 0 .../EditorAssetImporter/AssetImporterWindow.h | 0 .../EditorAssetImporter/AssetImporterWindow.ui | 0 .../Plugins/EditorAssetImporter/CMakeLists.txt | 0 .../EditorAssetImporter_precompiled.h | 0 .../EditorAssetImporter/ImporterRootDisplay.cpp | 0 .../EditorAssetImporter/ImporterRootDisplay.h | 0 .../EditorAssetImporter/ImporterRootDisplay.ui | 0 .../Plugins/EditorAssetImporter/Main.cpp | 0 .../SceneSerializationHandler.cpp | 0 .../EditorAssetImporter/SceneSerializationHandler.h | 0 .../editorassetimporter_files.cmake | 0 .../Plugins/EditorCommon/ActionOutput.cpp | 0 .../Plugins/EditorCommon/ActionOutput.h | 0 .../Plugins/EditorCommon/AxisHelper.cpp | 0 .../Plugins/EditorCommon/CMakeLists.txt | 0 .../Plugins/EditorCommon/Cry_LegacyPhysUtils.h | 0 .../Plugins/EditorCommon/DeepFilterProxyModel.cpp | 0 .../Plugins/EditorCommon/DeepFilterProxyModel.h | 0 .../Plugins/EditorCommon/DisplayContext.cpp | 0 .../Plugins/EditorCommon/DockTitleBarWidget.cpp | 0 .../Plugins/EditorCommon/DockTitleBarWidget.h | 0 .../EditorCommon/DrawingPrimitives/Ruler.cpp | 0 .../Plugins/EditorCommon/DrawingPrimitives/Ruler.h | 0 .../EditorCommon/DrawingPrimitives/TimeSlider.cpp | 0 .../EditorCommon/DrawingPrimitives/TimeSlider.h | 0 .../Plugins/EditorCommon/EditorCommon.cpp | 0 .../Plugins/EditorCommon/EditorCommon.def | 0 .../Plugins/EditorCommon/EditorCommon.h | 0 .../Plugins/EditorCommon/EditorCommon.rc | Bin .../Plugins/EditorCommon/EditorCommonAPI.h | 0 .../Plugins/EditorCommon/EditorCommon_precompiled.h | 0 .../Plugins/EditorCommon/Icons/CurveEditor/auto.png | 0 .../EditorCommon/Icons/CurveEditor/break.png | 0 .../Icons/CurveEditor/fit_horizontal.png | 0 .../EditorCommon/Icons/CurveEditor/fit_vertical.png | 0 .../EditorCommon/Icons/CurveEditor/linear_in.png | 0 .../EditorCommon/Icons/CurveEditor/linear_out.png | 0 .../EditorCommon/Icons/CurveEditor/step_in.png | 0 .../EditorCommon/Icons/CurveEditor/step_out.png | 0 .../EditorCommon/Icons/CurveEditor/unify.png | 0 .../EditorCommon/Icons/CurveEditor/zero_in.png | 0 .../EditorCommon/Icons/CurveEditor/zero_out.png | 0 .../Plugins/EditorCommon/QtViewPane.cpp | 0 .../Plugins/EditorCommon/Resource.h | 0 .../EditorCommon/SaveUtilities/AsyncSaveRunner.cpp | 0 .../EditorCommon/SaveUtilities/AsyncSaveRunner.h | 0 .../Plugins/EditorCommon/UiEditorDLLBus.h | 0 .../Plugins/EditorCommon/WinWidget/WinWidget.h | 0 .../EditorCommon/WinWidget/WinWidgetManager.cpp | 0 .../EditorCommon/WinWidget/WinWidgetManager.h | 0 .../Plugins/EditorCommon/editorcommon_files.cmake | 0 .../Plugins/EditorCommon/res/EditorCommon.rc2 | Bin .../Plugins/EditorCommon/stdafx.cpp | 0 .../Plugins/FFMPEGPlugin/CMakeLists.txt | 0 .../Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp | 0 .../Plugins/FFMPEGPlugin/FFMPEGPlugin.h | 0 .../Plugins/FFMPEGPlugin/FFMPEGPlugin.rc | 0 .../Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h | 0 .../Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake | 0 .../Plugins/FFMPEGPlugin/main.cpp | 0 .../Plugins/FFMPEGPlugin/resource.h | 0 .../Plugins/PerforcePlugin/CMakeLists.txt | 0 .../Plugins/PerforcePlugin/PasswordDlg.cpp | 0 .../Plugins/PerforcePlugin/PasswordDlg.h | 0 .../Plugins/PerforcePlugin/PerforcePlugin.cpp | 0 .../Plugins/PerforcePlugin/PerforcePlugin.h | 0 .../Plugins/PerforcePlugin/PerforcePlugin.qrc | 0 .../Plugins/PerforcePlugin/PerforcePlugin.rc | 0 .../PerforcePlugin/PerforcePlugin_precompiled.h | 0 .../PerforcePlugin/PerforceSourceControl.cpp | 0 .../Plugins/PerforcePlugin/PerforceSourceControl.h | 0 .../PerforcePlugin/Platform/Linux/PAL_linux.cmake | 0 .../PerforcePlugin/Platform/Mac/PAL_mac.cmake | 0 .../Platform/Windows/PAL_windows.cmake | 0 .../Plugins/PerforcePlugin/main.cpp | 0 .../PerforcePlugin/perforceplugin_files.cmake | 0 .../Plugins/PerforcePlugin/resource.h | 0 .../Plugins/PerforcePlugin/settings.ui | 0 .../Plugins/ProjectSettingsTool/CMakeLists.txt | 0 .../ProjectSettingsTool/DefaultImageValidator.cpp | 0 .../ProjectSettingsTool/DefaultImageValidator.h | 0 .../ProjectSettingsTool/FunctorValidator.cpp | 0 .../Plugins/ProjectSettingsTool/FunctorValidator.h | 0 .../Plugins/ProjectSettingsTool/LastPathBus.h | 0 .../Plugins/ProjectSettingsTool/PlatformSettings.h | 0 .../PlatformSettings_Android.cpp | 0 .../ProjectSettingsTool/PlatformSettings_Android.h | 0 .../ProjectSettingsTool/PlatformSettings_Base.cpp | 0 .../ProjectSettingsTool/PlatformSettings_Base.h | 0 .../ProjectSettingsTool/PlatformSettings_Ios.cpp | 0 .../ProjectSettingsTool/PlatformSettings_Ios.h | 0 .../ProjectSettingsTool/PlatformSettings_common.h | 0 .../Plugins/ProjectSettingsTool/Platforms.h | 0 .../Plugins/ProjectSettingsTool/PlistDictionary.cpp | 0 .../Plugins/ProjectSettingsTool/PlistDictionary.h | 0 .../ProjectSettingsContainer.cpp | 0 .../ProjectSettingsTool/ProjectSettingsContainer.h | 0 .../ProjectSettingsSerialization.cpp | 0 .../ProjectSettingsSerialization.h | 0 .../ProjectSettingsTool/ProjectSettingsTool.qrc | 0 .../ProjectSettingsToolWidget.ui | 0 .../ProjectSettingsToolWindow.cpp | 0 .../ProjectSettingsTool/ProjectSettingsToolWindow.h | 0 .../ProjectSettingsTool_precompiled.h | 0 .../ProjectSettingsValidator.cpp | 0 .../ProjectSettingsTool/ProjectSettingsValidator.h | 0 .../ProjectSettingsTool/PropertyFileSelect.cpp | 0 .../ProjectSettingsTool/PropertyFileSelect.h | 0 .../PropertyFuncValBrowseEdit.cpp | 0 .../ProjectSettingsTool/PropertyFuncValBrowseEdit.h | 0 .../ProjectSettingsTool/PropertyFuncValLineEdit.cpp | 0 .../ProjectSettingsTool/PropertyFuncValLineEdit.h | 0 .../ProjectSettingsTool/PropertyImagePreview.cpp | 0 .../ProjectSettingsTool/PropertyImagePreview.h | 0 .../Plugins/ProjectSettingsTool/PropertyLinked.cpp | 0 .../Plugins/ProjectSettingsTool/PropertyLinked.h | 0 .../Plugins/ProjectSettingsTool/Utils.cpp | 0 .../Plugins/ProjectSettingsTool/Utils.h | 0 .../ProjectSettingsTool/ValidationHandler.cpp | 0 .../Plugins/ProjectSettingsTool/ValidationHandler.h | 0 .../Plugins/ProjectSettingsTool/ValidatorBus.h | 0 .../Plugins/ProjectSettingsTool/Validators.cpp | 0 .../Plugins/ProjectSettingsTool/Validators.h | 0 .../Plugins/ProjectSettingsTool/Validators_impl.h | 0 .../ProjectSettingsTool/icons/broken_link.svg | 0 .../ProjectSettingsTool/icons/group_closed.png | 0 .../ProjectSettingsTool/icons/group_open.png | 0 .../Plugins/ProjectSettingsTool/icons/link.svg | 0 .../Plugins/ProjectSettingsTool/main.cpp | 0 .../projectsettingstool_files.cmake | 0 Code/{Sandbox => Editor}/Plugins/QtMocRule.props | 0 Code/{Sandbox => Editor}/Plugins/QtMocRule.targets | 0 Code/{Sandbox => Editor}/Plugins/QtMocRule.xml | 0 Code/{Sandbox => Editor}/Plugins/QtRccRule.props | 0 Code/{Sandbox => Editor}/Plugins/QtRccRule.targets | 0 Code/{Sandbox => Editor}/Plugins/QtRccRule.xml | 0 Code/{Sandbox => Editor}/Plugins/QtUicRule.props | 0 Code/{Sandbox => Editor}/Plugins/QtUicRule.targets | 0 Code/{Sandbox => Editor}/Plugins/QtUicRule.xml | 0 215 files changed, 0 insertions(+), 0 deletions(-) rename Code/{Sandbox => Editor}/Plugins/CMakeLists.txt (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.mf (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_transparent.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_transparent.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_a_to_z.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_manually.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_z_to_a.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_transparent.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_transparent.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.ui (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/Outliner/resources.qrc (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/ComponentEntityEditorPlugin/dllmain.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporter.qrc (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporterDocument.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporterDocument.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporterPlugin.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporterWindow.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporterWindow.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/AssetImporterWindow.ui (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/CMakeLists.txt (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/ImporterRootDisplay.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/ImporterRootDisplay.ui (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/Main.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/SceneSerializationHandler.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorAssetImporter/editorassetimporter_files.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/ActionOutput.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/ActionOutput.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/AxisHelper.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/CMakeLists.txt (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Cry_LegacyPhysUtils.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DeepFilterProxyModel.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DeepFilterProxyModel.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DisplayContext.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DockTitleBarWidget.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DockTitleBarWidget.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DrawingPrimitives/Ruler.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/EditorCommon.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/EditorCommon.def (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/EditorCommon.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/EditorCommon.rc (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/EditorCommonAPI.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/EditorCommon_precompiled.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/auto.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/break.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/fit_horizontal.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/fit_vertical.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/linear_in.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/linear_out.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/step_in.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/step_out.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/unify.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/zero_in.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Icons/CurveEditor/zero_out.png (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/QtViewPane.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/Resource.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/UiEditorDLLBus.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/WinWidget/WinWidget.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/WinWidget/WinWidgetManager.h (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/editorcommon_files.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/res/EditorCommon.rc2 (100%) rename Code/{Sandbox => Editor}/Plugins/EditorCommon/stdafx.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/CMakeLists.txt (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/FFMPEGPlugin.h (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/FFMPEGPlugin.rc (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/main.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/FFMPEGPlugin/resource.h (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/CMakeLists.txt (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PasswordDlg.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PasswordDlg.h (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PerforcePlugin.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PerforcePlugin.h (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PerforcePlugin.qrc (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PerforcePlugin.rc (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PerforceSourceControl.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/PerforceSourceControl.h (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/main.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/perforceplugin_files.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/resource.h (100%) rename Code/{Sandbox => Editor}/Plugins/PerforcePlugin/settings.ui (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/CMakeLists.txt (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/DefaultImageValidator.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/FunctorValidator.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/FunctorValidator.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/LastPathBus.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings_Android.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings_Base.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlatformSettings_common.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/Platforms.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlistDictionary.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PlistDictionary.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsTool.qrc (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsToolWidget.ui (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyFileSelect.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyImagePreview.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyLinked.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/PropertyLinked.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/Utils.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/Utils.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ValidationHandler.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ValidationHandler.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/ValidatorBus.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/Validators.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/Validators.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/Validators_impl.h (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/icons/broken_link.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/icons/group_closed.png (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/icons/group_open.png (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/icons/link.svg (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/main.cpp (100%) rename Code/{Sandbox => Editor}/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake (100%) rename Code/{Sandbox => Editor}/Plugins/QtMocRule.props (100%) rename Code/{Sandbox => Editor}/Plugins/QtMocRule.targets (100%) rename Code/{Sandbox => Editor}/Plugins/QtMocRule.xml (100%) rename Code/{Sandbox => Editor}/Plugins/QtRccRule.props (100%) rename Code/{Sandbox => Editor}/Plugins/QtRccRule.targets (100%) rename Code/{Sandbox => Editor}/Plugins/QtRccRule.xml (100%) rename Code/{Sandbox => Editor}/Plugins/QtUicRule.props (100%) rename Code/{Sandbox => Editor}/Plugins/QtUicRule.targets (100%) rename Code/{Sandbox => Editor}/Plugins/QtUicRule.xml (100%) diff --git a/Code/Sandbox/Plugins/CMakeLists.txt b/Code/Editor/Plugins/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Plugins/CMakeLists.txt rename to Code/Editor/Plugins/CMakeLists.txt diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt b/Code/Editor/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.mf b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.mf similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.mf rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.mf diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_transparent.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_transparent.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_transparent.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_transparent.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_transparent.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_transparent.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_transparent.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_transparent.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_a_to_z.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_a_to_z.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_a_to_z.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_a_to_z.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_manually.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_manually.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_manually.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_manually.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_z_to_a.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_z_to_a.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_z_to_a.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_z_to_a.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_transparent.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_transparent.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_transparent.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_transparent.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_transparent.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_transparent.svg similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_transparent.svg rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_transparent.svg diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.ui b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.ui similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.ui rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.ui diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/resources.qrc b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/resources.qrc similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/resources.qrc rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/resources.qrc diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake diff --git a/Code/Sandbox/Plugins/ComponentEntityEditorPlugin/dllmain.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp similarity index 100% rename from Code/Sandbox/Plugins/ComponentEntityEditorPlugin/dllmain.cpp rename to Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp rename to Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h rename to Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporter.qrc b/Code/Editor/Plugins/EditorAssetImporter/AssetImporter.qrc similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporter.qrc rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporter.qrc diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterDocument.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterDocument.cpp rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterDocument.h b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.h similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterDocument.h rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.h diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterPlugin.h b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.h similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterPlugin.h rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.h diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterWindow.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterWindow.cpp rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterWindow.h b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterWindow.h rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterWindow.ui b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.ui similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/AssetImporterWindow.ui rename to Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.ui diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/CMakeLists.txt b/Code/Editor/Plugins/EditorAssetImporter/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/CMakeLists.txt rename to Code/Editor/Plugins/EditorAssetImporter/CMakeLists.txt diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h b/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h rename to Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp rename to Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/ImporterRootDisplay.h b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.h similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/ImporterRootDisplay.h rename to Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.h diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/ImporterRootDisplay.ui b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.ui similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/ImporterRootDisplay.ui rename to Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.ui diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/Main.cpp b/Code/Editor/Plugins/EditorAssetImporter/Main.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/Main.cpp rename to Code/Editor/Plugins/EditorAssetImporter/Main.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp rename to Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/SceneSerializationHandler.h b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.h similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/SceneSerializationHandler.h rename to Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.h diff --git a/Code/Sandbox/Plugins/EditorAssetImporter/editorassetimporter_files.cmake b/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake similarity index 100% rename from Code/Sandbox/Plugins/EditorAssetImporter/editorassetimporter_files.cmake rename to Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake diff --git a/Code/Sandbox/Plugins/EditorCommon/ActionOutput.cpp b/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/ActionOutput.cpp rename to Code/Editor/Plugins/EditorCommon/ActionOutput.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/ActionOutput.h b/Code/Editor/Plugins/EditorCommon/ActionOutput.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/ActionOutput.h rename to Code/Editor/Plugins/EditorCommon/ActionOutput.h diff --git a/Code/Sandbox/Plugins/EditorCommon/AxisHelper.cpp b/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/AxisHelper.cpp rename to Code/Editor/Plugins/EditorCommon/AxisHelper.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/CMakeLists.txt b/Code/Editor/Plugins/EditorCommon/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/CMakeLists.txt rename to Code/Editor/Plugins/EditorCommon/CMakeLists.txt diff --git a/Code/Sandbox/Plugins/EditorCommon/Cry_LegacyPhysUtils.h b/Code/Editor/Plugins/EditorCommon/Cry_LegacyPhysUtils.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Cry_LegacyPhysUtils.h rename to Code/Editor/Plugins/EditorCommon/Cry_LegacyPhysUtils.h diff --git a/Code/Sandbox/Plugins/EditorCommon/DeepFilterProxyModel.cpp b/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DeepFilterProxyModel.cpp rename to Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/DeepFilterProxyModel.h b/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DeepFilterProxyModel.h rename to Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.h diff --git a/Code/Sandbox/Plugins/EditorCommon/DisplayContext.cpp b/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DisplayContext.cpp rename to Code/Editor/Plugins/EditorCommon/DisplayContext.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/DockTitleBarWidget.cpp b/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DockTitleBarWidget.cpp rename to Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/DockTitleBarWidget.h b/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DockTitleBarWidget.h rename to Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.h diff --git a/Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp rename to Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/Ruler.h b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/Ruler.h rename to Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.h diff --git a/Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp rename to Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h rename to Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h diff --git a/Code/Sandbox/Plugins/EditorCommon/EditorCommon.cpp b/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/EditorCommon.cpp rename to Code/Editor/Plugins/EditorCommon/EditorCommon.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/EditorCommon.def b/Code/Editor/Plugins/EditorCommon/EditorCommon.def similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/EditorCommon.def rename to Code/Editor/Plugins/EditorCommon/EditorCommon.def diff --git a/Code/Sandbox/Plugins/EditorCommon/EditorCommon.h b/Code/Editor/Plugins/EditorCommon/EditorCommon.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/EditorCommon.h rename to Code/Editor/Plugins/EditorCommon/EditorCommon.h diff --git a/Code/Sandbox/Plugins/EditorCommon/EditorCommon.rc b/Code/Editor/Plugins/EditorCommon/EditorCommon.rc similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/EditorCommon.rc rename to Code/Editor/Plugins/EditorCommon/EditorCommon.rc diff --git a/Code/Sandbox/Plugins/EditorCommon/EditorCommonAPI.h b/Code/Editor/Plugins/EditorCommon/EditorCommonAPI.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/EditorCommonAPI.h rename to Code/Editor/Plugins/EditorCommon/EditorCommonAPI.h diff --git a/Code/Sandbox/Plugins/EditorCommon/EditorCommon_precompiled.h b/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/EditorCommon_precompiled.h rename to Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/auto.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/auto.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/auto.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/auto.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/break.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/break.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/break.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/break.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/fit_horizontal.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/fit_horizontal.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/fit_horizontal.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/fit_horizontal.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/fit_vertical.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/fit_vertical.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/fit_vertical.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/fit_vertical.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/linear_in.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/linear_in.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/linear_in.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/linear_in.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/linear_out.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/linear_out.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/linear_out.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/linear_out.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/step_in.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/step_in.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/step_in.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/step_in.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/step_out.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/step_out.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/step_out.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/step_out.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/unify.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/unify.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/unify.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/unify.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/zero_in.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/zero_in.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/zero_in.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/zero_in.png diff --git a/Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/zero_out.png b/Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/zero_out.png similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Icons/CurveEditor/zero_out.png rename to Code/Editor/Plugins/EditorCommon/Icons/CurveEditor/zero_out.png diff --git a/Code/Sandbox/Plugins/EditorCommon/QtViewPane.cpp b/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/QtViewPane.cpp rename to Code/Editor/Plugins/EditorCommon/QtViewPane.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/Resource.h b/Code/Editor/Plugins/EditorCommon/Resource.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/Resource.h rename to Code/Editor/Plugins/EditorCommon/Resource.h diff --git a/Code/Sandbox/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp rename to Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h rename to Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h diff --git a/Code/Sandbox/Plugins/EditorCommon/UiEditorDLLBus.h b/Code/Editor/Plugins/EditorCommon/UiEditorDLLBus.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/UiEditorDLLBus.h rename to Code/Editor/Plugins/EditorCommon/UiEditorDLLBus.h diff --git a/Code/Sandbox/Plugins/EditorCommon/WinWidget/WinWidget.h b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidget.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/WinWidget/WinWidget.h rename to Code/Editor/Plugins/EditorCommon/WinWidget/WinWidget.h diff --git a/Code/Sandbox/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp rename to Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp diff --git a/Code/Sandbox/Plugins/EditorCommon/WinWidget/WinWidgetManager.h b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/WinWidget/WinWidgetManager.h rename to Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h diff --git a/Code/Sandbox/Plugins/EditorCommon/editorcommon_files.cmake b/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/editorcommon_files.cmake rename to Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake diff --git a/Code/Sandbox/Plugins/EditorCommon/res/EditorCommon.rc2 b/Code/Editor/Plugins/EditorCommon/res/EditorCommon.rc2 similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/res/EditorCommon.rc2 rename to Code/Editor/Plugins/EditorCommon/res/EditorCommon.rc2 diff --git a/Code/Sandbox/Plugins/EditorCommon/stdafx.cpp b/Code/Editor/Plugins/EditorCommon/stdafx.cpp similarity index 100% rename from Code/Sandbox/Plugins/EditorCommon/stdafx.cpp rename to Code/Editor/Plugins/EditorCommon/stdafx.cpp diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/CMakeLists.txt b/Code/Editor/Plugins/FFMPEGPlugin/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/CMakeLists.txt rename to Code/Editor/Plugins/FFMPEGPlugin/CMakeLists.txt diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp rename to Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.h b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.h similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.h rename to Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.h diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.rc b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.rc similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.rc rename to Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.rc diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h rename to Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake b/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake rename to Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/main.cpp b/Code/Editor/Plugins/FFMPEGPlugin/main.cpp similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/main.cpp rename to Code/Editor/Plugins/FFMPEGPlugin/main.cpp diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/resource.h b/Code/Editor/Plugins/FFMPEGPlugin/resource.h similarity index 100% rename from Code/Sandbox/Plugins/FFMPEGPlugin/resource.h rename to Code/Editor/Plugins/FFMPEGPlugin/resource.h diff --git a/Code/Sandbox/Plugins/PerforcePlugin/CMakeLists.txt b/Code/Editor/Plugins/PerforcePlugin/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/CMakeLists.txt rename to Code/Editor/Plugins/PerforcePlugin/CMakeLists.txt diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PasswordDlg.cpp b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PasswordDlg.cpp rename to Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PasswordDlg.h b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.h similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PasswordDlg.h rename to Code/Editor/Plugins/PerforcePlugin/PasswordDlg.h diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.cpp b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.cpp rename to Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.h b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.h similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.h rename to Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.h diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.qrc b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.qrc similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.qrc rename to Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.qrc diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.rc b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.rc similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin.rc rename to Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.rc diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h rename to Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PerforceSourceControl.cpp b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PerforceSourceControl.cpp rename to Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp diff --git a/Code/Sandbox/Plugins/PerforcePlugin/PerforceSourceControl.h b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/PerforceSourceControl.h rename to Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h diff --git a/Code/Sandbox/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake b/Code/Editor/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake rename to Code/Editor/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake diff --git a/Code/Sandbox/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake b/Code/Editor/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake rename to Code/Editor/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake diff --git a/Code/Sandbox/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake b/Code/Editor/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake rename to Code/Editor/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake diff --git a/Code/Sandbox/Plugins/PerforcePlugin/main.cpp b/Code/Editor/Plugins/PerforcePlugin/main.cpp similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/main.cpp rename to Code/Editor/Plugins/PerforcePlugin/main.cpp diff --git a/Code/Sandbox/Plugins/PerforcePlugin/perforceplugin_files.cmake b/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/perforceplugin_files.cmake rename to Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake diff --git a/Code/Sandbox/Plugins/PerforcePlugin/resource.h b/Code/Editor/Plugins/PerforcePlugin/resource.h similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/resource.h rename to Code/Editor/Plugins/PerforcePlugin/resource.h diff --git a/Code/Sandbox/Plugins/PerforcePlugin/settings.ui b/Code/Editor/Plugins/PerforcePlugin/settings.ui similarity index 100% rename from Code/Sandbox/Plugins/PerforcePlugin/settings.ui rename to Code/Editor/Plugins/PerforcePlugin/settings.ui diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/CMakeLists.txt b/Code/Editor/Plugins/ProjectSettingsTool/CMakeLists.txt similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/CMakeLists.txt rename to Code/Editor/Plugins/ProjectSettingsTool/CMakeLists.txt diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/DefaultImageValidator.h b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/DefaultImageValidator.h rename to Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/FunctorValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/FunctorValidator.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/FunctorValidator.h b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/FunctorValidator.h rename to Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/LastPathBus.h b/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/LastPathBus.h rename to Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings.h rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Android.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Android.h rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Base.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Base.h rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_common.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_common.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlatformSettings_common.h rename to Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_common.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/Platforms.h b/Code/Editor/Plugins/ProjectSettingsTool/Platforms.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/Platforms.h rename to Code/Editor/Plugins/ProjectSettingsTool/Platforms.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlistDictionary.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlistDictionary.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PlistDictionary.h b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PlistDictionary.h rename to Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsTool.qrc b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool.qrc similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsTool.qrc rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool.qrc diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsToolWidget.ui b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWidget.ui similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsToolWidget.ui rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWidget.ui diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h rename to Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFileSelect.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFileSelect.h rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyImagePreview.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyImagePreview.h rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyLinked.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyLinked.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/PropertyLinked.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/PropertyLinked.h rename to Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/Utils.cpp b/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/Utils.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/Utils.h b/Code/Editor/Plugins/ProjectSettingsTool/Utils.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/Utils.h rename to Code/Editor/Plugins/ProjectSettingsTool/Utils.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ValidationHandler.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ValidationHandler.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ValidationHandler.h b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ValidationHandler.h rename to Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/ValidatorBus.h b/Code/Editor/Plugins/ProjectSettingsTool/ValidatorBus.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/ValidatorBus.h rename to Code/Editor/Plugins/ProjectSettingsTool/ValidatorBus.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/Validators.cpp b/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/Validators.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/Validators.h b/Code/Editor/Plugins/ProjectSettingsTool/Validators.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/Validators.h rename to Code/Editor/Plugins/ProjectSettingsTool/Validators.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/Validators_impl.h b/Code/Editor/Plugins/ProjectSettingsTool/Validators_impl.h similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/Validators_impl.h rename to Code/Editor/Plugins/ProjectSettingsTool/Validators_impl.h diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/icons/broken_link.svg b/Code/Editor/Plugins/ProjectSettingsTool/icons/broken_link.svg similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/icons/broken_link.svg rename to Code/Editor/Plugins/ProjectSettingsTool/icons/broken_link.svg diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/icons/group_closed.png b/Code/Editor/Plugins/ProjectSettingsTool/icons/group_closed.png similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/icons/group_closed.png rename to Code/Editor/Plugins/ProjectSettingsTool/icons/group_closed.png diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/icons/group_open.png b/Code/Editor/Plugins/ProjectSettingsTool/icons/group_open.png similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/icons/group_open.png rename to Code/Editor/Plugins/ProjectSettingsTool/icons/group_open.png diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/icons/link.svg b/Code/Editor/Plugins/ProjectSettingsTool/icons/link.svg similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/icons/link.svg rename to Code/Editor/Plugins/ProjectSettingsTool/icons/link.svg diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/main.cpp b/Code/Editor/Plugins/ProjectSettingsTool/main.cpp similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/main.cpp rename to Code/Editor/Plugins/ProjectSettingsTool/main.cpp diff --git a/Code/Sandbox/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake b/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake similarity index 100% rename from Code/Sandbox/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake rename to Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake diff --git a/Code/Sandbox/Plugins/QtMocRule.props b/Code/Editor/Plugins/QtMocRule.props similarity index 100% rename from Code/Sandbox/Plugins/QtMocRule.props rename to Code/Editor/Plugins/QtMocRule.props diff --git a/Code/Sandbox/Plugins/QtMocRule.targets b/Code/Editor/Plugins/QtMocRule.targets similarity index 100% rename from Code/Sandbox/Plugins/QtMocRule.targets rename to Code/Editor/Plugins/QtMocRule.targets diff --git a/Code/Sandbox/Plugins/QtMocRule.xml b/Code/Editor/Plugins/QtMocRule.xml similarity index 100% rename from Code/Sandbox/Plugins/QtMocRule.xml rename to Code/Editor/Plugins/QtMocRule.xml diff --git a/Code/Sandbox/Plugins/QtRccRule.props b/Code/Editor/Plugins/QtRccRule.props similarity index 100% rename from Code/Sandbox/Plugins/QtRccRule.props rename to Code/Editor/Plugins/QtRccRule.props diff --git a/Code/Sandbox/Plugins/QtRccRule.targets b/Code/Editor/Plugins/QtRccRule.targets similarity index 100% rename from Code/Sandbox/Plugins/QtRccRule.targets rename to Code/Editor/Plugins/QtRccRule.targets diff --git a/Code/Sandbox/Plugins/QtRccRule.xml b/Code/Editor/Plugins/QtRccRule.xml similarity index 100% rename from Code/Sandbox/Plugins/QtRccRule.xml rename to Code/Editor/Plugins/QtRccRule.xml diff --git a/Code/Sandbox/Plugins/QtUicRule.props b/Code/Editor/Plugins/QtUicRule.props similarity index 100% rename from Code/Sandbox/Plugins/QtUicRule.props rename to Code/Editor/Plugins/QtUicRule.props diff --git a/Code/Sandbox/Plugins/QtUicRule.targets b/Code/Editor/Plugins/QtUicRule.targets similarity index 100% rename from Code/Sandbox/Plugins/QtUicRule.targets rename to Code/Editor/Plugins/QtUicRule.targets diff --git a/Code/Sandbox/Plugins/QtUicRule.xml b/Code/Editor/Plugins/QtUicRule.xml similarity index 100% rename from Code/Sandbox/Plugins/QtUicRule.xml rename to Code/Editor/Plugins/QtUicRule.xml From d14229c67ecb0d3f11f682d49e8be5fca680c531 Mon Sep 17 00:00:00 2001 From: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> Date: Tue, 29 Jun 2021 13:13:00 -0700 Subject: [PATCH 040/111] some replacements and fixes that were referring Sandbox/Editor Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> --- Code/CMakeLists.txt | 2 +- Code/Editor/CMakeLists.txt | 2 ++ Code/Editor/CryEdit.cpp | 2 +- Code/Editor/CryEdit.h | 2 +- .../AzQtComponents/Components/resources.qrc | 4 ++-- .../EditorTransformComponentSelection.cpp | 2 +- Code/Sandbox/CMakeLists.txt | 11 ----------- .../ly_test_tools/environment/reg_cleaner.py | 2 +- editor.cfg | 2 +- .../Platform/Windows/package_filelists/atom.json | 2 +- .../commit_validation/pal_allowedlist.txt | 3 +-- 11 files changed, 12 insertions(+), 22 deletions(-) delete mode 100644 Code/Sandbox/CMakeLists.txt diff --git a/Code/CMakeLists.txt b/Code/CMakeLists.txt index cb84d251e5..16984a2a4a 100644 --- a/Code/CMakeLists.txt +++ b/Code/CMakeLists.txt @@ -8,5 +8,5 @@ add_subdirectory(Framework) add_subdirectory(LauncherUnified) add_subdirectory(Legacy) -add_subdirectory(Sandbox) +add_subdirectory(Editor) add_subdirectory(Tools) diff --git a/Code/Editor/CMakeLists.txt b/Code/Editor/CMakeLists.txt index 06a73f06dc..8efe83be3d 100644 --- a/Code/Editor/CMakeLists.txt +++ b/Code/Editor/CMakeLists.txt @@ -9,6 +9,8 @@ if(NOT PAL_TRAIT_BUILD_HOST_TOOLS) return() endif() +add_subdirectory(Plugins) + ly_add_target( NAME EditorCore SHARED NAMESPACE Legacy diff --git a/Code/Editor/CryEdit.cpp b/Code/Editor/CryEdit.cpp index ceced74070..a0e37bd4a8 100644 --- a/Code/Editor/CryEdit.cpp +++ b/Code/Editor/CryEdit.cpp @@ -1602,7 +1602,7 @@ BOOL CCryEditApp::InitInstance() QDir engineRoot = QString::fromUtf8(engineRootPath.c_str(), aznumeric_cast(engineRootPath.Native().size())); AzQtComponents::StyleManager::addSearchPaths( QStringLiteral("style"), - engineRoot.filePath(QStringLiteral("Code/Sandbox/Editor/Style")), + engineRoot.filePath(QStringLiteral("Code/Editor/Style")), QStringLiteral(":/Assets/Editor/Style"), engineRootPath); AzQtComponents::StyleManager::setStyleSheet(mainWindow, QStringLiteral("style:Editor.qss")); diff --git a/Code/Editor/CryEdit.h b/Code/Editor/CryEdit.h index c3df9c1afc..870d659068 100644 --- a/Code/Editor/CryEdit.h +++ b/Code/Editor/CryEdit.h @@ -128,7 +128,7 @@ public: void SaveAutoBackup(); void SaveAutoRemind(); void ExportToGame(bool bNoMsgBox = true); - //! \param sTitleStr overwrites the default title - "Sandbox Editor 3 (tm)" + //! \param sTitleStr overwrites the default title of the Editor void SetEditorWindowTitle(QString sTitleStr = QString(), QString sPreTitleStr = QString(), QString sPostTitleStr = QString()); RecentFileList* GetRecentFileList(); virtual void AddToRecentFileList(const QString& lpszPathName); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/resources.qrc b/Code/Framework/AzQtComponents/AzQtComponents/Components/resources.qrc index 7070bd372b..904be3897f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/resources.qrc +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/resources.qrc @@ -393,8 +393,8 @@ img/line.png - ../../../../Sandbox/Editor/Style/EditorStylesheetVariables_Dark.json - ../../../../Sandbox/Editor/Style/NewEditorStylesheet.qss + ../../../../Editor/Style/EditorStylesheetVariables_Dark.json + ../../../../Editor/Style/NewEditorStylesheet.qss img/UI20/Cards/point_hand.png diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp index 0dbaa42e1a..e0b7dd2350 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp @@ -2049,7 +2049,7 @@ namespace AzToolsFramework { AZ_PROFILE_FUNCTION(AZ::Debug::ProfileCategory::AzToolsFramework); - // note: see Code/Sandbox/Editor/Resource.h for ID_EDIT_ ids + // note: see Code/Editor/Resource.h for ID_EDIT_ ids const auto lockUnlock = [this](const bool lock) { diff --git a/Code/Sandbox/CMakeLists.txt b/Code/Sandbox/CMakeLists.txt deleted file mode 100644 index 5b420c10fe..0000000000 --- a/Code/Sandbox/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# -# Copyright (c) Contributors to the Open 3D Engine Project -# -# SPDX-License-Identifier: Apache-2.0 OR MIT -# -# - -# Plugins should be processed before because we are going to generate the list of plugins -# that the editor should load -add_subdirectory(Plugins) -add_subdirectory(Editor) diff --git a/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py b/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py index f344ea1739..90e4ce2b2b 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py +++ b/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py @@ -117,6 +117,6 @@ def create_ly_keys(): process_utils.check_call( ["reg", "add", target_key, "/v", "RC_EnableSourceControl", "/t", "REG_DWORD", "/d", "0", "/f"]) # The editor will ignore settings unless EditorSettingsVersion is what it expects - # The value it expects is in Code\Sandbox\Editor\Settings.cpp + # The value it expects is in Code\Editor\Settings.cpp process_utils.check_call( ["reg", "add", target_key, "/v", "EditorSettingsVersion", "/t", "REG_DWORD", "/d", "2", "/f"]) diff --git a/editor.cfg b/editor.cfg index f2d75a3da2..843a52824d 100644 --- a/editor.cfg +++ b/editor.cfg @@ -1,4 +1,4 @@ --- Settings stored here are only used in the Sandbox Editor +-- Settings stored here are only used in the Editor -- Disable the Missing Asset Resolver by default ed_MissingAssetResolver = 0 diff --git a/scripts/build/package/Platform/Windows/package_filelists/atom.json b/scripts/build/package/Platform/Windows/package_filelists/atom.json index 3bd02de7e3..7f049981a7 100644 --- a/scripts/build/package/Platform/Windows/package_filelists/atom.json +++ b/scripts/build/package/Platform/Windows/package_filelists/atom.json @@ -29,7 +29,7 @@ "Legacy/**": "#include", "Framework/**": "#include", "LauncherUnified/**": "#include", - "Sandbox/**": "#include", + "Editor/**": "#include", "Tools": { "Android/**": "#include", "AWSNativeSDKInit/**": "#include", diff --git a/scripts/commit_validation/commit_validation/pal_allowedlist.txt b/scripts/commit_validation/commit_validation/pal_allowedlist.txt index 7c989e6f10..5ea71e0363 100644 --- a/scripts/commit_validation/commit_validation/pal_allowedlist.txt +++ b/scripts/commit_validation/commit_validation/pal_allowedlist.txt @@ -1,5 +1,4 @@ */Code/Legacy/* -*/Code/Deprecated/Sandbox/* */Code/Framework/AzCore/AzCore/Math/Aabb.h */Code/Framework/AzCore/AzCore/Math/Color.h */Code/Framework/AzCore/AzCore/Math/Crc.h @@ -47,7 +46,7 @@ */Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h */Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp */Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp -*/Code/Sandbox/* +*/Code/Editor/* */Code/Tools/* */Gems/*/3rdParty/* */Gems/*/External/* From f7c96e44b00987bfaf42ffe4c3d2a7282c6167d9 Mon Sep 17 00:00:00 2001 From: Vincent Liu <5900509+onecent1101@users.noreply.github.com> Date: Tue, 29 Jun 2021 14:56:09 -0700 Subject: [PATCH 041/111] [LYN-4848] Migrate remaining doc links to o3de.org (#1632) --- .../Editor/Attribution/AWSCoreAttributionConsentDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp index d67c53f389..69c4472f59 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp @@ -14,12 +14,12 @@ namespace AWSCore { constexpr const char* AWSAttributionConsentDialogTitle = "AWS Core Gem Usage Agreement"; constexpr const char* AWSAttributionConsentDialogMessage = "The AWS Core Gem has detected credentials for an Amazon Web Services account for this
\ - instance of O3DE. Click here to learn more about AWS integration, including how to
\ + instance of O3DE. Click here to learn more about AWS integration, including how to
\ manage your AWS credentials.

\ Please note: when credentials are detected, AWS Core Gem sends telemetry data to AWS,
\ which helps us improve AWS services for O3DE. You can change this setting below, and at
\ any time in Settings: Global Preferences. Data sent is subject to the AWS Privacy Policy.
\ - Click here to learn more about what data is sent to AWS."; + Click here to learn more about what data is sent to AWS."; constexpr const char* AWSAttributionConsentDialogCheckboxText = "Please share the information about my use of AWS Core Gem with AWS."; From ffc05872ccedbd9ba2c0e907d32c1440f5798461 Mon Sep 17 00:00:00 2001 From: Terry Michaels Date: Tue, 29 Jun 2021 17:37:34 -0500 Subject: [PATCH 042/111] Updated Helpers Icon per UX (#1658) Signed-off-by: Terry Michaels --- .../AzQtComponents/Images/Menu/helpers.svg | 36 +++++++------------ 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Images/Menu/helpers.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Menu/helpers.svg index e782a7066a..41f9638134 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Images/Menu/helpers.svg +++ b/Code/Framework/AzQtComponents/AzQtComponents/Images/Menu/helpers.svg @@ -1,24 +1,12 @@ - - - Helpers Icon - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + From b65a2da548bf74da2b56377eeb3bc5a8cd5c84a6 Mon Sep 17 00:00:00 2001 From: dmcdiar Date: Tue, 29 Jun 2021 16:10:03 -0700 Subject: [PATCH 043/111] Changed the DiffuseProbeGrid and ReflectionProbe components to only override the Box size if it's at the default (unit) Signed-off-by: dmcdiar --- .../DiffuseProbeGridComponentConstants.h | 4 ++-- .../DiffuseProbeGridComponentController.cpp | 17 ++++++++++++++--- .../DiffuseProbeGridComponentController.h | 2 ++ .../EditorDiffuseProbeGridComponent.cpp | 3 +++ .../ReflectionProbeComponentConstants.h | 1 + .../ReflectionProbeComponentController.cpp | 18 +++++++++++++++--- .../ReflectionProbeComponentController.h | 13 +++++++------ 7 files changed, 44 insertions(+), 14 deletions(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h index 6c5042f5d9..c539cd0607 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h @@ -13,8 +13,8 @@ namespace AZ { static constexpr const char* const DiffuseProbeGridComponentTypeId = "{9B900A04-192F-4F5E-AE31-762605D8159A}"; static constexpr const char* const EditorDiffuseProbeGridComponentTypeId = "{F80086E1-ECE7-4E8C-B727-A750D10F7D83}"; - static constexpr float DefaultDiffuseProbeGridSpacing = 4.0f; - static constexpr float DefaultDiffuseProbeGridExtents = 20.0f; + static constexpr float DefaultDiffuseProbeGridSpacing = 2.0f; + static constexpr float DefaultDiffuseProbeGridExtents = 8.0f; static constexpr float DefaultDiffuseProbeGridAmbientMultiplier = 1.0f; static constexpr float DefaultDiffuseProbeGridViewBias = 0.2f; static constexpr float DefaultDiffuseProbeGridNormalBias = 0.1f; diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp index 1577dffc02..389341ff01 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp @@ -169,9 +169,20 @@ namespace AZ m_featureProcessor->SetMode(m_handle, m_configuration.m_runtimeMode); - // set box shape component dimensions from the configuration - // this will invoke the OnShapeChanged() handler and set the outer extents on the feature processor - m_boxShapeInterface->SetBoxDimensions(m_configuration.m_extents); + // if this is a new DiffuseProbeGrid entity and the box shape has not been changed (i.e., it's still unit sized) + // then use the default extents, otherwise use the current box shape extents + AZ::Vector3 extents(0.0f); + AZ::Vector3 boxDimensions = m_boxShapeInterface->GetBoxDimensions(); + if (m_configuration.m_entityId == EntityId::InvalidEntityId && boxDimensions == AZ::Vector3(1.0f)) + { + extents = m_configuration.m_extents; + } + else + { + extents = boxDimensions; + } + + m_boxShapeInterface->SetBoxDimensions(extents); } void DiffuseProbeGridComponentController::OnAssetReady(Data::Asset asset) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h index d1a41fd526..5261ce5cc5 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h @@ -47,6 +47,8 @@ namespace AZ Data::Asset m_bakedDistanceTextureAsset; Data::Asset m_bakedRelocationTextureAsset; Data::Asset m_bakedClassificationTextureAsset; + + AZ::u64 m_entityId{ EntityId::InvalidEntityId }; }; class DiffuseProbeGridComponentController final diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp index 910c7735ac..5cc97bd363 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp @@ -147,6 +147,9 @@ namespace AZ AzToolsFramework::EditorComponentSelectionRequestsBus::Handler::BusConnect(GetEntityId()); AZ::TickBus::Handler::BusConnect(); AzToolsFramework::EditorEntityInfoNotificationBus::Handler::BusConnect(); + + AZ::u64 entityId = (AZ::u64)GetEntityId(); + m_controller.m_configuration.m_entityId = entityId; } void EditorDiffuseProbeGridComponent::Deactivate() diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h index bba7bdce22..0c27bd1e39 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h @@ -13,5 +13,6 @@ namespace AZ { static constexpr const char* const ReflectionProbeComponentTypeId = "{E5D29F09-F974-45FE-A1D0-2126079D1021}"; static constexpr const char* const EditorReflectionProbeComponentTypeId = "{6EBF2E41-2918-48B8-ACC3-FB115ED09E64}"; + static constexpr float DefaultReflectionProbeExtents = 8.0f; } // namespace Render } // namespace AZ diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp index ffa038cb5f..8e94960f46 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp @@ -127,9 +127,21 @@ namespace AZ // set the visualization sphere option m_featureProcessor->ShowProbeVisualization(m_handle, m_configuration.m_showVisualization); - // update the outer extents from the box shape - // if the user already resized the box shape on this entity it will inherit those extents - UpdateOuterExtents(); + // if this is a new ReflectionProbe entity and the box shape has not been changed (i.e., it's still unit sized) + // then set the shape to the default extents + AZ::Vector3 boxDimensions = m_boxShapeInterface->GetBoxDimensions(); + if (m_configuration.m_entityId == EntityId::InvalidEntityId && boxDimensions == AZ::Vector3(1.0f)) + { + AZ::Vector3 extents(m_configuration.m_outerWidth, m_configuration.m_outerLength, m_configuration.m_outerHeight); + + // resize the box shape, this will invoke OnShapeChanged + m_boxShapeInterface->SetBoxDimensions(extents); + } + else + { + // update the outer extents from the box shape + UpdateOuterExtents(); + } // set the inner extents m_featureProcessor->SetProbeInnerExtents(m_handle, AZ::Vector3(m_configuration.m_innerWidth, m_configuration.m_innerLength, m_configuration.m_innerHeight)); diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h index 66e5eb47b0..a9bdc1c707 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h @@ -14,6 +14,7 @@ #include #include #include +#include namespace AZ { @@ -50,12 +51,12 @@ namespace AZ AZ_CLASS_ALLOCATOR(ReflectionProbeComponentConfig, SystemAllocator, 0); static void Reflect(AZ::ReflectContext* context); - float m_outerHeight = 20.0f; - float m_outerLength = 20.0f; - float m_outerWidth = 20.0f; - float m_innerHeight = 20.0f; - float m_innerLength = 20.0f; - float m_innerWidth = 20.0f; + float m_outerHeight = DefaultReflectionProbeExtents; + float m_outerLength = DefaultReflectionProbeExtents; + float m_outerWidth = DefaultReflectionProbeExtents; + float m_innerHeight = DefaultReflectionProbeExtents; + float m_innerLength = DefaultReflectionProbeExtents; + float m_innerWidth = DefaultReflectionProbeExtents; bool m_useParallaxCorrection = true; bool m_showVisualization = true; From 64186b4ec6819626476b0ab57a42904ed05dafa9 Mon Sep 17 00:00:00 2001 From: guthadam Date: Tue, 29 Jun 2021 16:41:35 -0500 Subject: [PATCH 044/111] ATOM-15892 fixing material component clear overrides button The clear material override properties button was not sending the notification to update the entity or undo state. Signed-off-by: guthadam --- .../Code/Source/Material/EditorMaterialComponentSlot.cpp | 7 ++++++- .../Code/Source/Material/EditorMaterialComponentSlot.h | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp index d5ea087dcc..669e576107 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp @@ -172,6 +172,11 @@ namespace AZ void EditorMaterialComponentSlot::Clear() { m_materialAsset = {}; + ClearOverrides(); + } + + void EditorMaterialComponentSlot::ClearOverrides() + { m_propertyOverrides = {}; m_matModUvOverrides = {}; OnMaterialChanged(); @@ -284,7 +289,7 @@ namespace AZ menu.addSeparator(); - action = menu.addAction("Clear Material Instance Overrides", [this]() { m_propertyOverrides = {}; m_matModUvOverrides = {}; }); + action = menu.addAction("Clear Material Instance Overrides", [this]() { ClearOverrides(); }); action->setEnabled(!m_propertyOverrides.empty() || !m_matModUvOverrides.empty()); menu.exec(QCursor::pos()); diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h index 1b62e94225..95d1fb6a27 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h @@ -35,6 +35,7 @@ namespace AZ void OpenMaterialEditor() const; void SetDefaultAsset(); void Clear(); + void ClearOverrides(); void OpenMaterialExporter(); void OpenMaterialInspector(); void OpenUvNameMapInspector(); From d6caff78426c5af6e1d54332af02e935958bfbd0 Mon Sep 17 00:00:00 2001 From: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> Date: Tue, 29 Jun 2021 16:54:30 -0700 Subject: [PATCH 045/111] Some sandbox references I was missing Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> --- .../Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp | 2 +- .../ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp | 2 +- Code/Tools/CrashHandler/Tools/UI/submit_report.ui | 2 +- .../Code/Source/AtomDebugDisplayViewportInterface.cpp | 2 +- .../Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp index f1c80f05ce..33fc4b5d43 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp @@ -60,7 +60,7 @@ namespace { // compilers actually warn on this fact. // A static_cast is used here to indicate explicit acceptance of the value change here /* The clang compiler warning is below - ../Code/Sandbox/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp:59:38: error: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Werror,-Wimplicit-int-float-conversion] + ../Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp:59:38: error: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Werror,-Wimplicit-int-float-conversion] reflectedVar->m_maxVal = std::numeric_limits::max(); */ reflectedVar->m_maxVal = static_cast(std::numeric_limits::max()); diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp index 7d62b072a2..bad9a1da17 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp @@ -155,7 +155,7 @@ OutlinerWidget::OutlinerWidget(QWidget* pParent, Qt::WindowFlags flags) settingsRegistry->Get(engineRootPath.Native(), AZ::SettingsRegistryMergeUtils::FilePathKey_EngineRootFolder); } QDir rootDir = QString::fromUtf8(engineRootPath.c_str(), aznumeric_cast(engineRootPath.Native().size())); - const auto pathOnDisk = rootDir.absoluteFilePath(QStringLiteral("Code/Sandbox/Plugins/ComponentEntityEditorPlugin/UI/Outliner/")); + const auto pathOnDisk = rootDir.absoluteFilePath(QStringLiteral("Code/Plugins/ComponentEntityEditorPlugin/UI/Outliner/")); const auto qrcPath = QStringLiteral(":/EntityOutliner/"); // Setting the style sheet using both methods allows faster style iteration speed for diff --git a/Code/Tools/CrashHandler/Tools/UI/submit_report.ui b/Code/Tools/CrashHandler/Tools/UI/submit_report.ui index 872adac709..9e816ba73f 100644 --- a/Code/Tools/CrashHandler/Tools/UI/submit_report.ui +++ b/Code/Tools/CrashHandler/Tools/UI/submit_report.ui @@ -158,7 +158,7 @@
- + diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp index 19d4149cf8..740383850e 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp @@ -1168,7 +1168,7 @@ namespace AZ::AtomBridge dir ); - lines.AddLineSegment(ToWorldSpacePosition(pos), ToWorldSpacePosition(pos + dir * (radius * 0.2f))); // 0.2f comes from Code\Sandbox\Editor\Objects\DisplayContextShared.inl DisplayContext::DrawWireDisk + lines.AddLineSegment(ToWorldSpacePosition(pos), ToWorldSpacePosition(pos + dir * (radius * 0.2f))); // 0.2f comes from Code\Editor\Objects\DisplayContextShared.inl DisplayContext::DrawWireDisk lines.Draw(m_auxGeomPtr, m_rendState); } } diff --git a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp index 84ef3a11ca..76e241319b 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp @@ -34,7 +34,7 @@ namespace LevelBuilder AZ::u64 readXmlDataLength(AZ::IO::GenericStream* stream, int& charSize) { - // This code is replicated from readStringLength method found in .\dev\Code\Sandbox\Editor\Util\EditorUtils.h file + // This code is replicated from readStringLength method found in .\dev\Code\Editor\Util\EditorUtils.h file // such that we do not have any Cry or Qt related dependencies. // The basic algorithm is that it reads in an 8 bit int, and if the length is less than 2^8, // then that's the length. Next it reads in a 16 bit int, and if the length is less than 2^16, From 30834a33a4a198758b17b3fda0826228491f1442 Mon Sep 17 00:00:00 2001 From: Riegger Date: Tue, 29 Jun 2021 16:35:12 -0700 Subject: [PATCH 046/111] Fix for shadow aliasing appearing when enabling/disabling lights Signed-off-by: Riegger --- .../Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp index 68de05c043..d77a5bd7a2 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp @@ -104,6 +104,7 @@ namespace AZ::Render m_shadowData.Release(id.GetIndex()); } + m_filterParameterNeedsUpdate = true; m_shadowmapPassNeedsUpdate = true; } From 528279af32271841b840f45f82d680dd449d99bf Mon Sep 17 00:00:00 2001 From: nvsickle Date: Tue, 29 Jun 2021 18:19:23 -0700 Subject: [PATCH 047/111] Fix Viewport camera position failing to update when "Find in viewport" is activated Signed-off-by: nvsickle --- Code/Sandbox/Editor/EditorViewportWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Code/Sandbox/Editor/EditorViewportWidget.cpp b/Code/Sandbox/Editor/EditorViewportWidget.cpp index 3ee9c3bfb1..abca9ce15b 100644 --- a/Code/Sandbox/Editor/EditorViewportWidget.cpp +++ b/Code/Sandbox/Editor/EditorViewportWidget.cpp @@ -462,7 +462,6 @@ void EditorViewportWidget::Update() SetViewTM(m); SetFOV(cameraState.m_fovOrZoom); m_Camera.SetZRange(cameraState.m_nearClip, cameraState.m_farClip); - m_updateCameraPositionNextTick = false; } else if (!ed_useNewCameraSystem) { @@ -483,6 +482,8 @@ void EditorViewportWidget::Update() ); m_renderViewport->GetViewportContext()->SetCameraProjectionMatrix(clipMatrix); } + // Reset the camera update flag now that we're finished updating our viewport context + m_updateCameraPositionNextTick = false; // Don't wait for changes to update the focused viewport. if (CheckRespondToInput()) From 09aba94da77edb3024658bc896390fcb745c7daf Mon Sep 17 00:00:00 2001 From: dmcdiar Date: Wed, 30 Jun 2021 00:40:30 -0700 Subject: [PATCH 048/111] Fixes for ReflectionProbe hot reloading Signed-off-by: dmcdiar --- .../ReflectionProbeComponentController.cpp | 34 +++++++++---------- .../ReflectionProbeComponentController.h | 1 + 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp index ffa038cb5f..1e262e0ebf 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp @@ -137,22 +137,11 @@ namespace AZ // load cubemap Data::Asset& cubeMapAsset = m_configuration.m_useBakedCubemap ? m_configuration.m_bakedCubeMapAsset : m_configuration.m_authoredCubeMapAsset; - Data::AssetBus::MultiHandler::BusConnect(cubeMapAsset.GetId()); - - const AZStd::string& relativePath = - m_configuration.m_useBakedCubemap ? m_configuration.m_bakedCubeMapRelativePath : m_configuration.m_authoredCubeMapAsset.GetHint(); if (cubeMapAsset.GetId().IsValid()) { - if (cubeMapAsset.IsReady()) - { - Data::Instance image = RPI::StreamingImage::FindOrCreate(cubeMapAsset); - m_featureProcessor->SetProbeCubeMap(m_handle, image, relativePath); - } - else - { - cubeMapAsset.QueueLoad(); - } + cubeMapAsset.QueueLoad(); + Data::AssetBus::MultiHandler::BusConnect(cubeMapAsset.GetId()); } } @@ -189,6 +178,18 @@ namespace AZ m_featureProcessor->SetProbeCubeMap(m_handle, image, relativePath); } + void ReflectionProbeComponentController::OnAssetReloaded(Data::Asset asset) + { + if (m_configuration.m_useBakedCubemap) + { + m_configuration.m_bakedCubeMapAsset = asset; + } + else + { + m_configuration.m_authoredCubeMapAsset = asset; + } + } + void ReflectionProbeComponentController::SetConfiguration(const ReflectionProbeComponentConfig& config) { m_configuration = config; @@ -204,11 +205,8 @@ namespace AZ Data::Asset& cubeMapAsset = m_configuration.m_useBakedCubemap ? m_configuration.m_bakedCubeMapAsset : m_configuration.m_authoredCubeMapAsset; - const AZStd::string& relativePath = - m_configuration.m_useBakedCubemap ? m_configuration.m_bakedCubeMapRelativePath : m_configuration.m_authoredCubeMapAsset.GetHint(); - - Data::Instance image = RPI::StreamingImage::FindOrCreate(cubeMapAsset); - m_featureProcessor->SetProbeCubeMap(m_handle, image, relativePath); + // this will invoke OnAssetReady() + Data::AssetBus::MultiHandler::BusConnect(cubeMapAsset.GetId()); } void ReflectionProbeComponentController::OnTransformChanged([[maybe_unused]] const AZ::Transform& local, const AZ::Transform& world) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h index 66e5eb47b0..f65a17abdf 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h @@ -113,6 +113,7 @@ namespace AZ // Data::AssetBus overrides ... void OnAssetReady(Data::Asset asset) override; + void OnAssetReloaded(Data::Asset asset) override; // TransformNotificationBus overrides ... void OnTransformChanged(const AZ::Transform& local, const AZ::Transform& world) override; From 1100e20e26b770652fd59f0998da45ec25657daf Mon Sep 17 00:00:00 2001 From: pereslav Date: Wed, 30 Jun 2021 13:20:07 +0100 Subject: [PATCH 049/111] Merged ctrl+g fixes from MultiplayerEditorFixes Signed-off-by: pereslav --- .../AzNetworking/UdpTransport/UdpNetworkInterface.cpp | 7 +++++++ .../Source/Editor/MultiplayerEditorSystemComponent.cpp | 8 ++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp index 4be0219d26..bf5dbf8c66 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp @@ -187,6 +187,13 @@ namespace AzNetworking connection->Disconnect(disconnectReason, TerminationEndpoint::Local); continue; } + + const ConnectionState connectionState = connection->GetConnectionState(); + if (connectionState == ConnectionState::Disconnecting || connectionState == ConnectionState::Disconnected) + { + // Skip packets from disconnected connections + continue; + } int32_t decodedPacketSize = 0; m_decryptBuffer.Resize(m_decryptBuffer.GetCapacity()); diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp index a2841927d6..a0a3cbd651 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp @@ -113,6 +113,12 @@ namespace Multiplayer { console->PerformCommand("disconnect"); } + + AZ::Interface::Get()->ClearAllEntities(); + + // Rebuild the library to clear temporary in-memory spawnable assets + AZ::Interface::Get()->BuildSpawnablesList(); + break; } } @@ -235,7 +241,5 @@ namespace Multiplayer void MultiplayerEditorSystemComponent::OnGameEntitiesReset() { - // Rebuild the library to clear temporary in-memory spawnable assets - AZ::Interface::Get()->BuildSpawnablesList(); } } From 3a5b8808a035a13c235ff2a21b315c4357f46fe3 Mon Sep 17 00:00:00 2001 From: Benjamin Jillich <43751992+amzn-jillich@users.noreply.github.com> Date: Wed, 30 Jun 2021 08:12:01 -0700 Subject: [PATCH 050/111] [LYN-4879] Incorrect colour UI issue on Gem Configure (#1678) * Aligned the column headers to the elements * Moved the styling of the gem column header labels to the qss * Fixed the scrollbar for the gem list view Signed-off-by: Benjamin Jillich --- .../ProjectManager/Resources/ProjectManager.qss | 15 +++++++++++++++ .../Source/GemCatalog/GemListHeaderWidget.cpp | 14 +++++++------- .../Source/GemCatalog/GemListView.cpp | 3 +-- 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/Code/Tools/ProjectManager/Resources/ProjectManager.qss b/Code/Tools/ProjectManager/Resources/ProjectManager.qss index efc01802b7..d6a2476e83 100644 --- a/Code/Tools/ProjectManager/Resources/ProjectManager.qss +++ b/Code/Tools/ProjectManager/Resources/ProjectManager.qss @@ -463,6 +463,21 @@ QProgressBar::chunk { font-weight: 600; } +#GemCatalogHeaderLabel { + font-size: 12px; + color: #FFFFFF; +} + +#GemCatalogHeaderShowCountLabel { + font-size: 12px; + font: italic; + color: #FFFFFF; +} + +#GemCatalogListView { + background-color: #333333; +} + /************** Gem Catalog (Inspector) **************/ #GemCatalogInspector { diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp index cabcc34aaa..c61cc22c82 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp @@ -31,7 +31,7 @@ namespace O3DE::ProjectManager topLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding)); QLabel* showCountLabel = new QLabel(); - showCountLabel->setStyleSheet("font-size: 12px; font: italic; color: #FFFFFF;"); + showCountLabel->setObjectName("GemCatalogHeaderShowCountLabel"); topLayout->addWidget(showCountLabel); connect(proxyModel, &GemSortFilterProxyModel::OnInvalidated, this, [=] { @@ -57,27 +57,27 @@ namespace O3DE::ProjectManager QHBoxLayout* columnHeaderLayout = new QHBoxLayout(); columnHeaderLayout->setAlignment(Qt::AlignLeft); - const int gemNameStartX = GemItemDelegate::s_itemMargins.left() + GemItemDelegate::s_contentMargins.left() - 3; + const int gemNameStartX = GemItemDelegate::s_itemMargins.left() + GemItemDelegate::s_contentMargins.left() - 1; columnHeaderLayout->addSpacing(gemNameStartX); QLabel* gemNameLabel = new QLabel(tr("Gem Name")); - gemNameLabel->setStyleSheet("font-size: 12px; color: #FFFFFF;"); + gemNameLabel->setObjectName("GemCatalogHeaderLabel"); columnHeaderLayout->addWidget(gemNameLabel); - columnHeaderLayout->addSpacing(77); + columnHeaderLayout->addSpacing(89); QLabel* gemSummaryLabel = new QLabel(tr("Gem Summary")); - gemSummaryLabel->setStyleSheet("font-size: 12px; color: #FFFFFF;"); + gemSummaryLabel->setObjectName("GemCatalogHeaderLabel"); columnHeaderLayout->addWidget(gemSummaryLabel); QSpacerItem* horizontalSpacer = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum); columnHeaderLayout->addSpacerItem(horizontalSpacer); QLabel* gemSelectedLabel = new QLabel(tr("Selected")); - gemSelectedLabel->setStyleSheet("font-size: 12px; color: #FFFFFF;"); + gemSelectedLabel->setObjectName("GemCatalogHeaderLabel"); columnHeaderLayout->addWidget(gemSelectedLabel); - columnHeaderLayout->addSpacing(60); + columnHeaderLayout->addSpacing(65); vLayout->addLayout(columnHeaderLayout); } diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp index 3bb429b697..e54891d736 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp @@ -14,10 +14,9 @@ namespace O3DE::ProjectManager GemListView::GemListView(QAbstractItemModel* model, QItemSelectionModel* selectionModel, QWidget* parent) : QListView(parent) { + setObjectName("GemCatalogListView"); setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); - setStyleSheet("background-color: #333333;"); - setModel(model); setSelectionModel(selectionModel); setItemDelegate(new GemItemDelegate(model, this)); From 68f1410956f623c271e0a7bc647f717ff3fa689e Mon Sep 17 00:00:00 2001 From: Aaron Ruiz Mora Date: Wed, 30 Jun 2021 16:18:14 +0100 Subject: [PATCH 051/111] Using prefabs generated by the conversion tool (#1675) Signed-off-by: moraaar --- .../Assets/prefabs/Cloth/Chicken_Actor.prefab | 309 +++++++++++------- .../Assets/prefabs/Cloth/cloth_blinds.prefab | 245 +++++++------- .../prefabs/Cloth/cloth_blinds_broken.prefab | 230 ++++++------- .../Cloth/cloth_locked_corners_four.prefab | 247 +++++++------- .../Cloth/cloth_locked_corners_two.prefab | 274 ++++++++-------- .../prefabs/Cloth/cloth_locked_edge.prefab | 227 ++++++------- 6 files changed, 791 insertions(+), 741 deletions(-) diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab index c48dcec36c..57953f927b 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/Chicken_Actor.prefab @@ -3,92 +3,157 @@ "Id": "ContainerEntity", "Name": "Chicken_Actor", "Components": { - "Component_[10420060158469409859]": { - "$type": "EditorVisibilityComponent", - "Id": 10420060158469409859 + "Component_[10182366347512475253]": { + "$type": "EditorPrefabComponent", + "Id": 10182366347512475253 }, - "Component_[10713261435043694267]": { - "$type": "EditorOnlyEntityComponent", - "Id": 10713261435043694267 + "Component_[12917798267488243668]": { + "$type": "EditorPendingCompositionComponent", + "Id": 12917798267488243668 }, - "Component_[11088054817315996737]": { - "$type": "EditorLockComponent", - "Id": 11088054817315996737 + "Component_[3261249813163778338]": { + "$type": "EditorOnlyEntityComponent", + "Id": 3261249813163778338 }, - "Component_[14341334118593165562]": { - "$type": "EditorInspectorComponent", - "Id": 14341334118593165562 + "Component_[3837204912784440039]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 3837204912784440039 }, - "Component_[15143425594853321191]": { + "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 15143425594853321191, + "Id": 4272963378099646759, "Parent Entity": "", "Cached World Transform Parent": "" }, - "Component_[15383315993246423867]": { - "$type": "EditorPrefabComponent", - "Id": 15383315993246423867 - }, - "Component_[16499127605624407101]": { - "$type": "EditorEntitySortComponent", - "Id": 16499127605624407101 + "Component_[4848458548047175816]": { + "$type": "EditorVisibilityComponent", + "Id": 4848458548047175816 }, - "Component_[16697571480493454144]": { - "$type": "SelectionComponent", - "Id": 16697571480493454144 + "Component_[5787060997243919943]": { + "$type": "EditorInspectorComponent", + "Id": 5787060997243919943 }, - "Component_[415761541071751882]": { - "$type": "EditorPendingCompositionComponent", - "Id": 415761541071751882 + "Component_[7804170251266531779]": { + "$type": "EditorLockComponent", + "Id": 7804170251266531779 }, - "Component_[7972775450040391034]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 7972775450040391034 + "Component_[7874177159288365422]": { + "$type": "EditorEntitySortComponent", + "Id": 7874177159288365422 }, - "Component_[9910169802741330341]": { + "Component_[8018146290632383969]": { "$type": "EditorEntityIconComponent", - "Id": 9910169802741330341 + "Id": 8018146290632383969 + }, + "Component_[8452360690590857075]": { + "$type": "SelectionComponent", + "Id": 8452360690590857075 } - }, - "IsDependencyReady": true + } }, "Entities": { - "Entity_[48421054243702]": { - "Id": "Entity_[48421054243702]", - "Name": "Chicken_Actor", + "Entity_[303447173544404]": { + "Id": "Entity_[303447173544404]", + "Name": "Chicken Rigidbody", "Components": { - "Component_[10024659544266822060]": { + "Component_[11254527722826929517]": { + "$type": "EditorLockComponent", + "Id": 11254527722826929517 + }, + "Component_[11752612383131299817]": { "$type": "EditorInspectorComponent", - "Id": 10024659544266822060, + "Id": 11752612383131299817, "ComponentOrderEntryArray": [ { - "ComponentId": 3250661421529612274 - }, - { - "ComponentId": 4381463095952282089, - "SortIndex": 1 - }, - { - "ComponentId": 13550968986158933154, - "SortIndex": 2 - }, - { - "ComponentId": 11536283465461048726, - "SortIndex": 3 - }, + "ComponentId": 12470135924384913029 + } + ] + }, + "Component_[12004522441155896281]": { + "$type": "EditorPendingCompositionComponent", + "Id": 12004522441155896281 + }, + "Component_[12327847693349375221]": { + "$type": "EditorVisibilityComponent", + "Id": 12327847693349375221 + }, + "Component_[12470135924384913029]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 12470135924384913029, + "Parent Entity": "ContainerEntity", + "Cached World Transform Parent": "ContainerEntity" + }, + "Component_[14919455666821657531]": { + "$type": "EditorEntitySortComponent", + "Id": 14919455666821657531, + "ChildEntityOrderEntryArray": [ { - "ComponentId": 7689190671460963527, - "SortIndex": 4 + "EntityId": "Entity_[303451468511700]" } ] }, - "Component_[11465635386953249015]": { + "Component_[16643225638363527013]": { + "$type": "EditorOnlyEntityComponent", + "Id": 16643225638363527013 + }, + "Component_[17083722249682325420]": { + "$type": "EditorEntityIconComponent", + "Id": 17083722249682325420 + }, + "Component_[4274252334406790321]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 4274252334406790321 + }, + "Component_[786957291078135994]": { + "$type": "SelectionComponent", + "Id": 786957291078135994 + } + }, + "IsDependencyReady": true + }, + "Entity_[303451468511700]": { + "Id": "Entity_[303451468511700]", + "Name": "Chicken_Actor", + "Components": { + "Component_[10153184769011204037]": { + "$type": "SelectionComponent", + "Id": 10153184769011204037 + }, + "Component_[12307288056972997582]": { "$type": "EditorLockComponent", - "Id": 11465635386953249015 + "Id": 12307288056972997582 + }, + "Component_[16388291370935886976]": { + "$type": "EditorEntityIconComponent", + "Id": 16388291370935886976 + }, + "Component_[17273633015317842366]": { + "$type": "EditorPendingCompositionComponent", + "Id": 17273633015317842366 + }, + "Component_[18385928157765337756]": { + "$type": "EditorActorComponent", + "Id": 18385928157765337756, + "ActorAsset": { + "assetId": { + "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", + "subId": 166954688 + }, + "assetHint": "objects/cloth/chicken/actor/chicken.actor" + }, + "MaterialPerLOD": [ + { + "AssetPath": "objects/cloth/chicken/actor/chicken.mtl" + } + ], + "MaterialPerActor": { + "AssetPath": "objects/cloth/chicken/actor/chicken.mtl" + }, + "AttachmentTarget": "" }, - "Component_[11536283465461048726]": { + "Component_[2933618168100824891]": { "$type": "EditorSimpleMotionComponent", - "Id": 11536283465461048726, + "Id": 2933618168100824891, "Configuration": { "MotionAsset": { "assetId": { @@ -97,12 +162,38 @@ }, "assetHint": "objects/cloth/chicken/motions/chickenidle.motion" }, - "Loop": true + "Loop": true, + "PlaySpeed": 1.2000000476837159 } }, - "Component_[13550968986158933154]": { + "Component_[3482722103355682975]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 3482722103355682975 + }, + "Component_[4826327274018205895]": { + "$type": "EditorOnlyEntityComponent", + "Id": 4826327274018205895 + }, + "Component_[5939417605550024797]": { + "$type": "EditorVisibilityComponent", + "Id": 5939417605550024797 + }, + "Component_[7236637452394054627]": { + "$type": "EditorClothComponent", + "Id": 7236637452394054627, + "Configuration": { + "Mesh Node": "chicken_mohawk", + "Mass": 4.0, + "Remove Static Triangles": false + } + }, + "Component_[868427789695884987]": { + "$type": "EditorEntitySortComponent", + "Id": 868427789695884987 + }, + "Component_[8777596718122199558]": { "$type": "EditorMaterialComponent", - "Id": 13550968986158933154, + "Id": 8777596718122199558, "Controller": { "Configuration": { "materials": [ @@ -233,77 +324,43 @@ ] ] }, - "Component_[14277098884859902099]": { - "$type": "EditorPendingCompositionComponent", - "Id": 14277098884859902099 - }, - "Component_[2153976993809262425]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 2153976993809262425 - }, - "Component_[3250661421529612274]": { + "Component_[9845606399230319505]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 3250661421529612274, - "Parent Entity": "ContainerEntity", - "Cached World Transform": { - "Translation": [ - -8.559586524963379, - -1.2393379211425782, - 0.043556928634643558 - ], - "Rotation": [ + "Id": 9845606399230319505, + "Parent Entity": "Entity_[303447173544404]", + "Transform Data": { + "Rotate": [ 0.0, 0.0, - 1.0, - 0.0 + -0.00006830000347690657 ] }, - "Cached World Transform Parent": "ContainerEntity" + "Cached World Transform Parent": "" }, - "Component_[363579226643870873]": { - "$type": "EditorEntityIconComponent", - "Id": 363579226643870873 - }, - "Component_[4381463095952282089]": { - "$type": "EditorActorComponent", - "Id": 4381463095952282089, - "ActorAsset": { - "assetId": { - "guid": "{3E4C6A29-92A4-523E-8739-F3E64957569E}", - "subId": 166954688 + "Component_[9979479216337101498]": { + "$type": "EditorInspectorComponent", + "Id": 9979479216337101498, + "ComponentOrderEntryArray": [ + { + "ComponentId": 9845606399230319505 }, - "loadBehavior": "QueueLoad", - "assetHint": "objects/cloth/chicken/actor/chicken.actor" - }, - "MaterialPerLOD": [ - {} - ], - "AttachmentTarget": "" - }, - "Component_[4892122740022910835]": { - "$type": "SelectionComponent", - "Id": 4892122740022910835 - }, - "Component_[5646397145899865599]": { - "$type": "EditorVisibilityComponent", - "Id": 5646397145899865599 - }, - "Component_[6526021153484129377]": { - "$type": "EditorOnlyEntityComponent", - "Id": 6526021153484129377 - }, - "Component_[7689190671460963527]": { - "$type": "EditorClothComponent", - "Id": 7689190671460963527, - "Configuration": { - "Mesh Node": "chicken_mohawk", - "Mass": 4.0, - "Remove Static Triangles": false - } - }, - "Component_[7705494469103394865]": { - "$type": "EditorEntitySortComponent", - "Id": 7705494469103394865 + { + "ComponentId": 18385928157765337756, + "SortIndex": 1 + }, + { + "ComponentId": 2933618168100824891, + "SortIndex": 2 + }, + { + "ComponentId": 8777596718122199558, + "SortIndex": 3 + }, + { + "ComponentId": 7236637452394054627, + "SortIndex": 4 + } + ] } }, "IsDependencyReady": true diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab index de6dba6399..270f52b29b 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds.prefab @@ -3,101 +3,166 @@ "Id": "ContainerEntity", "Name": "cloth_blinds", "Components": { - "Component_[11710159740232621436]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 11710159740232621436 - }, - "Component_[12700834211830506265]": { - "$type": "EditorInspectorComponent", - "Id": 12700834211830506265 - }, - "Component_[1332207344633534847]": { + "Component_[10182366347512475253]": { "$type": "EditorPrefabComponent", - "Id": 1332207344633534847 + "Id": 10182366347512475253 }, - "Component_[15674607824372989481]": { - "$type": "SelectionComponent", - "Id": 15674607824372989481 - }, - "Component_[17830258131678226250]": { + "Component_[12917798267488243668]": { "$type": "EditorPendingCompositionComponent", - "Id": 17830258131678226250 + "Id": 12917798267488243668 }, - "Component_[2739137831523757464]": { + "Component_[3261249813163778338]": { "$type": "EditorOnlyEntityComponent", - "Id": 2739137831523757464 - }, - "Component_[6200331447094468978]": { - "$type": "EditorEntityIconComponent", - "Id": 6200331447094468978 + "Id": 3261249813163778338 }, - "Component_[6469357969320867250]": { - "$type": "EditorLockComponent", - "Id": 6469357969320867250 - }, - "Component_[7557343481632459660]": { - "$type": "EditorVisibilityComponent", - "Id": 7557343481632459660 + "Component_[3837204912784440039]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 3837204912784440039 }, - "Component_[8407841941984260302]": { + "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 8407841941984260302, + "Id": 4272963378099646759, "Parent Entity": "", "Cached World Transform Parent": "" }, - "Component_[8679209570517497730]": { + "Component_[4848458548047175816]": { + "$type": "EditorVisibilityComponent", + "Id": 4848458548047175816 + }, + "Component_[5787060997243919943]": { + "$type": "EditorInspectorComponent", + "Id": 5787060997243919943 + }, + "Component_[7804170251266531779]": { + "$type": "EditorLockComponent", + "Id": 7804170251266531779 + }, + "Component_[7874177159288365422]": { "$type": "EditorEntitySortComponent", - "Id": 8679209570517497730 + "Id": 7874177159288365422 + }, + "Component_[8018146290632383969]": { + "$type": "EditorEntityIconComponent", + "Id": 8018146290632383969 + }, + "Component_[8452360690590857075]": { + "$type": "SelectionComponent", + "Id": 8452360690590857075 } - }, - "IsDependencyReady": true + } }, "Entities": { - "Entity_[2310285353846]": { - "Id": "Entity_[2310285353846]", + "Entity_[303275374852564]": { + "Id": "Entity_[303275374852564]", "Name": "cloth_blinds", "Components": { - "Component_[11484820910614012211]": { + "Component_[10147744244398276652]": { "$type": "EditorOnlyEntityComponent", - "Id": 11484820910614012211 - }, - "Component_[12758934717931799496]": { - "$type": "EditorEntitySortComponent", - "Id": 12758934717931799496 + "Id": 10147744244398276652 }, - "Component_[14636776520633084007]": { + "Component_[11309989511197311871]": { "$type": "EditorClothComponent", - "Id": 14636776520633084007, + "Id": 11309989511197311871, "Configuration": { "Mesh Node": "pPlane1", - "Update Normals of Static Particles": true, - "Wind Velocity": [ + "Damping": [ + 0.0, + 0.0, + 0.0 + ], + "Linear Drag": [ + 0.0, + 0.0, + 0.0 + ], + "Angular Drag": [ + 0.0, 0.0, + 0.0 + ], + "Wind Velocity": [ 10.0, + 0.0, 0.0 ], - "Stiffness Frequency": 1.0 + "Air Drag Coefficient": 0.5, + "Air Lift Coefficient": 0.5, + "Update Normals of Static Particles": true } }, - "Component_[15643606068434059364]": { + "Component_[12850019035302463297]": { "$type": "EditorLockComponent", - "Id": 15643606068434059364 + "Id": 12850019035302463297 }, - "Component_[1802437050375983597]": { + "Component_[15214644042360665965]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 15214644042360665965, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", + "subId": 283342727 + }, + "assetHint": "objects/cloth/environment/cloth_blinds.azmodel" + } + } + } + }, + "Component_[17205613619475042888]": { "$type": "EditorEntityIconComponent", - "Id": 1802437050375983597 + "Id": 17205613619475042888 + }, + "Component_[17262624475618211748]": { + "$type": "EditorVisibilityComponent", + "Id": 17262624475618211748 + }, + "Component_[3930083736215151625]": { + "$type": "EditorInspectorComponent", + "Id": 3930083736215151625, + "ComponentOrderEntryArray": [ + { + "ComponentId": 4795695323030511838 + }, + { + "ComponentId": 11309989511197311871, + "SortIndex": 1 + }, + { + "ComponentId": 15214644042360665965, + "SortIndex": 2 + }, + { + "ComponentId": 9206497685981025331, + "SortIndex": 3 + } + ] }, - "Component_[2246969288668584020]": { + "Component_[4446664869832380031]": { + "$type": "SelectionComponent", + "Id": 4446664869832380031 + }, + "Component_[4795695323030511838]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 4795695323030511838, + "Parent Entity": "ContainerEntity", + "Cached World Transform Parent": "ContainerEntity" + }, + "Component_[5800800590637221800]": { "$type": "EditorDisabledCompositionComponent", - "Id": 2246969288668584020 + "Id": 5800800590637221800 }, - "Component_[3349689287441689089]": { + "Component_[6953593560040071775]": { "$type": "EditorPendingCompositionComponent", - "Id": 3349689287441689089 + "Id": 6953593560040071775 + }, + "Component_[7074022732104182988]": { + "$type": "EditorEntitySortComponent", + "Id": 7074022732104182988 }, - "Component_[4761242843736319995]": { + "Component_[9206497685981025331]": { "$type": "EditorMaterialComponent", - "Id": 4761242843736319995, + "Id": 9206497685981025331, "Controller": { "Configuration": { "materials": [ @@ -149,70 +214,6 @@ } ] ] - }, - "Component_[7102112177384882498]": { - "$type": "EditorInspectorComponent", - "Id": 7102112177384882498, - "ComponentOrderEntryArray": [ - { - "ComponentId": 8287798504585048292 - }, - { - "ComponentId": 7500992507704969518, - "SortIndex": 1 - }, - { - "ComponentId": 4761242843736319995, - "SortIndex": 2 - }, - { - "ComponentId": 14636776520633084007, - "SortIndex": 3 - } - ] - }, - "Component_[7262445215578128559]": { - "$type": "EditorVisibilityComponent", - "Id": 7262445215578128559 - }, - "Component_[7500992507704969518]": { - "$type": "AZ::Render::EditorMeshComponent", - "Id": 7500992507704969518, - "Controller": { - "Configuration": { - "ModelAsset": { - "assetId": { - "guid": "{C3078003-51DA-5D8E-B311-38C426480DD2}", - "subId": 283342727 - }, - "assetHint": "objects/cloth/environment/cloth_blinds.azmodel" - } - } - } - }, - "Component_[8287798504585048292]": { - "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 8287798504585048292, - "Parent Entity": "ContainerEntity", - "Cached World Transform": { - "Translation": [ - -5.723679542541504, - -2.6300342082977297, - 1.938896894454956 - ] - }, - "Cached World Transform Parent": "ContainerEntity", - "Transform Data": { - "Translate": [ - -6.210474491119385, - 0.0, - 2.0854623317718508 - ] - } - }, - "Component_[9830203766948851058]": { - "$type": "SelectionComponent", - "Id": 9830203766948851058 } }, "IsDependencyReady": true diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab index c4caf4ff4c..7feb61db90 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_blinds_broken.prefab @@ -3,139 +3,90 @@ "Id": "ContainerEntity", "Name": "cloth_blinds_broken", "Components": { - "Component_[10989814620261546639]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 10989814620261546639 + "Component_[10182366347512475253]": { + "$type": "EditorPrefabComponent", + "Id": 10182366347512475253 }, - "Component_[12298926505503761520]": { + "Component_[12917798267488243668]": { "$type": "EditorPendingCompositionComponent", - "Id": 12298926505503761520 + "Id": 12917798267488243668 }, - "Component_[13199048427796447680]": { - "$type": "EditorVisibilityComponent", - "Id": 13199048427796447680 + "Component_[3261249813163778338]": { + "$type": "EditorOnlyEntityComponent", + "Id": 3261249813163778338 }, - "Component_[13897401964074181963]": { - "$type": "EditorLockComponent", - "Id": 13897401964074181963 + "Component_[3837204912784440039]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 3837204912784440039 }, - "Component_[15440200647772473638]": { - "$type": "EditorEntityIconComponent", - "Id": 15440200647772473638 + "Component_[4272963378099646759]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 4272963378099646759, + "Parent Entity": "", + "Cached World Transform Parent": "" }, - "Component_[15453809689256412670]": { - "$type": "SelectionComponent", - "Id": 15453809689256412670 + "Component_[4848458548047175816]": { + "$type": "EditorVisibilityComponent", + "Id": 4848458548047175816 }, - "Component_[16085218976953314353]": { - "$type": "EditorEntitySortComponent", - "Id": 16085218976953314353 + "Component_[5787060997243919943]": { + "$type": "EditorInspectorComponent", + "Id": 5787060997243919943 }, - "Component_[16269162367022698371]": { - "$type": "EditorPrefabComponent", - "Id": 16269162367022698371 + "Component_[7804170251266531779]": { + "$type": "EditorLockComponent", + "Id": 7804170251266531779 }, - "Component_[3663243583798432985]": { - "$type": "EditorOnlyEntityComponent", - "Id": 3663243583798432985 + "Component_[7874177159288365422]": { + "$type": "EditorEntitySortComponent", + "Id": 7874177159288365422 }, - "Component_[6161691932390979827]": { - "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 6161691932390979827, - "Parent Entity": "", - "Cached World Transform Parent": "" + "Component_[8018146290632383969]": { + "$type": "EditorEntityIconComponent", + "Id": 8018146290632383969 }, - "Component_[6472172087633666006]": { - "$type": "EditorInspectorComponent", - "Id": 6472172087633666006 + "Component_[8452360690590857075]": { + "$type": "SelectionComponent", + "Id": 8452360690590857075 } - }, - "IsDependencyReady": true + } }, "Entities": { - "Entity_[8860110480246]": { - "Id": "Entity_[8860110480246]", + "Entity_[303326914460116]": { + "Id": "Entity_[303326914460116]", "Name": "cloth_blinds_broken", "Components": { - "Component_[1079843150556003627]": { - "$type": "EditorEntityIconComponent", - "Id": 1079843150556003627 - }, - "Component_[11968229236146127519]": { - "$type": "EditorPendingCompositionComponent", - "Id": 11968229236146127519 - }, - "Component_[12117224592880940883]": { - "$type": "EditorInspectorComponent", - "Id": 12117224592880940883, - "ComponentOrderEntryArray": [ - { - "ComponentId": 5483426416697581640 - }, - { - "ComponentId": 5518702849950674566, - "SortIndex": 1 - }, - { - "ComponentId": 894067052175737998, - "SortIndex": 2 - }, - { - "ComponentId": 1765776596326719942, - "SortIndex": 3 - } - ] - }, - "Component_[1765776596326719942]": { + "Component_[10786078036233199116]": { "$type": "EditorClothComponent", - "Id": 1765776596326719942, + "Id": 10786078036233199116, "Configuration": { "Mesh Node": "pPlane1", - "Update Normals of Static Particles": true, + "Damping": [ + 0.0, + 0.0, + 0.0 + ], + "Linear Drag": [ + 0.0, + 0.0, + 0.0 + ], + "Angular Drag": [ + 0.0, + 0.0, + 0.0 + ], "Wind Velocity": [ + 5.0, 0.0, - 10.0, 0.0 ], - "Stiffness Frequency": 1.0 + "Update Normals of Static Particles": true } }, - "Component_[17734660328068630579]": { - "$type": "SelectionComponent", - "Id": 17734660328068630579 - }, - "Component_[2020684643572273032]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 2020684643572273032 - }, - "Component_[3951090720799475031]": { - "$type": "EditorVisibilityComponent", - "Id": 3951090720799475031 - }, - "Component_[504292109316286904]": { - "$type": "EditorLockComponent", - "Id": 504292109316286904 - }, - "Component_[5243187155220405314]": { - "$type": "EditorOnlyEntityComponent", - "Id": 5243187155220405314 - }, - "Component_[5483426416697581640]": { - "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 5483426416697581640, - "Parent Entity": "ContainerEntity", - "Cached World Transform": { - "Translation": [ - -2.9314260482788088, - -0.9454793930053711, - 1.7495737075805665 - ] - }, - "Cached World Transform Parent": "ContainerEntity" - }, - "Component_[5518702849950674566]": { + "Component_[11765361670726469628]": { "$type": "AZ::Render::EditorMeshComponent", - "Id": 5518702849950674566, + "Id": 11765361670726469628, "Controller": { "Configuration": { "ModelAsset": { @@ -148,9 +99,37 @@ } } }, - "Component_[894067052175737998]": { + "Component_[13771990625644339755]": { + "$type": "EditorEntitySortComponent", + "Id": 13771990625644339755 + }, + "Component_[14712436598236321787]": { + "$type": "EditorLockComponent", + "Id": 14712436598236321787 + }, + "Component_[14930554686244012752]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 14930554686244012752 + }, + "Component_[16955243819980352058]": { + "$type": "EditorPendingCompositionComponent", + "Id": 16955243819980352058 + }, + "Component_[17396749751570379839]": { + "$type": "EditorVisibilityComponent", + "Id": 17396749751570379839 + }, + "Component_[2237683366320350918]": { + "$type": "SelectionComponent", + "Id": 2237683366320350918 + }, + "Component_[4939437553142322315]": { + "$type": "EditorEntityIconComponent", + "Id": 4939437553142322315 + }, + "Component_[538074694053236341]": { "$type": "EditorMaterialComponent", - "Id": 894067052175737998, + "Id": 538074694053236341, "Controller": { "Configuration": { "materials": [ @@ -203,9 +182,36 @@ ] ] }, - "Component_[9677874933452340864]": { - "$type": "EditorEntitySortComponent", - "Id": 9677874933452340864 + "Component_[5681411293917950785]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 5681411293917950785, + "Parent Entity": "ContainerEntity", + "Cached World Transform Parent": "ContainerEntity" + }, + "Component_[7046686956433693767]": { + "$type": "EditorInspectorComponent", + "Id": 7046686956433693767, + "ComponentOrderEntryArray": [ + { + "ComponentId": 5681411293917950785 + }, + { + "ComponentId": 10786078036233199116, + "SortIndex": 1 + }, + { + "ComponentId": 11765361670726469628, + "SortIndex": 2 + }, + { + "ComponentId": 538074694053236341, + "SortIndex": 3 + } + ] + }, + "Component_[9565338131843702938]": { + "$type": "EditorOnlyEntityComponent", + "Id": 9565338131843702938 } }, "IsDependencyReady": true diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab index 39b72f63fd..cdbe92dab6 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_four.prefab @@ -3,63 +3,83 @@ "Id": "ContainerEntity", "Name": "cloth_locked_corners_four", "Components": { - "Component_[13888132130168041992]": { - "$type": "EditorEntityIconComponent", - "Id": 13888132130168041992 - }, - "Component_[14031678566419671406]": { - "$type": "EditorVisibilityComponent", - "Id": 14031678566419671406 - }, - "Component_[15480122384719724795]": { + "Component_[10182366347512475253]": { "$type": "EditorPrefabComponent", - "Id": 15480122384719724795 + "Id": 10182366347512475253 }, - "Component_[15688442711950741155]": { - "$type": "SelectionComponent", - "Id": 15688442711950741155 - }, - "Component_[17193472612212292109]": { + "Component_[12917798267488243668]": { "$type": "EditorPendingCompositionComponent", - "Id": 17193472612212292109 + "Id": 12917798267488243668 }, - "Component_[17650154089342371227]": { + "Component_[3261249813163778338]": { "$type": "EditorOnlyEntityComponent", - "Id": 17650154089342371227 - }, - "Component_[2597916765647847638]": { - "$type": "EditorInspectorComponent", - "Id": 2597916765647847638 - }, - "Component_[3170182215265959833]": { - "$type": "EditorLockComponent", - "Id": 3170182215265959833 + "Id": 3261249813163778338 }, - "Component_[4868760161921280191]": { + "Component_[3837204912784440039]": { "$type": "EditorDisabledCompositionComponent", - "Id": 4868760161921280191 + "Id": 3837204912784440039 }, - "Component_[5068517972887920186]": { + "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 5068517972887920186, + "Id": 4272963378099646759, "Parent Entity": "", "Cached World Transform Parent": "" }, - "Component_[676524230089543870]": { + "Component_[4848458548047175816]": { + "$type": "EditorVisibilityComponent", + "Id": 4848458548047175816 + }, + "Component_[5787060997243919943]": { + "$type": "EditorInspectorComponent", + "Id": 5787060997243919943 + }, + "Component_[7804170251266531779]": { + "$type": "EditorLockComponent", + "Id": 7804170251266531779 + }, + "Component_[7874177159288365422]": { "$type": "EditorEntitySortComponent", - "Id": 676524230089543870 + "Id": 7874177159288365422 + }, + "Component_[8018146290632383969]": { + "$type": "EditorEntityIconComponent", + "Id": 8018146290632383969 + }, + "Component_[8452360690590857075]": { + "$type": "SelectionComponent", + "Id": 8452360690590857075 } - }, - "IsDependencyReady": true + } }, "Entities": { - "Entity_[18154419708790]": { - "Id": "Entity_[18154419708790]", + "Entity_[303417108773332]": { + "Id": "Entity_[303417108773332]", "Name": "cloth_locked_corners_four", "Components": { - "Component_[10365722294506366933]": { + "Component_[10032168678611459233]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 10032168678611459233, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", + "subId": 279249006 + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmodel" + } + } + } + }, + "Component_[12766570162661899127]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 12766570162661899127, + "Parent Entity": "ContainerEntity", + "Cached World Transform Parent": "ContainerEntity" + }, + "Component_[12950486357466178058]": { "$type": "EditorMaterialComponent", - "Id": 10365722294506366933, + "Id": 12950486357466178058, "Controller": { "Configuration": { "materials": [ @@ -112,110 +132,91 @@ ] ] }, - "Component_[10859562122285472274]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 10859562122285472274 - }, - "Component_[14622083210324204992]": { - "$type": "EditorLockComponent", - "Id": 14622083210324204992 + "Component_[13484816898680823471]": { + "$type": "EditorEntitySortComponent", + "Id": 13484816898680823471 }, - "Component_[15220860273045136531]": { - "$type": "AZ::Render::EditorMeshComponent", - "Id": 15220860273045136531, - "Controller": { - "Configuration": { - "ModelAsset": { - "assetId": { - "guid": "{89C91D92-7B4E-5EB5-945D-0053111859EE}", - "subId": 279249006 - }, - "assetHint": "objects/cloth/environment/cloth_locked_corners_four.azmodel" - } + "Component_[1382754615503170687]": { + "$type": "EditorInspectorComponent", + "Id": 1382754615503170687, + "ComponentOrderEntryArray": [ + { + "ComponentId": 12766570162661899127 + }, + { + "ComponentId": 15114198178471353754, + "SortIndex": 1 + }, + { + "ComponentId": 10032168678611459233, + "SortIndex": 2 + }, + { + "ComponentId": 12950486357466178058, + "SortIndex": 3 } - } - }, - "Component_[16425888662708329747]": { - "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 16425888662708329747, - "Parent Entity": "ContainerEntity", - "Cached World Transform": { - "Translation": [ - 3.0004701614379885, - -4.337822437286377, - 3.1882824897766115 - ] - }, - "Cached World Transform Parent": "ContainerEntity", - "Transform Data": { - "Translate": [ - 8.040351867675782, - -4.368268966674805, - 0.0 - ] - } - }, - "Component_[4438658514025011411]": { - "$type": "EditorEntitySortComponent", - "Id": 4438658514025011411 + ] }, - "Component_[5913235105006124431]": { - "$type": "EditorPendingCompositionComponent", - "Id": 5913235105006124431 + "Component_[14681412843852848812]": { + "$type": "EditorEntityIconComponent", + "Id": 14681412843852848812 }, - "Component_[77600265179991959]": { + "Component_[15114198178471353754]": { "$type": "EditorClothComponent", - "Id": 77600265179991959, + "Id": 15114198178471353754, "Configuration": { "Mesh Node": "pPlane1", + "Stiffness Frequency": 1.0, + "Damping": [ + 0.0, + 0.0, + 0.0 + ], + "Linear Drag": [ + 0.10000000149011612, + 0.10000000149011612, + 0.10000000149011612 + ], + "Angular Drag": [ + 0.0, + 0.0, + 0.0 + ], + "Wind Velocity": [ + 30.0, + 0.0, + 0.0 + ], "Air Drag Coefficient": 0.5, "Air Lift Coefficient": 0.5, "Tether Constraint Stiffness": 0.10000000149011612, "Solver Frequency": 0.10000000149011612, - "Update Normals of Static Particles": true, - "Wind Velocity": [ - 0.0, - 19.0, - 0.0 - ] + "Update Normals of Static Particles": true } }, - "Component_[7823285819593032424]": { - "$type": "SelectionComponent", - "Id": 7823285819593032424 + "Component_[16053566237817170938]": { + "$type": "EditorPendingCompositionComponent", + "Id": 16053566237817170938 }, - "Component_[7850007788027860583]": { - "$type": "EditorEntityIconComponent", - "Id": 7850007788027860583 + "Component_[4429394044165993194]": { + "$type": "EditorLockComponent", + "Id": 4429394044165993194 }, - "Component_[8322654623609026271]": { + "Component_[5458686923744863438]": { "$type": "EditorOnlyEntityComponent", - "Id": 8322654623609026271 + "Id": 5458686923744863438 }, - "Component_[884075377124407467]": { - "$type": "EditorInspectorComponent", - "Id": 884075377124407467, - "ComponentOrderEntryArray": [ - { - "ComponentId": 16425888662708329747 - }, - { - "ComponentId": 15220860273045136531, - "SortIndex": 1 - }, - { - "ComponentId": 10365722294506366933, - "SortIndex": 2 - }, - { - "ComponentId": 77600265179991959, - "SortIndex": 3 - } - ] + "Component_[7652255413353256955]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 7652255413353256955 }, - "Component_[9249713210701101638]": { + "Component_[8417657922837077982]": { "$type": "EditorVisibilityComponent", - "Id": 9249713210701101638 + "Id": 8417657922837077982 + }, + "Component_[944311658362107535]": { + "$type": "SelectionComponent", + "Id": 944311658362107535 } }, "IsDependencyReady": true diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab index b6bf98331c..068c4a6a7e 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_corners_two.prefab @@ -3,67 +3,165 @@ "Id": "ContainerEntity", "Name": "cloth_locked_corners_two", "Components": { - "Component_[10517025541686089747]": { - "$type": "SelectionComponent", - "Id": 10517025541686089747 - }, - "Component_[11942695247789365360]": { - "$type": "EditorLockComponent", - "Id": 11942695247789365360 + "Component_[10182366347512475253]": { + "$type": "EditorPrefabComponent", + "Id": 10182366347512475253 }, - "Component_[12559361867367225813]": { + "Component_[12917798267488243668]": { "$type": "EditorPendingCompositionComponent", - "Id": 12559361867367225813 - }, - "Component_[2298695278968718052]": { - "$type": "EditorPrefabComponent", - "Id": 2298695278968718052 + "Id": 12917798267488243668 }, - "Component_[5428140871384328988]": { + "Component_[3261249813163778338]": { "$type": "EditorOnlyEntityComponent", - "Id": 5428140871384328988 + "Id": 3261249813163778338 + }, + "Component_[3837204912784440039]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 3837204912784440039 }, - "Component_[5701501137958186643]": { + "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 5701501137958186643, + "Id": 4272963378099646759, "Parent Entity": "", "Cached World Transform Parent": "" }, - "Component_[5778239630714783896]": { + "Component_[4848458548047175816]": { "$type": "EditorVisibilityComponent", - "Id": 5778239630714783896 - }, - "Component_[7805751851684582886]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 7805751851684582886 + "Id": 4848458548047175816 }, - "Component_[8080436454059486024]": { - "$type": "EditorEntityIconComponent", - "Id": 8080436454059486024 - }, - "Component_[9061896821975172319]": { + "Component_[5787060997243919943]": { "$type": "EditorInspectorComponent", - "Id": 9061896821975172319 + "Id": 5787060997243919943 }, - "Component_[9124360597499948832]": { + "Component_[7804170251266531779]": { + "$type": "EditorLockComponent", + "Id": 7804170251266531779 + }, + "Component_[7874177159288365422]": { "$type": "EditorEntitySortComponent", - "Id": 9124360597499948832 + "Id": 7874177159288365422 + }, + "Component_[8018146290632383969]": { + "$type": "EditorEntityIconComponent", + "Id": 8018146290632383969 + }, + "Component_[8452360690590857075]": { + "$type": "SelectionComponent", + "Id": 8452360690590857075 } - }, - "IsDependencyReady": true + } }, "Entities": { - "Entity_[19988370744182]": { - "Id": "Entity_[19988370744182]", + "Entity_[303387044002260]": { + "Id": "Entity_[303387044002260]", "Name": "cloth_locked_corners_two", "Components": { - "Component_[11229181318682575009]": { + "Component_[1001638726593827857]": { + "$type": "EditorEntityIconComponent", + "Id": 1001638726593827857 + }, + "Component_[10262713678088900797]": { + "$type": "EditorLockComponent", + "Id": 10262713678088900797 + }, + "Component_[11187088727311308743]": { + "$type": "EditorEntitySortComponent", + "Id": 11187088727311308743 + }, + "Component_[11287804792148854494]": { "$type": "EditorOnlyEntityComponent", - "Id": 11229181318682575009 + "Id": 11287804792148854494 + }, + "Component_[13071159905056054261]": { + "$type": "EditorVisibilityComponent", + "Id": 13071159905056054261 + }, + "Component_[14654386610096307993]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 14654386610096307993 + }, + "Component_[16927361351552746000]": { + "$type": "EditorClothComponent", + "Id": 16927361351552746000, + "Configuration": { + "Mesh Node": "pPlane1", + "Mass": 10.0, + "Stiffness Frequency": 1.0, + "Damping": [ + 0.0, + 0.0, + 0.0 + ], + "Linear Drag": [ + 0.0, + 0.0, + 0.0 + ], + "Angular Drag": [ + 0.0, + 0.0, + 0.0 + ], + "Air Drag Coefficient": 0.5, + "Air Lift Coefficient": 0.800000011920929, + "Tether Constraint Stiffness": 0.10000000149011612, + "Solver Frequency": 0.5, + "Update Normals of Static Particles": true + } + }, + "Component_[2410073307760782444]": { + "$type": "EditorPendingCompositionComponent", + "Id": 2410073307760782444 + }, + "Component_[4751432498761592063]": { + "$type": "EditorInspectorComponent", + "Id": 4751432498761592063, + "ComponentOrderEntryArray": [ + { + "ComponentId": 5636741882934012477 + }, + { + "ComponentId": 16927361351552746000, + "SortIndex": 1 + }, + { + "ComponentId": 7032406204252577953, + "SortIndex": 2 + }, + { + "ComponentId": 9419069324766365964, + "SortIndex": 3 + } + ] + }, + "Component_[5636741882934012477]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 5636741882934012477, + "Parent Entity": "ContainerEntity", + "Cached World Transform Parent": "ContainerEntity" + }, + "Component_[691437686890444081]": { + "$type": "SelectionComponent", + "Id": 691437686890444081 + }, + "Component_[7032406204252577953]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 7032406204252577953, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", + "subId": 280646834 + }, + "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmodel" + } + } + } }, - "Component_[12590098138564546298]": { + "Component_[9419069324766365964]": { "$type": "EditorMaterialComponent", - "Id": 12590098138564546298, + "Id": 9419069324766365964, "Controller": { "Configuration": { "materials": [ @@ -115,104 +213,6 @@ } ] ] - }, - "Component_[13015448166210260338]": { - "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 13015448166210260338, - "Parent Entity": "ContainerEntity", - "Cached World Transform": { - "Translation": [ - 0.6749224662780762, - -4.288209915161133, - 2.4030189514160158 - ] - }, - "Cached World Transform Parent": "ContainerEntity", - "Transform Data": { - "Translate": [ - 2.2785778045654299, - 0.0, - 0.0 - ] - } - }, - "Component_[17709800634205509765]": { - "$type": "SelectionComponent", - "Id": 17709800634205509765 - }, - "Component_[17881336357737316612]": { - "$type": "EditorVisibilityComponent", - "Id": 17881336357737316612 - }, - "Component_[18134421333115235974]": { - "$type": "AZ::Render::EditorMeshComponent", - "Id": 18134421333115235974, - "Controller": { - "Configuration": { - "ModelAsset": { - "assetId": { - "guid": "{23C6817F-0B79-5CAD-B861-9E6F5E55927D}", - "subId": 280646834 - }, - "assetHint": "objects/cloth/environment/cloth_locked_corners_two.azmodel" - } - } - } - }, - "Component_[1951606800215019069]": { - "$type": "EditorEntityIconComponent", - "Id": 1951606800215019069 - }, - "Component_[2363740054997837278]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 2363740054997837278 - }, - "Component_[3674821019392172687]": { - "$type": "EditorInspectorComponent", - "Id": 3674821019392172687, - "ComponentOrderEntryArray": [ - { - "ComponentId": 13015448166210260338 - }, - { - "ComponentId": 18134421333115235974, - "SortIndex": 1 - }, - { - "ComponentId": 12590098138564546298, - "SortIndex": 2 - }, - { - "ComponentId": 5881611098656116710, - "SortIndex": 3 - } - ] - }, - "Component_[5096623085809697325]": { - "$type": "EditorPendingCompositionComponent", - "Id": 5096623085809697325 - }, - "Component_[5881611098656116710]": { - "$type": "EditorClothComponent", - "Id": 5881611098656116710, - "Configuration": { - "Mesh Node": "pPlane1", - "Mass": 10.0, - "Stiffness Frequency": 1.0, - "Air Drag Coefficient": 0.5, - "Air Lift Coefficient": 0.800000011920929, - "Tether Constraint Stiffness": 0.10000000149011612, - "Solver Frequency": 0.5, - "Update Normals of Static Particles": true - } - }, - "Component_[617790731841875255]": { - "$type": "EditorLockComponent", - "Id": 617790731841875255 - }, - "Component_[7682555904043583234]": { - "$type": "EditorEntitySortComponent", - "Id": 7682555904043583234 } }, "IsDependencyReady": true diff --git a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab index 1dff578422..7bba36adf8 100644 --- a/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab +++ b/Gems/NvCloth/Assets/prefabs/Cloth/cloth_locked_edge.prefab @@ -3,67 +3,106 @@ "Id": "ContainerEntity", "Name": "cloth_locked_edge", "Components": { - "Component_[1235323850699490217]": { - "$type": "EditorVisibilityComponent", - "Id": 1235323850699490217 + "Component_[10182366347512475253]": { + "$type": "EditorPrefabComponent", + "Id": 10182366347512475253 }, - "Component_[15881575175154249216]": { - "$type": "EditorEntityIconComponent", - "Id": 15881575175154249216 + "Component_[12917798267488243668]": { + "$type": "EditorPendingCompositionComponent", + "Id": 12917798267488243668 }, - "Component_[17600849902539154435]": { + "Component_[3261249813163778338]": { "$type": "EditorOnlyEntityComponent", - "Id": 17600849902539154435 + "Id": 3261249813163778338 }, - "Component_[17642993831427457865]": { + "Component_[3837204912784440039]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 3837204912784440039 + }, + "Component_[4272963378099646759]": { "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 17642993831427457865, + "Id": 4272963378099646759, "Parent Entity": "", "Cached World Transform Parent": "" }, - "Component_[1978132613175166397]": { - "$type": "EditorPrefabComponent", - "Id": 1978132613175166397 - }, - "Component_[3665335443055612027]": { - "$type": "EditorEntitySortComponent", - "Id": 3665335443055612027 + "Component_[4848458548047175816]": { + "$type": "EditorVisibilityComponent", + "Id": 4848458548047175816 }, - "Component_[4340499892108035209]": { + "Component_[5787060997243919943]": { "$type": "EditorInspectorComponent", - "Id": 4340499892108035209 + "Id": 5787060997243919943 }, - "Component_[5740495422195339981]": { - "$type": "SelectionComponent", - "Id": 5740495422195339981 + "Component_[7804170251266531779]": { + "$type": "EditorLockComponent", + "Id": 7804170251266531779 }, - "Component_[5916084327473082953]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 5916084327473082953 + "Component_[7874177159288365422]": { + "$type": "EditorEntitySortComponent", + "Id": 7874177159288365422 }, - "Component_[6149161397236330762]": { - "$type": "EditorPendingCompositionComponent", - "Id": 6149161397236330762 + "Component_[8018146290632383969]": { + "$type": "EditorEntityIconComponent", + "Id": 8018146290632383969 }, - "Component_[8815189893920523789]": { - "$type": "EditorLockComponent", - "Id": 8815189893920523789 + "Component_[8452360690590857075]": { + "$type": "SelectionComponent", + "Id": 8452360690590857075 } - }, - "IsDependencyReady": true + } }, "Entities": { - "Entity_[24657000194934]": { - "Id": "Entity_[24657000194934]", + "Entity_[303356979231188]": { + "Id": "Entity_[303356979231188]", "Name": "cloth_locked_edge", "Components": { - "Component_[12570923873370995388]": { - "$type": "EditorEntityIconComponent", - "Id": 12570923873370995388 + "Component_[10058909754154454376]": { + "$type": "EditorDisabledCompositionComponent", + "Id": 10058909754154454376 + }, + "Component_[13619550272459633699]": { + "$type": "AZ::Render::EditorMeshComponent", + "Id": 13619550272459633699, + "Controller": { + "Configuration": { + "ModelAsset": { + "assetId": { + "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", + "subId": 272561654 + }, + "assetHint": "objects/cloth/environment/cloth_locked_edge.azmodel" + } + } + } + }, + "Component_[14771752773951891563]": { + "$type": "EditorInspectorComponent", + "Id": 14771752773951891563, + "ComponentOrderEntryArray": [ + { + "ComponentId": 4215669181198357248 + }, + { + "ComponentId": 16595775512479337011, + "SortIndex": 1 + }, + { + "ComponentId": 13619550272459633699, + "SortIndex": 2 + }, + { + "ComponentId": 4580390205455331350, + "SortIndex": 3 + } + ] + }, + "Component_[14983280478781449966]": { + "$type": "SelectionComponent", + "Id": 14983280478781449966 }, - "Component_[15695175229307539942]": { + "Component_[16595775512479337011]": { "$type": "EditorClothComponent", - "Id": 15695175229307539942, + "Id": 16595775512479337011, "Configuration": { "Mesh Node": "pPlane1", "Damping": [ @@ -82,26 +121,28 @@ 0.5 ], "Wind Velocity": [ - 20.0, + 10.0, 0.0, 0.0 ], - "Update Normals of Static Particles": true, "Air Drag Coefficient": 0.5, - "Air Lift Coefficient": 0.10000000149011612 + "Air Lift Coefficient": 0.5, + "Update Normals of Static Particles": true } }, - "Component_[1702552432011529292]": { - "$type": "EditorOnlyEntityComponent", - "Id": 1702552432011529292 + "Component_[16893372770952587461]": { + "$type": "EditorVisibilityComponent", + "Id": 16893372770952587461 }, - "Component_[3257580479102403174]": { - "$type": "EditorDisabledCompositionComponent", - "Id": 3257580479102403174 + "Component_[4215669181198357248]": { + "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", + "Id": 4215669181198357248, + "Parent Entity": "ContainerEntity", + "Cached World Transform Parent": "ContainerEntity" }, - "Component_[4004895580151009916]": { + "Component_[4580390205455331350]": { "$type": "EditorMaterialComponent", - "Id": 4004895580151009916, + "Id": 4580390205455331350, "Controller": { "Configuration": { "materials": [ @@ -154,81 +195,25 @@ ] ] }, - "Component_[4551907993575066613]": { - "$type": "EditorPendingCompositionComponent", - "Id": 4551907993575066613 - }, - "Component_[4676074866703387598]": { - "$type": "EditorLockComponent", - "Id": 4676074866703387598 - }, - "Component_[5370716247379084795]": { - "$type": "SelectionComponent", - "Id": 5370716247379084795 + "Component_[5652509070289279796]": { + "$type": "EditorOnlyEntityComponent", + "Id": 5652509070289279796 }, - "Component_[5949160048738230993]": { - "$type": "EditorVisibilityComponent", - "Id": 5949160048738230993 + "Component_[5729541152832178099]": { + "$type": "EditorEntityIconComponent", + "Id": 5729541152832178099 }, - "Component_[7069757442037403546]": { - "$type": "EditorInspectorComponent", - "Id": 7069757442037403546, - "ComponentOrderEntryArray": [ - { - "ComponentId": 8406078395808436009 - }, - { - "ComponentId": 9469271735758494477, - "SortIndex": 1 - }, - { - "ComponentId": 4004895580151009916, - "SortIndex": 2 - }, - { - "ComponentId": 15695175229307539942, - "SortIndex": 3 - } - ] + "Component_[734939761857694320]": { + "$type": "EditorPendingCompositionComponent", + "Id": 734939761857694320 }, - "Component_[8406078395808436009]": { - "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent", - "Id": 8406078395808436009, - "Parent Entity": "ContainerEntity", - "Cached World Transform": { - "Translation": [ - -0.9528284072875977, - -3.110790252685547, - 1.4851393699645997 - ] - }, - "Cached World Transform Parent": "ContainerEntity", - "Transform Data": { - "Translate": [ - 0.013340950012207032, - -0.012479305267333985, - 0.0 - ] - } + "Component_[9519328464240977334]": { + "$type": "EditorLockComponent", + "Id": 9519328464240977334 }, - "Component_[94124159756316305]": { + "Component_[9694796263300215788]": { "$type": "EditorEntitySortComponent", - "Id": 94124159756316305 - }, - "Component_[9469271735758494477]": { - "$type": "AZ::Render::EditorMeshComponent", - "Id": 9469271735758494477, - "Controller": { - "Configuration": { - "ModelAsset": { - "assetId": { - "guid": "{9DCAD62C-7A35-5D7D-8276-870D646CD5E2}", - "subId": 272561654 - }, - "assetHint": "objects/cloth/environment/cloth_locked_edge.azmodel" - } - } - } + "Id": 9694796263300215788 } }, "IsDependencyReady": true From 03c8110d026689e01e87ec2e49e18bf32b30cbb6 Mon Sep 17 00:00:00 2001 From: Steve Pham <82231385+spham-amzn@users.noreply.github.com> Date: Wed, 30 Jun 2021 08:27:43 -0700 Subject: [PATCH 052/111] Replaced remaining CryTek copyright notices - Replaced 'CryTek' with 'Contributors to the Open 3D Engine Project' in ConsoleHelpGen.cpp (#1667) - Removed remaining 'Crytek Engine Source File.. Copyright (C), Crytek Studios' in various Editor source files - Replaced 'modifications by CryTek' and 'modifications by Amazon' with 'Modified from original' --- Code/Legacy/CrySystem/ConsoleHelpGen.cpp | 8 ++++---- Code/Sandbox/Editor/EditorDefs.h | 9 --------- Code/Sandbox/Editor/NewLevelDialog.h | 14 -------------- Code/Sandbox/Editor/NewTerrainDialog.h | 14 -------------- Code/Sandbox/Editor/Plugin.h | 9 --------- Code/Sandbox/Editor/PluginManager.h | 8 -------- Code/Sandbox/Editor/Settings.h | 14 -------------- Code/Sandbox/Editor/UsedResources.h | 11 ----------- Code/Sandbox/Editor/WaitProgress.h | 6 ------ .../Plugins/EditorCommon/EditorCommon.rc | Bin 2546 -> 2326 bytes .../Plugins/FFMPEGPlugin/FFMPEGPlugin.h | 5 +---- .../External/CubeMapGen/CBBoxInt32.cpp | 3 +-- .../External/CubeMapGen/CBBoxInt32.h | 3 +-- .../External/CubeMapGen/CCubeMapProcessor.cpp | 3 +-- .../External/CubeMapGen/CCubeMapProcessor.h | 3 +-- .../External/CubeMapGen/CImageSurface.cpp | 3 +-- .../External/CubeMapGen/VectorMacros.h | 2 +- 17 files changed, 11 insertions(+), 104 deletions(-) diff --git a/Code/Legacy/CrySystem/ConsoleHelpGen.cpp b/Code/Legacy/CrySystem/ConsoleHelpGen.cpp index 2845ca14ae..fb95164334 100644 --- a/Code/Legacy/CrySystem/ConsoleHelpGen.cpp +++ b/Code/Legacy/CrySystem/ConsoleHelpGen.cpp @@ -90,10 +90,10 @@ void CConsoleHelpGen::StartPage(FILE* f, const char* szPageName, const char* szP { fprintf(f, "%s", szPageName); fprintf(f, "", szPageDescription); - fprintf(f, ""); - fprintf(f, ""); - fprintf(f, ""); - fprintf(f, ""); + fprintf(f, ""); + fprintf(f, ""); + fprintf(f, ""); + fprintf(f, ""); fprintf(f, ""); fprintf(f, ""); fprintf(f, ""); diff --git a/Code/Sandbox/Editor/EditorDefs.h b/Code/Sandbox/Editor/EditorDefs.h index dc31c652f6..ac17cc926b 100644 --- a/Code/Sandbox/Editor/EditorDefs.h +++ b/Code/Sandbox/Editor/EditorDefs.h @@ -7,15 +7,6 @@ #pragma once -//////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios -// ------------------------------------------------------------------------- -// Created: 13/2/2003 by Timur. -// Description: Main header included by every file in Editor. -// -//////////////////////////////////////////////////////////////////////////// #ifndef CRYINCLUDE_EDITOR_EDITORDEFS_H #define CRYINCLUDE_EDITOR_EDITORDEFS_H diff --git a/Code/Sandbox/Editor/NewLevelDialog.h b/Code/Sandbox/Editor/NewLevelDialog.h index 4a6fd64a00..d4f033d490 100644 --- a/Code/Sandbox/Editor/NewLevelDialog.h +++ b/Code/Sandbox/Editor/NewLevelDialog.h @@ -7,20 +7,6 @@ #pragma once -//////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2002. -// ------------------------------------------------------------------------- -// File name: newleveldialog.h -// Version: v1.00 -// Created: 24/7/2002 by Timur. -// Compilers: Visual Studio.NET -// Description: -// ------------------------------------------------------------------------- -// History: -// -//////////////////////////////////////////////////////////////////////////// #ifndef CRYINCLUDE_EDITOR_NEWLEVELDIALOG_H #define CRYINCLUDE_EDITOR_NEWLEVELDIALOG_H diff --git a/Code/Sandbox/Editor/NewTerrainDialog.h b/Code/Sandbox/Editor/NewTerrainDialog.h index 7b6265e322..ef4723b0c0 100644 --- a/Code/Sandbox/Editor/NewTerrainDialog.h +++ b/Code/Sandbox/Editor/NewTerrainDialog.h @@ -5,20 +5,6 @@ * */ #pragma once -//////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2002. -// ------------------------------------------------------------------------- -// File name: newterraindialog.h -// Version: v1.00 -// Created: 24/7/2002 by Timur. -// Compilers: Visual Studio.NET -// Description: -// ------------------------------------------------------------------------- -// History: -// -//////////////////////////////////////////////////////////////////////////// #ifndef CRYINCLUDE_EDITOR_NEWTERRAINDIALOG_H #define CRYINCLUDE_EDITOR_NEWTERRAINDIALOG_H diff --git a/Code/Sandbox/Editor/Plugin.h b/Code/Sandbox/Editor/Plugin.h index 1da0be8f63..f7e46d979f 100644 --- a/Code/Sandbox/Editor/Plugin.h +++ b/Code/Sandbox/Editor/Plugin.h @@ -7,15 +7,6 @@ #pragma once -//////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2001-2012 -// ------------------------------------------------------------------------- -// Created: 15/1/2003 by Timur. -// Description: Plugin architecture supporting classes -// -//////////////////////////////////////////////////////////////////////////// #ifndef CRYINCLUDE_EDITOR_PLUGIN_H #define CRYINCLUDE_EDITOR_PLUGIN_H #include "Include/IEditorClassFactory.h" diff --git a/Code/Sandbox/Editor/PluginManager.h b/Code/Sandbox/Editor/PluginManager.h index 2cd0841f08..5f0600ec88 100644 --- a/Code/Sandbox/Editor/PluginManager.h +++ b/Code/Sandbox/Editor/PluginManager.h @@ -7,14 +7,6 @@ #pragma once -//////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2001-2012. -// ------------------------------------------------------------------------- -// Description: The plugin manager, central point for loading/unloading plugins -// -//////////////////////////////////////////////////////////////////////////// #ifndef CRYINCLUDE_EDITOR_PLUGINMANAGER_H #define CRYINCLUDE_EDITOR_PLUGINMANAGER_H diff --git a/Code/Sandbox/Editor/Settings.h b/Code/Sandbox/Editor/Settings.h index 7618a11485..a4cfdf1163 100644 --- a/Code/Sandbox/Editor/Settings.h +++ b/Code/Sandbox/Editor/Settings.h @@ -7,20 +7,6 @@ #pragma once -//////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2002. -// ------------------------------------------------------------------------- -// File name: settings.h -// Version: v1.00 -// Created: 14/1/2003 by Timur. -// Compilers: Visual Studio.NET -// Description: General editor settings. -// ------------------------------------------------------------------------- -// History: -// -//////////////////////////////////////////////////////////////////////////// #ifndef CRYINCLUDE_EDITOR_SETTINGS_H #define CRYINCLUDE_EDITOR_SETTINGS_H #include "SettingsManager.h" diff --git a/Code/Sandbox/Editor/UsedResources.h b/Code/Sandbox/Editor/UsedResources.h index 13362f5472..93b42429c2 100644 --- a/Code/Sandbox/Editor/UsedResources.h +++ b/Code/Sandbox/Editor/UsedResources.h @@ -7,17 +7,6 @@ #pragma once -//////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2001-2012 -// ------------------------------------------------------------------------- -// File name: UsedResources.h -// Created: 28/11/2003 by Timur. -// Description: Class to gather used resources -// -//////////////////////////////////////////////////////////////////////////// - //! Class passed to resource gathering functions #ifndef CRYINCLUDE_EDITOR_USEDRESOURCES_H #define CRYINCLUDE_EDITOR_USEDRESOURCES_H diff --git a/Code/Sandbox/Editor/WaitProgress.h b/Code/Sandbox/Editor/WaitProgress.h index da04a053ef..e4e3a30873 100644 --- a/Code/Sandbox/Editor/WaitProgress.h +++ b/Code/Sandbox/Editor/WaitProgress.h @@ -8,12 +8,6 @@ #pragma once //////////////////////////////////////////////////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2002-2012. -// ------------------------------------------------------------------------- -// File name: waitprogress.h -// Created: 10/5/2002 by Timur. // Description: CWaitProgress class adds information about lengthy process // Usage: // diff --git a/Code/Sandbox/Plugins/EditorCommon/EditorCommon.rc b/Code/Sandbox/Plugins/EditorCommon/EditorCommon.rc index ebb41f11927a460fc3ac81fb7c4017efe93fe196..77deebb598990e925cf97758d98877e71ec79872 100644 GIT binary patch delta 135 zcmew)JWXiB1Qu0ihJ1!Rh7yJ%hD?SehEgCaAIL6dPyn+)WCla(WNubP-T#Medl@G?vCAowrG4^x7VXVq9CsK2ZK)q< delta 393 zcmaiwJqp4=6og0crx6RSCEG_lfSopKAxgjl#QbP5CJ>{bO|BpYY`ucub!@zXCvf%& zVjdvAB<+u1$UAC1eQXmqiHjXh#SXv1M$p#_B@X9w;4UNWz>(y?Gpc$6STAksA@ zF?_Bm7TnXb&l!r5j++(6G zJ6DurPFfQ%x?K~~XCxy_uoLi-xIRYcVIamSuhI~O4XrMF9V{fsVIRq TVGHBS!>RhsoV-rw6{y= diff --git a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.h b/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.h index f16853cbe8..07119c6d6f 100644 --- a/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.h +++ b/Code/Sandbox/Plugins/FFMPEGPlugin/FFMPEGPlugin.h @@ -7,10 +7,7 @@ #pragma once -////////////////////////////////// CRYTEK //////////////////////////////// -// -// Crytek Engine Source File. -// Copyright (C), Crytek Studios, 2011. +//////////////////////////////////////////////////////////////////////////// // ------------------------------------------------------------------------- // File Name : FFMPEGPlugin.h // Author : Jaewon Jung diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp index e8697c7c27..271013adef 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.cpp @@ -6,8 +6,7 @@ //============================================================================= // (C) 2005 ATI Research, Inc., All rights reserved. //============================================================================= -// modifications by Crytek GmbH -// modifications by Amazon +// Modified from original #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h index 056cb25425..53f32f8cd5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CBBoxInt32.h @@ -5,8 +5,7 @@ //============================================================================= // (C) 2005 ATI Research, Inc., All rights reserved. //============================================================================= -// modifications by Crytek GmbH -// modifications by Amazon +// Modified from original #pragma once diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp index df31067af0..8264003b0b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.cpp @@ -1,8 +1,7 @@ //============================================================================= // (C) 2005 ATI Research, Inc., All rights reserved. //============================================================================= -// modifications by Crytek GmbH -// modifications by Amazon +// Modified from original #include #include "CCubeMapProcessor.h" diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h index be54b98e6a..4a29e8621a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CCubeMapProcessor.h @@ -6,8 +6,7 @@ //-------------------------------------------------------------------------------------- // (C) 2005 ATI Research, Inc., All rights reserved. //-------------------------------------------------------------------------------------- -// modifications by Crytek GmbH -// modifications by Amazon +// Modified from original #pragma once diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp index 3b055699e2..592ada0910 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp @@ -12,8 +12,7 @@ //-------------------------------------------------------------------------------------- // (C) 2005 ATI Research, Inc., All rights reserved. //-------------------------------------------------------------------------------------- -// modifications by Crytek GmbH -// modifications by Amazon +// Modified from original #include diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h index 7546457c79..37d15f1c1b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h @@ -15,7 +15,7 @@ //-------------------------------------------------------------------------------------- // (C) 2001-2005 ATI Research, Inc. All rights reserved. //-------------------------------------------------------------------------------------- -// modifications by Crytek GmbH +// Modified from original //disable warning about doubles being converted down to float #pragma warning (disable : 4244 ) From ed9232563d711320b4a41c5b81072e5244dd0a9a Mon Sep 17 00:00:00 2001 From: Jacob Hilliard <64656371+jcbhl@users.noreply.github.com> Date: Wed, 30 Jun 2021 08:51:32 -0700 Subject: [PATCH 053/111] [ATOM-15862] Fixing CPU profiler to save multiple regions within the same thread (#1636) Signed-off-by: Jacob Hilliard --- .../Code/Source/AuxGeom/AuxGeomDrawQueue.cpp | 1 - .../ProfilingCaptureSystemComponent.cpp | 16 +++-- .../RHI/Code/Include/Atom/RHI/CpuProfiler.h | 6 +- .../Code/Include/Atom/RHI/CpuProfilerImpl.h | 14 +++- .../RHI/Code/Source/RHI/CpuProfilerImpl.cpp | 64 +++++++++++++------ .../Include/Atom/Utils/ImGuiCpuProfiler.inl | 62 ++++++++++++------ 6 files changed, 111 insertions(+), 52 deletions(-) diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp index 2be6b562fc..0a1d6f5235 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp @@ -649,7 +649,6 @@ namespace AZ int32_t viewProjOverrideIndex) { AZ_PROFILE_FUNCTION(AZ::Debug::ProfileCategory::AzRender); - AZ_ATOM_PROFILE_FUNCTION("AuxGeom", "AuxGeomDrawQueue: DrawPrimitiveCommon"); // grab a mutex lock for the rest of this function so that a commit cannot happen during it and // other threads can't add geometry during it diff --git a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp index 113e28db3b..874d385df6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp @@ -134,7 +134,7 @@ namespace AZ static void Reflect(AZ::ReflectContext* context); CpuProfilingStatisticsSerializer() = default; - CpuProfilingStatisticsSerializer(RHI::CpuProfiler::TimeRegionMap& timeRegionMap); + CpuProfilingStatisticsSerializer(const RHI::CpuProfiler::TimeRegionMap& timeRegionMap); AZStd::vector m_cpuProfilingStatisticsSerializerEntries; }; @@ -251,14 +251,17 @@ namespace AZ // --- CpuProfilingStatisticsSerializer --- - CpuProfilingStatisticsSerializer::CpuProfilingStatisticsSerializer(RHI::CpuProfiler::TimeRegionMap& timeRegionMap) + CpuProfilingStatisticsSerializer::CpuProfilingStatisticsSerializer(const RHI::CpuProfiler::TimeRegionMap& timeRegionMap) { // Create serializable entries - for (auto& treadEntry : timeRegionMap) + for (auto& threadEntry : timeRegionMap) { - for (auto& cachedRegionEntry : treadEntry.second) + for (auto& cachedRegionEntry : threadEntry.second) { - m_cpuProfilingStatisticsSerializerEntries.emplace_back(cachedRegionEntry.second); + m_cpuProfilingStatisticsSerializerEntries.insert( + m_cpuProfilingStatisticsSerializerEntries.end(), + cachedRegionEntry.second.begin(), + cachedRegionEntry.second.end()); } } } @@ -465,8 +468,7 @@ namespace AZ serializationSettings.m_keepDefaults = true; // Get time Cpu profiled time regions - RHI::CpuProfiler::TimeRegionMap timeRegionMap; - RHI::CpuProfiler::Get()->FlushTimeRegionMap(timeRegionMap); + const RHI::CpuProfiler::TimeRegionMap& timeRegionMap = RHI::CpuProfiler::Get()->GetTimeRegionMap(); CpuProfilingStatisticsSerializer serializer(timeRegionMap); const auto saveResult = JsonSerializationUtils::SaveObjectToFile(&serializer, diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h index e103116a8a..a9c8107e57 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h @@ -60,7 +60,7 @@ namespace AZ class CpuProfiler { public: - using ThreadTimeRegionMap = AZStd::unordered_map; + using ThreadTimeRegionMap = AZStd::unordered_map>; using TimeRegionMap = AZStd::unordered_map; AZ_RTTI(CpuProfiler, "{127C1D0B-BE05-4E18-A8F6-24F3EED2ECA6}"); @@ -78,8 +78,8 @@ namespace AZ //! Ends a time region virtual void EndTimeRegion() = 0; - //! Flush cached regions from all threads to the passed parameter - virtual void FlushTimeRegionMap(TimeRegionMap& timeRegionMap) = 0; + //! Get the last frame's TimeRegionMap + virtual const TimeRegionMap& GetTimeRegionMap() const = 0; //! Enable/Disable the CpuProfiler virtual void SetProfilerEnabled(bool enabled) = 0; diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h index f6e7467949..56de2a0395 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h @@ -10,10 +10,13 @@ #include #include +#include #include #include #include +#include + namespace AZ { namespace RHI @@ -70,6 +73,9 @@ namespace AZ // When the thread is terminated, it will flag itself for deletion AZStd::atomic_bool m_deleteFlag = false; + + // Keep track of the regions that have hit the size limit so we don't have to lock to check + AZStd::map m_hitSizeLimitMap; }; //! CpuProfiler will keep track of the registered threads, and @@ -77,6 +83,7 @@ namespace AZ //! cached regions, which are stored on a per thread frequency. class CpuProfilerImpl final : public CpuProfiler + , public FrameEventBus::Handler { friend class CpuTimingLocalStorage; @@ -92,10 +99,12 @@ namespace AZ //! Unregisters the CpuProfilerImpl instance from the interface void Shutdown(); + void OnFrameBegin(); + //! CpuProfiler overrides... void BeginTimeRegion(TimeRegion& timeRegion) final; void EndTimeRegion() final; - void FlushTimeRegionMap(TimeRegionMap& timeRegionMap) final; + const TimeRegionMap& GetTimeRegionMap() const final; void SetProfilerEnabled(bool enabled) final; bool IsProfilerEnabled() const final; @@ -104,8 +113,7 @@ namespace AZ void RegisterThreadStorage(); // ThreadId -> ThreadTimeRegionMap - // When the user requests the cached time regions from the system, it will use this map as an intermediate - // storage point to flush each thread's cached regions into this map. + // On the start of each frame, this map will be updated with the last frame's profiling data. TimeRegionMap m_timeRegionMap; // Set of registered threads when created diff --git a/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp b/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp index 12690b3ba9..d494d6735a 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp @@ -11,6 +11,7 @@ #include #include +#include namespace AZ { @@ -78,6 +79,8 @@ namespace AZ { Interface::Register(this); m_initialized = true; + Device* rhiDevice = GetRHIDevice().get(); + FrameEventBus::Handler::BusConnect(rhiDevice); } void CpuProfilerImpl::Shutdown() @@ -98,6 +101,7 @@ namespace AZ m_registeredThreads.clear(); m_timeRegionMap.clear(); m_initialized = false; + FrameEventBus::Handler::BusDisconnect(); } void CpuProfilerImpl::BeginTimeRegion(TimeRegion& timeRegion) @@ -132,26 +136,9 @@ namespace AZ } } - void CpuProfilerImpl::FlushTimeRegionMap(TimeRegionMap& timeRegionMap) + const CpuProfiler::TimeRegionMap& CpuProfilerImpl::GetTimeRegionMap() const { - AZStd::unique_lock lock(m_threadRegisterMutex); - - // Iterate through all the threads, and collect the thread's cached time regions - for (auto& threadLocal : m_registeredThreads) - { - CpuProfiler::ThreadTimeRegionMap& threadMapEntry = m_timeRegionMap[threadLocal->m_executingThreadId]; - threadLocal->TryFlushCachedMap(threadMapEntry); - } - - // Clear all TLS that flagged themselves to be deleted, meaning that the thread is already terminated - AZStd::remove_if(m_registeredThreads.begin(), m_registeredThreads.end(), [](const RHI::Ptr& thread) - { - return thread->m_deleteFlag.load(); - }); - - // Flush all the cached time regions to the provided map - timeRegionMap = AZStd::move(m_timeRegionMap); - m_timeRegionMap.clear(); + return m_timeRegionMap; } void CpuProfilerImpl::SetProfilerEnabled(bool enabled) @@ -186,6 +173,32 @@ namespace AZ return m_enabled; } + void CpuProfilerImpl::OnFrameBegin() + { + if (!m_enabled) + { + return; + } + AZStd::unique_lock lock(m_threadRegisterMutex); + + // Iterate through all the threads, and collect the thread's cached time regions + TimeRegionMap newMap; + for (auto& threadLocal : m_registeredThreads) + { + ThreadTimeRegionMap& threadMapEntry = newMap[threadLocal->m_executingThreadId]; + threadLocal->TryFlushCachedMap(threadMapEntry); + } + + // Clear all TLS that flagged themselves to be deleted, meaning that the thread is already terminated + AZStd::remove_if(m_registeredThreads.begin(), m_registeredThreads.end(), [](const RHI::Ptr& thread) + { + return thread->m_deleteFlag.load(); + }); + + // Update our saved time regions to the last frame's collected data + m_timeRegionMap = AZStd::move(newMap); + } + void CpuProfilerImpl::RegisterThreadStorage() { @@ -261,6 +274,10 @@ namespace AZ // Gets called when region ends and all data is set void CpuTimingLocalStorage::AddCachedRegion(CachedTimeRegion&& timeRegionCached) { + if (m_hitSizeLimitMap[timeRegionCached.m_groupRegionName->m_regionName]) + { + return; + } // Add an entry to the cached region m_cachedTimeRegions.push_back(timeRegionCached); @@ -276,7 +293,13 @@ namespace AZ // Add the cached regions to the map for (auto& cachedTimeRegion : m_cachedTimeRegions) { - m_cachedTimeRegionMap[cachedTimeRegion.m_groupRegionName->m_regionName] = cachedTimeRegion; + const AZStd::string regionName = cachedTimeRegion.m_groupRegionName->m_regionName; + AZStd::vector& regionVec = m_cachedTimeRegionMap[regionName]; + regionVec.push_back(cachedTimeRegion); + if (regionVec.size() >= TimeRegionStackSize) + { + m_hitSizeLimitMap[cachedTimeRegion.m_groupRegionName->m_regionName] = true; + } } // Clear the cached regions @@ -295,6 +318,7 @@ namespace AZ { cachedTimeRegionMap = AZStd::move(m_cachedTimeRegionMap); m_cachedTimeRegionMap.clear(); + m_hitSizeLimitMap.clear(); } m_cachedTimeRegionMutex.unlock(); } diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl index eb62a6f092..9b16ae81cf 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl @@ -9,6 +9,7 @@ #include #include #include +#include namespace AZ { @@ -30,6 +31,13 @@ namespace AZ const AZStd::string threadIdText = AZStd::string::format("Thread: %zu", static_cast(threadId)); ImGui::Text(threadIdText.c_str()); } + inline float TicksToMs(AZStd::sys_time_t ticks) + { + // Note: converting to microseconds integer before converting to milliseconds float + const AZStd::sys_time_t ticksPerSecond = AZStd::GetTimeTicksPerSecond(); + AZ_Assert(ticksPerSecond >= 1000, "Error in converting ticks to ms, expected ticksPerSecond >= 1000"); + return static_cast((ticks * 1000) / (ticksPerSecond / 1000)) / 1000.0f; + } } inline void ImGuiCpuProfiler::Draw(bool& keepDrawing, const AZ::RHI::CpuTimingStatistics& currentCpuTimingStatistics) @@ -73,9 +81,7 @@ namespace AZ const auto ShowTimeInMs = [ticksPerSecond](AZStd::sys_time_t duration) { - // Note: converting to microseconds integer before converting to milliseconds float - const float timeInMs = static_cast((duration * 1000) / (ticksPerSecond / 1000)) / 1000.0f; - ImGui::Text("%.2f ms", timeInMs); + ImGui::Text("%.2f ms", CpuProfilerImGuiHelper::TicksToMs(duration)); }; const auto ShowRow = [ticksPerSecond, &ShowTimeInMs](const char* regionLabel, AZStd::sys_time_t duration) @@ -117,19 +123,36 @@ namespace AZ ImGui::NextColumn(); // Draw the thread count label - const AZStd::string threadLabel = AZStd::string::format("Threads: %u", static_cast(regions.size())); + AZStd::sys_time_t totalTime = 0; + AZStd::set threads; + for (ThreadRegionEntry& entry : regions) // Find the thread count and total execution time for all threads + { + threads.insert(entry.m_threadId); + totalTime += entry.m_endTick - entry.m_startTick; + } + const AZStd::string threadLabel = AZStd::string::format("Threads: %u", static_cast(threads.size())); ImGui::Text(threadLabel.c_str()); DrawRegionHoverMarker(regions); ImGui::NextColumn(); - // Draw the region time label - ShowTimeInMs(duration); + // Draw the overall invocation count + const AZStd::string invocationLabel = AZStd::string::format("Total calls: %u", static_cast(regions.size())); + ImGui::Text(invocationLabel.c_str()); + DrawRegionHoverMarker(regions); + ImGui::NextColumn(); + + // Draw the time labels (max and then total) + const AZStd::string timeLabel = + AZStd::string::format("%.2f ms max, %.2f ms total", + CpuProfilerImGuiHelper::TicksToMs(duration), + CpuProfilerImGuiHelper::TicksToMs(totalTime)); + ImGui::Text(timeLabel.c_str()); ImGui::NextColumn(); }; // Set column settings. ImGui::Columns(2, "view", false); - ImGui::SetColumnWidth(0, 540.0f); + ImGui::SetColumnWidth(0, 660.0f); ImGui::SetColumnWidth(1, 100.0f); ShowRow("Frame to Frame Time", cpuTimingStatistics.m_frameToFrameTime); @@ -152,14 +175,15 @@ namespace AZ // Draw the regions if (ImGui::TreeNodeEx(timeRegionMapEntry.first.c_str(), ImGuiTreeNodeFlags_DefaultOpen)) { - ImGui::Columns(3, "view", false); + ImGui::Columns(4, "view", false); ImGui::SetColumnWidth(0, 400.0f); ImGui::SetColumnWidth(1, 100.0f); - ImGui::SetColumnWidth(2, 80.0f); + ImGui::SetColumnWidth(2, 150.0f); + ImGui::SetColumnWidth(3, 240.0f); for (auto& reigon : timeRegionMapEntry.second) { - // Calculate the thread with the longest execution time + // Calculate the region with the longest execution time AZStd::sys_time_t threadExecutionElapsed = 0; for (ThreadRegionEntry& entry : reigon.second) { @@ -209,19 +233,21 @@ namespace AZ m_groupRegionMap.clear(); // Get the latest TimeRegionMap - RHI::CpuProfiler::TimeRegionMap timeRegionMap; - RHI::CpuProfiler::Get()->FlushTimeRegionMap(timeRegionMap); + const RHI::CpuProfiler::TimeRegionMap& timeRegionMap = RHI::CpuProfiler::Get()->GetTimeRegionMap(); // Iterate through all the cached regions from all threads, and add the entries to this map - for (auto& treadEntry : timeRegionMap) + for (auto& threadEntry : timeRegionMap) { - for (auto& cachedRegionEntry : treadEntry.second) + for (auto& cachedRegionEntry : threadEntry.second) { - RegionEntryMap& groupRegionEntry = m_groupRegionMap[cachedRegionEntry.second.m_groupRegionName->m_groupName]; - AZStd::vector& regionArray = groupRegionEntry[cachedRegionEntry.second.m_groupRegionName->m_regionName]; - RHI::CachedTimeRegion& cachedRegion = cachedRegionEntry.second; + const AZStd::string& regionName = cachedRegionEntry.first; + for (auto& cachedRegion : cachedRegionEntry.second) + { + const AZStd::string& groupName = cachedRegion.m_groupRegionName->m_groupName; - regionArray.push_back({ treadEntry.first, cachedRegion.m_startTick, cachedRegion.m_endTick }); + m_groupRegionMap[groupName][regionName].push_back( + { threadEntry.first, cachedRegion.m_startTick, cachedRegion.m_endTick }); + } } } } From df0fede8d295b08563e7201785c080847fffb316 Mon Sep 17 00:00:00 2001 From: hasareej Date: Wed, 9 Jun 2021 16:42:28 +0100 Subject: [PATCH 054/111] Hiding the 2 Clusters during Gameplay mode Signed-off-by: hultonha --- .../EditorTransformComponentSelection.cpp | 14 ++++++++++++++ .../EditorTransformComponentSelection.h | 5 +++++ 2 files changed, 19 insertions(+) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp index 0dbaa42e1a..04af44ad79 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp @@ -1009,6 +1009,7 @@ namespace AzToolsFramework ToolsApplicationNotificationBus::Handler::BusConnect(); Camera::EditorCameraNotificationBus::Handler::BusConnect(); ComponentModeFramework::EditorComponentModeNotificationBus::Handler::BusConnect(entityContextId); + EditorEntityContextNotificationBus::Handler::BusConnect(); EditorEntityVisibilityNotificationBus::Router::BusRouterConnect(); EditorEntityLockComponentNotificationBus::Router::BusRouterConnect(); EditorManipulatorCommandUndoRedoRequestBus::Handler::BusConnect(entityContextId); @@ -1038,6 +1039,7 @@ namespace AzToolsFramework EditorEntityLockComponentNotificationBus::Router::BusRouterDisconnect(); EditorEntityVisibilityNotificationBus::Router::BusRouterDisconnect(); ComponentModeFramework::EditorComponentModeNotificationBus::Handler::BusDisconnect(); + EditorEvents::Bus::Handler::BusDisconnect(); Camera::EditorCameraNotificationBus::Handler::BusDisconnect(); ToolsApplicationNotificationBus::Handler::BusDisconnect(); EditorTransformComponentSelectionRequestBus::Handler::BusDisconnect(); @@ -3625,6 +3627,18 @@ namespace AzToolsFramework ETCS::SetEntityLocalRotation(entityId, localRotation, m_transformChangedInternally); } + void EditorTransformComponentSelection::OnStartPlayInEditor() + { + SetViewportUiClusterVisible(m_transformModeClusterId, false); + SetViewportUiClusterVisible(m_spaceCluster.m_spaceClusterId, false); + } + + void EditorTransformComponentSelection::OnStopPlayInEditor() + { + SetViewportUiClusterVisible(m_transformModeClusterId, true); + SetViewportUiClusterVisible(m_spaceCluster.m_spaceClusterId, true); + } + namespace ETCS { // little raii wrapper to switch a value from true to false and back diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h index 2f1016cd6d..ccff1056ce 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h @@ -128,6 +128,7 @@ namespace AzToolsFramework , private ToolsApplicationNotificationBus::Handler , private Camera::EditorCameraNotificationBus::Handler , private ComponentModeFramework::EditorComponentModeNotificationBus::Handler + , private EditorEntityContextNotificationBus::Handler , private EditorEntityVisibilityNotificationBus::Router , private EditorEntityLockComponentNotificationBus::Router , private EditorManipulatorCommandUndoRedoRequestBus::Handler @@ -264,6 +265,10 @@ namespace AzToolsFramework void EnteredComponentMode(const AZStd::vector& componentModeTypes) override; void LeftComponentMode(const AZStd::vector& componentModeTypes) override; + // EditorEntityContextNotificationBus ... + void OnStartPlayInEditor() override; + void OnStopPlayInEditor() override; + // Helpers to safely interact with the TransformBus (requests). void SetEntityWorldTranslation(AZ::EntityId entityId, const AZ::Vector3& worldTranslation); void SetEntityLocalTranslation(AZ::EntityId entityId, const AZ::Vector3& localTranslation); From 32687cbcb23f0488187637e1f6951df6d8f03273 Mon Sep 17 00:00:00 2001 From: hasareej Date: Fri, 11 Jun 2021 12:18:03 +0100 Subject: [PATCH 055/111] PR feedback changes Signed-off-by: hultonha --- .../EditorTransformComponentSelection.cpp | 23 +++++++++++-------- .../EditorTransformComponentSelection.h | 5 +++- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp index 04af44ad79..840a57d353 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp @@ -488,6 +488,13 @@ namespace AzToolsFramework return worldFromLocal.TransformPoint(CalculateCenterOffset(entityId, pivot)); } + void EditorTransformComponentSelection::SetAllViewportUiVisible(const bool visible) + { + SetViewportUiClusterVisible(m_transformModeClusterId, visible); + SetViewportUiClusterVisible(m_spaceCluster.m_spaceClusterId, visible); + m_viewportUiVisible = visible; + } + void EditorTransformComponentSelection::UpdateSpaceCluster(const ReferenceFrame referenceFrame) { auto buttonIdFromFrameFn = [this](const ReferenceFrame referenceFrame) @@ -1038,8 +1045,8 @@ namespace AzToolsFramework EditorManipulatorCommandUndoRedoRequestBus::Handler::BusDisconnect(); EditorEntityLockComponentNotificationBus::Router::BusRouterDisconnect(); EditorEntityVisibilityNotificationBus::Router::BusRouterDisconnect(); + EditorEntityContextNotificationBus::Handler::BusDisconnect(); ComponentModeFramework::EditorComponentModeNotificationBus::Handler::BusDisconnect(); - EditorEvents::Bus::Handler::BusDisconnect(); Camera::EditorCameraNotificationBus::Handler::BusDisconnect(); ToolsApplicationNotificationBus::Handler::BusDisconnect(); EditorTransformComponentSelectionRequestBus::Handler::BusDisconnect(); @@ -2389,9 +2396,7 @@ namespace AzToolsFramework /*ID_VIEWPORTUI_VISIBLE=*/50040, "Toggle Viewport UI", "Hide/Show Viewport UI", [this]() { - SetViewportUiClusterVisible(m_transformModeClusterId, !m_viewportUiVisible); - SetViewportUiClusterVisible(m_spaceCluster.m_spaceClusterId, !m_viewportUiVisible); - m_viewportUiVisible = !m_viewportUiVisible; + SetAllViewportUiVisible(!m_viewportUiVisible); }); EditorMenuRequestBus::Broadcast(&EditorMenuRequests::RestoreEditMenuToDefault); @@ -3562,7 +3567,7 @@ namespace AzToolsFramework void EditorTransformComponentSelection::EnteredComponentMode([[maybe_unused]] const AZStd::vector& componentModeTypes) { - SetViewportUiClusterVisible(m_transformModeClusterId, false); + SetAllViewportUiVisible(false); EditorEntityLockComponentNotificationBus::Router::BusRouterDisconnect(); EditorEntityVisibilityNotificationBus::Router::BusRouterDisconnect(); @@ -3571,7 +3576,7 @@ namespace AzToolsFramework void EditorTransformComponentSelection::LeftComponentMode([[maybe_unused]] const AZStd::vector& componentModeTypes) { - SetViewportUiClusterVisible(m_transformModeClusterId, true); + SetAllViewportUiVisible(true); ToolsApplicationNotificationBus::Handler::BusConnect(); EditorEntityVisibilityNotificationBus::Router::BusRouterConnect(); @@ -3629,14 +3634,12 @@ namespace AzToolsFramework void EditorTransformComponentSelection::OnStartPlayInEditor() { - SetViewportUiClusterVisible(m_transformModeClusterId, false); - SetViewportUiClusterVisible(m_spaceCluster.m_spaceClusterId, false); + SetAllViewportUiVisible(false); } void EditorTransformComponentSelection::OnStopPlayInEditor() { - SetViewportUiClusterVisible(m_transformModeClusterId, true); - SetViewportUiClusterVisible(m_spaceCluster.m_spaceClusterId, true); + SetAllViewportUiVisible(true); } namespace ETCS diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h index ccff1056ce..1d72328d2d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h @@ -265,7 +265,7 @@ namespace AzToolsFramework void EnteredComponentMode(const AZStd::vector& componentModeTypes) override; void LeftComponentMode(const AZStd::vector& componentModeTypes) override; - // EditorEntityContextNotificationBus ... + // EditorEntityContextNotificationBus overrides ... void OnStartPlayInEditor() override; void OnStopPlayInEditor() override; @@ -279,6 +279,9 @@ namespace AzToolsFramework // Responsible for keeping the space cluster in sync with the current reference frame. void UpdateSpaceCluster(ReferenceFrame referenceFrame); + // Hides/Shows all viewportUi toolbars. + void SetAllViewportUiVisible(const 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_editorCameraComponentEntityId; //!< The EditorCameraComponent EntityId if it is set. From 8408f6b815e41b3de0b5b214ffdbf23c2fa7e6cf Mon Sep 17 00:00:00 2001 From: hasareej Date: Fri, 11 Jun 2021 14:10:02 +0100 Subject: [PATCH 056/111] PR feedback changes 2.0 Signed-off-by: hultonha --- .../ViewportSelection/EditorTransformComponentSelection.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h index 1d72328d2d..25af003930 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h @@ -276,11 +276,11 @@ namespace AzToolsFramework void SetEntityLocalScale(AZ::EntityId entityId, float localScale); void SetEntityLocalRotation(AZ::EntityId entityId, const AZ::Vector3& localRotation); - // Responsible for keeping the space cluster in sync with the current reference frame. + //! Responsible for keeping the space cluster in sync with the current reference frame. void UpdateSpaceCluster(ReferenceFrame referenceFrame); - // Hides/Shows all viewportUi toolbars. - void SetAllViewportUiVisible(const bool visible); + //! Hides/Shows all viewportUi toolbars. + 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. From 9c3ebeba04fac64438de759e278cf4b1f4b70c29 Mon Sep 17 00:00:00 2001 From: moudgils <47460854+moudgils@users.noreply.github.com> Date: Wed, 30 Jun 2021 10:44:59 -0700 Subject: [PATCH 057/111] Fix metal mip writes within compute pass (#1673) * Fix mip writes via compute passes by creates subresource views - Create metal subresource views so that we can write into correct mips for compute passes - Remove code to set the correct slice/level for gfx passes as the view will be correct now - Handle cubemap/cubemaparray/3d texture types as the drivers do not allow subresource views. --- .../RHI/Metal/Code/Source/RHI/ImageView.cpp | 62 +++++++++++++------ .../RHI/Metal/Code/Source/RHI/ImageView.h | 1 - Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp | 16 ++--- 3 files changed, 51 insertions(+), 28 deletions(-) diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp index 916d1ba793..14d042a2d3 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp @@ -34,20 +34,41 @@ namespace AZ id mtlTexture = image.GetMemoryView().GetGpuAddress>(); MTLPixelFormat textureFormat = ConvertPixelFormat(image.GetDescriptor().m_format); - + MTLPixelFormat textureViewFormat = ConvertPixelFormat(viewDescriptor.m_overrideFormat); + id textureView = nil; - if(viewDescriptor.m_overrideFormat != RHI::Format::Unknown) + bool isViewFormatDifferent = false; + //Check if we the viewformat differs from the base texture format + if(textureViewFormat != MTLPixelFormatInvalid) + { + isViewFormatDifferent = textureViewFormat!=textureFormat; + } + + //Since we divide the array length of a cubemap by NumCubeMapSlices when creating the base texture + //we have to do reverse of that here + uint32_t textureLength = mtlTexture.arrayLength; + if(imgDesc.m_isCubemap) + { + textureLength = textureLength * RHI::ImageDescriptor::NumCubeMapSlices; + } + + //Create a new view if the format, mip range or slice range has changed + if( isViewFormatDifferent || + levelRange.length != mtlTexture.mipmapLevelCount || + sliceRange.length != textureLength) { - MTLPixelFormat textureViewFormat = ConvertPixelFormat(viewDescriptor.m_overrideFormat); - - //Create a unique texture if needed - if(textureFormat != textureViewFormat) + //Protection against creating a view with an invalid format + //If view format is invalid use the base texture's format + if(textureViewFormat == MTLPixelFormatInvalid) { - textureView = [mtlTexture newTextureViewWithPixelFormat : textureViewFormat - textureType : mtlTexture.textureType - levels : levelRange - slices : sliceRange]; + AZ_Assert(false,"View format is invalid"); + textureViewFormat = textureFormat; } + + textureView = [mtlTexture newTextureViewWithPixelFormat : textureViewFormat + textureType : mtlTexture.textureType + levels : levelRange + slices : sliceRange]; } if(!textureView) @@ -112,20 +133,21 @@ namespace AZ { const Image& image = static_cast(resourceBase); const RHI::ImageDescriptor& imageDesc = image.GetDescriptor(); - const RHI::ImageViewDescriptor& descriptor = GetDescriptor(); + const RHI::ImageViewDescriptor& viewDescriptor = GetDescriptor(); RHI::ImageSubresourceRange& range = m_imageSubresourceRange; - range.m_mipSliceMin = descriptor.m_mipSliceMin; - range.m_mipSliceMax = AZStd::min(descriptor.m_mipSliceMax, static_cast(imageDesc.m_mipLevels - 1)); - if (imageDesc.m_dimension == RHI::ImageDimension::Image3D) + range.m_mipSliceMin = viewDescriptor.m_mipSliceMin; + range.m_mipSliceMax = AZStd::min(viewDescriptor.m_mipSliceMax, static_cast(imageDesc.m_mipLevels - 1)); + range.m_arraySliceMin = viewDescriptor.m_arraySliceMin; + range.m_arraySliceMax = AZStd::min(viewDescriptor.m_arraySliceMax, static_cast(imageDesc.m_arraySize - 1)); + + //The length value of the sliceRange parameter must be a multiple of 6 if the texture + //is of type MTLTextureTypeCube or MTLTextureTypeCubeArray. Hence we cant really make + //a subresource view for these types. + if(imageDesc.m_isCubemap) { range.m_arraySliceMin = 0; - range.m_arraySliceMax = 0; - } - else - { - range.m_arraySliceMin = descriptor.m_arraySliceMin; - range.m_arraySliceMax = AZStd::min(descriptor.m_arraySliceMax, static_cast(imageDesc.m_arraySize - 1)); + range.m_arraySliceMax = static_cast(imageDesc.m_arraySize - 1); } } diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h index 0609086ddb..e3fe8909c7 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h @@ -53,7 +53,6 @@ namespace AZ //Internally it may create a new MTLTexture object that reinterprets the original MTLTexture object from Image MemoryView m_memoryView; - RHI::ImageViewDescriptor m_descriptor; MTLPixelFormat m_format; RHI::ImageSubresourceRange m_imageSubresourceRange; }; diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp index d176078563..691ecdc295 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp @@ -180,15 +180,19 @@ namespace AZ if(!m_isWritingToSwapChainScope) { - if(renderTargetTexture.textureType == MTLTextureType3D) + //Cubemap/cubemaparray and 3d textures have restrictions placed on them by the + //drivers when creating a new texture view. Hence we cant get a view with subresource range + //of the original texture. As a result in order to write into specific slice or depth plane + //we specify it here. It also means that we cant write into these texturee types via a compute shader + const RHI::ImageViewDescriptor& imgViewDescriptor = imageView->GetDescriptor(); + if(renderTargetTexture.textureType == MTLTextureTypeCube || renderTargetTexture.textureType == MTLTextureTypeCubeArray) { - m_renderPassDescriptor.colorAttachments[colorAttachmentIndex].depthPlane = imgViewDescriptor.m_depthSliceMin; + m_renderPassDescriptor.colorAttachments[colorAttachmentIndex].slice = imgViewDescriptor.m_arraySliceMin; } - else + else if(renderTargetTexture.textureType == MTLTextureType3D) { - m_renderPassDescriptor.colorAttachments[colorAttachmentIndex].slice = imgViewDescriptor.m_arraySliceMin; + m_renderPassDescriptor.colorAttachments[colorAttachmentIndex].depthPlane = imgViewDescriptor.m_depthSliceMin; } - m_renderPassDescriptor.colorAttachments[colorAttachmentIndex].level = imgViewDescriptor.m_mipSliceMin; } MTLRenderPassColorAttachmentDescriptor* colorAttachment = m_renderPassDescriptor.colorAttachments[colorAttachmentIndex]; @@ -222,8 +226,6 @@ namespace AZ m_renderPassDescriptor.stencilAttachment.texture = imageViewMtlTexture; } - m_renderPassDescriptor.depthAttachment.slice = imgViewDescriptor.m_arraySliceMin; - MTLRenderPassDepthAttachmentDescriptor* depthAttachment = m_renderPassDescriptor.depthAttachment; MTLRenderPassStencilAttachmentDescriptor* stencilAttachment = m_renderPassDescriptor.stencilAttachment; depthAttachment.loadAction = mtlLoadAction; From 8d2154af26446963ea349e855218989a3d4b577d Mon Sep 17 00:00:00 2001 From: Tommy Walton <82672795+amzn-tommy@users.noreply.github.com> Date: Wed, 30 Jun 2021 11:13:54 -0700 Subject: [PATCH 058/111] Partial fix for LYN-2227 : MeshComponent initialization performance improvement (#1381) Skip a shader item before creating a shader instance if it's not going to be rendered based on the draw tag. This avoids creating and releasing the shader instance over and over again, which results in a disk write each time during release. --- .../Code/Source/RPI.Public/MeshDrawPacket.cpp | 51 +++++++++++++------ 1 file changed, 36 insertions(+), 15 deletions(-) diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp index b29fb6d38d..8a402b5546 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include namespace AZ @@ -154,6 +155,40 @@ namespace AZ auto appendShader = [&](const ShaderCollection::Item& shaderItem) { AZ_PROFILE_SCOPE(Debug::ProfileCategory::AzRender, "appendShader()"); + + // Skip the shader item without creating the shader instance + // if the mesh is not going to be rendered based on the draw tag + RHI::RHISystemInterface* rhiSystem = RHI::RHISystemInterface::Get(); + RHI::DrawListTagRegistry* drawListTagRegistry = rhiSystem->GetDrawListTagRegistry(); + + // Use the explicit draw list override if exists. + RHI::DrawListTag drawListTag = shaderItem.GetDrawListTagOverride(); + + if (drawListTag.IsNull()) + { + Data::Asset shaderAsset = shaderItem.GetShaderAsset(); + if (!shaderAsset.IsReady()) + { + // The shader asset needs to be loaded before we can check the draw tag. + // If it's not loaded yet, the instance database will do a blocking load + // when we create the instance below, so might as well load it now. + shaderAsset.QueueLoad(); + + if (shaderAsset.IsLoading()) + { + shaderAsset.BlockUntilLoadComplete(); + } + } + + drawListTag = drawListTagRegistry->FindTag(shaderAsset->GetDrawListName()); + } + + if (!parentScene.HasOutputForPipelineState(drawListTag)) + { + // drawListTag not found in this scene, so don't render this item + return false; + } + Data::Instance shader = RPI::Shader::FindOrCreate(shaderItem.GetShaderAsset()); if (!shader) { @@ -244,21 +279,7 @@ namespace AZ drawSrg->Compile(); } - // Use the default draw list tag from the shader variant. - RHI::DrawListTag drawListTag = shader->GetDrawListTag(); - - // Use the explicit draw list override if exist. - RHI::DrawListTag runtimeTag = shaderItem.GetDrawListTagOverride(); - if (!runtimeTag.IsNull()) - { - drawListTag = runtimeTag; - } - - if (!parentScene.ConfigurePipelineState(drawListTag, pipelineStateDescriptor)) - { - // drawListTag not found in this scene, so don't render this item - return false; - } + parentScene.ConfigurePipelineState(drawListTag, pipelineStateDescriptor); const RHI::PipelineState* pipelineState = shader->AcquirePipelineState(pipelineStateDescriptor); if (!pipelineState) From 60f38b0c304d97ba8da53dcabfb9641cecd80fd7 Mon Sep 17 00:00:00 2001 From: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com> Date: Wed, 30 Jun 2021 11:19:52 -0700 Subject: [PATCH 059/111] [cpack/2106-install-path] update default install path and provide warning about 'Program Files' Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com> --- cmake/Platform/Windows/Packaging/Bootstrapper.wxs | 2 +- cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in | 2 ++ cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/cmake/Platform/Windows/Packaging/Bootstrapper.wxs b/cmake/Platform/Windows/Packaging/Bootstrapper.wxs index 847fcdad0c..6971e32ca2 100644 --- a/cmake/Platform/Windows/Packaging/Bootstrapper.wxs +++ b/cmake/Platform/Windows/Packaging/Bootstrapper.wxs @@ -14,7 +14,7 @@ diff --git a/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in b/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in index 0c532fa4d8..6c5d16fd49 100644 --- a/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in +++ b/cmake/Platform/Windows/Packaging/BootstrapperTheme.wxl.in @@ -22,6 +22,8 @@ Setup will install [WixBundleName] on your computer. Click install to continue, Setup Options Install location: &Browse + WARNING: + Installing to "Program Files" will require [WixBundleName] and its tools to be run with elevated privileges &OK &Cancel diff --git a/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in b/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in index 62980a35f7..8d8416539e 100644 --- a/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in +++ b/cmake/Platform/Windows/Packaging/BootstrapperTheme.xml.in @@ -11,6 +11,8 @@ Open Sans Open Sans + + Open Sans @@ -34,6 +36,8 @@ #(loc.OptionsLocationLabel) + #(loc.OptionsWarningTitle) + #(loc.OptionsWarning) From d2d8e8bc3e928902f60e8c9a25b3e6078380538e Mon Sep 17 00:00:00 2001 From: amzn-mike <80125227+amzn-mike@users.noreply.github.com> Date: Wed, 30 Jun 2021 13:35:27 -0500 Subject: [PATCH 060/111] unsigned to unsigned int Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> --- .../SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp index 6ae228a8a8..84b95e5276 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp @@ -63,11 +63,11 @@ namespace AZ } } - for (unsigned meshIndex = 0; meshIndex < scene->mNumMeshes; ++meshIndex) + for (unsigned int meshIndex = 0; meshIndex < scene->mNumMeshes; ++meshIndex) { const aiMesh* mesh = scene->mMeshes[meshIndex]; - for (unsigned boneIndex = 0; boneIndex < mesh->mNumBones; ++boneIndex) + for (unsigned int boneIndex = 0; boneIndex < mesh->mNumBones; ++boneIndex) { const aiBone* bone = mesh->mBones[boneIndex]; From 0a241d8fd0bfca98d6bba68945a53afa5beb8a33 Mon Sep 17 00:00:00 2001 From: amzn-mike <80125227+amzn-mike@users.noreply.github.com> Date: Wed, 30 Jun 2021 13:45:51 -0500 Subject: [PATCH 061/111] Bump version Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> --- .../SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp index 84b95e5276..6dec5f93aa 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp @@ -36,7 +36,7 @@ namespace AZ SerializeContext* serializeContext = azrtti_cast(context); if (serializeContext) { - serializeContext->Class()->Version(1); + serializeContext->Class()->Version(2); } } From be519bb36a4c6264e03ce3eec92eec1aa066a379 Mon Sep 17 00:00:00 2001 From: amzn-hdoke <61443753+hdoke@users.noreply.github.com> Date: Wed, 30 Jun 2021 12:17:45 -0700 Subject: [PATCH 062/111] Allow overriding of AWSAttribution settings to skip consent dialog for automated testing (#1650) Signed-off-by: dhrudesh --- .../Attribution/AWSCoreAttributionManager.h | 9 +++++++-- .../Attribution/AWSCoreAttributionManager.cpp | 18 +++++++++++++----- .../AWSCoreAttributionManagerTest.cpp | 9 ++------- .../AWSCoreAttributionSystemComponentTest.cpp | 18 +++++++++++++++++- .../launchers/platforms/win/launcher.py | 2 ++ 5 files changed, 41 insertions(+), 15 deletions(-) diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h index 5e4ad8c965..f3eef5966a 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h @@ -9,10 +9,15 @@ #include #include -#include #include #include + +namespace AZ +{ + class SettingsRegistryInterface; +} + namespace AWSCore { //! Manages operational metrics for AWS gems @@ -49,7 +54,7 @@ namespace AWSCore // AzToolsFramework::EditorEvents interface implementation void NotifyMainWindowInitialized(QMainWindow* mainWindow) override; - AZStd::unique_ptr m_settingsRegistry; + AZ::SettingsRegistryInterface* m_settingsRegistry; }; } // namespace AWSCore diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp index c649e509be..311e29c59c 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include @@ -35,7 +36,7 @@ namespace AWSCore constexpr char AWSAttributionEnabledKey[] = "/Amazon/AWS/Preferences/AWSAttributionEnabled"; constexpr char AWSAttributionDelaySecondsKey[] = "/Amazon/AWS/Preferences/AWSAttributionDelaySeconds"; constexpr char AWSAttributionLastTimeStampKey[] = "/Amazon/AWS/Preferences/AWSAttributionLastTimeStamp"; - constexpr char AWSAttributionConsentShown[] = "/Amazon/AWS/Preferences/AWSAttributionConsentShown"; + constexpr char AWSAttributionConsentShownKey[] = "/Amazon/AWS/Preferences/AWSAttributionConsentShown"; constexpr char AWSAttributionApiId[] = "2zxvvmv8d7"; constexpr char AWSAttributionChinaApiId[] = ""; constexpr char AWSAttributionApiStage[] = "prod"; @@ -43,18 +44,25 @@ namespace AWSCore AWSAttributionManager::AWSAttributionManager() { - m_settingsRegistry = AZStd::make_unique(); + m_settingsRegistry = AZ::SettingsRegistry::Get(); AzToolsFramework::EditorEvents::Bus::Handler::BusConnect(); } AWSAttributionManager::~AWSAttributionManager() { AzToolsFramework::EditorEvents::Bus::Handler::BusDisconnect(); - m_settingsRegistry.reset(); + m_settingsRegistry = nullptr; } void AWSAttributionManager::Init() { + bool consentShown; + // If override is used skip merging the settings file + if (m_settingsRegistry->Get(consentShown, AWSAttributionConsentShownKey)) + { + return; + } + AZ::IO::FileIOBase* fileIO = AZ::IO::FileIOBase::GetInstance(); AZ_Assert(fileIO, "File IO is not initialized."); @@ -158,7 +166,7 @@ namespace AWSCore { AWSCoreAttributionConsentDialog* msgBox = aznew AWSCoreAttributionConsentDialog(); int ret = msgBox->exec(); - m_settingsRegistry->Set(AWSAttributionConsentShown, true); + m_settingsRegistry->Set(AWSAttributionConsentShownKey, true); switch (ret) { case QMessageBox::Save: @@ -260,7 +268,7 @@ namespace AWSCore bool AWSAttributionManager::CheckConsentShown() { bool consentShown = false; - m_settingsRegistry->Get(consentShown, AWSAttributionConsentShown); + m_settingsRegistry->Get(consentShown, AWSAttributionConsentShownKey); return consentShown; } diff --git a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp index b151596d48..b6bf515a6f 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp @@ -253,7 +253,6 @@ namespace AWSAttributionUnitTest manager.MetricCheck(); // THEN - m_settingsRegistry->MergeSettingsFile(m_resolvedSettingsPath.data(), AZ::SettingsRegistryInterface::Format::JsonMergePatch, ""); AZ::u64 timeStamp = 0; m_settingsRegistry->Get(timeStamp, "/Amazon/AWS/Preferences/AWSAttributionLastTimeStamp"); ASSERT_TRUE(timeStamp == 0); @@ -287,7 +286,6 @@ namespace AWSAttributionUnitTest manager.MetricCheck(); // THEN - m_settingsRegistry->MergeSettingsFile(m_resolvedSettingsPath.data(), AZ::SettingsRegistryInterface::Format::JsonMergePatch, ""); AZ::u64 timeStamp = 0; m_settingsRegistry->Get(timeStamp, "/Amazon/AWS/Preferences/AWSAttributionLastTimeStamp"); ASSERT_TRUE(timeStamp > 0); @@ -324,7 +322,6 @@ namespace AWSAttributionUnitTest manager.MetricCheck(); // THEN - m_settingsRegistry->MergeSettingsFile(m_resolvedSettingsPath.data(), AZ::SettingsRegistryInterface::Format::JsonMergePatch, ""); AZ::u64 timeStamp = 0; m_settingsRegistry->Get(timeStamp, "/Amazon/AWS/Preferences/AWSAttributionLastTimeStamp"); ASSERT_TRUE(timeStamp > 0); @@ -355,15 +352,14 @@ namespace AWSAttributionUnitTest AZ::u64 delayInSeconds = AZStd::chrono::duration_cast(AZStd::chrono::system_clock::now().time_since_epoch()).count(); ASSERT_TRUE(m_settingsRegistry->Set("/Amazon/AWS/Preferences/AWSAttributionLastTimeStamp", delayInSeconds)); - EXPECT_CALL(manager, SubmitMetric(testing::_)).Times(1); - EXPECT_CALL(m_moduleManagerRequestBusMock, EnumerateModules(testing::_)).Times(1); + EXPECT_CALL(manager, SubmitMetric(testing::_)).Times(0); + EXPECT_CALL(m_moduleManagerRequestBusMock, EnumerateModules(testing::_)).Times(0); EXPECT_CALL(m_credentialRequestBusMock, GetCredentialsProvider()).Times(1); // WHEN manager.MetricCheck(); // THEN - m_settingsRegistry->MergeSettingsFile(m_resolvedSettingsPath.data(), AZ::SettingsRegistryInterface::Format::JsonMergePatch, ""); AZ::u64 timeStamp = 0; m_settingsRegistry->Get(timeStamp, "/Amazon/AWS/Preferences/AWSAttributionLastTimeStamp"); ASSERT_TRUE(timeStamp == delayInSeconds); @@ -396,7 +392,6 @@ namespace AWSAttributionUnitTest manager.MetricCheck(); // THEN - m_settingsRegistry->MergeSettingsFile(m_resolvedSettingsPath.data(), AZ::SettingsRegistryInterface::Format::JsonMergePatch, ""); AZ::u64 timeStamp = 0; m_settingsRegistry->Get(timeStamp, "/Amazon/AWS/Preferences/AWSAttributionLastTimeStamp"); ASSERT_TRUE(timeStamp == 0); diff --git a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp index b4e34fdc46..98a07232b6 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp @@ -8,6 +8,9 @@ #include #include #include +#include +#include +#include #include #include @@ -65,7 +68,8 @@ namespace AWSCoreUnitTest MOCK_METHOD0(Deactivate, void()); }; - class AWSAttributionSystemComponentTest : public AWSCoreFixture + class AWSAttributionSystemComponentTest + : public AWSCoreFixture { void SetUp() override { @@ -73,6 +77,7 @@ namespace AWSCoreUnitTest m_serializeContext = AZStd::make_unique(); m_serializeContext->CreateEditContext(); m_behaviorContext = AZStd::make_unique(); + AZ::JsonSystemComponent::Reflect(m_registrationContext.get()); m_awsCoreComponentDescriptor.reset(AWSCoreSystemComponentMock::CreateDescriptor()); m_awsCoreComponentDescriptor->Reflect(m_serializeContext.get()); @@ -82,6 +87,13 @@ namespace AWSCoreUnitTest m_componentDescriptor->Reflect(m_serializeContext.get()); m_componentDescriptor->Reflect(m_behaviorContext.get()); + m_settingsRegistry = AZStd::make_unique(); + + m_settingsRegistry->SetContext(m_serializeContext.get()); + m_settingsRegistry->SetContext(m_registrationContext.get()); + + AZ::SettingsRegistry::Register(m_settingsRegistry.get()); + m_entity = aznew AZ::Entity(); m_awsCoreSystemComponentMock = aznew testing::NiceMock(); m_entity->AddComponent(m_awsCoreSystemComponentMock); @@ -101,6 +113,8 @@ namespace AWSCoreUnitTest m_awsCoreComponentDescriptor.reset(); m_componentDescriptor.reset(); m_behaviorContext.reset(); + m_settingsRegistry.reset(); + m_registrationContext.reset(); m_serializeContext.reset(); AWSCoreFixture::TearDown(); } @@ -113,8 +127,10 @@ namespace AWSCoreUnitTest private: AZStd::unique_ptr m_serializeContext; AZStd::unique_ptr m_behaviorContext; + AZStd::unique_ptr m_registrationContext; AZStd::unique_ptr m_componentDescriptor; AZStd::unique_ptr m_awsCoreComponentDescriptor; + AZStd::shared_ptr m_settingsRegistry; }; TEST_F(AWSAttributionSystemComponentTest, SystemComponentInitActivate_Success) diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py index f50b47f661..0e19030fc6 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py @@ -209,6 +209,8 @@ class WinEditor(WinLauncher): def __init__(self, build, args): super(WinEditor, self).__init__(build, args) self.args.append('--regset="/Amazon/Settings/EnableSourceControl=false"') + self.args.append('--regset="/Amazon/AWS/Preferences/AWSAttributionConsentShown=true"') + self.args.append('--regset="/Amazon/AWS/Preferences/AWSAttributionEnabled=false"') def binary_path(self): """ From 827855f01c8f538631dbdc82e759069e747ad8a9 Mon Sep 17 00:00:00 2001 From: Steve Pham <82231385+spham-amzn@users.noreply.github.com> Date: Wed, 30 Jun 2021 12:48:16 -0700 Subject: [PATCH 063/111] Removal last CryTek references - 'Crytek application' is now 'O3DE application' in ISystem.h - 'CryTek' is now 'O3DE' in ProjectDefines.h (comment) - 'Crytek Legacy' is now 'O3DE Legacy' in LocalizedStringManager.cpp - 'Crytek extended data' references are now 'O3DE extended data' Signed-off-by: spham --- Assets/Engine/Libs/MaterialEffects/materialeffects.xml | 2 +- .../EditorAssetImporter/EditorAssetImporter_precompiled.h | 3 --- Code/Editor/SettingsManager.h | 2 -- Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp | 2 -- Code/Legacy/CryCommon/ISystem.h | 2 +- Code/Legacy/CryCommon/ProjectDefines.h | 2 +- Code/Legacy/CrySystem/LocalizedStringManager.cpp | 2 +- .../Code/Source/ImageLoader/DdsLoader.cpp | 4 ++-- .../ImageProcessingAtom/Code/Source/Processing/DDSHeader.h | 6 +++--- .../Code/Source/Processing/ImageObjectImpl.cpp | 4 ++-- .../Code/Source/Processing/PixelFormatInfo.cpp | 2 +- .../ImageProcessingAtom/External/CubeMapGen/CImageSurface.h | 3 +-- 12 files changed, 13 insertions(+), 21 deletions(-) diff --git a/Assets/Engine/Libs/MaterialEffects/materialeffects.xml b/Assets/Engine/Libs/MaterialEffects/materialeffects.xml index 04977c9e80..a7f1c43958 100644 --- a/Assets/Engine/Libs/MaterialEffects/materialeffects.xml +++ b/Assets/Engine/Libs/MaterialEffects/materialeffects.xml @@ -11,7 +11,7 @@ 2006-02-22T12:05:03Z 2005-10-12T15:13:39Z 2014-04-08T17:21:06Z - Crytek + Contributors to the Open 3D Engine Project 12.00 diff --git a/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h b/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h index 16785f74d7..aa9b430dc0 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h +++ b/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h @@ -9,7 +9,4 @@ #include -///////////////////////////////////////////////////////////////////////////// -// CryTek -///////////////////////////////////////////////////////////////////////////// #include diff --git a/Code/Editor/SettingsManager.h b/Code/Editor/SettingsManager.h index 2a85b7566d..a67599959b 100644 --- a/Code/Editor/SettingsManager.h +++ b/Code/Editor/SettingsManager.h @@ -143,8 +143,6 @@ private: // Registered Tool Names TToolNamesMap m_toolNames; TToolNamesMap m_toolVersions; - - //static B4BugCrytekExtension s_b4BugCrytekExtension; }; #endif // CRYINCLUDE_EDITOR_SETTINGSMANAGER_H diff --git a/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp b/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp index 8958c996a2..092dfc9527 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp @@ -6,8 +6,6 @@ */ -// Description : Implementation of the Crytek package files management - #include diff --git a/Code/Legacy/CryCommon/ISystem.h b/Code/Legacy/CryCommon/ISystem.h index c3b0b591dc..67a7991d4e 100644 --- a/Code/Legacy/CryCommon/ISystem.h +++ b/Code/Legacy/CryCommon/ISystem.h @@ -1027,7 +1027,7 @@ struct ISystem virtual void SetUIDrawEnabled(bool enabled) = 0; // Summary: - // Get the index of the currently running Crytek application. (0 = first instance, 1 = second instance, etc) + // Get the index of the currently running O3DE application. (0 = first instance, 1 = second instance, etc) virtual int GetApplicationInstance() = 0; // Summary: diff --git a/Code/Legacy/CryCommon/ProjectDefines.h b/Code/Legacy/CryCommon/ProjectDefines.h index 8cf4c472e0..0d98dd73e2 100644 --- a/Code/Legacy/CryCommon/ProjectDefines.h +++ b/Code/Legacy/CryCommon/ProjectDefines.h @@ -129,7 +129,7 @@ typedef uint32 vtx_idx; -//This feature allows automatic crash submission to JIRA, but does not work outside of CryTek +//This feature allows automatic crash submission to JIRA, but does not work outside of O3DE //Note: This #define will be commented out during code export #define ENABLE_CRASH_HANDLER diff --git a/Code/Legacy/CrySystem/LocalizedStringManager.cpp b/Code/Legacy/CrySystem/LocalizedStringManager.cpp index 64489cb4fd..952b51e64e 100644 --- a/Code/Legacy/CrySystem/LocalizedStringManager.cpp +++ b/Code/Legacy/CrySystem/LocalizedStringManager.cpp @@ -197,7 +197,7 @@ CLocalizedStringsManager::CLocalizedStringsManager(ISystem* pSystem) REGISTER_CVAR2(c_sys_localization_format, &m_cvarLocalizationFormat, 1, VF_NULL, "Usage: sys_localization_format [0..1]\n" - " 0: Crytek Legacy Localization (Excel 2003)\n" + " 0: O3DE Legacy Localization (Excel 2003)\n" " 1: AGS XML\n" "Default is 1 (AGS Xml)"); //Check that someone hasn't added a language ID without a language name diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp index 1c56dbd1d0..fa1a6c55a8 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp @@ -414,7 +414,7 @@ namespace ImageProcessingAtom AZ::u32 marker = 0; fileLoadStream.Read(4, &marker); - if (marker == FOURCC_CExt) // marker for the start of Crytek Extended data + if (marker == FOURCC_CExt) // marker for the start of O3DE Extended data { fileLoadStream.Read(4, &marker); if (FOURCC_AttC == marker) // Attached Channel chunk @@ -426,7 +426,7 @@ namespace ImageProcessingAtom fileLoadStream.Read(4, &marker); } - if (FOURCC_CEnd == marker) // marker for the end of Crytek Extended data + if (FOURCC_CEnd == marker) // marker for the end of O3DE Extended data { fileLoadStream.Read(4, &marker); } diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h index 13f1c73985..20790939fb 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h @@ -148,7 +148,7 @@ namespace ImageProcessingAtom AZ::u32 dwDepth; // only if DDS_HEADER_FLAGS_VOLUME is set in dwHeaderFlags AZ::u32 dwMipMapCount; AZ::u32 dwAlphaBitDepth; - AZ::u32 dwReserved1; // Crytek image flags + AZ::u32 dwReserved1; // Image flags float fAvgBrightness; // Average top mip brightness. Could be f16/half float cMinColor[4]; float cMaxColor[4]; @@ -230,8 +230,8 @@ namespace ImageProcessingAtom }; // chunk identifier - const static AZ::u32 FOURCC_CExt = IMAGE_BUIDER_MAKEFOURCC('C', 'E', 'x', 't'); // Crytek extension start - const static AZ::u32 FOURCC_CEnd = IMAGE_BUIDER_MAKEFOURCC('C', 'E', 'n', 'd'); // Crytek extension end + const static AZ::u32 FOURCC_CExt = IMAGE_BUIDER_MAKEFOURCC('C', 'E', 'x', 't'); // O3DE extension start + const static AZ::u32 FOURCC_CEnd = IMAGE_BUIDER_MAKEFOURCC('C', 'E', 'n', 'd'); // O3DE extension end const static AZ::u32 FOURCC_AttC = IMAGE_BUIDER_MAKEFOURCC('A', 't', 't', 'C'); // Chunk Attached Channel //Fourcc for pixel formats which aren't supported by dx10, such as astc formats, etc formats, pvrtc formats diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp index 667fc9f8bc..e3b6ac41ee 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp @@ -350,7 +350,7 @@ namespace ImageProcessingAtom if (bOk && alphaImage && !hasSplitFlag) { //4 bytes extension tag, 4 bytes attached alpha tag, then 4 bytes of chunk size - fileSaveStream.Write(sizeof(FOURCC_CExt), &FOURCC_CExt); // marker for the start of Crytek Extended data + fileSaveStream.Write(sizeof(FOURCC_CExt), &FOURCC_CExt); // marker for the start of O3DE Extended data fileSaveStream.Write(sizeof(FOURCC_AttC), &FOURCC_AttC); // Attached Channel chunk uint32_t size = 0; @@ -368,7 +368,7 @@ namespace ImageProcessingAtom fileSaveStream.Write(sizeBytes, &size); fileSaveStream.Seek(endPos, AZ::IO::GenericStream::ST_SEEK_BEGIN); - // marker for the end of Crytek Extended data + // marker for the end of O3DE Extended data fileSaveStream.Write(sizeof(FOURCC_CEnd), &FOURCC_CEnd); } diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp index 30e0573c16..5effe56867 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp @@ -202,7 +202,7 @@ namespace ImageProcessingAtom // Data in a Float format is floating point data. InitPixelFormat(ePixelFormat_R9G9B9E5, PixelFormatInfo(32, 3, false, "0", 1, 1, 1, 1, 32, false, DXGI_FORMAT_R9G9B9E5_SHAREDEXP, FOURCC_DX10, ESampleType::eSampleType_Compressed, "R9G9B9E5", "32-bit RGB pixel format with shared exponent", false, true)); InitPixelFormat(ePixelFormat_R32G32B32A32F, PixelFormatInfo(128, 4, true, "23", 1, 1, 1, 1, 128, false, DXGI_FORMAT_R32G32B32A32_FLOAT, FOURCC_DX10, ESampleType::eSampleType_Float, "R32G32B32A32F", "four float channels", false, false)); - InitPixelFormat(ePixelFormat_R32G32F, PixelFormatInfo(64, 2, false, "0", 1, 1, 1, 1, 64, false, DXGI_FORMAT_R32G32_FLOAT, FOURCC_DX10, ESampleType::eSampleType_Float, "R32G32F", "two float channels", false, false)); // FIXME: This should be eTF_R32G32F, but CryTek did not add that enum to ITexture.h yet + InitPixelFormat(ePixelFormat_R32G32F, PixelFormatInfo(64, 2, false, "0", 1, 1, 1, 1, 64, false, DXGI_FORMAT_R32G32_FLOAT, FOURCC_DX10, ESampleType::eSampleType_Float, "R32G32F", "two float channels", false, false)); // FIXME: This should be eTF_R32G32F, but that enum is not in ITexture.h yet InitPixelFormat(ePixelFormat_R32F, PixelFormatInfo(32, 1, false, "0", 1, 1, 1, 1, 32, false, DXGI_FORMAT_R32_FLOAT, FOURCC_DX10, ESampleType::eSampleType_Float, "R32F", "one float channel", false, false)); InitPixelFormat(ePixelFormat_R16G16B16A16F, PixelFormatInfo(64, 4, true, "10", 1, 1, 1, 1, 64, false, DXGI_FORMAT_R16G16B16A16_FLOAT, FOURCC_DX10, ESampleType::eSampleType_Half, "R16G16B16A16F", "four half channels", false, false)); InitPixelFormat(ePixelFormat_R16G16F, PixelFormatInfo(32, 2, false, "0", 1, 1, 1, 1, 32, false, DXGI_FORMAT_R16G16_FLOAT, FOURCC_DX10, ESampleType::eSampleType_Half, "R16G16F", "two half channel", false, false)); diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h index 33644372a3..6ad8f68ebc 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.h @@ -5,8 +5,7 @@ //-------------------------------------------------------------------------------------- // (C) 2005 ATI Research, Inc., All rights reserved. //-------------------------------------------------------------------------------------- -// modifications by Crytek GmbH -// modifications by Amazon +// Modified from original #pragma once From 1f9917f5b7caa9ab66694ba98da9445bb15663d6 Mon Sep 17 00:00:00 2001 From: rgba16f <82187279+rgba16f@users.noreply.github.com> Date: Wed, 30 Jun 2021 15:23:47 -0500 Subject: [PATCH 064/111] Fix editor orbit camera (#1683) * Add a way for the EditorViewportWidget to inform the legacy orbit camera of the calculated orbit distance. Signed-off-by: rgba16f <82187279+rgba16f@users.noreply.github.com> --- Code/Editor/EditorViewportWidget.cpp | 1 + .../Editor/LegacyViewportCameraController.cpp | 12 +++++++++++ Code/Editor/LegacyViewportCameraController.h | 20 +++++++++++++++++++ 3 files changed, 33 insertions(+) diff --git a/Code/Editor/EditorViewportWidget.cpp b/Code/Editor/EditorViewportWidget.cpp index abca9ce15b..017d6876d1 100644 --- a/Code/Editor/EditorViewportWidget.cpp +++ b/Code/Editor/EditorViewportWidget.cpp @@ -2368,6 +2368,7 @@ void EditorViewportWidget::CenterOnAABB(const AABB& aabb) m_orbitDistance = fabs(m_orbitDistance); SetViewTM(newTM); + SandboxEditor::OrbitCameraControlsBus::Event(GetViewportId(), &SandboxEditor::OrbitCameraControlsBus::Events::SetOrbitDistance, m_orbitDistance); } void EditorViewportWidget::CenterOnSliceInstance() diff --git a/Code/Editor/LegacyViewportCameraController.cpp b/Code/Editor/LegacyViewportCameraController.cpp index 8ed3f02228..3dbb650469 100644 --- a/Code/Editor/LegacyViewportCameraController.cpp +++ b/Code/Editor/LegacyViewportCameraController.cpp @@ -26,6 +26,12 @@ namespace SandboxEditor LegacyViewportCameraControllerInstance::LegacyViewportCameraControllerInstance(AzFramework::ViewportId viewportId, LegacyViewportCameraController* controller) : AzFramework::MultiViewportControllerInstanceInterface(viewportId, controller) { + OrbitCameraControlsBus::Handler::BusConnect(viewportId); +} + +LegacyViewportCameraControllerInstance::~LegacyViewportCameraControllerInstance() +{ + OrbitCameraControlsBus::Handler::BusDisconnect(); } bool LegacyViewportCameraControllerInstance::JustAltHeld() const @@ -59,6 +65,12 @@ bool LegacyViewportCameraControllerInstance::InvertPan() const return JustAltHeld(); } +void LegacyViewportCameraControllerInstance::SetOrbitDistance(float orbitDistance) +{ + m_orbitDistance = orbitDistance; +} + + AZ::RPI::ViewportContextPtr LegacyViewportCameraControllerInstance::GetViewportContext() { // This could be cached, if needed diff --git a/Code/Editor/LegacyViewportCameraController.h b/Code/Editor/LegacyViewportCameraController.h index 24df6a2a9c..d9598e5719 100644 --- a/Code/Editor/LegacyViewportCameraController.h +++ b/Code/Editor/LegacyViewportCameraController.h @@ -7,6 +7,7 @@ #pragma once +#include #include #include #include @@ -23,19 +24,38 @@ namespace AzFramework namespace SandboxEditor { + class OrbitCameraControls + : public AZ::EBusTraits + { + public: + ////////////////////////////////////////////////////////////////////////// + // EBusTraits overrides + static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Multiple; + static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById; + using BusIdType = AzFramework::ViewportId; + ////////////////////////////////////////////////////////////////////////// + + virtual void SetOrbitDistance(float orbitDistance [[maybe_unused]]) {;} + }; + using OrbitCameraControlsBus = AZ::EBus; + class LegacyViewportCameraControllerInstance; using LegacyViewportCameraController = AzFramework::MultiViewportController; class LegacyViewportCameraControllerInstance final : public AzFramework::MultiViewportControllerInstanceInterface + , public OrbitCameraControlsBus::Handler { public: LegacyViewportCameraControllerInstance(AzFramework::ViewportId viewport, LegacyViewportCameraController* controller); + ~LegacyViewportCameraControllerInstance(); bool HandleInputChannelEvent(const AzFramework::ViewportControllerInputEvent& event) override; void ResetInputChannels() override; void UpdateViewport(const AzFramework::ViewportControllerUpdateEvent& event) override; + void SetOrbitDistance(float orbitDistance) override; + private: bool JustAltHeld() const; bool NoModifierHeld() const; From c546773521171deceb0843e06b114b71ff6c2b25 Mon Sep 17 00:00:00 2001 From: nvsickle Date: Wed, 30 Jun 2021 14:41:51 -0700 Subject: [PATCH 065/111] Fix duplicated camera entities in the Editor sharing a transform Signed-off-by: nvsickle --- Gems/Camera/Code/Source/EditorCameraComponent.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gems/Camera/Code/Source/EditorCameraComponent.cpp b/Gems/Camera/Code/Source/EditorCameraComponent.cpp index fed49fd3ca..97725581f3 100644 --- a/Gems/Camera/Code/Source/EditorCameraComponent.cpp +++ b/Gems/Camera/Code/Source/EditorCameraComponent.cpp @@ -26,8 +26,10 @@ namespace Camera void EditorCameraComponent::Activate() { - auto controllerConfig = m_controller.GetConfiguration(); + // Ensure our Editor Entity ID is up-to-date to sync camera configurations between Edit & Game mode. + CameraComponentConfig controllerConfig = m_controller.GetConfiguration(); controllerConfig.m_editorEntityId = GetEntityId().operator AZ::u64(); + m_controller.SetConfiguration(controllerConfig); // Call base class activate, which in turn calls Activate on our controller. EditorCameraComponentBase::Activate(); From 85a648049b49fecd35daa4a8ce199d9a3f04b10b Mon Sep 17 00:00:00 2001 From: Terry Michaels Date: Wed, 30 Jun 2021 16:47:59 -0500 Subject: [PATCH 066/111] Added tooltips to the viewport title buttons (#1691) * Added tooltips to the viewport title dialog buttons Signed-off-by: Terry Michaels --- Code/Editor/ViewportTitleDlg.ui | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Code/Editor/ViewportTitleDlg.ui b/Code/Editor/ViewportTitleDlg.ui index 7d8e9d50d4..f0679dd2a1 100644 --- a/Code/Editor/ViewportTitleDlg.ui +++ b/Code/Editor/ViewportTitleDlg.ui @@ -67,10 +67,16 @@ :/Menu/camera.svg:/Menu/camera.svg + + Camera settings + + + Debug information + :/Menu/debug.svg:/Menu/debug.svg @@ -83,6 +89,9 @@ + + Toggle viewport helpers + :/Menu/helpers.svg:/Menu/helpers.svg @@ -95,6 +104,9 @@ + + Viewport resolution + :/Menu/resolution.svg:/Menu/resolution.svg @@ -104,6 +116,9 @@ + + Other settings + :/Menu/menu.svg:/Menu/menu.svg From 4c28c9d89484911db4e31f73aec8d41c11691429 Mon Sep 17 00:00:00 2001 From: guthadam Date: Wed, 30 Jun 2021 17:14:34 -0500 Subject: [PATCH 067/111] ATOM-15908 Fixed material component exporter to use correct relative paths Signed-off-by: guthadam --- .../Material/EditorMaterialComponentUtil.cpp | 37 ++++++++++++------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp index f6237b219b..a14751f5ec 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp @@ -96,8 +96,11 @@ namespace AZ bool SaveSourceMaterialFromEditData(const AZStd::string& path, const MaterialEditData& editData) { - // Getting the source info for the material type file to make sure that it exists - // We also need to watch folder to generate a relative asset path for the material type + // Construct the material source data object that will be exported + AZ::RPI::MaterialSourceData exportData; + exportData.m_propertyLayoutVersion = editData.m_materialTypeSourceData.m_propertyLayout.m_version; + + // Converting absolute material paths to relative paths bool result = false; AZ::Data::AssetInfo info; AZStd::string watchFolder; @@ -106,22 +109,30 @@ namespace AZ editData.m_materialTypeSourcePath.c_str(), info, watchFolder); if (!result) { - AZ_Error("AZ::Render::EditorMaterialComponentUtil", false, "Failed to get source file info and asset path while attempting to export: %s", path.c_str()); + AZ_Error( + "AZ::Render::EditorMaterialComponentUtil", false, + "Failed to get material type source file info while attempting to export: %s", path.c_str()); return false; } - // Construct the material source data object that will be exported - AZ::RPI::MaterialSourceData exportData; - exportData.m_propertyLayoutVersion = editData.m_materialTypeSourceData.m_propertyLayout.m_version; + exportData.m_materialType = info.m_relativePath; - // Converting absolute material paths to asset relative paths - exportData.m_materialType = editData.m_materialTypeSourcePath; - AzFramework::ApplicationRequests::Bus::Broadcast( - &AzFramework::ApplicationRequests::Bus::Events::MakePathRelative, exportData.m_materialType, watchFolder.c_str()); + if (!editData.m_materialParentSourcePath.empty()) + { + result = false; + AzToolsFramework::AssetSystemRequestBus::BroadcastResult( + result, &AzToolsFramework::AssetSystemRequestBus::Events::GetSourceInfoBySourcePath, + editData.m_materialParentSourcePath.c_str(), info, watchFolder); + if (!result) + { + AZ_Error( + "AZ::Render::EditorMaterialComponentUtil", false, + "Failed to get parent material source file info while attempting to export: %s", path.c_str()); + return false; + } - exportData.m_parentMaterial = editData.m_materialParentSourcePath; - AzFramework::ApplicationRequests::Bus::Broadcast( - &AzFramework::ApplicationRequests::Bus::Events::MakePathRelative, exportData.m_parentMaterial, watchFolder.c_str()); + exportData.m_parentMaterial = info.m_relativePath; + } // Copy all of the properties from the material asset to the source data that will be exported result = true; From 7030f663f5bc71c42aa573758d3996de28fcb52d Mon Sep 17 00:00:00 2001 From: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> Date: Wed, 30 Jun 2021 15:20:42 -0700 Subject: [PATCH 068/111] LYN-4890 | Change all instances of teal blue to correct O3DE branding palette colors (#1672) * Replace old teal color with correct palette colors from the O3DE branding. Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> * Fix hyperlink color in O3DE About Us dialog to improve visibility. Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> --- Code/Editor/AboutDialog.cpp | 2 +- .../UI/Icons/lock_default_hover.svg | 2 +- .../UI/Icons/lock_on_hover.svg | 2 +- .../UI/Icons/visibility_default_hover.svg | 2 +- .../UI/Icons/visibility_on_hover.svg | 2 +- Code/Editor/Style/LayoutConfigDialog.qss | 2 +- .../Components/Widgets/BaseStyleSheet.qss | 4 ++-- .../AzQtComponents/Components/Widgets/Card.qss | 6 +++--- .../AzQtComponents/Components/Widgets/ComboBox.qss | 2 +- .../Components/Widgets/DragAndDrop.cpp | 6 +++--- .../Components/Widgets/DragAndDropConfig.ini | 6 +++--- .../AzQtComponents/Components/Widgets/LineEdit.cpp | 2 +- .../AzQtComponents/Components/Widgets/PushButton.cpp | 2 +- .../Components/Widgets/PushButtonConfig.ini | 2 +- .../AzQtComponents/Components/Widgets/SpinBox.qss | 2 +- .../AzQtComponents/Components/Widgets/Splitter.qss | 2 +- .../AzQtComponents/Components/Widgets/TableView.cpp | 2 +- .../AzQtComponents/Components/Widgets/ToolButton.cpp | 9 +-------- .../AzQtComponents/Gallery/ButtonPage.ui | 12 ++++++++---- .../AzQtComponents/Images/Entity/prefab.svg | 2 +- .../ResourceMappingTool/style/base_style_sheet.qss | 4 ++-- 21 files changed, 36 insertions(+), 39 deletions(-) diff --git a/Code/Editor/AboutDialog.cpp b/Code/Editor/AboutDialog.cpp index a3f76abeb0..88b4d0bdbb 100644 --- a/Code/Editor/AboutDialog.cpp +++ b/Code/Editor/AboutDialog.cpp @@ -42,7 +42,7 @@ CAboutDialog::CAboutDialog(QString versionText, QString richTextCopyrightNotice, m_ui->m_transparentAgreement->setObjectName("link"); setStyleSheet( "CAboutDialog > QLabel#copyrightNotice { color: #AAAAAA; font-size: 9px; }\ - CAboutDialog > QLabel#link { text-decoration: underline; color: #00A1C9; }"); + CAboutDialog > QLabel#link { text-decoration: underline; color: #94D2FF; }"); // Prepare background image QImage backgroundImage(QStringLiteral(":/StartupLogoDialog/splashscreen_background_gradient.jpg")); diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg index 36cceef9e3..fdc98bc788 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg @@ -4,6 +4,6 @@ Outliner / vis & lock / lock / Default - hover Created with Sketch. - + diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg index 410f751568..97580d3462 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg @@ -4,6 +4,6 @@ Outliner / vis & lock /lock / on - hover Created with Sketch. - + diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg index ae7f899c78..1d5db1ca6b 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg @@ -4,7 +4,7 @@ Outliner / vis & lock /visible / Default - hover Created with Sketch. - + diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg index a02fd53198..9d453c7eed 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg @@ -4,7 +4,7 @@ Outliner / vis & lock / visible / on - hover Created with Sketch. - + diff --git a/Code/Editor/Style/LayoutConfigDialog.qss b/Code/Editor/Style/LayoutConfigDialog.qss index 1c79e47451..20dbd2823c 100644 --- a/Code/Editor/Style/LayoutConfigDialog.qss +++ b/Code/Editor/Style/LayoutConfigDialog.qss @@ -5,5 +5,5 @@ #CLayoutConfigDialog QListView::item:selected { - background: #00A1C9; + background: #94D2FF; } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss index ed0ae1c043..b50886892c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss @@ -53,7 +53,7 @@ QMainWindow:separator QMainWindow::separator:hover { - background-color: #00A1C9; + background-color: #1E70EB; } QMainWindow, @@ -107,7 +107,7 @@ QPlainTextEdit:focus { margin: 1px; border-width: 1px; - border-color: #00A1C9; + border-color: #94D2FF; background-color: #FFFFFF; } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss index 9c9ffa1bbb..3cc6f25c73 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss @@ -33,7 +33,7 @@ AzQtComponents--Card #contentContainer AzQtComponents--Card[selected="true"] > #contentContainer { - border: 1px solid #00A1C9; + border: 1px solid #94D2FF; border-top: none; } @@ -99,7 +99,7 @@ AzQtComponents--CardHeader #Background AzQtComponents--Card[selected="true"] > AzQtComponents--CardHeader #Background { - border: 1px solid #00A1C9; + border: 1px solid #94D2FF; border-bottom: none; border-top-left-radius: 2px; border-top-right-radius: 2px; @@ -107,7 +107,7 @@ AzQtComponents--Card[selected="true"] > AzQtComponents--CardHeader #Background AzQtComponents--Card[selected="true"][expanded="false"] > AzQtComponents--CardHeader #Background { - border: 1px solid #00A1C9; + border: 1px solid #94D2FF; border-radius: 2px } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss index 5300e65a6a..169f034dc6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss @@ -35,7 +35,7 @@ QComboBox[HasPopupOpen=true][HasPopupOpen=true] border-width: 1px; border-style: solid; border-radius: 3px; - border-color: #00A1C9; + border-color: #94D2FF; background-color: #FFFFFF; } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp index 82723285b9..0c1aff0166 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp @@ -47,10 +47,10 @@ namespace AzQtComponents config.dropIndicator.ballDiameter = 5; config.dropIndicator.ballOutlineWidth = 1; - config.dropIndicator.rectOutlineColor = QColor("#00A1C9"); - config.dropIndicator.lineSeparatorColor = QColor("#00A1C9"); + config.dropIndicator.rectOutlineColor = QColor("#94D2FF"); + config.dropIndicator.lineSeparatorColor = QColor("#94D2FF"); config.dropIndicator.ballFillColor = QColor("#444444"); - config.dropIndicator.ballOutlineColor = QColor("#00A1C9"); + config.dropIndicator.ballOutlineColor = QColor("#94D2FF"); config.dragIndicator.rectBorderRadius = 2; config.dragIndicator.rectFillColor = QColor("#888888"); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDropConfig.ini b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDropConfig.ini index 14aca1f9d4..e0dd79b5d4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDropConfig.ini +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDropConfig.ini @@ -1,9 +1,9 @@ [DropIndicator] rectOutlineWidth=1 -rectOutlineColor=#00A1C9 +rectOutlineColor=#94D2FF ballFillColor=#0x444444 -ballOutlineColor=#00A1C9 -lineSeparatorColor=#00A1C9 +ballOutlineColor=#94D2FF +lineSeparatorColor=#94D2FF lineSeparatorOutlineWidth=1 ballDiameter=5 ballOutlineWidth=1 diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp index b96f4f9002..eefb23e6f5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp @@ -471,7 +471,7 @@ namespace AzQtComponents config.hoverBackgroundColor = QColor("#FFFFFF"); config.hoverBorderColor = QColor("#222222"); config.hoverLineWidth = 1; - config.focusedBorderColor = QColor("#00A1C9"); + config.focusedBorderColor = QColor("#94D2FF"); config.focusedLineWidth = 1; config.errorBorderColor = QColor("#E25243"); config.errorLineWidth = 2; diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp index c8d203034e..381c4101cb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp @@ -442,7 +442,7 @@ PushButton::Config PushButton::defaultConfig() config.smallIcon.width = 24; config.smallIcon.arrowWidth = 10; - config.iconButton.activeColor = QColor("#00A1C9"); + config.iconButton.activeColor = QColor("#94D2FF"); config.iconButton.disabledColor = QColor("#999999"); config.iconButton.selectedColor = QColor("#FFFFFF"); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButtonConfig.ini b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButtonConfig.ini index 34c084b0f2..897e894a31 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButtonConfig.ini +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButtonConfig.ini @@ -45,7 +45,7 @@ Thickness=1 Color=#4B8CEF [IconButton] -ActiveColor=#1E70EB +ActiveColor=#94D2FF DisabledColor=#999999 SelectedColor=#FFFFFF diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss index 35d27d6eaa..cec5be14ec 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss @@ -41,7 +41,7 @@ QDoubleSpinBox:hover QSpinBox:focus, QDoubleSpinBox:focus { - border-color: #00A1C9; + border-color: #94D2FF; background-color: #FFFFFF; } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss index b032b6bdbe..042693cd25 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss @@ -19,5 +19,5 @@ QSplitter::handle:vertical { QSplitter::handle:hover { - background-color: #00A1C9; + background-color: #1E70EB; } diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp index c57ed22c15..b957ad164a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp @@ -49,7 +49,7 @@ namespace AzQtComponents config.borderWidth = 1; config.borderColor = QStringLiteral("#dddddd"); config.focusBorderWidth = 1; - config.focusBorderColor = QStringLiteral("#00a1c9"); + config.focusBorderColor = QStringLiteral("#94D2FF"); config.focusFillColor = QStringLiteral("#10ffffff"); config.headerFillColor = QStringLiteral("#2d2d2d"); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp index 0efb5b9f1b..d6e9315c4c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp @@ -42,7 +42,7 @@ ToolButton::Config ToolButton::defaultConfig() config.buttonIconSize = 16; config.defaultButtonMargin = 1; config.menuIndicatorWidth = 10; - config.checkedStateBackgroundColor = QStringLiteral("#00A1C9"); + config.checkedStateBackgroundColor = QStringLiteral("#1E70EB"); config.menuIndicatorIcon = QStringLiteral(":/stylesheet/img/UI20/menu-indicator.svg"); config.menuIndicatorIconSize = QSize(6, 3); @@ -200,13 +200,6 @@ bool ToolButton::drawToolButton(const Style* style, const QStyleOptionComplex* o const QRect highlightRect = buttonOption->rect; painter->drawRect(highlightRect); - - if (buttonOption->state & QStyle::State_MouseOver) - { - // If a checkable QToolButton is checked, don't use the Active icon - // color - it is the same as the background color. - label.state.setFlag(QStyle::State_MouseOver, false); - } } label.rect = buttonRect; diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.ui b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.ui index 11500dac62..b8870340a1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.ui +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.ui @@ -236,8 +236,10 @@ - Hover state -#00A1C9 + + Hover state + #94D2FF + Qt::AlignCenter @@ -247,8 +249,10 @@ - Selected state -#00A1C9 + + Selected state + #1E70EB + Qt::AlignCenter diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Images/Entity/prefab.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Entity/prefab.svg index 324eacf60e..924fb353c8 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Images/Entity/prefab.svg +++ b/Code/Framework/AzQtComponents/AzQtComponents/Images/Entity/prefab.svg @@ -2,6 +2,6 @@ icon / prefab / default - + diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss index 2347272331..5f1de10c9d 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss @@ -136,13 +136,13 @@ QPushButton#Primary QPushButton#Primary:hover { background-color: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #44BAFF, stop:1 #4AB2F8); - border: 1px solid #00A1C9; + border: 1px solid #94D2FF; } QPushButton#Primary:pressed { background-color: #0073BB; - border: 1px solid #00A1C9; + border: 1px solid #1E70EB; } QPushButton#Primary:disabled From 4d6f3aefd22213c1bc82d49e4ba6ae9788a119c6 Mon Sep 17 00:00:00 2001 From: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> Date: Wed, 30 Jun 2021 17:02:54 -0700 Subject: [PATCH 069/111] fix wrong path (#1697) Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> --- .../ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp index bad9a1da17..3e87443eed 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp @@ -155,7 +155,7 @@ OutlinerWidget::OutlinerWidget(QWidget* pParent, Qt::WindowFlags flags) settingsRegistry->Get(engineRootPath.Native(), AZ::SettingsRegistryMergeUtils::FilePathKey_EngineRootFolder); } QDir rootDir = QString::fromUtf8(engineRootPath.c_str(), aznumeric_cast(engineRootPath.Native().size())); - const auto pathOnDisk = rootDir.absoluteFilePath(QStringLiteral("Code/Plugins/ComponentEntityEditorPlugin/UI/Outliner/")); + const auto pathOnDisk = rootDir.absoluteFilePath(QStringLiteral("Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/")); const auto qrcPath = QStringLiteral(":/EntityOutliner/"); // Setting the style sheet using both methods allows faster style iteration speed for From cd3fad20b412188481bcdeda578f70713fb888c7 Mon Sep 17 00:00:00 2001 From: srikappa Date: Wed, 30 Jun 2021 17:05:35 -0700 Subject: [PATCH 070/111] Disable support to destroy game entities through behavior context when prefabs are enabled Signed-off-by: srikappa --- .../AzFramework/Entity/GameEntityContextBus.h | 18 +++++++++ .../Entity/GameEntityContextComponent.cpp | 40 ++++++++++++++++++- .../Entity/GameEntityContextComponent.h | 6 +++ 3 files changed, 62 insertions(+), 2 deletions(-) diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h index ca2b9413b4..85eeb2c4c0 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h @@ -90,6 +90,15 @@ namespace AzFramework */ virtual void DestroyGameEntity(const AZ::EntityId& /*id*/) = 0; + /** + * Destroys an entity only in slice mode (when prefabs are disabled). This request is only added as a stop-gap solution to + * prevent the editor from crashing when prefabs are enabled. This will be removed soon. Please use 'DestroyGameEntity' if your + * intention is to destroy a game entity in slice mode. + * + * \param id The ID of the entity to destroy. + */ + virtual void DestroyGameEntityOnlyInSliceMode(const AZ::EntityId& /*id*/) = 0; + /** * Destroys an entity and all of its descendants. * The entity and its descendants are immediately deactivated and will be @@ -98,6 +107,15 @@ namespace AzFramework */ virtual void DestroyGameEntityAndDescendants(const AZ::EntityId& /*id*/) = 0; + /** + * Destroys an entity and its descendants only in slice mode (when prefabs are disabled). This request is only added as a stop-gap + * solution to prevent the editor from crashing when prefabs are enabled. This will be removed soon. Please use + * 'DestroyGameEntityAndDescendants' if your intention is to destroy a game entity and its descendants in slice mode. + * + * \param id The ID of the entity to destroy. + */ + virtual void DestroyGameEntityAndDescendantsOnlyInSliceMode(const AZ::EntityId& /*id*/) = 0; + /** * Activates the game entity. * @param id The ID of the entity to activate. diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp index e48c9a43e1..0c4199b267 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp @@ -46,8 +46,9 @@ namespace AzFramework ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) ->Event("CreateGameEntity", &GameEntityContextRequestBus::Events::CreateGameEntityForBehaviorContext) ->Attribute(AZ::Script::Attributes::ExcludeFrom, AZ::Script::Attributes::ExcludeFlags::All) - ->Event("DestroyGameEntity", &GameEntityContextRequestBus::Events::DestroyGameEntity) - ->Event("DestroyGameEntityAndDescendants", &GameEntityContextRequestBus::Events::DestroyGameEntityAndDescendants) + ->Event("DestroyGameEntity", &GameEntityContextRequestBus::Events::DestroyGameEntityOnlyInSliceMode) + ->Event( + "DestroyGameEntityAndDescendants", &GameEntityContextRequestBus::Events::DestroyGameEntityAndDescendantsOnlyInSliceMode) ->Event("ActivateGameEntity", &GameEntityContextRequestBus::Events::ActivateGameEntity) ->Event("DeactivateGameEntity", &GameEntityContextRequestBus::Events::DeactivateGameEntity) ->Attribute(AZ::ScriptCanvasAttributes::DeactivatesInputEntity, true) @@ -247,6 +248,23 @@ namespace AzFramework DestroyGameEntityInternal(id, false); } + void GameEntityContextComponent::DestroyGameEntityOnlyInSliceMode(const AZ::EntityId& id) + { + bool isPrefabSystemEnabled = false; + AzFramework::ApplicationRequests::Bus::BroadcastResult( + isPrefabSystemEnabled, &AzFramework::ApplicationRequests::IsPrefabSystemEnabled); + if (!isPrefabSystemEnabled) + { + DestroyGameEntityInternal(id, false); + } + else + { + AZ_Error( + "GameEntityContextComponent", false, + "Destroying a game entity is temporarily disabled until the Spawnable system can support this."); + } + } + //========================================================================= // GameEntityContextComponent::DestroyGameEntityAndDescendantsById //========================================================================= @@ -255,6 +273,24 @@ namespace AzFramework DestroyGameEntityInternal(id, true); } + + void GameEntityContextComponent::DestroyGameEntityAndDescendantsOnlyInSliceMode(const AZ::EntityId& id) + { + bool isPrefabSystemEnabled = false; + AzFramework::ApplicationRequests::Bus::BroadcastResult( + isPrefabSystemEnabled, &AzFramework::ApplicationRequests::IsPrefabSystemEnabled); + if (!isPrefabSystemEnabled) + { + DestroyGameEntityInternal(id, true); + } + else + { + AZ_Error( + "GameEntityContextComponent", false, + "Destroying a game entity and its descendants is temporarily disabled until the Spawnable system can support this."); + } + } + //========================================================================= // GameEntityContextComponent::DestroyGameEntityInternal //========================================================================= diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h index 6e6d1c64c9..65a8ce53b4 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h @@ -89,6 +89,12 @@ namespace AzFramework } private: + ////////////////////////////////////////////////////////////////////////// + // GameEntityContextRequestBus + void DestroyGameEntityOnlyInSliceMode(const AZ::EntityId&) override; + void DestroyGameEntityAndDescendantsOnlyInSliceMode(const AZ::EntityId&) override; + ///////////////////////////////////////////////////////////////////////// + AzFramework::EntityVisibilityBoundsUnionSystem m_entityVisibilityBoundsUnionSystem; }; } // namespace AzFramework From c61e69d79433b682325eaa8039a06ffd6f3e398e Mon Sep 17 00:00:00 2001 From: srikappa Date: Wed, 30 Jun 2021 17:08:33 -0700 Subject: [PATCH 071/111] Add correct prefix for param tag Signed-off-by: srikappa --- .../AzFramework/AzFramework/Entity/GameEntityContextBus.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h index 85eeb2c4c0..b70e933922 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h @@ -95,7 +95,7 @@ namespace AzFramework * prevent the editor from crashing when prefabs are enabled. This will be removed soon. Please use 'DestroyGameEntity' if your * intention is to destroy a game entity in slice mode. * - * \param id The ID of the entity to destroy. + * @param id The ID of the entity to destroy. */ virtual void DestroyGameEntityOnlyInSliceMode(const AZ::EntityId& /*id*/) = 0; @@ -112,7 +112,7 @@ namespace AzFramework * solution to prevent the editor from crashing when prefabs are enabled. This will be removed soon. Please use * 'DestroyGameEntityAndDescendants' if your intention is to destroy a game entity and its descendants in slice mode. * - * \param id The ID of the entity to destroy. + * @param id The ID of the entity to destroy. */ virtual void DestroyGameEntityAndDescendantsOnlyInSliceMode(const AZ::EntityId& /*id*/) = 0; From 56ce9908a5e4d517a472921c4a5df275d05d9c3f Mon Sep 17 00:00:00 2001 From: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com> Date: Wed, 30 Jun 2021 18:02:50 -0700 Subject: [PATCH 072/111] [installer/2106-engine-name] update installer job to override engine name Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com> --- scripts/build/Platform/Windows/build_config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/Platform/Windows/build_config.json b/scripts/build/Platform/Windows/build_config.json index c96b2c5cf8..b8aba73c69 100644 --- a/scripts/build/Platform/Windows/build_config.json +++ b/scripts/build/Platform/Windows/build_config.json @@ -314,7 +314,7 @@ "PARAMETERS": { "CONFIGURATION": "profile", "OUTPUT_DIRECTORY": "build\\windows_vs2019", - "CMAKE_OPTIONS": "-G \"Visual Studio 16 2019\" -DCMAKE_SYSTEM_VERSION=10.0 -DLY_UNITY_BUILD=TRUE -DLY_DISABLE_TEST_MODULES=TRUE -DCPACK_WIX_ROOT=\"!WIX! \"", + "CMAKE_OPTIONS": "-G \"Visual Studio 16 2019\" -DCMAKE_SYSTEM_VERSION=10.0 -DLY_UNITY_BUILD=TRUE -DLY_DISABLE_TEST_MODULES=TRUE -DLY_VERSION_ENGINE_NAME=o3de-sdk -DCPACK_WIX_ROOT=\"!WIX! \"", "EXTRA_CMAKE_OPTIONS": "-DLY_INSTALLER_AUTO_GEN_TAG=ON -DLY_INSTALLER_DOWNLOAD_URL=https://dkb1uj4hs9ikv.cloudfront.net -DLY_INSTALLER_LICENSE_URL=https://www.o3debinaries.org/license -DLY_INSTALLER_3RD_PARTY_LICENSE_URL=https://dkb1uj4hs9ikv.cloudfront.net/SPDX-Licenses.txt", "CPACK_BUCKET": "spectra-prism-staging-us-west-2", "CMAKE_LY_PROJECTS": "", From 7b1c37f29690dd0ebd17605c6258dacc0688da14 Mon Sep 17 00:00:00 2001 From: Ken Pruiksma Date: Wed, 30 Jun 2021 20:31:26 -0500 Subject: [PATCH 073/111] [ATOM-15917] Taa pass will no longer crash if an input attachment is invalid. (#1702) Signed-off-by: Ken Pruiksma --- .../Common/Code/Source/PostProcessing/TaaPass.cpp | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp index 12af53eab2..fb854f6df3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp @@ -172,9 +172,17 @@ namespace AZ::Render // The full path name is needed for the attachment image so it's not deduplicated from accumulation images in different pipelines. AZStd::string imageName = RPI::ConcatPassString(GetPathName(), attachment->m_path); auto attachmentImage = RPI::AttachmentImage::Create(*pool.get(), imageDesc, Name(imageName), nullptr, &viewDesc); - - attachment->m_path = attachmentImage->GetAttachmentId(); - attachment->m_importedResource = attachmentImage; + + if (attachmentImage) + { + attachment->m_path = attachmentImage->GetAttachmentId(); + attachment->m_importedResource = attachmentImage; + } + else + { + AZ_Error("TaaPass", false, "TaaPass disabled because it is unable to create an attachment image.") + this->SetEnabled(false); + } } void TaaPass::SetupSubPixelOffsets(uint32_t haltonX, uint32_t haltonY, uint32_t length) From ca606a5e0858dec0cccd85c393f85e61e45ab362 Mon Sep 17 00:00:00 2001 From: dmcdiar Date: Wed, 30 Jun 2021 18:35:25 -0700 Subject: [PATCH 074/111] Set IBL exposure value to 0.0 while baking ReflectionProbe cubemaps Signed-off-by: dmcdiar --- .../ReflectionProbe/ReflectionProbe.cpp | 35 ++++++++++++++----- .../Source/ReflectionProbe/ReflectionProbe.h | 2 ++ 2 files changed, 28 insertions(+), 9 deletions(-) diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp index 10e8f16b4c..95755fc509 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp @@ -96,16 +96,29 @@ namespace AZ void ReflectionProbe::Simulate(uint32_t probeIndex) { - if (m_buildingCubeMap && m_environmentCubeMapPass->IsFinished()) + if (m_buildingCubeMap) { - // all faces of the cubemap have been rendered, invoke the callback - m_callback(m_environmentCubeMapPass->GetTextureData(), m_environmentCubeMapPass->GetTextureFormat()); - - // remove the pipeline - m_scene->RemoveRenderPipeline(m_environmentCubeMapPipelineId); - m_environmentCubeMapPass = nullptr; - - m_buildingCubeMap = false; + Data::Instance sceneSrg = m_scene->GetShaderResourceGroup(); + + if (m_environmentCubeMapPass->IsFinished()) + { + // all faces of the cubemap have been rendered, invoke the callback + m_callback(m_environmentCubeMapPass->GetTextureData(), m_environmentCubeMapPass->GetTextureFormat()); + + // remove the pipeline + m_scene->RemoveRenderPipeline(m_environmentCubeMapPipelineId); + m_environmentCubeMapPass = nullptr; + + // restore exposure + sceneSrg->SetConstant(m_iblExposureConstantIndex, m_previousExposure); + + m_buildingCubeMap = false; + } + else + { + // set exposure to 0.0 while baking the cubemap + sceneSrg->SetConstant(m_iblExposureConstantIndex, 0.0f); + } } // track if we need to update culling based on changes to the draw packets or Srg @@ -283,6 +296,10 @@ namespace AZ const RPI::Ptr& rootPass = environmentCubeMapPipeline->GetRootPass(); rootPass->AddChild(m_environmentCubeMapPass); + // store the current IBL exposure value + Data::Instance sceneSrg = m_scene->GetShaderResourceGroup(); + m_previousExposure = sceneSrg->GetConstant(m_iblExposureConstantIndex); + m_scene->AddRenderPipeline(environmentCubeMapPipeline); } diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h index c354d39d53..48add33260 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h @@ -163,6 +163,8 @@ namespace AZ RPI::Ptr m_environmentCubeMapPass = nullptr; RPI::RenderPipelineId m_environmentCubeMapPipelineId; BuildCubeMapCallback m_callback; + RHI::ShaderInputNameIndex m_iblExposureConstantIndex = "m_iblExposure"; + float m_previousExposure = 0.0f; bool m_buildingCubeMap = false; }; From b4a2edec6a36381b85d3118608543e7535961d36 Mon Sep 17 00:00:00 2001 From: Steve Pham <82231385+spham-amzn@users.noreply.github.com> Date: Wed, 30 Jun 2021 19:51:55 -0700 Subject: [PATCH 075/111] Final update copyright headers to reference license files at the repo root (#1693) * Final update copyright headers to reference license files at the repo root Signed-off-by: spham * Fix copyright validator unit tests to support the stale O3DE header scenario Signed-off-by: spham --- .../LambdaFunctions/LwALambdaFunction.js | 2 +- .../LwFacebookLambdaFunction.js | 2 +- .../LwGenericOpenIdConnectLambdaFunction.js | 2 +- .../LambdaFunctions/LwGoogleLambdaFunction.js | 2 +- Assets/Editor/MissionTemplate.lua | 2 +- Assets/Editor/Scripts/TrackView/example.py | 2 +- .../Editor/Scripts/editor_script_validation.py | 2 +- .../Scripts/export_all_project_levels.py | 2 +- Assets/Editor/Scripts/generatelod.py | 2 +- Assets/Editor/Scripts/rename_cgf.py | 2 +- .../Scripts/select_story_anim_objects.py | 2 +- Assets/Editor/Scripts/tools_shelf_actions.py | 2 +- Assets/Editor/UI/removeTranslationFiles.py | 2 +- Assets/Editor/UI/updateTranslatableText.py | 2 +- Assets/Engine/Scripts/EngineCommon.lua | 2 +- .../Entities/AI/NavigationSeedPoint.lua | 2 +- .../Engine/Scripts/Entities/AI/SmartObject.lua | 2 +- Assets/Engine/Scripts/Entities/AI/TagPoint.lua | 2 +- .../Scripts/Entities/Actor/CActorWrapper.lua | 2 +- .../Scripts/Entities/Anim/MannequinObject.lua | 2 +- .../Scripts/Entities/Default/GeomEntity.lua | 2 +- .../Scripts/Entities/Default/RopeEntity.lua | 2 +- .../Entities/Environment/WaterVolume.lua | 2 +- .../Entities/Lights/EnvironmentLight.lua | 2 +- .../Engine/Scripts/Entities/Lights/Light.lua | 2 +- .../Scripts/Entities/Others/CameraSource.lua | 2 +- .../Scripts/Entities/Others/CameraTarget.lua | 2 +- .../Engine/Scripts/Entities/Others/Comment.lua | 2 +- .../Entities/Others/ProceduralObject.lua | 2 +- .../Scripts/Entities/Others/RigidBody.lua | 2 +- .../Entities/Particle/ParticleEffect.lua | 2 +- .../Scripts/Entities/Physics/AnimObject.lua | 2 +- .../Entities/Physics/AreaBezierVolume.lua | 2 +- .../Scripts/Entities/Physics/BasicEntity.lua | 2 +- .../Scripts/Entities/Physics/LivingEntity.lua | 2 +- .../Scripts/Entities/Physics/RigidBodyEx.lua | 2 +- .../Scripts/Entities/Render/FogVolume.lua | 2 +- .../Scripts/Entities/Render/GeomCache.lua | 2 +- .../Entities/Sound/AudioAreaAmbience.lua | 2 +- .../Scripts/Entities/Sound/AudioAreaEntity.lua | 2 +- .../Scripts/Entities/Sound/AudioAreaRandom.lua | 2 +- .../Entities/Sound/AudioTriggerSpot.lua | 2 +- .../Entities/Sound/Shared/AudioUtils.lua | 2 +- .../Scripts/Entities/Triggers/AreaTrigger.lua | 2 +- .../Entities/Triggers/ProximityTrigger.lua | 2 +- .../Scripts/Entities/UI/UiCanvasRefEntity.lua | 2 +- .../Scripts/Utils/Components/GameplayUtils.lua | 2 +- .../Scripts/Utils/Components/InputUtils.lua | 2 +- .../Scripts/Utils/Components/MultiHandlers.lua | 2 +- Assets/Engine/Scripts/Utils/Containers.lua | 2 +- Assets/Engine/Scripts/Utils/EntityUtils.lua | 2 +- Assets/Engine/Scripts/Utils/Math.lua | 2 +- AutomatedTesting/CMakeLists.txt | 2 +- .../Scripts/SettingsRegistry/__init__.py | 2 +- .../settings_registry_example.py | 2 +- AutomatedTesting/Editor/Scripts/__init__.py | 2 +- AutomatedTesting/EngineFinder.cmake | 2 +- AutomatedTesting/Gem/CMakeLists.txt | 2 +- AutomatedTesting/Gem/Code/CMakeLists.txt | 2 +- .../AutomatedTesting/AutomatedTestingBus.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Mac/runtime_dependencies.cmake | 2 +- .../Code/Platform/Mac/tool_dependencies.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Code/Platform/iOS/platform_ios_files.cmake | 2 +- .../Gem/Code/Source/AutomatedTestingModule.cpp | 2 +- .../Source/AutomatedTestingSystemComponent.cpp | 2 +- .../Source/AutomatedTestingSystemComponent.h | 2 +- .../Gem/Code/automatedtesting_files.cmake | 2 +- AutomatedTesting/Gem/Code/enabled_gems.cmake | 2 +- .../Gem/Editor/Scripts/__init__.py | 2 +- .../Gem/Editor/Scripts/bootstrap.py | 2 +- .../Gem/PythonTests/AWS/CMakeLists.txt | 2 +- .../Gem/PythonTests/AWS/Windows/__init__.py | 2 +- .../AWS/Windows/aws_metrics/__init__.py | 2 +- .../aws_metrics/aws_metrics_automation_test.py | 2 +- .../Windows/aws_metrics/aws_metrics_utils.py | 2 +- .../Windows/aws_metrics/aws_metrics_waiters.py | 2 +- .../PythonTests/AWS/Windows/cdk/__init__.py | 2 +- .../PythonTests/AWS/Windows/cdk/cdk_utils.py | 2 +- .../AWS/Windows/client_auth/__init__.py | 2 +- .../client_auth/test_anonymous_credentials.py | 2 +- .../client_auth/test_password_signin.py | 2 +- .../AWS/Windows/resource_mappings/__init__.py | 2 +- .../resource_mappings/resource_mappings.py | 2 +- .../Gem/PythonTests/AWS/__init__.py | 2 +- .../Gem/PythonTests/AWS/common/__init__.py | 2 +- .../PythonTests/AWS/common/aws_credentials.py | 2 +- .../Gem/PythonTests/AWS/common/aws_utils.py | 2 +- .../PythonTests/AWS/common/custom_waiter.py | 2 +- .../Gem/PythonTests/AWS/conftest.py | 2 +- .../Blast/ActorSplitsAfterCapsuleDamage.py | 2 +- .../Blast/ActorSplitsAfterCollision.py | 2 +- .../Blast/ActorSplitsAfterDamage.py | 2 +- .../ActorSplitsAfterImpactSpreadDamage.py | 2 +- .../Blast/ActorSplitsAfterRadialDamage.py | 2 +- .../Blast/ActorSplitsAfterShearDamage.py | 2 +- .../Blast/ActorSplitsAfterStressDamage.py | 2 +- .../Blast/ActorSplitsAfterTriangleDamage.py | 2 +- .../Gem/PythonTests/Blast/BlastUtils.py | 2 +- .../Gem/PythonTests/Blast/CMakeLists.txt | 2 +- .../Gem/PythonTests/Blast/ImportPathHelper.py | 2 +- .../Gem/PythonTests/Blast/TestSuite_Active.py | 2 +- .../Gem/PythonTests/Blast/__init__.py | 2 +- .../Gem/PythonTests/CMakeLists.txt | 2 +- .../EditorPythonBindings/CMakeLists.txt | 2 +- .../ComponentAssetCommands_test.py | 2 +- .../ComponentAssetCommands_test_case.py | 2 +- .../ComponentCommands_test.py | 2 +- .../ComponentCommands_test_case.py | 2 +- ...nds_test_case_BuildComponentTypeNameList.py | 2 +- .../ComponentPropertyCommands_test.py | 2 +- .../ComponentPropertyCommands_test_case.py | 2 +- ...onentPropertyCommands_test_case_set_none.py | 2 +- ...entPropertyCommands_test_case_visibility.py | 2 +- ...omponentPropertyCommands_test_containers.py | 2 +- .../ComponentPropertyCommands_test_enum.py | 2 +- .../ComponentUpdateListProperty_test.py | 2 +- .../DisplaySettingsBus_test.py | 2 +- .../DisplaySettingsBus_test_case.py | 2 +- .../DisplaySettingsCommands_test.py | 2 +- .../DisplaySettingsCommands_test_case.py | 2 +- .../EditorCommandLine_test.py | 2 +- .../EditorCommandLine_test_case.py | 2 +- .../ComponentUpdateListProperty_test_case.py | 2 +- .../EditorScripts/__init__.py | 2 +- .../EditorUtilityCommands_legacy_test_case.py | 2 +- .../EditorUtilityCommands_test.py | 2 +- .../EditorUtilityCommands_test_case.py | 2 +- .../EditorViewCommands_test.py | 2 +- .../EditorViewCommands_test_case.py | 2 +- .../EntityCRUDCommands_test.py | 2 +- .../EntityCRUDCommands_test_case.py | 2 +- .../EntityCommands_test.py | 2 +- .../EntityCommands_test_case.py | 2 +- .../EntitySearchCommands_test.py | 2 +- .../EntitySearchCommands_test_case.py | 2 +- .../EntitySelectionCommands_test.py | 2 +- .../EntitySelectionCommands_test_case.py | 2 +- .../GameModeCommands_test.py | 2 +- .../GameModeCommands_test_case.py | 2 +- .../EditorPythonBindings/LevelCommands_test.py | 2 +- .../LevelCommands_test_case.py | 2 +- .../LevelComponentCommands_test.py | 2 +- .../LevelComponentCommands_test_case.py | 2 +- .../LevelPathsCommands_test.py | 2 +- .../LevelPathsCommands_test_case.py | 2 +- .../MainWindowCommands_test.py | 2 +- .../MainWindowCommands_test_case.py | 2 +- .../ObjectManagerCommands_test.py | 2 +- .../ObjectManagerCommands_test_case.py | 2 +- .../ObjectStringRepresentation_test.py | 2 +- .../ObjectStringRepresentation_test_case.py | 2 +- .../PySide_Example_test.py | 2 +- .../PySide_Example_test_case.py | 2 +- .../TrackViewCommands_test.py | 2 +- .../TrackViewCommands_test_case.py | 2 +- .../ViewPaneCommands_test.py | 2 +- .../ViewPaneCommands_test_case.py | 2 +- .../ViewportTitleDlgCommands_test.py | 2 +- .../ViewportTitleDlgCommands_test_case.py | 2 +- .../EditorPythonBindings/WaitCommands_test.py | 2 +- .../WaitCommands_test_case.py | 2 +- .../EditorPythonBindings/__init__.py | 2 +- .../EditorPythonBindings/hydra_utils.py | 2 +- .../EditorPythonBindings/layerEntity_test.py | 2 +- .../layerEntity_test_case.py | 2 +- .../EditorPythonTestTools/README.txt | 2 +- .../EditorPythonTestTools/__init__.py | 2 +- .../editor_python_test_tools/__init__.py | 2 +- .../editor_entity_utils.py | 2 +- .../editor_test_helper.py | 2 +- .../hydra_editor_utils.py | 2 +- .../hydra_test_utils.py | 2 +- .../pyside_component_utils.py | 2 +- .../editor_python_test_tools/pyside_utils.py | 2 +- .../editor_python_test_tools/utils.py | 2 +- .../PythonTests/EditorPythonTestTools/setup.py | 2 +- ...8977329_NvCloth_AddClothSimulationToMesh.py | 2 +- ...977330_NvCloth_AddClothSimulationToActor.py | 2 +- .../Gem/PythonTests/NvCloth/CMakeLists.txt | 2 +- .../PythonTests/NvCloth/ImportPathHelper.py | 2 +- .../PythonTests/NvCloth/TestSuite_Active.py | 2 +- .../Gem/PythonTests/NvCloth/__init__.py | 2 +- .../Platform/Android/PAL_traits_android.cmake | 2 +- .../Platform/Linux/PAL_traits_linux.cmake | 2 +- .../Platform/Mac/PAL_traits_mac.cmake | 2 +- .../Platform/Windows/PAL_traits_windows.cmake | 2 +- .../Platform/iOS/PAL_traits_ios.cmake | 2 +- .../PythonAssetBuilder/AssetBuilder_test.py | 2 +- .../AssetBuilder_test_case.py | 2 +- .../PythonAssetBuilder/CMakeLists.txt | 2 +- .../PythonTests/PythonAssetBuilder/__init__.py | 2 +- .../PythonAssetBuilder/bootstrap_tests.py | 2 +- .../export_chunks_builder.py | 2 +- .../PythonAssetBuilder/mock_asset_builder.py | 2 +- .../C28798177_WhiteBox_AddComponentToEntity.py | 2 +- .../C28798205_WhiteBox_SetInvisible.py | 2 +- .../C29279329_WhiteBox_SetDefaultShape.py | 2 +- .../Gem/PythonTests/WhiteBox/CMakeLists.txt | 2 +- .../Gem/PythonTests/WhiteBox/FileManagement.py | 2 +- .../PythonTests/WhiteBox/ImportPathHelper.py | 2 +- .../PythonTests/WhiteBox/TestSuite_Active.py | 2 +- .../Gem/PythonTests/WhiteBox/__init__.py | 2 +- .../PythonTests/assetpipeline/CMakeLists.txt | 2 +- .../Gem/PythonTests/assetpipeline/__init__.py | 2 +- .../assetpipeline/ap_fixtures/__init__.py | 2 +- .../ap_all_platforms_setup_fixture.py | 2 +- .../ap_fixtures/ap_config_backup_fixture.py | 2 +- .../ap_config_default_platform_fixture.py | 2 +- .../ap_external_project_setup_fixture.py | 2 +- .../ap_fast_scan_setting_backup_fixture.py | 2 +- .../ap_fixtures/ap_idle_fixture.py | 2 +- .../ap_missing_dependency_fixture.py | 2 +- .../ap_fixtures/ap_setup_fixture.py | 2 +- .../ap_fixtures/asset_processor_fixture.py | 2 +- .../ap_fixtures/bundler_batch_setup_fixture.py | 2 +- .../ap_fixtures/clear_moveoutput_fixture.py | 2 +- .../ap_fixtures/clear_testingAssets_dir.py | 2 +- .../ap_fixtures/one_time_log_fixture.py | 2 +- .../ap_fixtures/timeout_option_fixture.py | 2 +- .../asset_processor_tests/CMakeLists.txt | 2 +- .../asset_processor_tests/__init__.py | 2 +- .../asset_builder_tests.py | 2 +- .../asset_bundler_batch_tests.py | 2 +- .../asset_processor_batch_dependency_tests.py | 2 +- .../asset_processor_batch_dependency_tests2.py | 2 +- .../asset_processor_batch_tests.py | 2 +- .../asset_processor_batch_tests_2.py | 2 +- .../asset_processor_gui_tests.py | 2 +- .../asset_processor_gui_tests_2.py | 2 +- .../asset_relocator_tests.py | 2 +- .../assets/C1571774/test_lua_print.lua | 2 +- .../assets/C1591338/test_lua_print.lua | 2 +- .../main.lua | 2 +- .../main.lua | 2 +- .../asset_processor_tests/conftest.py | 2 +- .../missing_dependency_tests.py | 2 +- .../assetpipeline/fbx_tests/__init__.py | 2 +- .../assetpipeline/fbx_tests/conftest.py | 2 +- .../assetpipeline/fbx_tests/fbx_tests.py | 2 +- .../wwise_bank_dependency_tests/__init__.py | 2 +- .../bank_info_parser_tests.py | 2 +- .../PythonTests/atom_renderer/CMakeLists.txt | 2 +- .../Gem/PythonTests/atom_renderer/__init__.py | 2 +- .../atom_hydra_scripts/__init__.py | 2 +- ...hydra_AtomEditorComponents_AddedToEntity.py | 2 +- .../atom_renderer/test_Atom_MainSuite.py | 2 +- .../atom_renderer/test_Atom_SandboxSuite.py | 2 +- .../automatedtesting_shared/__init__.py | 2 +- .../asset_database_utils.py | 2 +- .../automatedtesting_shared/asset_utils.py | 2 +- .../automatedtesting_shared/base.py | 2 +- .../automatedtesting_shared/file_utils.py | 2 +- .../landscape_canvas_utils.py | 2 +- .../automatedtesting_shared/network_utils.py | 2 +- .../platform_setting.py | 2 +- .../automatedtesting_shared/registry_utils.py | 2 +- .../automatedtesting_shared/report.py | 2 +- .../screenshot_utils.py | 2 +- .../windows_registry_setting.py | 2 +- .../Gem/PythonTests/editor/CMakeLists.txt | 2 +- .../AssetBrowser_SearchFiltering.py | 2 +- .../AssetBrowser_TreeNavigation.py | 2 +- .../editor/EditorScripts/AssetPicker_UI_UX.py | 2 +- ...EditorWorkflows_LevelEntityComponentCRUD.py | 2 +- .../ComponentCRUD_Add_Delete_Components.py | 2 +- .../EditorScripts/Docking_BasicDockedTools.py | 2 +- .../InputBindings_Add_Remove_Input_Events.py | 2 +- .../EditorScripts/Menus_EditMenuOptions.py | 2 +- .../EditorScripts/Menus_FileMenuOptions.py | 2 +- .../EditorScripts/Menus_ViewMenuOptions.py | 2 +- .../editor/EditorScripts/__init__.py | 2 +- .../Gem/PythonTests/editor/__init__.py | 2 +- .../Gem/PythonTests/editor/conftest.py | 2 +- .../PythonTests/editor/test_AssetBrowser.py | 2 +- .../Gem/PythonTests/editor/test_AssetPicker.py | 2 +- .../editor/test_BasicEditorWorkflows.py | 2 +- .../PythonTests/editor/test_ComponentCRUD.py | 2 +- .../Gem/PythonTests/editor/test_Docking.py | 2 +- .../PythonTests/editor/test_InputBindings.py | 2 +- .../Gem/PythonTests/editor/test_Menus.py | 2 +- .../Gem/PythonTests/largeworlds/CMakeLists.txt | 2 +- .../Gem/PythonTests/largeworlds/__init__.py | 2 +- ...rrides_InstancesPlantAtSpecifiedAltitude.py | 2 +- .../AltitudeFilter_FilterStageToggle.py | 2 +- ...Sample_InstancesPlantAtSpecifiedAltitude.py | 2 +- ...tSlices_SliceCreationAndVisibilityToggle.py | 2 +- ...mbinedDescriptorsExpressInConfiguredArea.py | 2 +- ...htSelector_InstancesExpressBasedOnWeight.py | 2 +- .../EditorScripts/Debugger_DebugCVarsWorks.py | 2 +- ...verrides_InstancesPlantAtSpecifiedRadius.py | 2 +- ...enFilter_InstancesPlantAtSpecifiedRadius.py | 2 +- ...InstanceSpawner_DynamicSliceSpawnerWorks.py | 2 +- ...DynamicSliceInstanceSpawner_Embedded_E2E.py | 2 +- ...DynamicSliceInstanceSpawner_External_E2E.py | 2 +- .../EmptyInstanceSpawner_EmptySpawnerWorks.py | 2 +- ...tanceSpawnerPriority_LayerAndSubPriority.py | 2 +- .../EditorScripts/LayerBlender_E2E_Editor.py | 2 +- ...Blocker_InstancesBlockedInConfiguredArea.py | 2 +- .../LayerSpawner_FilterStageToggle.py | 2 +- .../LayerSpawner_InheritBehaviorFlag.py | 2 +- ...awner_InstancesPlantInAllSupportedShapes.py | 2 +- ...stancesRefreshUsingCorrectViewportCamera.py | 2 +- .../MeshBlocker_InstancesBlockedByMesh.py | 2 +- ...ocker_InstancesBlockedByMeshHeightTuning.py | 2 +- ...rfaceTagEmitter_DependentOnMeshComponent.py | 2 +- ...Emitter_SurfaceTagsAddRemoveSuccessfully.py | 2 +- ...hysXColliderSurfaceTagEmitter_E2E_Editor.py | 2 +- .../PositionModifier_AutoSnapToSurfaceWorks.py | 2 +- ...errides_InstancesPlantAtSpecifiedOffsets.py | 2 +- ...fierOverrides_InstancesRotateWithinRange.py | 2 +- ...ationModifier_InstancesRotateWithinRange.py | 2 +- ...ModifierOverrides_InstancesProperlyScale.py | 2 +- .../ScaleModifier_InstancesProperlyScale.py | 2 +- ...tionFilter_InstancesPlantInAssignedShape.py | 2 +- ...difierOverrides_InstanceSurfaceAlignment.py | 2 +- ...ignmentModifier_InstanceSurfaceAlignment.py | 2 +- ...tAndOverrides_InstancesPlantOnValidSlope.py | 2 +- .../SlopeFilter_FilterStageToggle.py | 2 +- .../SurfaceDataRefreshes_RemainsStable.py | 2 +- ...ltipleDescriptorOverridesPlantAsExpected.py | 2 +- ...urfaceMaskFilter_BasicSurfaceTagCreation.py | 2 +- .../SurfaceMaskFilter_ExclusionList.py | 2 +- .../SurfaceMaskFilter_InclusionList.py | 2 +- .../SystemSettings_SectorPointDensity.py | 2 +- .../EditorScripts/SystemSettings_SectorSize.py | 2 +- ...egetationInstances_DespawnWhenOutOfRange.py | 2 +- .../dyn_veg/EditorScripts/__init__.py | 2 +- .../largeworlds/dyn_veg/__init__.py | 2 +- .../largeworlds/dyn_veg/test_AltitudeFilter.py | 2 +- .../dyn_veg/test_AreaComponentSlices.py | 2 +- .../dyn_veg/test_AssetListCombiner.py | 2 +- .../dyn_veg/test_AssetWeightSelector.py | 2 +- .../largeworlds/dyn_veg/test_Debugger.py | 2 +- .../dyn_veg/test_DistanceBetweenFilter.py | 2 +- .../dyn_veg/test_DynVeg_Regressions.py | 2 +- .../test_DynamicSliceInstanceSpawner.py | 2 +- .../dyn_veg/test_EmptyInstanceSpawner.py | 2 +- .../dyn_veg/test_InstanceSpawnerPriority.py | 2 +- .../largeworlds/dyn_veg/test_LayerBlender.py | 2 +- .../largeworlds/dyn_veg/test_LayerBlocker.py | 2 +- .../largeworlds/dyn_veg/test_LayerSpawner.py | 2 +- .../largeworlds/dyn_veg/test_MeshBlocker.py | 2 +- .../dyn_veg/test_MeshSurfaceTagEmitter.py | 2 +- .../test_PhysXColliderSurfaceTagEmitter.py | 2 +- .../dyn_veg/test_PositionModifier.py | 2 +- .../dyn_veg/test_RotationModifier.py | 2 +- .../largeworlds/dyn_veg/test_ScaleModifier.py | 2 +- .../dyn_veg/test_ShapeIntersectionFilter.py | 2 +- .../dyn_veg/test_SlopeAlignmentModifier.py | 2 +- .../largeworlds/dyn_veg/test_SlopeFilter.py | 2 +- .../dyn_veg/test_SurfaceMaskFilter.py | 2 +- .../largeworlds/dyn_veg/test_SystemSettings.py | 2 +- .../GradientGenerators_Incompatibilities.py | 2 +- .../GradientModifiers_Incompatibilities.py | 2 +- ..._ClearingPinnedEntitySetsPreviewToOrigin.py | 2 +- ...reviewSettings_DefaultPinnedEntityIsSelf.py | 2 +- ..._GradientReferencesAddRemoveSuccessfully.py | 2 +- ...tSurfaceTagEmitter_ComponentDependencies.py | 2 +- ...Emitter_SurfaceTagsAddRemoveSuccessfully.py | 2 +- ...mponentIncompatibleWithExpectedGradients.py | 2 +- ...nsform_ComponentIncompatibleWithSpawners.py | 2 +- ...m_FrequencyZoomCanBeSetBeyondSliderRange.py | 2 +- .../GradientTransform_RequiresShape.py | 2 +- ...dient_ProcessedImageAssignedSuccessfully.py | 2 +- .../ImageGradient_RequiresShape.py | 2 +- .../largeworlds/gradient_signal/__init__.py | 2 +- .../test_GradientIncompatibilities.py | 2 +- .../test_GradientPreviewSettings.py | 2 +- .../gradient_signal/test_GradientSampling.py | 2 +- .../test_GradientSurfaceTagEmitter.py | 2 +- .../gradient_signal/test_GradientTransform.py | 2 +- .../gradient_signal/test_ImageGradient.py | 2 +- .../AreaNodes_DependentComponentsAdded.py | 2 +- .../AreaNodes_EntityCreatedOnNodeAdd.py | 2 +- .../AreaNodes_EntityRemovedOnNodeDelete.py | 2 +- .../ComponentUpdates_UpdateGraph.py | 2 +- .../EditorScripts/CreateNewGraph.py | 2 +- .../Edit_DisabledNodeDuplication.py | 2 +- .../Edit_UndoNodeDelete_SliceEntity.py | 2 +- .../GradientMixer_NodeConstruction.py | 2 +- ...ientModifierNodes_EntityCreatedOnNodeAdd.py | 2 +- ...tModifierNodes_EntityRemovedOnNodeDelete.py | 2 +- .../GradientNodes_DependentComponentsAdded.py | 2 +- .../GradientNodes_EntityCreatedOnNodeAdd.py | 2 +- .../GradientNodes_EntityRemovedOnNodeDelete.py | 2 +- .../GraphClosed_OnEntityDelete.py | 2 +- .../EditorScripts/GraphClosed_OnLevelChange.py | 2 +- .../EditorScripts/GraphClosed_TabbedGraph.py | 2 +- .../GraphUpdates_UpdateComponents.py | 2 +- .../LandscapeCanvasComponent_AddedRemoved.py | 2 +- .../LandscapeCanvas_SliceCreateInstantiate.py | 2 +- .../LayerBlender_NodeConstruction.py | 2 +- .../LayerExtenderNodes_ComponentEntitySync.py | 2 +- .../ShapeNodes_EntityCreatedOnNodeAdd.py | 2 +- .../ShapeNodes_EntityRemovedOnNodeDelete.py | 2 +- ...lotConnections_UpdateComponentReferences.py | 2 +- .../landscape_canvas/EditorScripts/__init__.py | 2 +- .../largeworlds/landscape_canvas/__init__.py | 2 +- .../landscape_canvas/test_AreaNodes.py | 2 +- .../landscape_canvas/test_EditFunctionality.py | 2 +- .../test_GeneralGraphFunctionality.py | 2 +- .../test_GradientModifierNodes.py | 2 +- .../landscape_canvas/test_GradientNodes.py | 2 +- .../test_GraphComponentSync.py | 2 +- .../landscape_canvas/test_ShapeNodes.py | 2 +- .../largeworlds/large_worlds_utils/__init__.py | 2 +- .../editor_dynveg_test_helper.py | 2 +- .../physics/AddModifyDelete_Utils.py | 2 +- ...100000_RigidBody_EnablingGravityWorksPoC.py | 2 +- ...nablingGravityWorksUsingNotificationsPoC.py | 2 +- .../C12712452_ScriptCanvas_CollisionEvents.py | 2 +- ...2712453_ScriptCanvas_MultipleRaycastNode.py | 2 +- ...454_ScriptCanvas_OverlapNodeVerification.py | 2 +- ...12455_ScriptCanvas_ShapeCastVerification.py | 2 +- ...ceRegion_DirectionHasNoAffectOnMagnitude.py | 2 +- ...8580_ForceRegion_SplineModifiedTransform.py | 2 +- ...C12905527_ForceRegion_MagnitudeDeviation.py | 2 +- ...05528_ForceRegion_WithNonTriggerCollider.py | 2 +- .../C13351703_COM_NotIncludeTriggerShapes.py | 2 +- ...C13352089_RigidBodies_MaxAngularVelocity.py | 2 +- ...08019_Terrain_TerrainTexturePainterWorks.py | 2 +- .../physics/C13895144_Ragdoll_ChangeLevel.py | 2 +- .../C14195074_ScriptCanvas_PostUpdateEvent.py | 2 +- ...4654881_CharacterController_SwitchLevels.py | 2 +- .../physics/C14654882_Ragdoll_ragdollAPTest.py | 2 +- .../physics/C14861498_ConfirmError_NoPxMesh.py | 2 +- .../C14861500_DefaultSetting_ColliderShape.py | 2 +- ...501_PhysXCollider_RenderMeshAutoAssigned.py | 2 +- ...14861502_PhysXCollider_AssetAutoAssigned.py | 2 +- .../C14861504_RenderMeshAsset_WithNoPxAsset.py | 2 +- .../C14902097_ScriptCanvas_PreUpdateEvent.py | 2 +- ...C14902098_ScriptCanvas_PostPhysicsUpdate.py | 2 +- .../C14976307_Gravity_SetGravityWorks.py | 2 +- ...ScriptCanvas_SetKinematicTargetTransform.py | 2 +- ..._DefaultLibraryUpdatedAcrossLevels_after.py | 2 +- ...DefaultLibraryUpdatedAcrossLevels_before.py | 2 +- ...6735_Materials_DefaultLibraryConsistency.py | 2 +- ..._Materials_DefaultMaterialLibraryChanges.py | 2 +- ...5096740_Material_LibraryUpdatedCorrectly.py | 2 +- .../physics/C15308217_NoCrash_LevelSwitch.py | 2 +- ...221_Material_ComponentsInSyncWithLibrary.py | 2 +- .../PythonTests/physics/C15425929_Undo_Redo.py | 2 +- ...5935_Material_LibraryUpdatedAcrossLevels.py | 2 +- ...ls_CharacterControllerMaterialAssignment.py | 2 +- ...ial_AddModifyDeleteOnCharacterController.py | 2 +- ...45879_ForceRegion_HighLinearDampingForce.py | 2 +- .../C17411467_AddPhysxRagdollComponent.py | 2 +- ...C18243580_Joints_Fixed2BodiesConstrained.py | 2 +- .../physics/C18243581_Joints_FixedBreakable.py | 2 +- ...18243582_Joints_FixedLeadFollowerCollide.py | 2 +- ...C18243583_Joints_Hinge2BodiesConstrained.py | 2 +- ...243584_Joints_HingeSoftLimitsConstrained.py | 2 +- ...18243585_Joints_HingeNoLimitsConstrained.py | 2 +- ...18243586_Joints_HingeLeadFollowerCollide.py | 2 +- .../physics/C18243587_Joints_HingeBreakable.py | 2 +- .../C18243588_Joints_Ball2BodiesConstrained.py | 2 +- ...8243589_Joints_BallSoftLimitsConstrained.py | 2 +- ...C18243590_Joints_BallNoLimitsConstrained.py | 2 +- ...C18243591_Joints_BallLeadFollowerCollide.py | 2 +- .../physics/C18243592_Joints_BallBreakable.py | 2 +- .../C18243593_Joints_GlobalFrameConstrained.py | 2 +- ...8977601_Material_FrictionCombinePriority.py | 2 +- ...1526_Material_RestitutionCombinePriority.py | 2 +- .../C19536274_GetCollisionName_PrintsName.py | 2 +- ...C19536277_GetCollisionName_PrintsNothing.py | 2 +- ...578018_ShapeColliderWithNoShapeComponent.py | 2 +- .../C19578021_ShapeCollider_CanBeAdded.py | 2 +- ...C19723164_ShapeColliders_WontCrashEditor.py | 2 +- ...erShapeCollider_CollidesWithPhysXTerrain.py | 2 +- .../C28978033_Ragdoll_WorldBodyBusTests.py | 2 +- ...32500_EditorComponents_WorldBodyBusWorks.py | 2 +- .../C3510642_Terrain_NotCollideWithTerrain.py | 2 +- .../C3510644_Collider_CollisionGroups.py | 2 +- ...4044455_Material_libraryChangesInstantly.py | 2 +- .../C4044456_Material_FrictionCombine.py | 2 +- .../C4044457_Material_RestitutionCombine.py | 2 +- .../C4044459_Material_DynamicFriction.py | 2 +- .../C4044460_Material_StaticFriction.py | 2 +- .../physics/C4044461_Material_Restitution.py | 2 +- ...4044694_Material_EmptyLibraryUsesDefault.py | 2 +- ...4695_PhysXCollider_AddMultipleSurfaceFbx.py | 2 +- ...44697_Material_PerfaceMaterialValidation.py | 2 +- ...88315_Material_AddModifyDeleteOnCollider.py | 2 +- ...5577_Materials_MaterialAssignedToTerrain.py | 2 +- ...925579_Material_AddModifyDeleteOnTerrain.py | 2 +- .../C4925580_Material_RagdollBonesMaterial.py | 2 +- ...2_Material_AddModifyDeleteOnRagdollBones.py | 2 +- ...C4976194_RigidBody_PhysXComponentIsValid.py | 2 +- ...976195_RigidBodies_InitialLinearVelocity.py | 2 +- ...76197_RigidBodies_InitialAngularVelocity.py | 2 +- ...99_RigidBodies_LinearDampingObjectMotion.py | 2 +- ...0_RigidBody_AngularDampingObjectRotation.py | 2 +- .../C4976201_RigidBody_MassIsAssigned.py | 2 +- ...RigidBody_StopsWhenBelowKineticThreshold.py | 2 +- .../C4976204_Verify_Start_Asleep_Condition.py | 2 +- ...4976206_RigidBodies_GravityEnabledActive.py | 2 +- ...76207_PhysXRigidBodies_KinematicBehavior.py | 2 +- .../physics/C4976209_RigidBody_ComputesCOM.py | 2 +- .../physics/C4976210_COM_ManualSetting.py | 2 +- ...18_RigidBodies_InertiaObjectsNotComputed.py | 2 +- .../physics/C4976227_Collider_NewGroup.py | 2 +- .../C4976236_AddPhysxColliderComponent.py | 2 +- ...ion_SameCollisionlayerSameCollisiongroup.py | 2 +- ...on_SameCollisionGroupDiffCollisionLayers.py | 2 +- ...244_Collider_SameGroupSameLayerCollision.py | 2 +- ...4976245_PhysXCollider_CollisionLayerTest.py | 2 +- ...4982593_PhysXCollider_CollisionLayerTest.py | 2 +- ...982595_Collider_TriggerDisablesCollision.py | 2 +- .../C4982797_Collider_ColliderOffset.py | 2 +- ...C4982798_Collider_ColliderRotationOffset.py | 2 +- ...4982800_PhysXColliderShape_CanBeSelected.py | 2 +- ...4982801_PhysXColliderShape_CanBeSelected.py | 2 +- ...4982802_PhysXColliderShape_CanBeSelected.py | 2 +- .../physics/C4982803_Enable_PxMesh_Option.py | 2 +- .../C5296614_PhysXMaterial_ColliderShape.py | 2 +- ...C5340400_RigidBody_ManualMomentOfInertia.py | 2 +- ...18_PhysXTerrain_CollidesWithPhysXTerrain.py | 2 +- ...hysxterrain_AddPhysxterrainNoEditorCrash.py | 2 +- ...4_MultipleTerrains_CheckWarningInConsole.py | 2 +- ...689528_Terrain_MultipleTerrainComponents.py | 2 +- ...9_Verify_Terrain_RigidBody_Collider_Mesh.py | 2 +- ...531_Warning_TerrainSliceTerrainComponent.py | 2 +- ...5932040_ForceRegion_CubeExertsWorldForce.py | 2 +- ...ForceRegion_LocalSpaceForceOnRigidBodies.py | 2 +- .../C5932042_PhysXForceRegion_LinearDamping.py | 2 +- ...2043_ForceRegion_SimpleDragOnRigidBodies.py | 2 +- ...932044_ForceRegion_PointForceOnRigidBody.py | 2 +- .../physics/C5932045_ForceRegion_Spline.py | 2 +- ...59_RigidBody_ForceRegionSpherePointForce.py | 2 +- ...9760_PhysXForceRegion_PointForceExertion.py | 2 +- ...61_ForceRegion_PhysAssetExertsPointForce.py | 2 +- ...9763_ForceRegion_ForceRegionImpulsesCube.py | 2 +- ...4_ForceRegion_ForceRegionImpulsesCapsule.py | 2 +- .../C5959765_ForceRegion_AssetGetsImpulsed.py | 2 +- .../C5959808_ForceRegion_PositionOffset.py | 2 +- .../C5959809_ForceRegion_RotationalOffset.py | 2 +- ...10_ForceRegion_ForceRegionCombinesForces.py | 2 +- ...rceRegion_ExertsSeveralForcesOnRigidBody.py | 2 +- ...C5968760_ForceRegion_CheckNetForceChange.py | 2 +- ...6032082_Terrain_MultipleResolutionsValid.py | 2 +- ...090546_ForceRegion_SliceFileInstantiates.py | 2 +- ...0547_ForceRegion_ParentChildForceRegions.py | 2 +- ...0550_ForceRegion_WorldSpaceForceNegative.py | 2 +- ...0551_ForceRegion_LocalSpaceForceNegative.py | 2 +- ...090552_ForceRegion_LinearDampingNegative.py | 2 +- ...ForceRegion_SimpleDragForceOnRigidBodies.py | 2 +- .../C6090554_ForceRegion_PointForceNegative.py | 2 +- ...55_ForceRegion_SplineFollowOnRigidBodies.py | 2 +- ...C6131473_StaticSlice_OnDynamicSliceSpawn.py | 2 +- .../C6224408_ScriptCanvas_EntitySpawn.py | 2 +- .../C6274125_ScriptCanvas_TriggerEvents.py | 2 +- .../C6321601_Force_HighValuesDirectionAxes.py | 2 +- .../Gem/PythonTests/physics/CMakeLists.txt | 2 +- .../Gem/PythonTests/physics/FileManagement.py | 2 +- .../PythonTests/physics/ImportPathHelper.py | 2 +- .../Gem/PythonTests/physics/JointsHelper.py | 2 +- .../PythonTests/physics/Physmaterial_Editor.py | 2 +- .../physics/TestSuite_InDevelopment.py | 2 +- .../Gem/PythonTests/physics/TestSuite_Main.py | 2 +- .../PythonTests/physics/TestSuite_Periodic.py | 2 +- .../PythonTests/physics/TestSuite_Sandbox.py | 2 +- .../Gem/PythonTests/physics/TestSuite_Utils.py | 2 +- .../physics/UtilTest_Managed_Files.py | 2 +- .../physics/UtilTest_Physmaterial_Editor.py | 2 +- .../physics/UtilTest_PhysxConfig_Default.py | 2 +- .../physics/UtilTest_PhysxConfig_Override.py | 2 +- .../UtilTest_Tracer_PicksErrorsAndWarnings.py | 2 +- .../Gem/PythonTests/physics/__init__.py | 2 +- .../Gem/PythonTests/prefab/CMakeLists.txt | 2 +- .../PrefabLevel_OpensLevelWithEntities.py | 2 +- .../Gem/PythonTests/prefab/TestSuite_Main.py | 2 +- .../Gem/PythonTests/prefab/__init__.py | 2 +- .../Gem/PythonTests/scripting/CMakeLists.txt | 2 +- ...ebugger_HappyPath_TargetMultipleEntities.py | 2 +- .../Debugger_HappyPath_TargetMultipleGraphs.py | 2 +- .../scripting/EditMenu_Default_UndoRedo.py | 2 +- ...ntity_HappyPath_AddScriptCanvasComponent.py | 2 +- .../scripting/FileMenu_Default_NewAndOpen.py | 2 +- .../scripting/GraphClose_Default_SavePrompt.py | 2 +- .../scripting/Graph_HappyPath_ZoomInZoomOut.py | 2 +- .../PythonTests/scripting/ImportPathHelper.py | 2 +- ...EventButton_HappyPath_ContainsSCCategory.py | 2 +- .../scripting/NodeCategory_ExpandOnClick.py | 2 +- .../NodeInspector_HappyPath_VariableRenames.py | 2 +- .../NodePalette_HappyPath_CanSelectNode.py | 2 +- .../NodePalette_HappyPath_ClearSelection.py | 2 +- .../NodePalette_SearchText_Deletion.py | 2 +- .../scripting/Node_HappyPath_DuplicateNode.py | 2 +- .../Pane_Default_RetainOnSCRestart.py | 2 +- .../scripting/Pane_HappyPath_DocksProperly.py | 2 +- .../Pane_HappyPath_OpenCloseSuccessfully.py | 2 +- .../Pane_HappyPath_ResizesProperly.py | 2 +- .../Pane_PropertiesChanged_RetainsOnRestart.py | 2 +- .../Pane_Undocked_ClosesSuccessfully.py | 2 +- ...nEntityActivatedDeactivated_PrintMessage.py | 2 +- ...criptCanvasTools_Toggle_OpenCloseSuccess.py | 2 +- ...iptCanvas_ChangingAssets_ComponentStable.py | 2 +- ...anvas_TwoComponents_InteractSuccessfully.py | 2 +- ...riptCanvas_TwoEntities_UseSimultaneously.py | 2 +- .../ScriptEvent_AddRemoveMethod_UpdatesInSC.py | 2 +- ...ent_AddRemoveParameter_ActionsSuccessful.py | 2 +- ...criptEvent_HappyPath_CreatedWithoutError.py | 2 +- ...Events_AllParamDatatypes_CreationSuccess.py | 2 +- ...ptEvents_Default_SendReceiveSuccessfully.py | 2 +- ...ents_HappyPath_SendReceiveAcrossMultiple.py | 2 +- .../ScriptEvents_ReturnSetType_Successfully.py | 2 +- .../scripting/TestSuite_Periodic.py | 2 +- .../PythonTests/scripting/TestSuite_Sandbox.py | 2 +- ...VariableManager_Default_CreateDeleteVars.py | 2 +- .../VariableManager_UnpinVariableType_Works.py | 2 +- .../Gem/PythonTests/scripting/__init__.py | 2 +- .../Gem/PythonTests/smoke/CMakeLists.txt | 2 +- .../smoke/Editor_NewExistingLevels_Works.py | 2 +- .../Gem/PythonTests/smoke/__init__.py | 2 +- .../smoke/test_CLITool_AssetBuilder_Works.py | 2 +- .../test_CLITool_AssetBundlerBatch_Works.py | 2 +- .../test_CLITool_AssetProcessorBatch_Works.py | 2 +- .../smoke/test_CLITool_AzTestRunner_Works.py | 2 +- ...test_CLITool_PythonBindingsExample_Works.py | 2 +- ...test_CLITool_SerializeContextTools_Works.py | 2 +- .../test_Editor_NewExistingLevels_Works.py | 2 +- .../test_RemoteConsole_LoadLevel_Works.py | 2 +- .../test_StaticTools_GenPakShaders_Works.py | 2 +- .../test_UIApps_AssetProcessor_CheckIdle.py | 2 +- .../Gem/PythonTests/streaming/CMakeLists.txt | 2 +- .../Gem/PythonTests/streaming/__init__.py | 2 +- .../streaming/benchmark/__init__.py | 2 +- .../benchmark/asset_load_benchmark_test.py | 2 +- .../NavigationAgent.lua | 2 +- .../Levels/AWS/Metrics/Script/Metrics.lua | 2 +- .../LuaScripts/instance_counter_blender.lua | 2 +- AutomatedTesting/Materials/UVs.azsl | 2 +- AutomatedTesting/ShaderLib/scenesrg.srgi | 2 +- AutomatedTesting/ShaderLib/viewsrg.srgi | 2 +- AutomatedTesting/Shaders/CommonVS.azsli | 2 +- .../TestAssets/test_chunks_builder.py | 2 +- AutomatedTesting/test1.lua | 2 +- AutomatedTesting/test2.lua | 2 +- CMakeLists.txt | 2 +- Code/CMakeLists.txt | 2 +- Code/Editor/2DViewport.cpp | 2 +- Code/Editor/2DViewport.h | 2 +- Code/Editor/AboutDialog.cpp | 2 +- Code/Editor/AboutDialog.h | 2 +- Code/Editor/ActionManager.cpp | 2 +- Code/Editor/ActionManager.h | 2 +- .../Animation/AnimationBipedBoneNames.cpp | 2 +- .../Editor/Animation/AnimationBipedBoneNames.h | 2 +- Code/Editor/Animation/SkeletonHierarchy.cpp | 2 +- Code/Editor/Animation/SkeletonHierarchy.h | 2 +- Code/Editor/Animation/SkeletonMapper.cpp | 2 +- Code/Editor/Animation/SkeletonMapper.h | 2 +- .../Animation/SkeletonMapperOperator.cpp | 2 +- Code/Editor/Animation/SkeletonMapperOperator.h | 2 +- Code/Editor/AnimationContext.cpp | 2 +- Code/Editor/AnimationContext.h | 2 +- .../AssetDatabaseLocationListener.cpp | 2 +- .../AssetDatabaseLocationListener.h | 2 +- .../AssetEditor/AssetEditorRequestsHandler.cpp | 2 +- .../AssetEditor/AssetEditorRequestsHandler.h | 2 +- Code/Editor/AssetEditor/AssetEditorWindow.cpp | 2 +- Code/Editor/AssetEditor/AssetEditorWindow.h | 2 +- .../AssetImporterDragAndDropHandler.cpp | 2 +- .../AssetImporterDragAndDropHandler.h | 2 +- .../AssetImporterManager.cpp | 2 +- .../AssetImporterManager.h | 2 +- .../UI/FilesAlreadyExistDialog.cpp | 2 +- .../AssetImporter/UI/FilesAlreadyExistDialog.h | 2 +- .../UI/ProcessingAssetsDialog.cpp | 2 +- .../AssetImporter/UI/ProcessingAssetsDialog.h | 2 +- .../UI/SelectDestinationDialog.cpp | 2 +- .../AssetImporter/UI/SelectDestinationDialog.h | 2 +- .../AzAssetBrowser/AssetBrowserWindow.cpp | 2 +- .../Editor/AzAssetBrowser/AssetBrowserWindow.h | 2 +- .../AzAssetBrowserRequestHandler.cpp | 2 +- .../AzAssetBrowserRequestHandler.h | 2 +- .../AzAssetBrowser/AzAssetBrowserWindow.cpp | 2 +- .../AzAssetBrowser/AzAssetBrowserWindow.h | 2 +- Code/Editor/BaseLibrary.cpp | 2 +- Code/Editor/BaseLibrary.h | 2 +- Code/Editor/BaseLibraryItem.cpp | 2 +- Code/Editor/BaseLibraryItem.h | 2 +- Code/Editor/BaseLibraryManager.cpp | 2 +- Code/Editor/BaseLibraryManager.h | 2 +- Code/Editor/CMakeLists.txt | 2 +- Code/Editor/CVarMenu.cpp | 2 +- Code/Editor/CVarMenu.h | 2 +- Code/Editor/CheckOutDialog.cpp | 2 +- Code/Editor/CheckOutDialog.h | 2 +- Code/Editor/Clipboard.cpp | 2 +- Code/Editor/Clipboard.h | 2 +- Code/Editor/Commands/CommandManager.cpp | 2 +- Code/Editor/Commands/CommandManager.h | 2 +- Code/Editor/Commands/CommandManagerBus.h | 2 +- Code/Editor/ConfigGroup.cpp | 2 +- Code/Editor/ConfigGroup.h | 2 +- Code/Editor/ConsoleDialog.cpp | 2 +- Code/Editor/ConsoleDialog.h | 2 +- Code/Editor/ControlMRU.cpp | 2 +- Code/Editor/ControlMRU.h | 2 +- Code/Editor/Controls/BitmapToolTip.cpp | 2 +- Code/Editor/Controls/BitmapToolTip.h | 2 +- Code/Editor/Controls/ColorGradientCtrl.cpp | 2 +- Code/Editor/Controls/ColorGradientCtrl.h | 2 +- Code/Editor/Controls/ConsoleSCB.cpp | 2 +- Code/Editor/Controls/ConsoleSCB.h | 2 +- Code/Editor/Controls/ConsoleSCBMFC.cpp | 2 +- Code/Editor/Controls/ConsoleSCBMFC.h | 2 +- Code/Editor/Controls/FolderTreeCtrl.cpp | 2 +- Code/Editor/Controls/FolderTreeCtrl.h | 2 +- Code/Editor/Controls/HotTrackingTreeCtrl.cpp | 2 +- Code/Editor/Controls/HotTrackingTreeCtrl.h | 2 +- Code/Editor/Controls/ImageHistogramCtrl.cpp | 2 +- Code/Editor/Controls/ImageHistogramCtrl.h | 2 +- Code/Editor/Controls/ImageListCtrl.cpp | 2 +- Code/Editor/Controls/ImageListCtrl.h | 2 +- Code/Editor/Controls/MultiMonHelper.cpp | 2 +- Code/Editor/Controls/MultiMonHelper.h | 2 +- Code/Editor/Controls/NumberCtrl.cpp | 2 +- Code/Editor/Controls/NumberCtrl.h | 2 +- Code/Editor/Controls/QBitmapPreviewDialog.cpp | 2 +- Code/Editor/Controls/QBitmapPreviewDialog.h | 2 +- .../Controls/QBitmapPreviewDialogImp.cpp | 2 +- Code/Editor/Controls/QBitmapPreviewDialogImp.h | 2 +- Code/Editor/Controls/QToolTipWidget.cpp | 2 +- Code/Editor/Controls/QToolTipWidget.h | 2 +- .../PropertyAnimationCtrl.cpp | 2 +- .../PropertyAnimationCtrl.h | 2 +- .../ReflectedPropertyControl/PropertyCtrl.cpp | 2 +- .../ReflectedPropertyControl/PropertyCtrl.h | 2 +- .../PropertyGenericCtrl.cpp | 2 +- .../PropertyGenericCtrl.h | 2 +- .../PropertyMiscCtrl.cpp | 2 +- .../PropertyMiscCtrl.h | 2 +- .../PropertyMotionCtrl.cpp | 2 +- .../PropertyMotionCtrl.h | 2 +- .../PropertyResourceCtrl.cpp | 2 +- .../PropertyResourceCtrl.h | 2 +- .../ReflectedPropertiesPanel.cpp | 2 +- .../ReflectedPropertiesPanel.h | 2 +- .../ReflectedPropertyCtrl.cpp | 2 +- .../ReflectedPropertyCtrl.h | 2 +- .../ReflectedPropertyItem.cpp | 2 +- .../ReflectedPropertyItem.h | 2 +- .../ReflectedPropertyControl/ReflectedVar.cpp | 2 +- .../ReflectedPropertyControl/ReflectedVar.h | 2 +- .../ReflectedVarWrapper.cpp | 2 +- .../ReflectedVarWrapper.h | 2 +- Code/Editor/Controls/SplineCtrl.cpp | 2 +- Code/Editor/Controls/SplineCtrl.h | 2 +- Code/Editor/Controls/SplineCtrlEx.cpp | 2 +- Code/Editor/Controls/SplineCtrlEx.h | 2 +- Code/Editor/Controls/TextEditorCtrl.cpp | 2 +- Code/Editor/Controls/TextEditorCtrl.h | 2 +- Code/Editor/Controls/TimelineCtrl.cpp | 2 +- Code/Editor/Controls/TimelineCtrl.h | 2 +- Code/Editor/Controls/TreeCtrlUtils.h | 2 +- Code/Editor/Controls/WndGridHelper.h | 2 +- .../EditorMetricsPlainTextNameRegistration.cpp | 2 +- .../EditorMetricsPlainTextNameRegistration.h | 2 +- Code/Editor/Core/LevelEditorMenuHandler.cpp | 2 +- Code/Editor/Core/LevelEditorMenuHandler.h | 2 +- Code/Editor/Core/QtEditorApplication.cpp | 2 +- Code/Editor/Core/QtEditorApplication.h | 2 +- Code/Editor/Core/QtEditorApplication_linux.cpp | 2 +- Code/Editor/Core/QtEditorApplication_mac.mm | 2 +- Code/Editor/Core/Tests/test_Archive.cpp | 2 +- Code/Editor/Core/Tests/test_Main.cpp | 2 +- Code/Editor/Core/Tests/test_PathUtil.cpp | 2 +- Code/Editor/CrtDebug.cpp | 2 +- Code/Editor/CryEdit.cpp | 2 +- Code/Editor/CryEdit.h | 2 +- Code/Editor/CryEditDoc.cpp | 2 +- Code/Editor/CryEditDoc.h | 2 +- Code/Editor/CryEditPy.cpp | 2 +- Code/Editor/CustomAspectRatioDlg.cpp | 2 +- Code/Editor/CustomAspectRatioDlg.h | 2 +- Code/Editor/CustomResolutionDlg.cpp | 2 +- Code/Editor/CustomResolutionDlg.h | 2 +- Code/Editor/CustomizeKeyboardDialog.cpp | 2 +- Code/Editor/CustomizeKeyboardDialog.h | 2 +- Code/Editor/Dialogs/ErrorsDlg.cpp | 2 +- Code/Editor/Dialogs/ErrorsDlg.h | 2 +- Code/Editor/Dialogs/Generic/UserOptions.cpp | 2 +- Code/Editor/Dialogs/Generic/UserOptions.h | 2 +- Code/Editor/Dialogs/PythonScriptsDialog.cpp | 2 +- Code/Editor/Dialogs/PythonScriptsDialog.h | 2 +- Code/Editor/DimensionsDialog.cpp | 2 +- Code/Editor/DimensionsDialog.h | 2 +- Code/Editor/DisplaySettings.cpp | 2 +- Code/Editor/DisplaySettings.h | 2 +- Code/Editor/DisplaySettingsPythonFuncs.cpp | 2 +- Code/Editor/DisplaySettingsPythonFuncs.h | 2 +- Code/Editor/DocMultiArchive.h | 2 +- Code/Editor/EditMode/DeepSelection.cpp | 2 +- Code/Editor/EditMode/DeepSelection.h | 2 +- ...ObjectSelectionReferenceFrameCalculator.cpp | 2 +- ...ubObjectSelectionReferenceFrameCalculator.h | 2 +- Code/Editor/EditorDefs.h | 2 +- Code/Editor/EditorEnvironment.cpp | 2 +- Code/Editor/EditorEnvironment.h | 2 +- Code/Editor/EditorFileMonitor.cpp | 2 +- Code/Editor/EditorFileMonitor.h | 2 +- Code/Editor/EditorPanelUtils.cpp | 2 +- Code/Editor/EditorPanelUtils.h | 2 +- Code/Editor/EditorPreferencesBus.h | 2 +- Code/Editor/EditorPreferencesDialog.cpp | 2 +- Code/Editor/EditorPreferencesDialog.h | 2 +- Code/Editor/EditorPreferencesPageAWS.cpp | 2 +- Code/Editor/EditorPreferencesPageAWS.h | 2 +- ...itorPreferencesPageExperimentalLighting.cpp | 2 +- ...EditorPreferencesPageExperimentalLighting.h | 2 +- Code/Editor/EditorPreferencesPageFiles.cpp | 2 +- Code/Editor/EditorPreferencesPageFiles.h | 2 +- Code/Editor/EditorPreferencesPageGeneral.cpp | 2 +- Code/Editor/EditorPreferencesPageGeneral.h | 2 +- .../EditorPreferencesPageViewportDebug.cpp | 2 +- .../EditorPreferencesPageViewportDebug.h | 2 +- .../EditorPreferencesPageViewportGeneral.cpp | 2 +- .../EditorPreferencesPageViewportGeneral.h | 2 +- .../EditorPreferencesPageViewportGizmo.cpp | 2 +- .../EditorPreferencesPageViewportGizmo.h | 2 +- .../EditorPreferencesPageViewportMovement.cpp | 2 +- .../EditorPreferencesPageViewportMovement.h | 2 +- .../Editor/EditorPreferencesTreeWidgetItem.cpp | 2 +- Code/Editor/EditorPreferencesTreeWidgetItem.h | 2 +- ...EditorPreferencesTreeWidgetItemDelegate.cpp | 2 +- .../EditorPreferencesTreeWidgetItemDelegate.h | 2 +- Code/Editor/EditorToolsApplication.cpp | 2 +- Code/Editor/EditorToolsApplication.h | 2 +- Code/Editor/EditorToolsApplicationAPI.h | 2 +- Code/Editor/EditorViewportSettings.cpp | 2 +- Code/Editor/EditorViewportSettings.h | 2 +- Code/Editor/EditorViewportWidget.cpp | 2 +- Code/Editor/EditorViewportWidget.h | 2 +- Code/Editor/ErrorDialog.cpp | 2 +- Code/Editor/ErrorDialog.h | 2 +- Code/Editor/ErrorRecorder.cpp | 2 +- Code/Editor/ErrorRecorder.h | 2 +- Code/Editor/ErrorReport.cpp | 2 +- Code/Editor/ErrorReport.h | 2 +- Code/Editor/ErrorReportDialog.cpp | 2 +- Code/Editor/ErrorReportDialog.h | 2 +- Code/Editor/ErrorReportTableModel.cpp | 2 +- Code/Editor/ErrorReportTableModel.h | 2 +- Code/Editor/Export/ExportManager.cpp | 2 +- Code/Editor/Export/ExportManager.h | 2 +- Code/Editor/Export/OBJExporter.cpp | 2 +- Code/Editor/Export/OBJExporter.h | 2 +- Code/Editor/Export/OCMExporter.cpp | 2 +- Code/Editor/Export/OCMExporter.h | 2 +- Code/Editor/FBXExporterDialog.cpp | 2 +- Code/Editor/FBXExporterDialog.h | 2 +- Code/Editor/FileTypeUtils.cpp | 2 +- Code/Editor/FileTypeUtils.h | 2 +- Code/Editor/GameEngine.cpp | 2 +- Code/Editor/GameEngine.h | 2 +- Code/Editor/GameExporter.cpp | 2 +- Code/Editor/GameExporter.h | 2 +- Code/Editor/GameResourcesExporter.cpp | 2 +- Code/Editor/GameResourcesExporter.h | 2 +- Code/Editor/GenericSelectItemDialog.cpp | 2 +- Code/Editor/GenericSelectItemDialog.h | 2 +- Code/Editor/Geometry/TriMesh.cpp | 2 +- Code/Editor/Geometry/TriMesh.h | 2 +- Code/Editor/GotoPositionDlg.cpp | 2 +- Code/Editor/GotoPositionDlg.h | 2 +- Code/Editor/GraphicsSettingsDialog.cpp | 2 +- Code/Editor/GraphicsSettingsDialog.h | 2 +- Code/Editor/GridUtils.h | 2 +- Code/Editor/IEditor.h | 2 +- Code/Editor/IEditorImpl.cpp | 2 +- Code/Editor/IEditorImpl.h | 2 +- Code/Editor/IEditorPanelUtils.h | 2 +- Code/Editor/IObservable.h | 2 +- Code/Editor/IPostRenderer.h | 2 +- Code/Editor/IconManager.cpp | 2 +- Code/Editor/IconManager.h | 2 +- Code/Editor/Include/Command.h | 2 +- Code/Editor/Include/EditorCoreAPI.cpp | 2 +- Code/Editor/Include/EditorCoreAPI.h | 2 +- Code/Editor/Include/HitContext.h | 2 +- .../Include/IAnimationCompressionManager.h | 2 +- Code/Editor/Include/IAssetItem.h | 2 +- Code/Editor/Include/IAssetItemDatabase.h | 2 +- Code/Editor/Include/IAssetViewer.h | 2 +- Code/Editor/Include/IBaseLibraryManager.h | 2 +- Code/Editor/Include/ICommandManager.h | 2 +- Code/Editor/Include/IConsoleConnectivity.h | 2 +- Code/Editor/Include/IDataBaseItem.h | 2 +- Code/Editor/Include/IDataBaseLibrary.h | 2 +- Code/Editor/Include/IDataBaseManager.h | 2 +- Code/Editor/Include/IDisplayViewport.h | 2 +- Code/Editor/Include/IEditorClassFactory.h | 2 +- Code/Editor/Include/IEditorFileMonitor.h | 2 +- Code/Editor/Include/IEditorMaterial.h | 2 +- Code/Editor/Include/IEditorMaterialManager.h | 2 +- Code/Editor/Include/IErrorReport.h | 2 +- Code/Editor/Include/IEventLoopHook.h | 2 +- Code/Editor/Include/IExportManager.h | 2 +- Code/Editor/Include/IFacialEditor.h | 2 +- Code/Editor/Include/IFileUtil.h | 2 +- Code/Editor/Include/IGizmoManager.h | 2 +- Code/Editor/Include/IIconManager.h | 2 +- Code/Editor/Include/IImageUtil.h | 2 +- Code/Editor/Include/IKeyTimeSet.h | 2 +- Code/Editor/Include/ILogFile.h | 2 +- Code/Editor/Include/IObjectManager.h | 2 +- Code/Editor/Include/IPlugin.h | 2 +- Code/Editor/Include/IPreferencesPage.h | 2 +- Code/Editor/Include/IRenderListener.h | 2 +- Code/Editor/Include/IResourceSelectorHost.h | 2 +- Code/Editor/Include/ISourceControl.h | 2 +- ...ubObjectSelectionReferenceFrameCalculator.h | 2 +- Code/Editor/Include/ITextureDatabaseUpdater.h | 2 +- Code/Editor/Include/ITransformManipulator.h | 2 +- Code/Editor/Include/IViewPane.h | 2 +- Code/Editor/Include/ObjectEvent.h | 2 +- Code/Editor/Include/SandboxAPI.h | 2 +- Code/Editor/KeyboardCustomizationSettings.cpp | 2 +- Code/Editor/KeyboardCustomizationSettings.h | 2 +- Code/Editor/Launcher/resource.h | 2 +- Code/Editor/LayoutConfigDialog.cpp | 2 +- Code/Editor/LayoutConfigDialog.h | 2 +- Code/Editor/LayoutWnd.cpp | 2 +- Code/Editor/LayoutWnd.h | 2 +- Code/Editor/LegacyViewportCameraController.cpp | 2 +- Code/Editor/LegacyViewportCameraController.h | 2 +- Code/Editor/LevelFileDialog.cpp | 2 +- Code/Editor/LevelFileDialog.h | 2 +- Code/Editor/LevelIndependentFileMan.cpp | 2 +- Code/Editor/LevelIndependentFileMan.h | 2 +- Code/Editor/LevelInfo.cpp | 2 +- Code/Editor/LevelInfo.h | 2 +- Code/Editor/LevelTreeModel.cpp | 2 +- Code/Editor/LevelTreeModel.h | 2 +- Code/Editor/Lib/Tests/IEditorMock.h | 2 +- Code/Editor/Lib/Tests/test_ClickableLabel.cpp | 2 +- .../Tests/test_CryEditDocPythonBindings.cpp | 2 +- .../Lib/Tests/test_CryEditPythonBindings.cpp | 2 +- .../test_DisplaySettingsPythonBindings.cpp | 2 +- .../Lib/Tests/test_EditorPythonBindings.cpp | 2 +- Code/Editor/Lib/Tests/test_EditorUtils.cpp | 2 +- Code/Editor/Lib/Tests/test_Main.cpp | 2 +- .../Tests/test_MainWindowPythonBindings.cpp | 2 +- .../Tests/test_ObjectManagerPythonBindings.cpp | 2 +- .../test_TerrainHoleToolPythonBindings.cpp | 2 +- .../Tests/test_TerrainLayerPythonBindings.cpp | 2 +- .../Tests/test_TerrainModifyPythonBindings.cpp | 2 +- .../test_TerrainPainterPythonBindings.cpp | 2 +- .../Lib/Tests/test_TerrainPythonBindings.cpp | 2 +- .../test_TerrainTexturePythonBindings.cpp | 2 +- .../Lib/Tests/test_TrackViewPythonBindings.cpp | 2 +- .../Lib/Tests/test_ViewPanePythonBindings.cpp | 2 +- .../test_ViewportTitleDlgPythonBindings.cpp | 2 +- .../SimpleTriangleRasterizer.cpp | 2 +- .../SimpleTriangleRasterizer.h | 2 +- Code/Editor/LogFile.cpp | 2 +- Code/Editor/LogFile.h | 2 +- Code/Editor/LogFileImpl.cpp | 2 +- Code/Editor/LogFileImpl.h | 2 +- Code/Editor/LogFile_mac.mm | 2 +- Code/Editor/LyViewPaneNames.h | 2 +- Code/Editor/MainStatusBar.cpp | 2 +- Code/Editor/MainStatusBar.h | 2 +- Code/Editor/MainStatusBarItems.h | 2 +- Code/Editor/MainWindow.cpp | 2 +- Code/Editor/MainWindow.h | 2 +- Code/Editor/MainWindow_mac.mm | 2 +- Code/Editor/NewLevelDialog.cpp | 2 +- Code/Editor/NewLevelDialog.h | 2 +- Code/Editor/NewTerrainDialog.cpp | 2 +- Code/Editor/NewTerrainDialog.h | 2 +- Code/Editor/Objects/AxisGizmo.cpp | 2 +- Code/Editor/Objects/AxisGizmo.h | 2 +- Code/Editor/Objects/BaseObject.cpp | 2 +- Code/Editor/Objects/BaseObject.h | 2 +- Code/Editor/Objects/ClassDesc.cpp | 2 +- Code/Editor/Objects/ClassDesc.h | 2 +- Code/Editor/Objects/DisplayContext.cpp | 2 +- Code/Editor/Objects/DisplayContext.h | 2 +- Code/Editor/Objects/DisplayContextShared.inl | 2 +- Code/Editor/Objects/EntityObject.cpp | 2 +- Code/Editor/Objects/EntityObject.h | 2 +- Code/Editor/Objects/Gizmo.cpp | 2 +- Code/Editor/Objects/Gizmo.h | 2 +- Code/Editor/Objects/GizmoManager.cpp | 2 +- Code/Editor/Objects/GizmoManager.h | 2 +- Code/Editor/Objects/IEntityObjectListener.h | 2 +- Code/Editor/Objects/LineGizmo.cpp | 2 +- Code/Editor/Objects/LineGizmo.h | 2 +- Code/Editor/Objects/ObjectLoader.cpp | 2 +- Code/Editor/Objects/ObjectLoader.h | 2 +- Code/Editor/Objects/ObjectManager.cpp | 2 +- Code/Editor/Objects/ObjectManager.h | 2 +- Code/Editor/Objects/ObjectManagerEventBus.h | 2 +- .../Editor/Objects/ObjectManagerLegacyUndo.cpp | 2 +- Code/Editor/Objects/ObjectManagerLegacyUndo.h | 2 +- Code/Editor/Objects/SelectionGroup.cpp | 2 +- Code/Editor/Objects/SelectionGroup.h | 2 +- Code/Editor/Objects/SubObjSelection.cpp | 2 +- Code/Editor/Objects/SubObjSelection.h | 2 +- Code/Editor/Objects/TrackGizmo.cpp | 2 +- Code/Editor/Objects/TrackGizmo.h | 2 +- .../Platform/Android/editor_android.cmake | 2 +- .../Platform/Android/editor_lib_android.cmake | 2 +- .../Common/Clang/editor_lib_clang.cmake | 2 +- .../Platform/Common/MSVC/editor_lib_msvc.cmake | 2 +- .../Util/Mailer_Unimplemented.cpp | 2 +- .../Linux/editor_core_files_linux.cmake | 2 +- .../Platform/Linux/editor_lib_linux.cmake | 2 +- Code/Editor/Platform/Linux/editor_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/editor_core_files_mac.cmake | 2 +- Code/Editor/Platform/Mac/editor_lib_mac.cmake | 2 +- Code/Editor/Platform/Mac/editor_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/Util/Mailer_Windows.cpp | 2 +- .../Windows/editor_core_files_windows.cmake | 2 +- .../Platform/Windows/editor_lib_windows.cmake | 2 +- .../Platform/Windows/editor_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- Code/Editor/Platform/iOS/editor_ios.cmake | 2 +- Code/Editor/Platform/iOS/editor_lib_ios.cmake | 2 +- Code/Editor/Plugin.cpp | 2 +- Code/Editor/Plugin.h | 2 +- Code/Editor/PluginManager.cpp | 2 +- Code/Editor/PluginManager.h | 2 +- Code/Editor/Plugins/CMakeLists.txt | 2 +- .../ComponentEntityEditorPlugin/CMakeLists.txt | 2 +- .../ComponentEntityEditorPlugin.cpp | 2 +- .../ComponentEntityEditorPlugin.h | 2 +- .../ComponentEntityEditorPlugin_precompiled.h | 2 +- .../Objects/ComponentEntityObject.cpp | 2 +- .../Objects/ComponentEntityObject.h | 2 +- .../SandboxIntegration.cpp | 2 +- .../SandboxIntegration.h | 2 +- .../Tests/ComponentEntityObjectStateTests.cpp | 2 +- .../Tests/test_Main.cpp | 2 +- .../UI/AssetCatalogModel.cpp | 2 +- .../UI/AssetCatalogModel.h | 2 +- .../UI/ComponentPalette/CategoriesList.cpp | 2 +- .../UI/ComponentPalette/CategoriesList.h | 2 +- .../UI/ComponentPalette/ComponentDataModel.cpp | 2 +- .../UI/ComponentPalette/ComponentDataModel.h | 2 +- .../ComponentPaletteSettings.h | 2 +- .../ComponentPaletteWindow.cpp | 2 +- .../ComponentPalette/ComponentPaletteWindow.h | 2 +- .../ComponentPalette/FavoriteComponentList.cpp | 2 +- .../ComponentPalette/FavoriteComponentList.h | 2 +- .../ComponentPalette/FilteredComponentList.cpp | 2 +- .../ComponentPalette/FilteredComponentList.h | 2 +- .../UI/ComponentPalette/InformationPanel.cpp | 2 +- .../UI/ComponentPalette/InformationPanel.h | 2 +- .../UI/Outliner/EntityOutliner.qss | 2 +- .../UI/Outliner/OutlinerCacheBus.h | 2 +- .../UI/Outliner/OutlinerDisplayOptionsMenu.cpp | 2 +- .../UI/Outliner/OutlinerDisplayOptionsMenu.h | 2 +- .../UI/Outliner/OutlinerListModel.cpp | 2 +- .../UI/Outliner/OutlinerListModel.hxx | 2 +- .../UI/Outliner/OutlinerSearchWidget.cpp | 2 +- .../UI/Outliner/OutlinerSearchWidget.h | 2 +- .../Outliner/OutlinerSortFilterProxyModel.cpp | 2 +- .../Outliner/OutlinerSortFilterProxyModel.hxx | 2 +- .../UI/Outliner/OutlinerTreeView.cpp | 2 +- .../UI/Outliner/OutlinerTreeView.hxx | 2 +- .../UI/Outliner/OutlinerWidget.cpp | 2 +- .../UI/Outliner/OutlinerWidget.hxx | 2 +- .../UI/QComponentEntityEditorMainWindow.cpp | 2 +- .../UI/QComponentEntityEditorMainWindow.h | 2 +- .../QComponentEntityEditorOutlinerWindow.cpp | 2 +- .../UI/QComponentEntityEditorOutlinerWindow.h | 2 +- .../QComponentLevelEntityEditorMainWindow.cpp | 2 +- .../UI/QComponentLevelEntityEditorMainWindow.h | 2 +- .../componententityeditorplugin_files.cmake | 2 +- ...omponententityeditorplugin_test_files.cmake | 2 +- .../ComponentEntityEditorPlugin/dllmain.cpp | 2 +- .../AssetBrowserContextProvider.cpp | 2 +- .../AssetBrowserContextProvider.h | 2 +- .../AssetImporterDocument.cpp | 2 +- .../AssetImporterDocument.h | 2 +- .../AssetImporterPlugin.cpp | 2 +- .../EditorAssetImporter/AssetImporterPlugin.h | 2 +- .../AssetImporterWindow.cpp | 2 +- .../EditorAssetImporter/AssetImporterWindow.h | 2 +- .../Plugins/EditorAssetImporter/CMakeLists.txt | 2 +- .../EditorAssetImporter_precompiled.h | 2 +- .../ImporterRootDisplay.cpp | 2 +- .../EditorAssetImporter/ImporterRootDisplay.h | 2 +- .../Plugins/EditorAssetImporter/Main.cpp | 2 +- .../SceneSerializationHandler.cpp | 2 +- .../SceneSerializationHandler.h | 2 +- .../editorassetimporter_files.cmake | 2 +- .../Plugins/EditorCommon/ActionOutput.cpp | 2 +- .../Editor/Plugins/EditorCommon/ActionOutput.h | 2 +- .../Editor/Plugins/EditorCommon/AxisHelper.cpp | 2 +- .../Editor/Plugins/EditorCommon/CMakeLists.txt | 2 +- .../Plugins/EditorCommon/Cry_LegacyPhysUtils.h | 2 +- .../EditorCommon/DeepFilterProxyModel.cpp | 2 +- .../EditorCommon/DeepFilterProxyModel.h | 2 +- .../Plugins/EditorCommon/DisplayContext.cpp | 2 +- .../EditorCommon/DockTitleBarWidget.cpp | 2 +- .../Plugins/EditorCommon/DockTitleBarWidget.h | 2 +- .../EditorCommon/DrawingPrimitives/Ruler.cpp | 2 +- .../EditorCommon/DrawingPrimitives/Ruler.h | 2 +- .../DrawingPrimitives/TimeSlider.cpp | 2 +- .../DrawingPrimitives/TimeSlider.h | 2 +- .../Plugins/EditorCommon/EditorCommon.cpp | 2 +- .../Editor/Plugins/EditorCommon/EditorCommon.h | 2 +- .../Plugins/EditorCommon/EditorCommonAPI.h | 2 +- .../EditorCommon/EditorCommon_precompiled.h | 2 +- .../Editor/Plugins/EditorCommon/QtViewPane.cpp | 2 +- Code/Editor/Plugins/EditorCommon/Resource.h | 2 +- .../SaveUtilities/AsyncSaveRunner.cpp | 2 +- .../SaveUtilities/AsyncSaveRunner.h | 2 +- .../Plugins/EditorCommon/UiEditorDLLBus.h | 2 +- .../Plugins/EditorCommon/WinWidget/WinWidget.h | 2 +- .../WinWidget/WinWidgetManager.cpp | 2 +- .../EditorCommon/WinWidget/WinWidgetManager.h | 2 +- .../EditorCommon/editorcommon_files.cmake | 2 +- Code/Editor/Plugins/EditorCommon/stdafx.cpp | 2 +- .../Editor/Plugins/FFMPEGPlugin/CMakeLists.txt | 2 +- .../Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp | 2 +- .../Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.h | 2 +- .../FFMPEGPlugin/FFMPEGPlugin_precompiled.h | 2 +- .../FFMPEGPlugin/ffmpegplugin_files.cmake | 2 +- Code/Editor/Plugins/FFMPEGPlugin/main.cpp | 2 +- Code/Editor/Plugins/FFMPEGPlugin/resource.h | 2 +- .../Plugins/PerforcePlugin/CMakeLists.txt | 2 +- .../Plugins/PerforcePlugin/PasswordDlg.cpp | 2 +- .../Plugins/PerforcePlugin/PasswordDlg.h | 2 +- .../Plugins/PerforcePlugin/PerforcePlugin.cpp | 2 +- .../Plugins/PerforcePlugin/PerforcePlugin.h | 2 +- .../PerforcePlugin_precompiled.h | 2 +- .../PerforcePlugin/PerforceSourceControl.cpp | 2 +- .../PerforcePlugin/PerforceSourceControl.h | 2 +- .../Platform/Linux/PAL_linux.cmake | 2 +- .../PerforcePlugin/Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Windows/PAL_windows.cmake | 2 +- Code/Editor/Plugins/PerforcePlugin/main.cpp | 2 +- .../PerforcePlugin/perforceplugin_files.cmake | 2 +- Code/Editor/Plugins/PerforcePlugin/resource.h | 2 +- .../Plugins/ProjectSettingsTool/CMakeLists.txt | 2 +- .../DefaultImageValidator.cpp | 2 +- .../DefaultImageValidator.h | 2 +- .../ProjectSettingsTool/FunctorValidator.cpp | 2 +- .../ProjectSettingsTool/FunctorValidator.h | 2 +- .../Plugins/ProjectSettingsTool/LastPathBus.h | 2 +- .../ProjectSettingsTool/PlatformSettings.h | 2 +- .../PlatformSettings_Android.cpp | 2 +- .../PlatformSettings_Android.h | 2 +- .../PlatformSettings_Base.cpp | 2 +- .../PlatformSettings_Base.h | 2 +- .../PlatformSettings_Ios.cpp | 2 +- .../ProjectSettingsTool/PlatformSettings_Ios.h | 2 +- .../PlatformSettings_common.h | 2 +- .../Plugins/ProjectSettingsTool/Platforms.h | 2 +- .../ProjectSettingsTool/PlistDictionary.cpp | 2 +- .../ProjectSettingsTool/PlistDictionary.h | 2 +- .../ProjectSettingsContainer.cpp | 2 +- .../ProjectSettingsContainer.h | 2 +- .../ProjectSettingsSerialization.cpp | 2 +- .../ProjectSettingsSerialization.h | 2 +- .../ProjectSettingsToolWindow.cpp | 2 +- .../ProjectSettingsToolWindow.h | 2 +- .../ProjectSettingsTool_precompiled.h | 2 +- .../ProjectSettingsValidator.cpp | 2 +- .../ProjectSettingsValidator.h | 2 +- .../ProjectSettingsTool/PropertyFileSelect.cpp | 2 +- .../ProjectSettingsTool/PropertyFileSelect.h | 2 +- .../PropertyFuncValBrowseEdit.cpp | 2 +- .../PropertyFuncValBrowseEdit.h | 2 +- .../PropertyFuncValLineEdit.cpp | 2 +- .../PropertyFuncValLineEdit.h | 2 +- .../PropertyImagePreview.cpp | 2 +- .../ProjectSettingsTool/PropertyImagePreview.h | 2 +- .../ProjectSettingsTool/PropertyLinked.cpp | 2 +- .../ProjectSettingsTool/PropertyLinked.h | 2 +- .../Plugins/ProjectSettingsTool/Utils.cpp | 2 +- .../Editor/Plugins/ProjectSettingsTool/Utils.h | 2 +- .../ProjectSettingsTool/ValidationHandler.cpp | 2 +- .../ProjectSettingsTool/ValidationHandler.h | 2 +- .../Plugins/ProjectSettingsTool/ValidatorBus.h | 2 +- .../Plugins/ProjectSettingsTool/Validators.cpp | 2 +- .../Plugins/ProjectSettingsTool/Validators.h | 2 +- .../ProjectSettingsTool/Validators_impl.h | 2 +- .../Plugins/ProjectSettingsTool/main.cpp | 2 +- .../projectsettingstool_files.cmake | 2 +- Code/Editor/PreferencesStdPages.cpp | 2 +- Code/Editor/PreferencesStdPages.h | 2 +- Code/Editor/ProcessInfo.cpp | 2 +- Code/Editor/ProcessInfo.h | 2 +- Code/Editor/PythonEditorEventsBus.h | 2 +- Code/Editor/PythonEditorFuncs.cpp | 2 +- Code/Editor/PythonEditorFuncs.h | 2 +- Code/Editor/QtUI/ClickableLabel.cpp | 2 +- Code/Editor/QtUI/ClickableLabel.h | 2 +- Code/Editor/QtUI/ColorButton.cpp | 2 +- Code/Editor/QtUI/ColorButton.h | 2 +- Code/Editor/QtUI/ColorButton_mac.mm | 2 +- Code/Editor/QtUI/PixmapLabelPreview.cpp | 2 +- Code/Editor/QtUI/PixmapLabelPreview.h | 2 +- Code/Editor/QtUI/QCollapsibleGroupBox.cpp | 2 +- Code/Editor/QtUI/QCollapsibleGroupBox.h | 2 +- Code/Editor/QtUI/WaitCursor.cpp | 2 +- Code/Editor/QtUI/WaitCursor.h | 2 +- Code/Editor/QtUtil.h | 2 +- Code/Editor/QtUtilWin.h | 2 +- Code/Editor/QtViewPane.h | 2 +- Code/Editor/QtViewPaneManager.cpp | 2 +- Code/Editor/QtViewPaneManager.h | 2 +- Code/Editor/QuickAccessBar.cpp | 2 +- Code/Editor/QuickAccessBar.h | 2 +- Code/Editor/RenderHelpers/AxisHelper.cpp | 2 +- Code/Editor/RenderHelpers/AxisHelper.h | 2 +- Code/Editor/RenderHelpers/AxisHelperShared.inl | 2 +- Code/Editor/RenderViewport.cpp | 2 +- Code/Editor/RenderViewport.h | 2 +- Code/Editor/RenderViewport_mac.mm | 2 +- Code/Editor/Report.h | 2 +- Code/Editor/ResizeResolutionDialog.cpp | 2 +- Code/Editor/ResizeResolutionDialog.h | 2 +- Code/Editor/Resource.h | 2 +- Code/Editor/ResourceSelectorHost.cpp | 2 +- Code/Editor/ResourceSelectorHost.h | 2 +- Code/Editor/SelectEAXPresetDlg.cpp | 2 +- Code/Editor/SelectEAXPresetDlg.h | 2 +- Code/Editor/SelectLightAnimationDialog.cpp | 2 +- Code/Editor/SelectLightAnimationDialog.h | 2 +- Code/Editor/SelectSequenceDialog.cpp | 2 +- Code/Editor/SelectSequenceDialog.h | 2 +- Code/Editor/Settings.cpp | 2 +- Code/Editor/Settings.h | 2 +- Code/Editor/SettingsManager.cpp | 2 +- Code/Editor/SettingsManager.h | 2 +- Code/Editor/SettingsManagerDialog.cpp | 2 +- Code/Editor/SettingsManagerDialog.h | 2 +- Code/Editor/ShortcutDispatcher.cpp | 2 +- Code/Editor/ShortcutDispatcher.h | 2 +- Code/Editor/StartupLogoDialog.cpp | 2 +- Code/Editor/StartupLogoDialog.h | 2 +- Code/Editor/StartupTraceHandler.cpp | 2 +- Code/Editor/StartupTraceHandler.h | 2 +- Code/Editor/StringDlg.cpp | 2 +- Code/Editor/StringDlg.h | 2 +- Code/Editor/Style/Editor.qss | 2 +- Code/Editor/Style/EditorPreferencesDialog.qss | 2 +- Code/Editor/Style/GraphicsSettingsDialog.qss | 2 +- Code/Editor/SurfaceTypeValidator.cpp | 2 +- Code/Editor/SurfaceTypeValidator.h | 2 +- Code/Editor/ToolBox.cpp | 2 +- Code/Editor/ToolBox.h | 2 +- Code/Editor/ToolbarCustomizationDialog.cpp | 2 +- Code/Editor/ToolbarCustomizationDialog.h | 2 +- Code/Editor/ToolbarManager.cpp | 2 +- Code/Editor/ToolbarManager.h | 2 +- Code/Editor/ToolsConfigPage.cpp | 2 +- Code/Editor/ToolsConfigPage.h | 2 +- Code/Editor/TopRendererWnd.cpp | 2 +- Code/Editor/TopRendererWnd.h | 2 +- .../Editor/TrackView/2DBezierKeyUIControls.cpp | 2 +- .../TrackView/AssetBlendKeyUIControls.cpp | 2 +- .../TrackView/AtomOutputFrameCapture.cpp | 2 +- Code/Editor/TrackView/AtomOutputFrameCapture.h | 2 +- Code/Editor/TrackView/CaptureKeyUIControls.cpp | 2 +- .../TrackView/CharacterKeyUIControls.cpp | 2 +- Code/Editor/TrackView/CommentKeyUIControls.cpp | 2 +- Code/Editor/TrackView/CommentNodeAnimator.cpp | 2 +- Code/Editor/TrackView/CommentNodeAnimator.h | 2 +- Code/Editor/TrackView/ConsoleKeyUIControls.cpp | 2 +- Code/Editor/TrackView/DirectorNodeAnimator.cpp | 2 +- Code/Editor/TrackView/DirectorNodeAnimator.h | 2 +- .../TrackView/EditorTrackViewEventsBus.h | 2 +- Code/Editor/TrackView/EventKeyUIControls.cpp | 2 +- Code/Editor/TrackView/GotoKeyUIControls.cpp | 2 +- .../TrackView/ScreenFaderKeyUIControls.cpp | 2 +- Code/Editor/TrackView/SelectKeyUIControls.cpp | 2 +- .../TrackView/SequenceBatchRenderDialog.cpp | 2 +- .../TrackView/SequenceBatchRenderDialog.h | 2 +- .../Editor/TrackView/SequenceKeyUIControls.cpp | 2 +- Code/Editor/TrackView/SoundKeyUIControls.cpp | 2 +- .../TrackView/TVCustomizeTrackColorsDlg.cpp | 2 +- .../TrackView/TVCustomizeTrackColorsDlg.h | 2 +- Code/Editor/TrackView/TVEventsDialog.cpp | 2 +- Code/Editor/TrackView/TVEventsDialog.h | 2 +- Code/Editor/TrackView/TVSequenceProps.cpp | 2 +- Code/Editor/TrackView/TVSequenceProps.h | 2 +- .../TrackView/TimeRangeKeyUIControls.cpp | 2 +- .../TrackView/TrackEventKeyUIControls.cpp | 2 +- Code/Editor/TrackView/TrackViewAnimNode.cpp | 2 +- Code/Editor/TrackView/TrackViewAnimNode.h | 2 +- Code/Editor/TrackView/TrackViewCurveEditor.cpp | 2 +- Code/Editor/TrackView/TrackViewCurveEditor.h | 2 +- Code/Editor/TrackView/TrackViewDialog.cpp | 2 +- Code/Editor/TrackView/TrackViewDialog.h | 2 +- .../TrackView/TrackViewDopeSheetBase.cpp | 2 +- Code/Editor/TrackView/TrackViewDopeSheetBase.h | 2 +- .../TrackView/TrackViewDoubleSpinBox.cpp | 2 +- Code/Editor/TrackView/TrackViewDoubleSpinBox.h | 2 +- Code/Editor/TrackView/TrackViewEventNode.cpp | 2 +- Code/Editor/TrackView/TrackViewEventNode.h | 2 +- Code/Editor/TrackView/TrackViewFindDlg.cpp | 2 +- Code/Editor/TrackView/TrackViewFindDlg.h | 2 +- .../TrackView/TrackViewKeyPropertiesDlg.cpp | 2 +- .../TrackView/TrackViewKeyPropertiesDlg.h | 2 +- Code/Editor/TrackView/TrackViewNode.cpp | 2 +- Code/Editor/TrackView/TrackViewNode.h | 2 +- .../TrackView/TrackViewNodeFactories.cpp | 2 +- Code/Editor/TrackView/TrackViewNodeFactories.h | 2 +- Code/Editor/TrackView/TrackViewNodes.cpp | 2 +- Code/Editor/TrackView/TrackViewNodes.h | 2 +- Code/Editor/TrackView/TrackViewPythonFuncs.cpp | 2 +- Code/Editor/TrackView/TrackViewPythonFuncs.h | 2 +- Code/Editor/TrackView/TrackViewSequence.cpp | 2 +- Code/Editor/TrackView/TrackViewSequence.h | 2 +- .../TrackView/TrackViewSequenceManager.cpp | 2 +- .../TrackView/TrackViewSequenceManager.h | 2 +- Code/Editor/TrackView/TrackViewSplineCtrl.cpp | 2 +- Code/Editor/TrackView/TrackViewSplineCtrl.h | 2 +- Code/Editor/TrackView/TrackViewTimeline.cpp | 2 +- Code/Editor/TrackView/TrackViewTimeline.h | 2 +- Code/Editor/TrackView/TrackViewTrack.cpp | 2 +- Code/Editor/TrackView/TrackViewTrack.h | 2 +- Code/Editor/TrackView/TrackViewUndo.cpp | 2 +- Code/Editor/TrackView/TrackViewUndo.h | 2 +- Code/Editor/TrackViewExportKeyTimeDlg.cpp | 2 +- Code/Editor/TrackViewExportKeyTimeDlg.h | 2 +- .../Editor/TrackViewFBXImportPreviewDialog.cpp | 2 +- Code/Editor/TrackViewFBXImportPreviewDialog.h | 2 +- Code/Editor/TrackViewNewSequenceDialog.cpp | 2 +- Code/Editor/TrackViewNewSequenceDialog.h | 2 +- Code/Editor/UIEnumsDatabase.cpp | 2 +- Code/Editor/UIEnumsDatabase.h | 2 +- Code/Editor/Undo/IUndoManagerListener.h | 2 +- Code/Editor/Undo/IUndoObject.h | 2 +- Code/Editor/Undo/Undo.cpp | 2 +- Code/Editor/Undo/Undo.h | 2 +- Code/Editor/Undo/UndoVariableChange.h | 2 +- Code/Editor/UndoConfigSpec.cpp | 2 +- Code/Editor/UndoConfigSpec.h | 2 +- Code/Editor/UndoDropDown.cpp | 2 +- Code/Editor/UndoDropDown.h | 2 +- Code/Editor/UndoViewPosition.cpp | 2 +- Code/Editor/UndoViewPosition.h | 2 +- Code/Editor/UndoViewRotation.cpp | 2 +- Code/Editor/UndoViewRotation.h | 2 +- Code/Editor/UsedResources.cpp | 2 +- Code/Editor/UsedResources.h | 2 +- Code/Editor/UserMessageDefines.h | 2 +- Code/Editor/Util/3DConnexionDriver.cpp | 2 +- Code/Editor/Util/3DConnexionDriver.h | 2 +- Code/Editor/Util/AbstractGroupProxyModel.cpp | 2 +- Code/Editor/Util/AbstractGroupProxyModel.h | 2 +- Code/Editor/Util/AbstractSortModel.cpp | 2 +- Code/Editor/Util/AbstractSortModel.h | 2 +- Code/Editor/Util/AffineParts.cpp | 2 +- Code/Editor/Util/AffineParts.h | 2 +- .../Util/AutoDirectoryRestoreFileDialog.cpp | 2 +- .../Util/AutoDirectoryRestoreFileDialog.h | 2 +- Code/Editor/Util/AutoLogTime.cpp | 2 +- Code/Editor/Util/AutoLogTime.h | 2 +- Code/Editor/Util/ColorUtils.cpp | 2 +- Code/Editor/Util/ColorUtils.h | 2 +- Code/Editor/Util/ColumnGroupHeaderView.cpp | 2 +- Code/Editor/Util/ColumnGroupHeaderView.h | 2 +- Code/Editor/Util/ColumnGroupItemDelegate.cpp | 2 +- Code/Editor/Util/ColumnGroupItemDelegate.h | 2 +- Code/Editor/Util/ColumnGroupProxyModel.cpp | 2 +- Code/Editor/Util/ColumnGroupProxyModel.h | 2 +- Code/Editor/Util/ColumnGroupTreeView.cpp | 2 +- Code/Editor/Util/ColumnGroupTreeView.h | 2 +- Code/Editor/Util/ColumnSortProxyModel.cpp | 2 +- Code/Editor/Util/ColumnSortProxyModel.h | 2 +- Code/Editor/Util/Contrib/NvFloatMath.inl | 2 +- Code/Editor/Util/CryMemFile.h | 2 +- Code/Editor/Util/DynamicArray2D.cpp | 2 +- Code/Editor/Util/DynamicArray2D.h | 2 +- Code/Editor/Util/EditorAutoLevelLoadTest.cpp | 2 +- Code/Editor/Util/EditorAutoLevelLoadTest.h | 2 +- Code/Editor/Util/EditorUtils.cpp | 2 +- Code/Editor/Util/EditorUtils.h | 2 +- Code/Editor/Util/FileChangeMonitor.cpp | 2 +- Code/Editor/Util/FileChangeMonitor.h | 2 +- Code/Editor/Util/FileEnum.cpp | 2 +- Code/Editor/Util/FileEnum.h | 2 +- Code/Editor/Util/FileUtil.cpp | 2 +- Code/Editor/Util/FileUtil.h | 2 +- Code/Editor/Util/FileUtil_impl.cpp | 2 +- Code/Editor/Util/FileUtil_impl.h | 2 +- Code/Editor/Util/GdiUtil.cpp | 2 +- Code/Editor/Util/GdiUtil.h | 2 +- Code/Editor/Util/GeometryUtil.cpp | 2 +- Code/Editor/Util/GeometryUtil.h | 2 +- Code/Editor/Util/GuidUtil.cpp | 2 +- Code/Editor/Util/GuidUtil.h | 2 +- Code/Editor/Util/IObservable.h | 2 +- Code/Editor/Util/IXmlHistoryManager.h | 2 +- Code/Editor/Util/Image.cpp | 2 +- Code/Editor/Util/Image.h | 2 +- Code/Editor/Util/ImageASC.cpp | 2 +- Code/Editor/Util/ImageASC.h | 2 +- Code/Editor/Util/ImageBT.cpp | 2 +- Code/Editor/Util/ImageBT.h | 2 +- Code/Editor/Util/ImageGif.cpp | 2 +- Code/Editor/Util/ImageGif.h | 2 +- Code/Editor/Util/ImageHistogram.cpp | 2 +- Code/Editor/Util/ImageHistogram.h | 2 +- Code/Editor/Util/ImagePainter.cpp | 2 +- Code/Editor/Util/ImagePainter.h | 2 +- Code/Editor/Util/ImageTIF.cpp | 2 +- Code/Editor/Util/ImageTIF.h | 2 +- Code/Editor/Util/ImageUtil.cpp | 2 +- Code/Editor/Util/ImageUtil.h | 2 +- Code/Editor/Util/ImageUtil_impl.cpp | 2 +- Code/Editor/Util/ImageUtil_impl.h | 2 +- Code/Editor/Util/IndexedFiles.cpp | 2 +- Code/Editor/Util/IndexedFiles.h | 2 +- Code/Editor/Util/KDTree.cpp | 2 +- Code/Editor/Util/KDTree.h | 2 +- Code/Editor/Util/Mailer.h | 2 +- Code/Editor/Util/Math.h | 2 +- Code/Editor/Util/MemoryBlock.cpp | 2 +- Code/Editor/Util/MemoryBlock.h | 2 +- Code/Editor/Util/ModalWindowDismisser.cpp | 2 +- Code/Editor/Util/ModalWindowDismisser.h | 2 +- Code/Editor/Util/NamedData.cpp | 2 +- Code/Editor/Util/NamedData.h | 2 +- Code/Editor/Util/Observable.h | 2 +- Code/Editor/Util/PakFile.cpp | 2 +- Code/Editor/Util/PakFile.h | 2 +- Code/Editor/Util/PathUtil.cpp | 2 +- Code/Editor/Util/PathUtil.h | 2 +- Code/Editor/Util/PredefinedAspectRatios.cpp | 2 +- Code/Editor/Util/PredefinedAspectRatios.h | 2 +- Code/Editor/Util/RefCountBase.h | 2 +- Code/Editor/Util/StringHelpers.cpp | 2 +- Code/Editor/Util/StringHelpers.h | 2 +- Code/Editor/Util/StringNoCasePredicate.h | 2 +- Code/Editor/Util/TRefCountBase.h | 2 +- Code/Editor/Util/Triangulate.cpp | 2 +- Code/Editor/Util/Triangulate.h | 2 +- Code/Editor/Util/UIEnumerations.cpp | 2 +- Code/Editor/Util/UIEnumerations.h | 2 +- Code/Editor/Util/UndoUtil.cpp | 2 +- Code/Editor/Util/UndoUtil.h | 2 +- Code/Editor/Util/Util.h | 2 +- Code/Editor/Util/Variable.cpp | 2 +- Code/Editor/Util/Variable.h | 2 +- Code/Editor/Util/VariablePropertyType.cpp | 2 +- Code/Editor/Util/VariablePropertyType.h | 2 +- Code/Editor/Util/XmlArchive.cpp | 2 +- Code/Editor/Util/XmlArchive.h | 2 +- Code/Editor/Util/XmlHistoryManager.cpp | 2 +- Code/Editor/Util/XmlHistoryManager.h | 2 +- Code/Editor/Util/XmlTemplate.cpp | 2 +- Code/Editor/Util/XmlTemplate.h | 2 +- Code/Editor/Util/bitarray.h | 2 +- Code/Editor/Util/fastlib.h | 2 +- Code/Editor/Util/smartptr.h | 2 +- Code/Editor/ViewManager.cpp | 2 +- Code/Editor/ViewManager.h | 2 +- Code/Editor/ViewPane.cpp | 2 +- Code/Editor/ViewPane.h | 2 +- Code/Editor/Viewport.cpp | 2 +- Code/Editor/Viewport.h | 2 +- Code/Editor/ViewportManipulatorController.cpp | 2 +- Code/Editor/ViewportManipulatorController.h | 2 +- Code/Editor/ViewportTitleDlg.cpp | 2 +- Code/Editor/ViewportTitleDlg.h | 2 +- Code/Editor/WaitProgress.cpp | 2 +- Code/Editor/WaitProgress.h | 2 +- .../WelcomeScreen/WelcomeScreenDialog.cpp | 2 +- .../Editor/WelcomeScreen/WelcomeScreenDialog.h | 2 +- Code/Editor/WinWidgetId.h | 2 +- Code/Editor/WindowObserver_mac.h | 2 +- Code/Editor/WindowObserver_mac.mm | 2 +- Code/Editor/WipFeatureManager.cpp | 2 +- Code/Editor/WipFeatureManager.h | 2 +- Code/Editor/WipFeaturesDlg.cpp | 2 +- Code/Editor/WipFeaturesDlg.h | 2 +- Code/Editor/editor_core_files.cmake | 2 +- Code/Editor/editor_core_test_files.cmake | 2 +- Code/Editor/editor_darwin_files.cmake | 2 +- Code/Editor/editor_files.cmake | 2 +- Code/Editor/editor_headers_files.cmake | 2 +- Code/Editor/editor_lib_files.cmake | 2 +- Code/Editor/editor_lib_terrain_files.cmake | 2 +- Code/Editor/editor_lib_test_files.cmake | 2 +- .../Editor/editor_lib_test_terrain_files.cmake | 2 +- Code/Editor/editor_win_files.cmake | 2 +- Code/Editor/main.cpp | 2 +- .../AtomCore/AtomCore/Instance/Instance.h | 2 +- .../AtomCore/Instance/InstanceData.cpp | 2 +- .../AtomCore/AtomCore/Instance/InstanceData.h | 2 +- .../AtomCore/Instance/InstanceDatabase.h | 2 +- .../AtomCore/AtomCore/Instance/InstanceId.cpp | 2 +- .../AtomCore/AtomCore/Instance/InstanceId.h | 2 +- .../AtomCore/Serialization/Json/JsonUtils.cpp | 2 +- .../AtomCore/Serialization/Json/JsonUtils.h | 2 +- .../AtomCore/AtomCore/atomcore_files.cmake | 2 +- .../AtomCore/std/containers/array_view.h | 2 +- .../AtomCore/std/containers/fixed_vector_set.h | 2 +- .../AtomCore/std/containers/lru_cache.h | 2 +- .../AtomCore/std/containers/vector_set.h | 2 +- .../AtomCore/std/containers/vector_set_base.h | 2 +- .../std/parallel/concurrency_checker.h | 2 +- Code/Framework/AtomCore/CMakeLists.txt | 2 +- Code/Framework/AtomCore/Tests/ArrayView.cpp | 2 +- .../AtomCore/Tests/ConcurrencyCheckerTests.cpp | 2 +- .../AtomCore/Tests/InstanceDatabase.cpp | 2 +- .../Tests/JsonSerializationUtilsTests.cpp | 2 +- Code/Framework/AtomCore/Tests/Main.cpp | 2 +- Code/Framework/AtomCore/Tests/NameSetTests.cpp | 2 +- .../AtomCore/Tests/atomcore_tests_files.cmake | 2 +- Code/Framework/AtomCore/Tests/lru_cache.cpp | 2 +- Code/Framework/AtomCore/Tests/vector_set.cpp | 2 +- .../lumberyard/ActivityResultsListener.java | 2 +- .../lumberyard/AndroidDeviceManager.java | 2 +- .../amazon/lumberyard/LumberyardActivity.java | 2 +- .../NativeUI/LumberyardNativeUI.java | 2 +- .../lumberyard/input/KeyboardHandler.java | 2 +- .../lumberyard/input/MotionSensorManager.java | 2 +- .../amazon/lumberyard/input/MouseDevice.java | 2 +- .../com/amazon/lumberyard/io/APKHandler.java | 2 +- .../io/obb/ObbDownloaderActivity.java | 2 +- .../io/obb/ObbDownloaderAlarmReceiver.java | 2 +- .../io/obb/ObbDownloaderService.java | 2 +- .../java/com/amazon/test/SimpleObject.java | 2 +- Code/Framework/AzAutoGen/AzAutoGen.py | 8 ++++---- Code/Framework/AzAutoGen/CMakeLists.txt | 2 +- Code/Framework/AzAutoGen/azautogen_files.cmake | 2 +- .../AzCore/AzCore/Android/APKFileHandler.cpp | 2 +- .../AzCore/AzCore/Android/APKFileHandler.h | 2 +- .../AzCore/AzCore/Android/AndroidEnv.cpp | 2 +- .../AzCore/AzCore/Android/AndroidEnv.h | 2 +- .../Framework/AzCore/AzCore/Android/ApiLevel.h | 2 +- .../AzCore/Android/JNI/Internal/ClassName.h | 2 +- .../AzCore/Android/JNI/Internal/JStringUtils.h | 2 +- .../Android/JNI/Internal/JStringUtils_impl.h | 2 +- .../AzCore/Android/JNI/Internal/Object_impl.h | 2 +- .../Android/JNI/Internal/Signature_impl.h | 2 +- .../AzCore/AzCore/Android/JNI/JNI.cpp | 2 +- Code/Framework/AzCore/AzCore/Android/JNI/JNI.h | 2 +- .../AzCore/AzCore/Android/JNI/Object.h | 2 +- .../AzCore/AzCore/Android/JNI/Object_fwd.h | 2 +- .../AzCore/AzCore/Android/JNI/Signature.h | 2 +- .../AzCore/AzCore/Android/JNI/scoped_ref.h | 2 +- .../AzCore/AzCore/Android/JNI/shared_ref.h | 2 +- .../Android/Tests/JNI/Signature_tests.cpp | 2 +- .../Android/Tests/JNI/shared_ref_tests.cpp | 2 +- Code/Framework/AzCore/AzCore/Android/Utils.cpp | 2 +- Code/Framework/AzCore/AzCore/Android/Utils.h | 2 +- .../AzCore/AzCore/Asset/AssetCommon.cpp | 2 +- .../AzCore/AzCore/Asset/AssetCommon.h | 2 +- .../AzCore/AzCore/Asset/AssetContainer.cpp | 2 +- .../AzCore/AzCore/Asset/AssetContainer.h | 2 +- .../AzCore/AzCore/Asset/AssetDataStream.cpp | 2 +- .../AzCore/AzCore/Asset/AssetDataStream.h | 2 +- .../AzCore/Asset/AssetInternal/WeakAsset.h | 2 +- .../AzCore/Asset/AssetJsonSerializer.cpp | 2 +- .../AzCore/AzCore/Asset/AssetJsonSerializer.h | 2 +- .../AzCore/AzCore/Asset/AssetManager.cpp | 2 +- .../AzCore/AzCore/Asset/AssetManager.h | 2 +- .../AzCore/AzCore/Asset/AssetManagerBus.h | 2 +- .../AzCore/Asset/AssetManagerComponent.cpp | 2 +- .../AzCore/Asset/AssetManagerComponent.h | 2 +- .../AzCore/AzCore/Asset/AssetManager_private.h | 2 +- .../AzCore/AzCore/Asset/AssetSerializer.cpp | 2 +- .../AzCore/AzCore/Asset/AssetSerializer.h | 2 +- .../AzCore/AzCore/Asset/AssetTypeInfoBus.h | 2 +- Code/Framework/AzCore/AzCore/AzCoreModule.cpp | 2 +- Code/Framework/AzCore/AzCore/AzCoreModule.h | 2 +- Code/Framework/AzCore/AzCore/BuildInfo.h | 2 +- .../AzCore/AzCore/Casting/lossy_cast.h | 2 +- .../AzCore/AzCore/Casting/numeric_cast.h | 2 +- .../AzCore/AzCore/Component/Component.cpp | 2 +- .../AzCore/AzCore/Component/Component.h | 2 +- .../AzCore/Component/ComponentApplication.cpp | 2 +- .../AzCore/Component/ComponentApplication.h | 2 +- .../AzCore/Component/ComponentApplicationBus.h | 2 +- .../AzCore/AzCore/Component/ComponentBus.cpp | 2 +- .../AzCore/AzCore/Component/ComponentBus.h | 2 +- .../AzCore/AzCore/Component/ComponentExport.h | 2 +- .../AzCore/AzCore/Component/Entity.cpp | 2 +- .../Framework/AzCore/AzCore/Component/Entity.h | 2 +- .../AzCore/AzCore/Component/EntityBus.h | 2 +- .../AzCore/AzCore/Component/EntityId.h | 2 +- .../AzCore/Component/EntityIdSerializer.cpp | 2 +- .../AzCore/Component/EntityIdSerializer.h | 2 +- .../AzCore/Component/EntitySerializer.cpp | 2 +- .../AzCore/AzCore/Component/EntitySerializer.h | 2 +- .../AzCore/AzCore/Component/EntityUtils.cpp | 2 +- .../AzCore/AzCore/Component/EntityUtils.h | 2 +- .../AzCore/AzCore/Component/NamedEntityId.cpp | 2 +- .../AzCore/AzCore/Component/NamedEntityId.h | 2 +- .../AzCore/Component/NonUniformScaleBus.cpp | 2 +- .../AzCore/Component/NonUniformScaleBus.h | 2 +- .../AzCore/AzCore/Component/TickBus.h | 2 +- .../AzCore/AzCore/Component/TransformBus.h | 2 +- .../AzCore/AzCore/Compression/Compression.h | 2 +- .../AzCore/AzCore/Compression/compression.cpp | 2 +- .../AzCore/Compression/zstd_compression.cpp | 2 +- .../AzCore/Compression/zstd_compression.h | 2 +- .../AzCore/AzCore/Console/Console.cpp | 2 +- Code/Framework/AzCore/AzCore/Console/Console.h | 2 +- .../AzCore/AzCore/Console/ConsoleDataWrapper.h | 2 +- .../AzCore/Console/ConsoleDataWrapper.inl | 2 +- .../AzCore/AzCore/Console/ConsoleFunctor.cpp | 2 +- .../AzCore/AzCore/Console/ConsoleFunctor.h | 2 +- .../AzCore/AzCore/Console/ConsoleFunctor.inl | 2 +- .../AzCore/AzCore/Console/ConsoleTypeHelpers.h | 2 +- .../AzCore/Console/ConsoleTypeHelpers.inl | 2 +- .../Framework/AzCore/AzCore/Console/IConsole.h | 2 +- .../AzCore/AzCore/Console/IConsoleTypes.h | 2 +- Code/Framework/AzCore/AzCore/Console/ILogger.h | 2 +- .../AzCore/Console/LoggerSystemComponent.cpp | 2 +- .../AzCore/Console/LoggerSystemComponent.h | 2 +- .../AzCore/AzCore/Debug/AssetTracking.cpp | 2 +- .../AzCore/AzCore/Debug/AssetTracking.h | 2 +- .../AzCore/AzCore/Debug/AssetTrackingTypes.h | 2 +- .../AzCore/Debug/AssetTrackingTypesImpl.h | 2 +- .../AzCore/AzCore/Debug/EventTrace.cpp | 2 +- .../Framework/AzCore/AzCore/Debug/EventTrace.h | 2 +- .../AzCore/AzCore/Debug/EventTraceDriller.cpp | 2 +- .../AzCore/AzCore/Debug/EventTraceDriller.h | 2 +- .../AzCore/AzCore/Debug/EventTraceDrillerBus.h | 2 +- .../AzCore/AzCore/Debug/FrameProfiler.h | 2 +- .../AzCore/AzCore/Debug/FrameProfilerBus.h | 2 +- .../AzCore/Debug/FrameProfilerComponent.cpp | 2 +- .../AzCore/Debug/FrameProfilerComponent.h | 2 +- .../AzCore/AzCore/Debug/IEventLogger.h | 2 +- .../AzCore/Debug/LocalFileEventLogger.cpp | 2 +- .../AzCore/AzCore/Debug/LocalFileEventLogger.h | 2 +- .../AzCore/AzCore/Debug/ProfileModuleInit.cpp | 2 +- .../AzCore/AzCore/Debug/ProfileModuleInit.h | 2 +- .../Framework/AzCore/AzCore/Debug/Profiler.cpp | 2 +- Code/Framework/AzCore/AzCore/Debug/Profiler.h | 2 +- .../AzCore/AzCore/Debug/ProfilerBus.h | 2 +- .../AzCore/AzCore/Debug/ProfilerDriller.cpp | 2 +- .../AzCore/AzCore/Debug/ProfilerDriller.h | 2 +- .../AzCore/AzCore/Debug/ProfilerDrillerBus.h | 2 +- .../AzCore/AzCore/Debug/StackTracer.h | 2 +- Code/Framework/AzCore/AzCore/Debug/Timer.h | 2 +- Code/Framework/AzCore/AzCore/Debug/Trace.cpp | 2 +- Code/Framework/AzCore/AzCore/Debug/Trace.h | 2 +- .../AzCore/AzCore/Debug/TraceMessageBus.h | 2 +- .../AzCore/Debug/TraceMessagesDriller.cpp | 2 +- .../AzCore/AzCore/Debug/TraceMessagesDriller.h | 2 +- .../AzCore/Debug/TraceMessagesDrillerBus.h | 2 +- .../AzCore/AzCore/Debug/TraceReflection.cpp | 2 +- .../AzCore/AzCore/Debug/TraceReflection.h | 2 +- Code/Framework/AzCore/AzCore/Docs.h | 2 +- .../AzCore/AzCore/Driller/DefaultStringPool.h | 2 +- .../AzCore/AzCore/Driller/Driller.cpp | 2 +- Code/Framework/AzCore/AzCore/Driller/Driller.h | 2 +- .../AzCore/AzCore/Driller/DrillerBus.cpp | 2 +- .../AzCore/AzCore/Driller/DrillerBus.h | 2 +- .../AzCore/AzCore/Driller/DrillerRootHandler.h | 2 +- .../Framework/AzCore/AzCore/Driller/Stream.cpp | 2 +- Code/Framework/AzCore/AzCore/Driller/Stream.h | 2 +- Code/Framework/AzCore/AzCore/EBus/BusImpl.h | 2 +- Code/Framework/AzCore/AzCore/EBus/EBus.h | 2 +- .../AzCore/AzCore/EBus/EBusEnvironment.cpp | 2 +- .../Framework/AzCore/AzCore/EBus/Environment.h | 2 +- Code/Framework/AzCore/AzCore/EBus/Event.h | 2 +- Code/Framework/AzCore/AzCore/EBus/Event.inl | 2 +- .../EBus/EventSchedulerSystemComponent.cpp | 2 +- .../EBus/EventSchedulerSystemComponent.h | 2 +- .../AzCore/AzCore/EBus/IEventScheduler.h | 2 +- .../AzCore/AzCore/EBus/Internal/BusContainer.h | 2 +- .../AzCore/EBus/Internal/CallstackEntry.h | 2 +- .../AzCore/AzCore/EBus/Internal/Debug.h | 2 +- .../AzCore/AzCore/EBus/Internal/Handlers.h | 2 +- .../AzCore/EBus/Internal/StoragePolicies.h | 2 +- .../AzCore/AzCore/EBus/OrderedEvent.h | 2 +- .../AzCore/AzCore/EBus/OrderedEvent.inl | 2 +- Code/Framework/AzCore/AzCore/EBus/Policies.h | 2 +- Code/Framework/AzCore/AzCore/EBus/Results.h | 2 +- .../AzCore/AzCore/EBus/ScheduledEvent.cpp | 2 +- .../AzCore/AzCore/EBus/ScheduledEvent.h | 2 +- .../AzCore/EBus/ScheduledEventHandle.cpp | 2 +- .../AzCore/AzCore/EBus/ScheduledEventHandle.h | 2 +- .../AzCore/AzCore/IO/ByteContainerStream.h | 2 +- .../AzCore/AzCore/IO/CompressionBus.cpp | 2 +- .../AzCore/AzCore/IO/CompressionBus.h | 2 +- Code/Framework/AzCore/AzCore/IO/Compressor.cpp | 2 +- Code/Framework/AzCore/AzCore/IO/Compressor.h | 2 +- .../AzCore/AzCore/IO/CompressorStream.cpp | 2 +- .../AzCore/AzCore/IO/CompressorStream.h | 2 +- .../AzCore/AzCore/IO/CompressorZLib.cpp | 2 +- .../AzCore/AzCore/IO/CompressorZLib.h | 2 +- .../AzCore/AzCore/IO/CompressorZStd.cpp | 2 +- .../AzCore/AzCore/IO/CompressorZStd.h | 2 +- Code/Framework/AzCore/AzCore/IO/FileIO.cpp | 2 +- Code/Framework/AzCore/AzCore/IO/FileIO.h | 2 +- .../AzCore/AzCore/IO/FileIOEventBus.h | 2 +- .../AzCore/AzCore/IO/GenericStreams.cpp | 2 +- .../AzCore/AzCore/IO/GenericStreams.h | 2 +- Code/Framework/AzCore/AzCore/IO/IOUtils.cpp | 2 +- Code/Framework/AzCore/AzCore/IO/IOUtils.h | 2 +- Code/Framework/AzCore/AzCore/IO/IStreamer.h | 2 +- .../AzCore/AzCore/IO/IStreamerTypes.cpp | 2 +- .../AzCore/AzCore/IO/IStreamerTypes.h | 2 +- .../AzCore/AzCore/IO/IStreamerTypes.inl | 2 +- Code/Framework/AzCore/AzCore/IO/Path/Path.cpp | 2 +- Code/Framework/AzCore/AzCore/IO/Path/Path.h | 2 +- Code/Framework/AzCore/AzCore/IO/Path/Path.inl | 2 +- .../Framework/AzCore/AzCore/IO/Path/Path_fwd.h | 2 +- .../AzCore/AzCore/IO/Streamer/BlockCache.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/BlockCache.h | 2 +- .../AzCore/IO/Streamer/DedicatedCache.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/DedicatedCache.h | 2 +- .../AzCore/AzCore/IO/Streamer/FileRange.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/FileRange.h | 2 +- .../AzCore/AzCore/IO/Streamer/FileRequest.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/FileRequest.h | 2 +- .../AzCore/AzCore/IO/Streamer/FileRequest.inl | 2 +- .../IO/Streamer/FullFileDecompressor.cpp | 2 +- .../AzCore/IO/Streamer/FullFileDecompressor.h | 2 +- .../AzCore/AzCore/IO/Streamer/ReadSplitter.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/ReadSplitter.h | 2 +- .../AzCore/AzCore/IO/Streamer/RequestPath.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/RequestPath.h | 2 +- .../AzCore/AzCore/IO/Streamer/Scheduler.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/Scheduler.h | 2 +- .../AzCore/AzCore/IO/Streamer/Statistics.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/Statistics.h | 2 +- .../AzCore/AzCore/IO/Streamer/StorageDrive.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/StorageDrive.h | 2 +- .../AzCore/IO/Streamer/StreamStackEntry.cpp | 2 +- .../AzCore/IO/Streamer/StreamStackEntry.h | 2 +- .../AzCore/AzCore/IO/Streamer/Streamer.cpp | 2 +- .../AzCore/AzCore/IO/Streamer/Streamer.h | 2 +- .../AzCore/IO/Streamer/StreamerComponent.cpp | 2 +- .../AzCore/IO/Streamer/StreamerComponent.h | 2 +- .../IO/Streamer/StreamerConfiguration.cpp | 2 +- .../AzCore/IO/Streamer/StreamerConfiguration.h | 2 +- .../AzCore/IO/Streamer/StreamerContext.cpp | 2 +- .../AzCore/IO/Streamer/StreamerContext.h | 2 +- Code/Framework/AzCore/AzCore/IO/SystemFile.cpp | 2 +- Code/Framework/AzCore/AzCore/IO/SystemFile.h | 2 +- .../AzCore/AzCore/IO/TextStreamWriters.h | 2 +- .../AzCore/AzCore/IPC/SharedMemory.cpp | 2 +- .../Framework/AzCore/AzCore/IPC/SharedMemory.h | 2 +- .../AzCore/AzCore/IPC/SharedMemory_Common.h | 2 +- .../AzCore/AzCore/Interface/Interface.h | 2 +- Code/Framework/AzCore/AzCore/JSON/allocators.h | 2 +- .../AzCore/AzCore/JSON/cursorstreamwrapper.h | 2 +- Code/Framework/AzCore/AzCore/JSON/document.h | 2 +- .../AzCore/AzCore/JSON/encodedstream.h | 2 +- Code/Framework/AzCore/AzCore/JSON/encodings.h | 2 +- Code/Framework/AzCore/AzCore/JSON/error/en.h | 2 +- .../Framework/AzCore/AzCore/JSON/error/error.h | 2 +- .../AzCore/AzCore/JSON/filereadstream.h | 2 +- .../AzCore/AzCore/JSON/filewritestream.h | 2 +- Code/Framework/AzCore/AzCore/JSON/fwd.h | 2 +- .../AzCore/AzCore/JSON/istreamwrapper.h | 2 +- .../AzCore/AzCore/JSON/memorybuffer.h | 2 +- .../AzCore/AzCore/JSON/memorystream.h | 2 +- .../AzCore/AzCore/JSON/ostreamwrapper.h | 2 +- Code/Framework/AzCore/AzCore/JSON/pointer.h | 2 +- .../AzCore/AzCore/JSON/prettywriter.h | 2 +- Code/Framework/AzCore/AzCore/JSON/rapidjson.h | 2 +- Code/Framework/AzCore/AzCore/JSON/reader.h | 2 +- Code/Framework/AzCore/AzCore/JSON/schema.h | 2 +- Code/Framework/AzCore/AzCore/JSON/stream.h | 2 +- .../AzCore/AzCore/JSON/stringbuffer.h | 2 +- Code/Framework/AzCore/AzCore/JSON/writer.h | 2 +- Code/Framework/AzCore/AzCore/Jobs/Algorithms.h | 2 +- .../AzCore/Jobs/Internal/JobManagerBase.cpp | 2 +- .../AzCore/Jobs/Internal/JobManagerBase.h | 2 +- .../Jobs/Internal/JobManagerWorkStealing.cpp | 2 +- .../Jobs/Internal/JobManagerWorkStealing.h | 2 +- .../AzCore/AzCore/Jobs/Internal/JobNotify.h | 2 +- Code/Framework/AzCore/AzCore/Jobs/Job.h | 2 +- .../AzCore/AzCore/Jobs/JobCancelGroup.h | 2 +- .../AzCore/AzCore/Jobs/JobCompletion.h | 2 +- .../AzCore/AzCore/Jobs/JobCompletionSpin.h | 2 +- .../AzCore/AzCore/Jobs/JobContext.cpp | 2 +- Code/Framework/AzCore/AzCore/Jobs/JobContext.h | 2 +- Code/Framework/AzCore/AzCore/Jobs/JobEmpty.h | 2 +- .../Framework/AzCore/AzCore/Jobs/JobFunction.h | 2 +- .../AzCore/AzCore/Jobs/JobManager.cpp | 2 +- Code/Framework/AzCore/AzCore/Jobs/JobManager.h | 2 +- .../AzCore/AzCore/Jobs/JobManagerBus.h | 2 +- .../AzCore/AzCore/Jobs/JobManagerComponent.cpp | 2 +- .../AzCore/AzCore/Jobs/JobManagerComponent.h | 2 +- .../AzCore/AzCore/Jobs/JobManagerDesc.h | 2 +- .../AzCore/AzCore/Jobs/LegacyJobExecutor.h | 2 +- .../AzCore/AzCore/Jobs/MultipleDependentJob.h | 2 +- Code/Framework/AzCore/AzCore/Jobs/task_group.h | 2 +- Code/Framework/AzCore/AzCore/Math/Aabb.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Aabb.h | 2 +- Code/Framework/AzCore/AzCore/Math/Aabb.inl | 2 +- Code/Framework/AzCore/AzCore/Math/Color.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Color.h | 2 +- Code/Framework/AzCore/AzCore/Math/Color.inl | 2 +- .../AzCore/AzCore/Math/ColorSerializer.cpp | 2 +- .../AzCore/AzCore/Math/ColorSerializer.h | 2 +- Code/Framework/AzCore/AzCore/Math/Crc.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Crc.h | 2 +- Code/Framework/AzCore/AzCore/Math/Crc.inl | 2 +- Code/Framework/AzCore/AzCore/Math/DocsMath.h | 2 +- Code/Framework/AzCore/AzCore/Math/Frustum.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Frustum.h | 2 +- Code/Framework/AzCore/AzCore/Math/Frustum.inl | 2 +- .../AzCore/AzCore/Math/Geometry2DUtils.cpp | 2 +- .../AzCore/AzCore/Math/Geometry2DUtils.h | 2 +- Code/Framework/AzCore/AzCore/Math/Guid.h | 2 +- .../AzCore/AzCore/Math/Internal/MathTypes.h | 2 +- .../Math/Internal/SimdMathCommon_neon.inl | 2 +- .../Internal/SimdMathCommon_neonDouble.inl | 2 +- .../Math/Internal/SimdMathCommon_neonQuad.inl | 2 +- .../Math/Internal/SimdMathCommon_scalar.inl | 2 +- .../Math/Internal/SimdMathCommon_simd.inl | 2 +- .../Math/Internal/SimdMathCommon_sse.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec1_neon.inl | 2 +- .../Math/Internal/SimdMathVec1_scalar.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec1_sse.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec2_neon.inl | 2 +- .../Math/Internal/SimdMathVec2_scalar.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec2_sse.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec3_neon.inl | 2 +- .../Math/Internal/SimdMathVec3_scalar.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec3_sse.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec4_neon.inl | 2 +- .../Math/Internal/SimdMathVec4_scalar.inl | 2 +- .../AzCore/Math/Internal/SimdMathVec4_sse.inl | 2 +- .../AzCore/Math/Internal/VectorConversions.inl | 2 +- .../AzCore/Math/Internal/VertexContainer.inl | 2 +- .../AzCore/AzCore/Math/InterpolationSample.h | 2 +- .../AzCore/AzCore/Math/IntersectPoint.h | 2 +- .../AzCore/AzCore/Math/IntersectSegment.cpp | 2 +- .../AzCore/AzCore/Math/IntersectSegment.h | 2 +- .../AzCore/AzCore/Math/MathIntrinsics.h | 2 +- .../AzCore/Math/MathMatrixSerializer.cpp | 2 +- .../AzCore/AzCore/Math/MathMatrixSerializer.h | 2 +- .../AzCore/AzCore/Math/MathReflection.cpp | 2 +- .../AzCore/AzCore/Math/MathReflection.h | 2 +- .../AzCore/AzCore/Math/MathScriptHelpers.cpp | 2 +- .../AzCore/AzCore/Math/MathScriptHelpers.h | 2 +- .../Framework/AzCore/AzCore/Math/MathUtils.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/MathUtils.h | 2 +- .../AzCore/Math/MathVectorSerializer.cpp | 2 +- .../AzCore/AzCore/Math/MathVectorSerializer.h | 2 +- .../Framework/AzCore/AzCore/Math/Matrix3x3.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Matrix3x3.h | 2 +- .../Framework/AzCore/AzCore/Math/Matrix3x3.inl | 2 +- .../Framework/AzCore/AzCore/Math/Matrix3x4.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Matrix3x4.h | 2 +- .../Framework/AzCore/AzCore/Math/Matrix3x4.inl | 2 +- .../Framework/AzCore/AzCore/Math/Matrix4x4.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Matrix4x4.h | 2 +- .../Framework/AzCore/AzCore/Math/Matrix4x4.inl | 2 +- .../AzCore/AzCore/Math/MatrixUtils.cpp | 2 +- .../Framework/AzCore/AzCore/Math/MatrixUtils.h | 2 +- Code/Framework/AzCore/AzCore/Math/Obb.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Obb.h | 2 +- Code/Framework/AzCore/AzCore/Math/Obb.inl | 2 +- .../AzCore/AzCore/Math/PackedVector3.h | 2 +- Code/Framework/AzCore/AzCore/Math/Plane.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Plane.h | 2 +- Code/Framework/AzCore/AzCore/Math/Plane.inl | 2 +- .../AzCore/AzCore/Math/PolygonPrism.cpp | 2 +- .../AzCore/AzCore/Math/PolygonPrism.h | 2 +- .../AzCore/AzCore/Math/Quaternion.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Quaternion.h | 2 +- .../AzCore/AzCore/Math/Quaternion.inl | 2 +- Code/Framework/AzCore/AzCore/Math/Random.h | 2 +- Code/Framework/AzCore/AzCore/Math/Sfmt.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Sfmt.h | 2 +- .../AzCore/AzCore/Math/ShapeIntersection.h | 2 +- .../AzCore/AzCore/Math/ShapeIntersection.inl | 2 +- Code/Framework/AzCore/AzCore/Math/SimdMath.h | 2 +- .../AzCore/AzCore/Math/SimdMathVec1.h | 2 +- .../AzCore/AzCore/Math/SimdMathVec2.h | 2 +- .../AzCore/AzCore/Math/SimdMathVec3.h | 2 +- .../AzCore/AzCore/Math/SimdMathVec4.h | 2 +- Code/Framework/AzCore/AzCore/Math/Sphere.h | 2 +- Code/Framework/AzCore/AzCore/Math/Sphere.inl | 2 +- Code/Framework/AzCore/AzCore/Math/Spline.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Spline.h | 2 +- Code/Framework/AzCore/AzCore/Math/ToString.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/ToString.h | 2 +- .../Framework/AzCore/AzCore/Math/Transform.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Transform.h | 2 +- .../Framework/AzCore/AzCore/Math/Transform.inl | 2 +- .../AzCore/AzCore/Math/TransformSerializer.cpp | 2 +- .../AzCore/AzCore/Math/TransformSerializer.h | 2 +- Code/Framework/AzCore/AzCore/Math/Uuid.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Uuid.h | 2 +- .../AzCore/AzCore/Math/UuidSerializer.cpp | 2 +- .../AzCore/AzCore/Math/UuidSerializer.h | 2 +- Code/Framework/AzCore/AzCore/Math/Vector2.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Vector2.h | 2 +- Code/Framework/AzCore/AzCore/Math/Vector2.inl | 2 +- Code/Framework/AzCore/AzCore/Math/Vector3.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Vector3.h | 2 +- Code/Framework/AzCore/AzCore/Math/Vector3.inl | 2 +- Code/Framework/AzCore/AzCore/Math/Vector4.cpp | 2 +- Code/Framework/AzCore/AzCore/Math/Vector4.h | 2 +- Code/Framework/AzCore/AzCore/Math/Vector4.inl | 2 +- .../AzCore/AzCore/Math/VectorConversions.h | 2 +- .../AzCore/AzCore/Math/VertexContainer.cpp | 2 +- .../AzCore/AzCore/Math/VertexContainer.h | 2 +- .../AzCore/Math/VertexContainerInterface.h | 2 +- .../AzCore/AzCore/Memory/AllocationRecords.cpp | 2 +- .../AzCore/AzCore/Memory/AllocationRecords.h | 2 +- .../AzCore/AzCore/Memory/AllocatorBase.cpp | 2 +- .../AzCore/AzCore/Memory/AllocatorBase.h | 2 +- .../AzCore/AzCore/Memory/AllocatorManager.cpp | 2 +- .../AzCore/AzCore/Memory/AllocatorManager.h | 2 +- .../AzCore/Memory/AllocatorOverrideShim.cpp | 2 +- .../AzCore/Memory/AllocatorOverrideShim.h | 2 +- .../AzCore/AzCore/Memory/AllocatorScope.h | 2 +- .../AzCore/AzCore/Memory/AllocatorWrapper.h | 2 +- .../Memory/BestFitExternalMapAllocator.cpp | 2 +- .../Memory/BestFitExternalMapAllocator.h | 2 +- .../AzCore/Memory/BestFitExternalMapSchema.cpp | 2 +- .../AzCore/Memory/BestFitExternalMapSchema.h | 2 +- Code/Framework/AzCore/AzCore/Memory/Config.h | 2 +- .../AzCore/AzCore/Memory/HeapSchema.cpp | 2 +- .../AzCore/AzCore/Memory/HeapSchema.h | 2 +- .../AzCore/AzCore/Memory/HphaSchema.cpp | 2 +- .../AzCore/AzCore/Memory/HphaSchema.h | 2 +- .../AzCore/AzCore/Memory/IAllocator.cpp | 2 +- .../AzCore/AzCore/Memory/IAllocator.h | 2 +- .../AzCore/AzCore/Memory/MallocSchema.cpp | 2 +- .../AzCore/AzCore/Memory/MallocSchema.h | 2 +- Code/Framework/AzCore/AzCore/Memory/Memory.cpp | 2 +- Code/Framework/AzCore/AzCore/Memory/Memory.h | 2 +- .../AzCore/AzCore/Memory/MemoryComponent.cpp | 2 +- .../AzCore/AzCore/Memory/MemoryComponent.h | 2 +- .../AzCore/AzCore/Memory/MemoryDriller.cpp | 2 +- .../AzCore/AzCore/Memory/MemoryDriller.h | 2 +- .../AzCore/AzCore/Memory/MemoryDrillerBus.h | 2 +- .../AzCore/AzCore/Memory/NewAndDelete.inl | 2 +- .../AzCore/AzCore/Memory/OSAllocator.cpp | 2 +- .../AzCore/AzCore/Memory/OSAllocator.h | 2 +- .../Memory/OverrunDetectionAllocator.cpp | 2 +- .../AzCore/Memory/OverrunDetectionAllocator.h | 2 +- .../Memory/PlatformMemoryInstrumentation.h | 2 +- .../AzCore/AzCore/Memory/PoolAllocator.h | 2 +- .../AzCore/AzCore/Memory/PoolSchema.cpp | 2 +- .../AzCore/AzCore/Memory/PoolSchema.h | 2 +- .../AzCore/Memory/SimpleSchemaAllocator.h | 2 +- .../AzCore/AzCore/Memory/SystemAllocator.cpp | 2 +- .../AzCore/AzCore/Memory/SystemAllocator.h | 2 +- .../AzCore/AzCore/Memory/dlmalloc.inl | 2 +- .../AzCore/AzCore/Memory/nedmalloc.inl | 2 +- .../AzCore/Module/DynamicModuleHandle.cpp | 2 +- .../AzCore/AzCore/Module/DynamicModuleHandle.h | 2 +- .../AzCore/AzCore/Module/Environment.cpp | 2 +- .../AzCore/AzCore/Module/Environment.h | 2 +- .../Internal/ModuleManagerSearchPathTool.cpp | 2 +- .../Internal/ModuleManagerSearchPathTool.h | 2 +- Code/Framework/AzCore/AzCore/Module/Module.cpp | 2 +- Code/Framework/AzCore/AzCore/Module/Module.h | 2 +- .../AzCore/AzCore/Module/ModuleManager.cpp | 2 +- .../AzCore/AzCore/Module/ModuleManager.h | 2 +- .../AzCore/AzCore/Module/ModuleManagerBus.h | 2 +- .../AzCore/AzCore/Name/Internal/NameData.cpp | 2 +- .../AzCore/AzCore/Name/Internal/NameData.h | 2 +- Code/Framework/AzCore/AzCore/Name/Name.cpp | 2 +- Code/Framework/AzCore/AzCore/Name/Name.h | 2 +- .../AzCore/AzCore/Name/NameDictionary.cpp | 2 +- .../AzCore/AzCore/Name/NameDictionary.h | 2 +- .../AzCore/AzCore/Name/NameJsonSerializer.cpp | 2 +- .../AzCore/AzCore/Name/NameJsonSerializer.h | 2 +- .../AzCore/AzCore/Name/NameSerializer.cpp | 2 +- .../AzCore/AzCore/Name/NameSerializer.h | 2 +- .../AzCore/AzCore/NativeUI/NativeUIRequests.h | 2 +- .../NativeUI/NativeUISystemComponent.cpp | 2 +- .../AzCore/NativeUI/NativeUISystemComponent.h | 2 +- .../AzCore/Outcome/Internal/OutcomeImpl.h | 2 +- .../AzCore/Outcome/Internal/OutcomeStorage.h | 2 +- Code/Framework/AzCore/AzCore/Outcome/Outcome.h | 2 +- Code/Framework/AzCore/AzCore/Platform.cpp | 2 +- Code/Framework/AzCore/AzCore/Platform.h | 2 +- Code/Framework/AzCore/AzCore/PlatformDef.h | 2 +- .../AzCore/PlatformId/PlatformDefaults.cpp | 2 +- .../AzCore/PlatformId/PlatformDefaults.h | 2 +- .../AzCore/AzCore/PlatformId/PlatformId.cpp | 2 +- .../AzCore/AzCore/PlatformId/PlatformId.h | 2 +- Code/Framework/AzCore/AzCore/PlatformIncl.h | 2 +- .../AzCore/AzCore/PlatformRestrictedFileDef.h | 2 +- .../AzCore/AzCore/Preprocessor/CodeGen.h | 2 +- .../AzCore/Preprocessor/CodeGenBoilerplate.h | 2 +- .../AzCore/AzCore/Preprocessor/Enum.h | 2 +- .../AzCore/Preprocessor/EnumReflectUtils.h | 2 +- .../AzCore/AzCore/Preprocessor/Sequences.h | 2 +- .../AzCore/AzCore/RTTI/AttributeReader.h | 2 +- .../AzCore/RTTI/AzStdOnDemandPrettyName.inl | 2 +- .../AzCore/RTTI/AzStdOnDemandReflection.inl | 2 +- .../AzStdOnDemandReflectionLuaFunctions.inl | 2 +- .../AzCore/RTTI/AzStdReflectionComponent.cpp | 2 +- .../AzCore/RTTI/AzStdReflectionComponent.h | 2 +- .../AzCore/AzCore/RTTI/BehaviorContext.cpp | 2 +- .../AzCore/AzCore/RTTI/BehaviorContext.h | 2 +- .../AzCore/RTTI/BehaviorContextAttributes.inl | 2 +- .../AzCore/RTTI/BehaviorContextUtilities.cpp | 2 +- .../AzCore/RTTI/BehaviorContextUtilities.h | 2 +- .../AzCore/AzCore/RTTI/BehaviorObjectSignals.h | 2 +- Code/Framework/AzCore/AzCore/RTTI/RTTI.h | 2 +- .../AzCore/AzCore/RTTI/ReflectContext.cpp | 2 +- .../AzCore/AzCore/RTTI/ReflectContext.h | 2 +- .../AzCore/AzCore/RTTI/ReflectionManager.cpp | 2 +- .../AzCore/AzCore/RTTI/ReflectionManager.h | 2 +- Code/Framework/AzCore/AzCore/RTTI/TypeInfo.h | 2 +- .../AzCore/AzCore/RTTI/TypeSafeIntegral.h | 2 +- .../AzCore/AzCore/Script/ScriptAsset.cpp | 2 +- .../AzCore/AzCore/Script/ScriptAsset.h | 2 +- .../AzCore/AzCore/Script/ScriptContext.cpp | 2 +- .../AzCore/AzCore/Script/ScriptContext.h | 2 +- .../AzCore/Script/ScriptContextAttributes.h | 2 +- .../AzCore/Script/ScriptContextDebug.cpp | 2 +- .../AzCore/AzCore/Script/ScriptContextDebug.h | 2 +- .../AzCore/AzCore/Script/ScriptDebug.cpp | 2 +- .../AzCore/AzCore/Script/ScriptDebug.h | 2 +- .../AzCore/AzCore/Script/ScriptProperty.cpp | 2 +- .../AzCore/AzCore/Script/ScriptProperty.h | 2 +- .../AzCore/Script/ScriptPropertyTable.cpp | 2 +- .../AzCore/AzCore/Script/ScriptPropertyTable.h | 2 +- .../AzCore/Script/ScriptPropertyWatcherBus.h | 2 +- .../AzCore/AzCore/Script/ScriptSystemBus.h | 2 +- .../AzCore/Script/ScriptSystemComponent.cpp | 2 +- .../AzCore/Script/ScriptSystemComponent.h | 2 +- .../AzCore/AzCore/Script/ScriptTimePoint.cpp | 2 +- .../AzCore/AzCore/Script/ScriptTimePoint.h | 2 +- Code/Framework/AzCore/AzCore/Script/lua/lua.h | 2 +- .../ScriptCanvas/ScriptCanvasAttributes.h | 2 +- .../ScriptCanvas/ScriptCanvasOnDemandNames.cpp | 2 +- .../ScriptCanvas/ScriptCanvasOnDemandNames.h | 2 +- .../Serialization/AZStdAnyDataContainer.inl | 2 +- .../AzCore/Serialization/AZStdContainers.inl | 2 +- .../AzCore/AzCore/Serialization/DataOverlay.h | 2 +- .../Serialization/DataOverlayInstanceMsgs.h | 2 +- .../Serialization/DataOverlayProviderMsgs.cpp | 2 +- .../Serialization/DataOverlayProviderMsgs.h | 2 +- .../AzCore/AzCore/Serialization/DataPatch.cpp | 2 +- .../AzCore/AzCore/Serialization/DataPatch.h | 2 +- .../AzCore/AzCore/Serialization/DataPatchBus.h | 2 +- .../Serialization/DataPatchUpgradeManager.cpp | 2 +- .../Serialization/DataPatchUpgradeManager.h | 2 +- .../Serialization/DynamicSerializableField.cpp | 2 +- .../Serialization/DynamicSerializableField.h | 2 +- .../AzCore/Serialization/EditContext.cpp | 2 +- .../AzCore/AzCore/Serialization/EditContext.h | 2 +- .../AzCore/Serialization/EditContext.inl | 2 +- .../Serialization/EditContextConstants.inl | 2 +- .../AzCore/AzCore/Serialization/IdUtils.h | 2 +- .../AzCore/AzCore/Serialization/IdUtils.inl | 2 +- .../Serialization/Json/ArraySerializer.cpp | 2 +- .../Serialization/Json/ArraySerializer.h | 2 +- .../Serialization/Json/BaseJsonSerializer.cpp | 2 +- .../Serialization/Json/BaseJsonSerializer.h | 2 +- .../Json/BasicContainerSerializer.cpp | 2 +- .../Json/BasicContainerSerializer.h | 2 +- .../Serialization/Json/BoolSerializer.cpp | 2 +- .../AzCore/Serialization/Json/BoolSerializer.h | 2 +- .../Json/ByteStreamSerializer.cpp | 2 +- .../Serialization/Json/ByteStreamSerializer.h | 2 +- .../AzCore/Serialization/Json/CastingHelpers.h | 2 +- .../Serialization/Json/DoubleSerializer.cpp | 2 +- .../Serialization/Json/DoubleSerializer.h | 2 +- .../Serialization/Json/IntSerializer.cpp | 2 +- .../AzCore/Serialization/Json/IntSerializer.h | 2 +- .../Serialization/Json/JsonDeserializer.cpp | 2 +- .../Serialization/Json/JsonDeserializer.h | 2 +- .../AzCore/Serialization/Json/JsonMerger.cpp | 2 +- .../AzCore/Serialization/Json/JsonMerger.h | 2 +- .../Serialization/Json/JsonSerialization.cpp | 2 +- .../Serialization/Json/JsonSerialization.h | 2 +- .../Json/JsonSerializationMetadata.h | 2 +- .../Json/JsonSerializationMetadata.inl | 2 +- .../Json/JsonSerializationResult.cpp | 2 +- .../Json/JsonSerializationResult.h | 2 +- .../Json/JsonSerializationSettings.h | 2 +- .../Serialization/Json/JsonSerializer.cpp | 2 +- .../AzCore/Serialization/Json/JsonSerializer.h | 2 +- .../Json/JsonStringConversionUtils.h | 2 +- .../Serialization/Json/JsonSystemComponent.cpp | 2 +- .../Serialization/Json/JsonSystemComponent.h | 2 +- .../Serialization/Json/MapSerializer.cpp | 2 +- .../AzCore/Serialization/Json/MapSerializer.h | 2 +- .../Serialization/Json/RegistrationContext.cpp | 2 +- .../Serialization/Json/RegistrationContext.h | 2 +- .../Json/SmartPointerSerializer.cpp | 2 +- .../Json/SmartPointerSerializer.h | 2 +- .../Serialization/Json/StackedString.cpp | 2 +- .../AzCore/Serialization/Json/StackedString.h | 2 +- .../Serialization/Json/StringSerializer.cpp | 2 +- .../Serialization/Json/StringSerializer.h | 2 +- .../Serialization/Json/TupleSerializer.cpp | 2 +- .../Serialization/Json/TupleSerializer.h | 2 +- .../Json/UnorderedSetSerializer.cpp | 2 +- .../Json/UnorderedSetSerializer.h | 2 +- .../Json/UnsupportedTypesSerializer.cpp | 2 +- .../Json/UnsupportedTypesSerializer.h | 2 +- .../AzCore/Serialization/ObjectStream.cpp | 2 +- .../AzCore/AzCore/Serialization/ObjectStream.h | 2 +- .../Serialization/SerializationUtils.cpp | 2 +- .../AzCore/Serialization/SerializeContext.cpp | 2 +- .../AzCore/Serialization/SerializeContext.h | 2 +- .../Serialization/SerializeContextEnum.cpp | 2 +- .../Serialization/SerializeContextEnum.inl | 2 +- .../AzCore/AzCore/Serialization/Utils.h | 2 +- .../Serialization/std/VariantReflection.inl | 2 +- .../AzCore/AzCore/Settings/CommandLine.cpp | 2 +- .../AzCore/AzCore/Settings/CommandLine.h | 2 +- .../AzCore/Settings/SettingsRegistry.cpp | 2 +- .../AzCore/AzCore/Settings/SettingsRegistry.h | 2 +- .../Settings/SettingsRegistryConsoleUtils.cpp | 2 +- .../Settings/SettingsRegistryConsoleUtils.h | 2 +- .../AzCore/Settings/SettingsRegistryImpl.cpp | 2 +- .../AzCore/Settings/SettingsRegistryImpl.h | 2 +- .../Settings/SettingsRegistryMergeUtils.cpp | 2 +- .../Settings/SettingsRegistryMergeUtils.h | 2 +- .../Settings/SettingsRegistryScriptUtils.cpp | 2 +- .../Settings/SettingsRegistryScriptUtils.h | 2 +- .../AzCore/AzCore/Slice/SliceAsset.cpp | 2 +- .../Framework/AzCore/AzCore/Slice/SliceAsset.h | 2 +- .../AzCore/AzCore/Slice/SliceAssetHandler.cpp | 2 +- .../AzCore/AzCore/Slice/SliceAssetHandler.h | 2 +- Code/Framework/AzCore/AzCore/Slice/SliceBus.h | 2 +- .../AzCore/AzCore/Slice/SliceComponent.cpp | 2 +- .../AzCore/AzCore/Slice/SliceComponent.h | 2 +- .../AzCore/AzCore/Slice/SliceMetadataInfoBus.h | 2 +- .../Slice/SliceMetadataInfoComponent.cpp | 2 +- .../AzCore/Slice/SliceMetadataInfoComponent.h | 2 +- .../AzCore/Slice/SliceSystemComponent.cpp | 2 +- .../AzCore/AzCore/Slice/SliceSystemComponent.h | 2 +- .../AzCore/AzCore/Socket/AzSocket.cpp | 2 +- Code/Framework/AzCore/AzCore/Socket/AzSocket.h | 2 +- .../AzCore/AzCore/Socket/AzSocket_fwd.h | 2 +- Code/Framework/AzCore/AzCore/State/HSM.cpp | 2 +- Code/Framework/AzCore/AzCore/State/HSM.h | 2 +- .../AzCore/Statistics/NamedRunningStatistic.h | 2 +- .../AzCore/Statistics/RunningStatistic.cpp | 2 +- .../AzCore/Statistics/RunningStatistic.h | 2 +- .../Statistics/RunningStatisticsManager.cpp | 2 +- .../AzCore/Statistics/StatisticalProfiler.h | 2 +- .../Statistics/StatisticalProfilerProxy.h | 2 +- ...StatisticalProfilerProxySystemComponent.cpp | 2 +- .../StatisticalProfilerProxySystemComponent.h | 2 +- .../AzCore/Statistics/StatisticsManager.h | 2 +- .../Statistics/TimeDataStatisticsManager.cpp | 2 +- .../Statistics/TimeDataStatisticsManager.h | 2 +- .../AzCore/AzCore/StringFunc/StringFunc.cpp | 2 +- .../AzCore/AzCore/StringFunc/StringFunc.h | 2 +- .../AzCore/AzCore/Threading/ThreadSafeDeque.h | 2 +- .../AzCore/Threading/ThreadSafeDeque.inl | 2 +- .../AzCore/AzCore/Threading/ThreadSafeObject.h | 2 +- .../AzCore/Threading/ThreadSafeObject.inl | 2 +- Code/Framework/AzCore/AzCore/Time/ITime.h | 2 +- .../AzCore/AzCore/Time/TimeSystemComponent.cpp | 2 +- .../AzCore/AzCore/Time/TimeSystemComponent.h | 2 +- .../UnitTest/MockComponentApplication.cpp | 2 +- .../AzCore/UnitTest/MockComponentApplication.h | 2 +- .../AzCore/UnitTest/Mocks/MockFileIOBase.h | 2 +- .../UnitTest/Mocks/MockSettingsRegistry.h | 2 +- .../AzCore/AzCore/UnitTest/TestTypes.h | 2 +- .../AzCore/AzCore/UnitTest/UnitTest.h | 2 +- .../AzCore/UserSettings/UserSettings.cpp | 2 +- .../AzCore/AzCore/UserSettings/UserSettings.h | 2 +- .../UserSettings/UserSettingsComponent.cpp | 2 +- .../UserSettings/UserSettingsComponent.h | 2 +- .../UserSettings/UserSettingsProvider.cpp | 2 +- .../AzCore/UserSettings/UserSettingsProvider.h | 2 +- .../Framework/AzCore/AzCore/Utils/TypeHash.cpp | 2 +- Code/Framework/AzCore/AzCore/Utils/TypeHash.h | 2 +- Code/Framework/AzCore/AzCore/Utils/Utils.cpp | 2 +- Code/Framework/AzCore/AzCore/Utils/Utils.h | 2 +- Code/Framework/AzCore/AzCore/XML/rapidxml.h | 2 +- .../AzCore/AzCore/XML/rapidxml_iterators.h | 2 +- .../AzCore/AzCore/XML/rapidxml_print.h | 2 +- .../AzCore/AzCore/XML/rapidxml_utils.h | 2 +- .../Framework/AzCore/AzCore/azcore_files.cmake | 2 +- .../AzCore/AzCore/azcoretestcommon_files.cmake | 2 +- Code/Framework/AzCore/AzCore/base.h | 2 +- Code/Framework/AzCore/AzCore/std/algorithm.h | 2 +- Code/Framework/AzCore/AzCore/std/allocator.cpp | 2 +- Code/Framework/AzCore/AzCore/std/allocator.h | 2 +- .../AzCore/AzCore/std/allocator_ref.h | 2 +- .../AzCore/AzCore/std/allocator_stack.h | 2 +- .../AzCore/AzCore/std/allocator_static.h | 2 +- .../AzCore/AzCore/std/allocator_traits.h | 2 +- Code/Framework/AzCore/AzCore/std/any.h | 2 +- .../AzCore/AzCore/std/azstd_files.cmake | 2 +- Code/Framework/AzCore/AzCore/std/base.h | 2 +- Code/Framework/AzCore/AzCore/std/bind/bind.h | 2 +- Code/Framework/AzCore/AzCore/std/bind/mem_fn.h | 2 +- .../AzCore/AzCore/std/chrono/chrono.h | 2 +- .../AzCore/AzCore/std/chrono/clocks.h | 2 +- .../Framework/AzCore/AzCore/std/chrono/types.h | 2 +- Code/Framework/AzCore/AzCore/std/config.h | 2 +- .../AzCore/AzCore/std/containers/array.h | 2 +- .../AzCore/AzCore/std/containers/bitset.h | 2 +- .../AzCore/std/containers/compressed_pair.h | 2 +- .../AzCore/std/containers/compressed_pair.inl | 2 +- .../AzCore/AzCore/std/containers/deque.h | 2 +- .../AzCore/std/containers/fixed_forward_list.h | 2 +- .../AzCore/AzCore/std/containers/fixed_list.h | 2 +- .../std/containers/fixed_unordered_map.h | 2 +- .../std/containers/fixed_unordered_set.h | 2 +- .../AzCore/std/containers/fixed_vector.h | 2 +- .../AzCore/std/containers/forward_list.h | 2 +- .../AzCore/std/containers/intrusive_list.h | 2 +- .../AzCore/std/containers/intrusive_set.h | 2 +- .../AzCore/std/containers/intrusive_slist.h | 2 +- .../AzCore/AzCore/std/containers/list.h | 2 +- .../AzCore/AzCore/std/containers/map.h | 2 +- .../AzCore/AzCore/std/containers/node_handle.h | 2 +- .../AzCore/AzCore/std/containers/queue.h | 2 +- .../AzCore/AzCore/std/containers/rbtree.h | 2 +- .../AzCore/AzCore/std/containers/ring_buffer.h | 2 +- .../AzCore/AzCore/std/containers/set.h | 2 +- .../AzCore/AzCore/std/containers/stack.h | 2 +- .../AzCore/std/containers/unordered_map.h | 2 +- .../AzCore/std/containers/unordered_set.h | 2 +- .../AzCore/AzCore/std/containers/variant.h | 2 +- .../AzCore/AzCore/std/containers/variant.inl | 2 +- .../AzCore/std/containers/variant_impl.h | 2 +- .../AzCore/AzCore/std/containers/vector.h | 2 +- .../AzCore/AzCore/std/createdestroy.h | 2 +- .../AzCore/AzCore/std/delegate/delegate.h | 2 +- .../AzCore/AzCore/std/delegate/delegate_bind.h | 2 +- .../AzCore/AzCore/std/delegate/delegate_fwd.h | 2 +- Code/Framework/AzCore/AzCore/std/docs.h | 2 +- Code/Framework/AzCore/AzCore/std/exceptions.h | 2 +- .../AzCore/AzCore/std/function/function_base.h | 2 +- .../AzCore/AzCore/std/function/function_fwd.h | 2 +- .../AzCore/std/function/function_template.h | 2 +- .../AzCore/AzCore/std/function/identity.h | 2 +- .../AzCore/AzCore/std/function/invoke.h | 2 +- Code/Framework/AzCore/AzCore/std/functional.h | 2 +- .../AzCore/AzCore/std/functional_basic.h | 2 +- Code/Framework/AzCore/AzCore/std/hash.cpp | 2 +- Code/Framework/AzCore/AzCore/std/hash.h | 2 +- Code/Framework/AzCore/AzCore/std/hash_table.h | 2 +- Code/Framework/AzCore/AzCore/std/iterator.h | 2 +- Code/Framework/AzCore/AzCore/std/limits.h | 2 +- Code/Framework/AzCore/AzCore/std/math.h | 2 +- Code/Framework/AzCore/AzCore/std/numeric.h | 2 +- Code/Framework/AzCore/AzCore/std/optional.h | 2 +- .../std/parallel/allocator_concurrent_static.h | 2 +- .../AzCore/AzCore/std/parallel/atomic.h | 2 +- .../AzCore/std/parallel/binary_semaphore.h | 2 +- .../AzCore/AzCore/std/parallel/combinable.h | 2 +- .../AzCore/std/parallel/condition_variable.h | 2 +- .../AzCore/std/parallel/conditional_variable.h | 2 +- .../AzCore/AzCore/std/parallel/config.h | 2 +- .../concurrent_fixed_unordered_map.h | 2 +- .../concurrent_fixed_unordered_set.h | 2 +- .../containers/concurrent_unordered_map.h | 2 +- .../containers/concurrent_unordered_set.h | 2 +- .../parallel/containers/concurrent_vector.h | 2 +- .../internal/concurrent_hash_table.h | 2 +- .../containers/lock_free_intrusive_stack.h | 2 +- .../lock_free_intrusive_stamped_stack.h | 2 +- .../std/parallel/containers/lock_free_queue.h | 2 +- .../std/parallel/containers/lock_free_stack.h | 2 +- .../containers/lock_free_stamped_queue.h | 2 +- .../containers/lock_free_stamped_stack.h | 2 +- .../AzCore/std/parallel/exponential_backoff.h | 2 +- .../AzCore/AzCore/std/parallel/lock.h | 2 +- .../AzCore/AzCore/std/parallel/mutex.h | 2 +- .../AzCore/AzCore/std/parallel/scoped_lock.h | 2 +- .../AzCore/AzCore/std/parallel/semaphore.h | 2 +- .../AzCore/AzCore/std/parallel/shared_mutex.h | 2 +- .../AzCore/std/parallel/shared_spin_mutex.h | 2 +- .../AzCore/AzCore/std/parallel/spin_mutex.h | 2 +- .../AzCore/AzCore/std/parallel/thread.h | 2 +- .../AzCore/AzCore/std/parallel/threadbus.h | 2 +- Code/Framework/AzCore/AzCore/std/ratio.h | 2 +- .../AzCore/AzCore/std/reference_wrapper.h | 2 +- .../AzCore/std/smart_ptr/checked_delete.h | 2 +- .../std/smart_ptr/enable_shared_from_this.h | 2 +- .../std/smart_ptr/enable_shared_from_this2.h | 2 +- .../AzCore/std/smart_ptr/intrusive_base.h | 2 +- .../AzCore/std/smart_ptr/intrusive_ptr.h | 2 +- .../AzCore/std/smart_ptr/intrusive_refcount.h | 2 +- .../AzCore/AzCore/std/smart_ptr/make_shared.h | 2 +- .../AzCore/AzCore/std/smart_ptr/scoped_array.h | 2 +- .../AzCore/AzCore/std/smart_ptr/scoped_ptr.h | 2 +- .../AzCore/AzCore/std/smart_ptr/shared_array.h | 2 +- .../AzCore/AzCore/std/smart_ptr/shared_count.h | 2 +- .../AzCore/AzCore/std/smart_ptr/shared_ptr.h | 2 +- .../AzCore/std/smart_ptr/sp_convertible.h | 2 +- .../AzCore/AzCore/std/smart_ptr/unique_ptr.h | 2 +- .../AzCore/AzCore/std/smart_ptr/weak_ptr.h | 2 +- Code/Framework/AzCore/AzCore/std/sort.h | 2 +- .../AzCore/AzCore/std/string/alphanum.cpp | 2 +- .../AzCore/AzCore/std/string/alphanum.h | 2 +- .../AzCore/AzCore/std/string/conversions.h | 2 +- .../AzCore/AzCore/std/string/fixed_string.h | 2 +- .../AzCore/AzCore/std/string/fixed_string.inl | 2 +- .../AzCore/AzCore/std/string/memorytoascii.cpp | 2 +- .../AzCore/AzCore/std/string/memorytoascii.h | 2 +- .../AzCore/AzCore/std/string/osstring.h | 2 +- .../AzCore/AzCore/std/string/regex.cpp | 2 +- .../Framework/AzCore/AzCore/std/string/regex.h | 2 +- .../AzCore/AzCore/std/string/string.cpp | 2 +- .../AzCore/AzCore/std/string/string.h | 2 +- .../AzCore/AzCore/std/string/string_view.h | 2 +- .../AzCore/AzCore/std/string/tokenize.h | 2 +- .../AzCore/AzCore/std/string/wildcard.h | 2 +- Code/Framework/AzCore/AzCore/std/time.h | 2 +- Code/Framework/AzCore/AzCore/std/tuple.h | 2 +- .../AzCore/AzCore/std/typetraits/add_const.h | 2 +- .../AzCore/AzCore/std/typetraits/add_cv.h | 2 +- .../AzCore/AzCore/std/typetraits/add_pointer.h | 2 +- .../AzCore/std/typetraits/add_reference.h | 2 +- .../AzCore/std/typetraits/add_volatile.h | 2 +- .../AzCore/std/typetraits/aligned_storage.h | 2 +- .../AzCore/std/typetraits/alignment_of.h | 2 +- .../AzCore/AzCore/std/typetraits/common_type.h | 2 +- .../AzCore/AzCore/std/typetraits/conditional.h | 2 +- .../AzCore/AzCore/std/typetraits/config.h | 2 +- .../AzCore/AzCore/std/typetraits/conjunction.h | 2 +- .../AzCore/AzCore/std/typetraits/decay.h | 2 +- .../AzCore/AzCore/std/typetraits/disjunction.h | 2 +- .../AzCore/AzCore/std/typetraits/extent.h | 2 +- .../AzCore/std/typetraits/function_traits.h | 2 +- .../std/typetraits/has_member_function.h | 2 +- .../std/typetraits/has_virtual_destructor.h | 2 +- .../AzCore/std/typetraits/integral_constant.h | 2 +- .../internal/is_template_copy_constructible.h | 2 +- .../typetraits/internal/type_sequence_traits.h | 2 +- .../AzCore/AzCore/std/typetraits/intrinsics.h | 2 +- .../AzCore/std/typetraits/invoke_traits.h | 2 +- .../AzCore/AzCore/std/typetraits/is_abstract.h | 2 +- .../AzCore/std/typetraits/is_arithmetic.h | 2 +- .../AzCore/AzCore/std/typetraits/is_array.h | 2 +- .../AzCore/std/typetraits/is_assignable.h | 2 +- .../AzCore/AzCore/std/typetraits/is_base_of.h | 2 +- .../AzCore/AzCore/std/typetraits/is_class.h | 2 +- .../AzCore/AzCore/std/typetraits/is_compound.h | 2 +- .../AzCore/AzCore/std/typetraits/is_const.h | 2 +- .../AzCore/std/typetraits/is_constructible.h | 2 +- .../AzCore/std/typetraits/is_convertible.h | 2 +- .../AzCore/std/typetraits/is_destructible.h | 2 +- .../AzCore/AzCore/std/typetraits/is_empty.h | 2 +- .../AzCore/AzCore/std/typetraits/is_enum.h | 2 +- .../AzCore/std/typetraits/is_floating_point.h | 2 +- .../AzCore/AzCore/std/typetraits/is_function.h | 2 +- .../AzCore/std/typetraits/is_fundamental.h | 2 +- .../AzCore/AzCore/std/typetraits/is_integral.h | 2 +- .../std/typetraits/is_lvalue_reference.h | 2 +- .../typetraits/is_member_function_pointer.h | 2 +- .../std/typetraits/is_member_object_pointer.h | 2 +- .../AzCore/std/typetraits/is_member_pointer.h | 2 +- .../AzCore/AzCore/std/typetraits/is_object.h | 2 +- .../AzCore/AzCore/std/typetraits/is_pod.h | 2 +- .../AzCore/AzCore/std/typetraits/is_pointer.h | 2 +- .../AzCore/std/typetraits/is_polymorphic.h | 2 +- .../AzCore/std/typetraits/is_reference.h | 2 +- .../std/typetraits/is_rvalue_reference.h | 2 +- .../AzCore/AzCore/std/typetraits/is_same.h | 2 +- .../AzCore/AzCore/std/typetraits/is_scalar.h | 2 +- .../AzCore/AzCore/std/typetraits/is_signed.h | 2 +- .../AzCore/std/typetraits/is_swappable.h | 2 +- .../AzCore/AzCore/std/typetraits/is_trivial.h | 2 +- .../std/typetraits/is_trivially_copyable.h | 2 +- .../AzCore/AzCore/std/typetraits/is_union.h | 2 +- .../AzCore/AzCore/std/typetraits/is_unsigned.h | 2 +- .../AzCore/AzCore/std/typetraits/is_void.h | 2 +- .../AzCore/AzCore/std/typetraits/is_volatile.h | 2 +- .../AzCore/AzCore/std/typetraits/negation.h | 2 +- .../AzCore/AzCore/std/typetraits/rank.h | 2 +- .../AzCore/std/typetraits/remove_all_extents.h | 2 +- .../AzCore/std/typetraits/remove_const.h | 2 +- .../AzCore/AzCore/std/typetraits/remove_cv.h | 2 +- .../AzCore/std/typetraits/remove_cvref.h | 2 +- .../AzCore/std/typetraits/remove_extent.h | 2 +- .../AzCore/std/typetraits/remove_pointer.h | 2 +- .../AzCore/std/typetraits/remove_reference.h | 2 +- .../AzCore/std/typetraits/remove_volatile.h | 2 +- .../AzCore/std/typetraits/static_storage.h | 2 +- .../AzCore/std/typetraits/tuple_traits.h | 2 +- .../AzCore/AzCore/std/typetraits/type_id.h | 2 +- .../AzCore/std/typetraits/type_identity.h | 2 +- .../AzCore/AzCore/std/typetraits/typetraits.h | 2 +- .../AzCore/std/typetraits/underlying_type.h | 2 +- .../AzCore/AzCore/std/typetraits/void_t.h | 2 +- Code/Framework/AzCore/AzCore/std/utils.h | 2 +- Code/Framework/AzCore/CMakeLists.txt | 2 +- .../Android/AzCore/AzCore_Traits_Android.h | 2 +- .../Android/AzCore/AzCore_Traits_Platform.h | 2 +- .../Android/AzCore/Debug/Trace_Android.cpp | 2 +- .../IO/Streamer/StreamerContext_Platform.h | 2 +- .../Android/AzCore/IO/SystemFile_Android.cpp | 2 +- .../Android/AzCore/IO/SystemFile_Android.h | 2 +- .../Android/AzCore/IO/SystemFile_Platform.h | 2 +- .../Android/AzCore/IPC/SharedMemory_Platform.h | 2 +- .../AzCore/Math/Internal/MathTypes_Android.h | 2 +- .../AzCore/Math/Internal/MathTypes_Platform.h | 2 +- .../Android/AzCore/Math/Random_Platform.h | 2 +- .../AzCore/Memory/HeapSchema_Android.cpp | 2 +- .../AzCore/Memory/OSAllocator_Platform.h | 2 +- .../OverrunDetectionAllocator_Platform.h | 2 +- .../Module/DynamicModuleHandle_Android.cpp | 2 +- .../NativeUISystemComponent_Android.cpp | 2 +- .../AzCore/PlatformId/PlatformId_Android.h | 2 +- .../AzCore/PlatformId/PlatformId_Platform.h | 2 +- .../Android/AzCore/PlatformIncl_Platform.h | 2 +- .../Android/AzCore/Socket/AzSocket_Platform.h | 2 +- .../AzCore/Socket/AzSocket_fwd_Platform.h | 2 +- .../Android/AzCore/Utils/Utils_Android.cpp | 2 +- .../Platform/Android/AzCore/base_Android.h | 2 +- .../Platform/Android/AzCore/base_Platform.h | 2 +- .../AzCore/std/parallel/config_Android.h | 2 +- .../AzCore/std/parallel/config_Platform.h | 2 +- .../internal/condition_variable_Platform.h | 2 +- .../std/parallel/internal/mutex_Platform.h | 2 +- .../std/parallel/internal/semaphore_Platform.h | 2 +- .../std/parallel/internal/thread_Android.cpp | 2 +- .../std/parallel/internal/thread_Platform.h | 2 +- .../std/string/fixed_string_Platform.inl | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../profile_telemetry_platform_android.cmake | 2 +- .../IO/Streamer/StreamerContext_Platform.h | 2 +- .../Common/Apple/AzCore/Debug/Trace_Apple.cpp | 2 +- .../Apple/AzCore/IO/SystemFile_Apple.cpp | 2 +- .../Common/Apple/AzCore/IO/SystemFile_Apple.h | 2 +- .../Apple/AzCore/Memory/OSAllocator_Apple.h | 2 +- .../Module/DynamicModuleHandle_Apple.cpp | 2 +- .../Common/Apple/AzCore/Utils/Utils_Apple.cpp | 2 +- .../Apple/AzCore/std/parallel/config_Apple.h | 2 +- .../std/parallel/internal/semaphore_Apple.h | 2 +- .../std/parallel/internal/thread_Apple.cpp | 2 +- .../AzCore/std/parallel/internal/time_Apple.h | 2 +- .../Common/Apple/AzCore/std/time_Apple.cpp | 2 +- .../AzCore/std/string/fixed_string_Clang.inl | 2 +- .../Streamer/StreamerConfiguration_Default.cpp | 2 +- .../IO/Streamer/StreamerContext_Default.cpp | 2 +- .../IO/Streamer/StreamerContext_Default.h | 2 +- .../ModuleManagerSearchPathTool_Default.cpp | 2 +- .../AzCore/std/string/fixed_string_MSVC.inl | 2 +- .../Common/RadTelemetry/ProfileTelemetry.h | 2 +- .../Common/RadTelemetry/ProfileTelemetryBus.h | 2 +- .../AzCore/Debug/StackTracer_Unimplemented.cpp | 2 +- .../AzCore/IPC/SharedMemory_Unimplemented.h | 2 +- .../OverrunDetectionAllocator_Unimplemented.h | 2 +- .../DynamicModuleHandle_Unimplemented.cpp | 2 +- .../NativeUISystemComponent_Unimplemented.cpp | 2 +- .../AzCore/PlatformIncl_Unimplemented.h | 2 +- .../AzCore/Utils/Utils_Unimplemented.cpp | 2 +- .../AzCore/Debug/StackTracer_UnixLike.cpp | 2 +- .../UnixLike/AzCore/Debug/Trace_UnixLike.cpp | 2 +- .../IO/Internal/SystemFileUtils_UnixLike.cpp | 2 +- .../IO/Internal/SystemFileUtils_UnixLike.h | 2 +- .../UnixLike/AzCore/IO/SystemFile_UnixLike.cpp | 2 +- .../UnixLike/AzCore/IO/SystemFile_UnixLike.h | 2 +- .../UnixLike/AzCore/Math/Random_UnixLike.cpp | 2 +- .../UnixLike/AzCore/Math/Random_UnixLike.h | 2 +- .../AzCore/Memory/OSAllocator_UnixLike.h | 2 +- .../Module/DynamicModuleHandle_UnixLike.cpp | 2 +- .../UnixLike/AzCore/PlatformIncl_UnixLike.h | 2 +- .../UnixLike/AzCore/Platform_UnixLike.cpp | 2 +- .../AzCore/Socket/AzSocket_UnixLike.cpp | 2 +- .../UnixLike/AzCore/Socket/AzSocket_UnixLike.h | 2 +- .../AzCore/Socket/AzSocket_fwd_UnixLike.h | 2 +- .../UnixLike/AzCore/Utils/Utils_UnixLike.cpp | 2 +- .../internal/condition_variable_UnixLike.h | 2 +- .../std/parallel/internal/mutex_UnixLike.h | 2 +- .../std/parallel/internal/semaphore_UnixLike.h | 2 +- .../std/parallel/internal/thread_UnixLike.cpp | 2 +- .../std/parallel/internal/thread_UnixLike.h | 2 +- .../std/parallel/internal/time_UnixLike.h | 2 +- .../UnixLike/AzCore/std/time_UnixLike.cpp | 2 +- .../AzCore/IO/SystemFile_UnixLikeDefault.cpp | 2 +- .../WinAPI/AzCore/Debug/Trace_WinAPI.cpp | 2 +- .../IO/Streamer/StreamerContext_WinAPI.cpp | 2 +- .../IO/Streamer/StreamerContext_WinAPI.h | 2 +- .../WinAPI/AzCore/IO/SystemFile_WinAPI.cpp | 2 +- .../WinAPI/AzCore/IO/SystemFile_WinAPI.h | 2 +- .../WinAPI/AzCore/Memory/OSAllocator_WinAPI.h | 2 +- .../Memory/OverrunDetectionAllocator_WinAPI.h | 2 +- .../Module/DynamicModuleHandle_WinAPI.cpp | 2 +- .../WinAPI/AzCore/Socket/AzSocket_WinAPI.cpp | 2 +- .../WinAPI/AzCore/Socket/AzSocket_WinAPI.h | 2 +- .../WinAPI/AzCore/Socket/AzSocket_fwd_WinAPI.h | 2 +- .../WinAPI/AzCore/Utils/Utils_WinAPI.cpp | 2 +- .../WinAPI/AzCore/std/parallel/config_WinAPI.h | 2 +- .../internal/condition_variable_WinAPI.h | 2 +- .../std/parallel/internal/mutex_WinAPI.h | 2 +- .../std/parallel/internal/semaphore_WinAPI.h | 2 +- .../std/parallel/internal/thread_WinAPI.cpp | 2 +- .../std/parallel/internal/thread_WinAPI.h | 2 +- .../azcore_profile_telemetry_files.cmake | 2 +- .../Linux/AzCore/AzCore_Traits_Linux.h | 2 +- .../Linux/AzCore/AzCore_Traits_Platform.h | 2 +- .../Linux/AzCore/Debug/Trace_Linux.cpp | 2 +- .../IO/Streamer/StreamerContext_Platform.h | 2 +- .../Linux/AzCore/IO/SystemFile_Linux.cpp | 2 +- .../Linux/AzCore/IO/SystemFile_Platform.h | 2 +- .../Linux/AzCore/IPC/SharedMemory_Platform.h | 2 +- .../AzCore/Math/Internal/MathTypes_Linux.h | 2 +- .../AzCore/Math/Internal/MathTypes_Platform.h | 2 +- .../Linux/AzCore/Math/Random_Platform.h | 2 +- .../Linux/AzCore/Memory/HeapSchema_Linux.cpp | 2 +- .../Linux/AzCore/Memory/OSAllocator_Platform.h | 2 +- .../OverrunDetectionAllocator_Platform.h | 2 +- .../Module/DynamicModuleHandle_Linux.cpp | 2 +- .../ModuleManagerSearchPathTool_Linux.cpp | 2 +- .../Linux/AzCore/PlatformId/PlatformId_Linux.h | 2 +- .../AzCore/PlatformId/PlatformId_Platform.h | 2 +- .../Linux/AzCore/PlatformIncl_Platform.h | 2 +- .../Linux/AzCore/Socket/AzSocket_Platform.h | 2 +- .../AzCore/Socket/AzSocket_fwd_Platform.h | 2 +- .../Linux/AzCore/Utils/Utils_Linux.cpp | 2 +- .../AzCore/Platform/Linux/AzCore/base_Linux.h | 2 +- .../Platform/Linux/AzCore/base_Platform.h | 2 +- .../Linux/AzCore/std/parallel/config_Linux.h | 2 +- .../AzCore/std/parallel/config_Platform.h | 2 +- .../internal/condition_variable_Platform.h | 2 +- .../std/parallel/internal/mutex_Platform.h | 2 +- .../std/parallel/internal/semaphore_Platform.h | 2 +- .../std/parallel/internal/thread_Linux.cpp | 2 +- .../std/parallel/internal/thread_Platform.h | 2 +- .../std/string/fixed_string_Platform.inl | 2 +- .../AzCore/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../profile_telemetry_platform_linux.cmake | 2 +- .../Platform/Mac/AzCore/AzCore_Traits_Mac.h | 2 +- .../Mac/AzCore/AzCore_Traits_Platform.h | 2 +- .../IO/Streamer/StreamerContext_Platform.h | 2 +- .../Mac/AzCore/IO/SystemFile_Platform.h | 2 +- .../Mac/AzCore/IPC/SharedMemory_Mac.cpp | 2 +- .../Platform/Mac/AzCore/IPC/SharedMemory_Mac.h | 2 +- .../Mac/AzCore/IPC/SharedMemory_Platform.h | 2 +- .../Mac/AzCore/Math/Internal/MathTypes_Mac.h | 2 +- .../AzCore/Math/Internal/MathTypes_Platform.h | 2 +- .../Platform/Mac/AzCore/Math/Random_Platform.h | 2 +- .../Mac/AzCore/Memory/HeapSchema_Mac.cpp | 2 +- .../Mac/AzCore/Memory/OSAllocator_Platform.h | 2 +- .../OverrunDetectionAllocator_Platform.h | 2 +- .../ModuleManagerSearchPathTool_Mac.cpp | 2 +- .../NativeUI/NativeUISystemComponent_Mac.mm | 2 +- .../Mac/AzCore/PlatformId/PlatformId_Mac.h | 2 +- .../AzCore/PlatformId/PlatformId_Platform.h | 2 +- .../Mac/AzCore/PlatformIncl_Platform.h | 2 +- .../Platform/Mac/AzCore/Platform_Mac.cpp | 2 +- .../Mac/AzCore/Socket/AzSocket_Platform.h | 2 +- .../Mac/AzCore/Socket/AzSocket_fwd_Platform.h | 2 +- .../Platform/Mac/AzCore/Utils/Utils_Mac.cpp | 2 +- .../AzCore/Platform/Mac/AzCore/base_Mac.h | 2 +- .../AzCore/Platform/Mac/AzCore/base_Platform.h | 2 +- .../Mac/AzCore/std/parallel/config_Platform.h | 2 +- .../internal/condition_variable_Platform.h | 2 +- .../std/parallel/internal/mutex_Platform.h | 2 +- .../std/parallel/internal/semaphore_Platform.h | 2 +- .../std/parallel/internal/thread_Platform.h | 2 +- .../std/string/fixed_string_Platform.inl | 2 +- .../AzCore/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Mac/profile_telemetry_platform_mac.cmake | 2 +- .../Windows/AzCore/AzCore_Traits_Platform.h | 2 +- .../Windows/AzCore/AzCore_Traits_Windows.h | 2 +- .../AzCore/Debug/StackTracer_Windows.cpp | 2 +- .../IO/Streamer/StorageDriveConfig_Windows.cpp | 2 +- .../IO/Streamer/StorageDriveConfig_Windows.h | 2 +- .../IO/Streamer/StorageDrive_Windows.cpp | 2 +- .../AzCore/IO/Streamer/StorageDrive_Windows.h | 2 +- .../Streamer/StreamerConfiguration_Windows.cpp | 2 +- .../Streamer/StreamerConfiguration_Windows.h | 2 +- .../IO/Streamer/StreamerContext_Platform.h | 2 +- .../Windows/AzCore/IO/SystemFile_Platform.h | 2 +- .../Windows/AzCore/IPC/SharedMemory_Platform.h | 2 +- .../AzCore/IPC/SharedMemory_Windows.cpp | 2 +- .../Windows/AzCore/IPC/SharedMemory_Windows.h | 2 +- .../AzCore/Math/Internal/MathTypes_Platform.h | 2 +- .../AzCore/Math/Internal/MathTypes_Windows.h | 2 +- .../Windows/AzCore/Math/Random_Platform.h | 2 +- .../Windows/AzCore/Math/Random_Windows.cpp | 2 +- .../Windows/AzCore/Math/Random_Windows.h | 2 +- .../AzCore/Memory/HeapSchema_Windows.cpp | 2 +- .../AzCore/Memory/OSAllocator_Platform.h | 2 +- .../OverrunDetectionAllocator_Platform.h | 2 +- .../ModuleManagerSearchPathTool_Windows.cpp | 2 +- .../NativeUISystemComponent_Windows.cpp | 2 +- .../AzCore/PlatformId/PlatformId_Platform.h | 2 +- .../AzCore/PlatformId/PlatformId_Windows.h | 2 +- .../Windows/AzCore/PlatformIncl_Platform.h | 2 +- .../Windows/AzCore/PlatformIncl_Windows.h | 2 +- .../Windows/AzCore/Platform_Windows.cpp | 2 +- .../Windows/AzCore/Socket/AzSocket_Platform.h | 2 +- .../AzCore/Socket/AzSocket_fwd_Platform.h | 2 +- .../AzCore/Socket/AzSocket_fwd_Windows.h | 2 +- .../Windows/AzCore/Utils/Utils_Windows.cpp | 2 +- .../Platform/Windows/AzCore/base_Platform.h | 2 +- .../Platform/Windows/AzCore/base_Windows.h | 2 +- .../AzCore/std/parallel/config_Platform.h | 2 +- .../internal/condition_variable_Platform.h | 2 +- .../std/parallel/internal/mutex_Platform.h | 2 +- .../std/parallel/internal/semaphore_Platform.h | 2 +- .../std/parallel/internal/thread_Platform.h | 2 +- .../std/parallel/internal/thread_Windows.cpp | 2 +- .../std/string/fixed_string_Platform.inl | 2 +- .../Windows/AzCore/std/time_Windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../profile_telemetry_platform_windows.cmake | 2 +- .../iOS/AzCore/AzCore_Traits_Platform.h | 2 +- .../Platform/iOS/AzCore/AzCore_Traits_iOS.h | 2 +- .../IO/Streamer/StreamerContext_Platform.h | 2 +- .../iOS/AzCore/IO/SystemFile_Platform.h | 2 +- .../iOS/AzCore/IPC/SharedMemory_Platform.h | 2 +- .../AzCore/Math/Internal/MathTypes_Platform.h | 2 +- .../iOS/AzCore/Math/Internal/MathTypes_iOS.h | 2 +- .../Platform/iOS/AzCore/Math/Random_Platform.h | 2 +- .../iOS/AzCore/Memory/HeapSchema_iOS.cpp | 2 +- .../iOS/AzCore/Memory/OSAllocator_Platform.h | 2 +- .../OverrunDetectionAllocator_Platform.h | 2 +- .../AzCore/Module/DynamicModuleHandle_iOS.cpp | 2 +- .../NativeUI/NativeUISystemComponent_iOS.mm | 2 +- .../AzCore/PlatformId/PlatformId_Platform.h | 2 +- .../iOS/AzCore/PlatformId/PlatformId_iOS.h | 2 +- .../iOS/AzCore/PlatformIncl_Platform.h | 2 +- .../iOS/AzCore/Socket/AzSocket_Platform.h | 2 +- .../iOS/AzCore/Socket/AzSocket_fwd_Platform.h | 2 +- .../Platform/iOS/AzCore/Utils/Utils_iOS.mm | 2 +- .../AzCore/Platform/iOS/AzCore/base_Platform.h | 2 +- .../AzCore/Platform/iOS/AzCore/base_iOS.h | 2 +- .../iOS/AzCore/std/parallel/config_Platform.h | 2 +- .../internal/condition_variable_Platform.h | 2 +- .../std/parallel/internal/mutex_Platform.h | 2 +- .../std/parallel/internal/semaphore_Platform.h | 2 +- .../std/parallel/internal/thread_Platform.h | 2 +- .../std/string/fixed_string_Platform.inl | 2 +- .../AzCore/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../iOS/profile_telemetry_platform_ios.cmake | 2 +- .../AzCore/Tests/AZStd/Algorithms.cpp | 2 +- .../AzCore/Tests/AZStd/Allocators.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Any.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Atomics.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Bitset.cpp | 2 +- .../AzCore/Tests/AZStd/ChronoTests.cpp | 2 +- .../Tests/AZStd/ConcurrentAllocators.cpp | 2 +- .../Tests/AZStd/ConcurrentContainers.cpp | 2 +- .../AzCore/Tests/AZStd/CreateDestroy.cpp | 2 +- .../AzCore/Tests/AZStd/DequeAndSimilar.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Examples.cpp | 2 +- .../AzCore/Tests/AZStd/FunctionalBasic.cpp | 2 +- .../AzCore/Tests/AZStd/FunctorsBind.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Hashed.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Invoke.cpp | 2 +- .../Framework/AzCore/Tests/AZStd/Iterators.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Lists.cpp | 2 +- .../AzCore/Tests/AZStd/ListsFixed.cpp | 2 +- .../AzCore/Tests/AZStd/ListsIntrusive.cpp | 2 +- .../AzCore/Tests/AZStd/LockFreeQueues.cpp | 2 +- .../AzCore/Tests/AZStd/LockFreeStacks.cpp | 2 +- .../Framework/AzCore/Tests/AZStd/LockTests.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Numeric.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Optional.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Ordered.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Pair.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Parallel.cpp | 2 +- .../AzCore/Tests/AZStd/ScopedLockTests.cpp | 2 +- .../AzCore/Tests/AZStd/SetsIntrusive.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/String.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/Tuple.cpp | 2 +- .../AzCore/Tests/AZStd/TypeTraits.cpp | 2 +- Code/Framework/AzCore/Tests/AZStd/UserTypes.h | 2 +- Code/Framework/AzCore/Tests/AZStd/Variant.cpp | 2 +- .../Tests/AZStd/VariantSerialization.cpp | 2 +- .../AzCore/Tests/AZStd/VectorAndArray.cpp | 2 +- .../AZTestShared/Math/MathTestHelpers.cpp | 2 +- .../Tests/AZTestShared/Math/MathTestHelpers.h | 2 +- .../AzCore/Tests/AZTestShared/Utils/Utils.cpp | 2 +- .../AzCore/Tests/AZTestShared/Utils/Utils.h | 2 +- .../AzCore/Tests/Asset/AssetCommon.cpp | 2 +- .../Tests/Asset/AssetDataStreamTests.cpp | 2 +- .../Tests/Asset/AssetManagerLoadingTests.cpp | 2 +- .../Tests/Asset/AssetManagerStreamingTests.cpp | 2 +- .../Tests/Asset/BaseAssetManagerTest.cpp | 2 +- .../AzCore/Tests/Asset/BaseAssetManagerTest.h | 2 +- .../Asset/MockLoadAssetCatalogAndHandler.h | 2 +- .../AzCore/Tests/Asset/TestAssetTypes.h | 2 +- .../AzCore/Tests/AssetJsonSerializerTests.cpp | 2 +- Code/Framework/AzCore/Tests/AssetManager.cpp | 2 +- .../AzCore/Tests/AssetSerializerTests.cpp | 2 +- Code/Framework/AzCore/Tests/AzEnumTest.cpp | 2 +- .../Framework/AzCore/Tests/BehaviorContext.cpp | 2 +- .../AzCore/Tests/BehaviorContextFixture.h | 2 +- Code/Framework/AzCore/Tests/Components.cpp | 2 +- .../AzCore/Tests/Console/ConsoleTests.cpp | 2 +- .../Console/LoggerSystemComponentTests.cpp | 2 +- Code/Framework/AzCore/Tests/DLL.cpp | 2 +- Code/Framework/AzCore/Tests/DLLMainTest.cpp | 2 +- Code/Framework/AzCore/Tests/Debug.cpp | 2 +- .../AzCore/Tests/Debug/AssetTracking.cpp | 2 +- .../Tests/Debug/LocalFileEventLoggerTests.cpp | 2 +- Code/Framework/AzCore/Tests/Debug/Trace.cpp | 2 +- Code/Framework/AzCore/Tests/Driller.cpp | 2 +- Code/Framework/AzCore/Tests/EBus.cpp | 2 +- .../AzCore/Tests/EBus/ScheduledEventTests.cpp | 2 +- Code/Framework/AzCore/Tests/EntityIdTests.cpp | 2 +- Code/Framework/AzCore/Tests/EntityTests.cpp | 2 +- Code/Framework/AzCore/Tests/EnumTests.cpp | 2 +- Code/Framework/AzCore/Tests/EventTests.cpp | 2 +- .../AzCore/Tests/FileIOBaseTestTypes.h | 2 +- .../AzCore/Tests/FixedWidthIntegers.cpp | 2 +- .../Framework/AzCore/Tests/GenericStreamMock.h | 2 +- .../AzCore/Tests/GenericStreamTests.cpp | 2 +- .../Framework/AzCore/Tests/Geometry2DUtils.cpp | 2 +- .../AzCore/Tests/IO/Path/PathTests.cpp | 2 +- Code/Framework/AzCore/Tests/IPC.cpp | 2 +- Code/Framework/AzCore/Tests/Interface.cpp | 2 +- Code/Framework/AzCore/Tests/IntersectPoint.cpp | 2 +- Code/Framework/AzCore/Tests/JSON.cpp | 2 +- Code/Framework/AzCore/Tests/Jobs.cpp | 2 +- Code/Framework/AzCore/Tests/Main.cpp | 2 +- Code/Framework/AzCore/Tests/Math/AabbTests.cpp | 2 +- .../Framework/AzCore/Tests/Math/ColorTests.cpp | 2 +- Code/Framework/AzCore/Tests/Math/CrcTests.cpp | 2 +- .../Tests/Math/CrcTestsCompileTimeLiterals.h | 2 +- .../Tests/Math/FrustumPerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/FrustumTests.cpp | 2 +- .../AzCore/Tests/Math/IntersectionTests.cpp | 2 +- .../AzCore/Tests/Math/MathIntrinsicsTests.cpp | 2 +- .../Framework/AzCore/Tests/Math/MathTestData.h | 2 +- .../AzCore/Tests/Math/MathUtilsTests.cpp | 2 +- .../Tests/Math/Matrix3x3PerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/Matrix3x3Tests.cpp | 2 +- .../Tests/Math/Matrix3x4PerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/Matrix3x4Tests.cpp | 2 +- .../Tests/Math/Matrix4x4PerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/Matrix4x4Tests.cpp | 2 +- .../AzCore/Tests/Math/MatrixUtilsTests.cpp | 2 +- .../AzCore/Tests/Math/ObbPerformanceTests.cpp | 2 +- Code/Framework/AzCore/Tests/Math/ObbTests.cpp | 2 +- .../Tests/Math/PlanePerformanceTests.cpp | 2 +- .../Framework/AzCore/Tests/Math/PlaneTests.cpp | 2 +- .../Tests/Math/QuaternionPerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/QuaternionTests.cpp | 2 +- .../AzCore/Tests/Math/RandomTests.cpp | 2 +- Code/Framework/AzCore/Tests/Math/SfmtTests.cpp | 2 +- .../Math/ShapeIntersectionPerformanceTests.cpp | 2 +- .../Tests/Math/ShapeIntersectionTests.cpp | 2 +- .../AzCore/Tests/Math/SimdMathTests.cpp | 2 +- .../AzCore/Tests/Math/SphereTests.cpp | 2 +- .../AzCore/Tests/Math/SplineTests.cpp | 2 +- .../Tests/Math/TransformPerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/TransformTests.cpp | 2 +- .../Tests/Math/Vector2PerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/Vector2Tests.cpp | 2 +- .../Tests/Math/Vector3PerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/Vector3Tests.cpp | 2 +- .../Tests/Math/Vector4PerformanceTests.cpp | 2 +- .../AzCore/Tests/Math/Vector4Tests.cpp | 2 +- Code/Framework/AzCore/Tests/Memory.cpp | 2 +- .../AzCore/Tests/Memory/AllocatorManager.cpp | 2 +- .../AzCore/Tests/Memory/HphaSchema.cpp | 2 +- .../Tests/Memory/HphaSchemaErrorDetection.cpp | 2 +- .../AzCore/Tests/Memory/LeakDetection.cpp | 2 +- .../AzCore/Tests/Memory/MallocSchema.cpp | 2 +- Code/Framework/AzCore/Tests/Module.cpp | 2 +- Code/Framework/AzCore/Tests/ModuleTestBus.h | 2 +- .../Tests/Name/NameJsonSerializerTests.cpp | 2 +- Code/Framework/AzCore/Tests/Name/NameTests.cpp | 2 +- .../AzCore/Tests/OrderedEventBenchmarks.cpp | 2 +- .../AzCore/Tests/OrderedEventTests.cpp | 2 +- Code/Framework/AzCore/Tests/Outcome.cpp | 2 +- Code/Framework/AzCore/Tests/Patching.cpp | 2 +- .../Android/Tests/UtilsTests_Android.cpp | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Common/Apple/Tests/UtilsTests_Apple.cpp | 2 +- .../UnixLike/Tests/UtilsTests_UnixLike.cpp | 2 +- .../Common/WinAPI/Tests/UtilsTests_WinAPI.cpp | 2 +- .../Platform/Linux/Tests/UtilsTests_Linux.cpp | 2 +- .../Tests/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Tests/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../IO/Streamer/StorageDriveTests_Windows.cpp | 2 +- .../OverrunDetectionAllocator_Windows.cpp | 2 +- .../Windows/Tests/Serialization_Windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Tests/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Tests/RTTI/TypeSafeIntegralTests.cpp | 2 +- Code/Framework/AzCore/Tests/RemappableId.cpp | 2 +- Code/Framework/AzCore/Tests/Rtti.cpp | 2 +- Code/Framework/AzCore/Tests/Script.cpp | 2 +- Code/Framework/AzCore/Tests/ScriptMath.cpp | 2 +- Code/Framework/AzCore/Tests/ScriptProperty.cpp | 2 +- Code/Framework/AzCore/Tests/Serialization.cpp | 2 +- .../Json/ArraySerializerTests.cpp | 2 +- .../Json/BaseJsonSerializerFixture.cpp | 2 +- .../Json/BaseJsonSerializerFixture.h | 2 +- .../Json/BaseJsonSerializerTests.cpp | 2 +- .../Json/BasicContainerSerializerTests.cpp | 2 +- .../Serialization/Json/BoolSerializerTests.cpp | 2 +- .../Json/ByteStreamSerializerTests.cpp | 2 +- .../Json/ColorSerializerTests.cpp | 2 +- .../Json/DoubleSerializerTests.cpp | 2 +- .../Serialization/Json/IntSerializerTests.cpp | 2 +- .../Json/JsonRegistrationContextTests.cpp | 2 +- .../Json/JsonSerializationMetadataTests.cpp | 2 +- .../Json/JsonSerializationResultTests.cpp | 2 +- .../Json/JsonSerializationTests.cpp | 2 +- .../Json/JsonSerializationTests.h | 2 +- .../Json/JsonSerializerConformityTests.h | 2 +- .../Serialization/Json/JsonSerializerMock.h | 2 +- .../Serialization/Json/MapSerializerTests.cpp | 2 +- .../Json/MathMatrixSerializerTests.cpp | 2 +- .../Json/MathVectorSerializerTests.cpp | 2 +- .../Json/SmartPointerSerializerTests.cpp | 2 +- .../Json/StringSerializerTests.cpp | 2 +- .../Tests/Serialization/Json/TestCases.h | 2 +- .../Serialization/Json/TestCases_Base.cpp | 2 +- .../Tests/Serialization/Json/TestCases_Base.h | 2 +- .../Serialization/Json/TestCases_Classes.cpp | 2 +- .../Serialization/Json/TestCases_Classes.h | 2 +- .../Serialization/Json/TestCases_Compare.cpp | 2 +- .../Serialization/Json/TestCases_Enum.cpp | 2 +- .../Serialization/Json/TestCases_Patching.cpp | 2 +- .../Serialization/Json/TestCases_Pointers.cpp | 2 +- .../Serialization/Json/TestCases_Pointers.h | 2 +- .../Serialization/Json/TestCases_TypeId.cpp | 2 +- .../Json/TransformSerializerTests.cpp | 2 +- .../Json/TupleSerializerTests.cpp | 2 +- .../Json/UnorderedSetSerializerTests.cpp | 2 +- .../Json/UnsupportedTypesSerializerTests.cpp | 2 +- .../Serialization/Json/UuidSerializerTests.cpp | 2 +- .../AzCore/Tests/SerializeContextFixture.h | 2 +- .../AzCore/Tests/Settings/CommandLineTests.cpp | 2 +- .../SettingsRegistryConsoleUtilsTests.cpp | 2 +- .../SettingsRegistryScriptUtilsTests.cpp | 2 +- .../Tests/SettingsRegistryMergeUtilsTests.cpp | 2 +- .../AzCore/Tests/SettingsRegistryTests.cpp | 2 +- Code/Framework/AzCore/Tests/Slice.cpp | 2 +- Code/Framework/AzCore/Tests/State.cpp | 2 +- .../AzCore/Tests/StatisticalProfiler.cpp | 2 +- Code/Framework/AzCore/Tests/Statistics.cpp | 2 +- .../AzCore/Tests/Streamer/BlockCacheTests.cpp | 2 +- .../Tests/Streamer/DedicatedCacheTests.cpp | 2 +- .../Tests/Streamer/FullDecompressorTests.cpp | 2 +- .../AzCore/Tests/Streamer/IStreamerMock.h | 2 +- .../AzCore/Tests/Streamer/IStreamerTypesMock.h | 2 +- .../Tests/Streamer/ReadSplitterTests.cpp | 2 +- .../AzCore/Tests/Streamer/SchedulerTests.cpp | 2 +- .../Streamer/StreamStackEntryConformityTests.h | 2 +- .../Tests/Streamer/StreamStackEntryMock.h | 2 +- .../Tests/Streamer/StreamStackEntryTests.cpp | 2 +- Code/Framework/AzCore/Tests/StreamerTests.cpp | 2 +- Code/Framework/AzCore/Tests/StringFunc.cpp | 2 +- Code/Framework/AzCore/Tests/SystemFile.cpp | 2 +- Code/Framework/AzCore/Tests/TestCatalog.cpp | 2 +- Code/Framework/AzCore/Tests/TestCatalog.h | 2 +- Code/Framework/AzCore/Tests/TickBusTest.cpp | 2 +- .../AzCore/Tests/TimeDataStatistics.cpp | 2 +- Code/Framework/AzCore/Tests/UUIDTests.cpp | 2 +- Code/Framework/AzCore/Tests/XML.cpp | 2 +- .../AzCore/Tests/azcoretestdll_files.cmake | 2 +- .../AzCore/Tests/azcoretests_files.cmake | 2 +- .../AzCore/Tests/aztestshared_files.cmake | 2 +- .../AzFramework/API/ApplicationAPI.h | 2 +- .../AzFramework/Application/Application.cpp | 2 +- .../AzFramework/Application/Application.h | 2 +- .../AzFramework/Archive/Archive.cpp | 2 +- .../AzFramework/AzFramework/Archive/Archive.h | 2 +- .../AzFramework/Archive/ArchiveBus.h | 2 +- .../AzFramework/Archive/ArchiveFileIO.cpp | 2 +- .../AzFramework/Archive/ArchiveFileIO.h | 2 +- .../AzFramework/Archive/ArchiveFindData.cpp | 2 +- .../AzFramework/Archive/ArchiveFindData.h | 2 +- .../AzFramework/Archive/ArchiveVars.h | 2 +- .../AzFramework/AzFramework/Archive/Codec.h | 2 +- .../AzFramework/AzFramework/Archive/IArchive.h | 2 +- .../AzFramework/Archive/INestedArchive.h | 2 +- .../AzFramework/Archive/MissingFileReport.cpp | 2 +- .../AzFramework/Archive/MissingFileReport.h | 2 +- .../AzFramework/Archive/NestedArchive.cpp | 2 +- .../AzFramework/Archive/NestedArchive.h | 2 +- .../AzFramework/Archive/ZipDirCache.cpp | 2 +- .../AzFramework/Archive/ZipDirCache.h | 2 +- .../AzFramework/Archive/ZipDirCacheFactory.cpp | 2 +- .../AzFramework/Archive/ZipDirCacheFactory.h | 2 +- .../AzFramework/Archive/ZipDirFind.cpp | 2 +- .../AzFramework/Archive/ZipDirFind.h | 2 +- .../AzFramework/Archive/ZipDirList.cpp | 2 +- .../AzFramework/Archive/ZipDirList.h | 2 +- .../AzFramework/Archive/ZipDirStructures.cpp | 2 +- .../AzFramework/Archive/ZipDirStructures.h | 2 +- .../AzFramework/Archive/ZipDirTree.cpp | 2 +- .../AzFramework/Archive/ZipDirTree.h | 2 +- .../AzFramework/Archive/ZipFileFormat.h | 2 +- .../AzFramework/Asset/AssetBundleManifest.cpp | 2 +- .../AzFramework/Asset/AssetBundleManifest.h | 2 +- .../AzFramework/Asset/AssetCatalog.cpp | 2 +- .../AzFramework/Asset/AssetCatalog.h | 2 +- .../AzFramework/Asset/AssetCatalogBus.h | 2 +- .../Asset/AssetCatalogComponent.cpp | 2 +- .../AzFramework/Asset/AssetCatalogComponent.h | 2 +- .../Asset/AssetProcessorMessages.cpp | 2 +- .../AzFramework/Asset/AssetProcessorMessages.h | 2 +- .../AzFramework/Asset/AssetRegistry.cpp | 2 +- .../AzFramework/Asset/AssetRegistry.h | 2 +- .../AzFramework/Asset/AssetSeedList.cpp | 2 +- .../AzFramework/Asset/AssetSeedList.h | 2 +- .../AzFramework/Asset/AssetSystemBus.h | 2 +- .../AzFramework/Asset/AssetSystemComponent.cpp | 2 +- .../AzFramework/Asset/AssetSystemComponent.h | 2 +- .../Asset/AssetSystemComponentHelper.cpp | 2 +- .../AzFramework/Asset/AssetSystemTypes.h | 2 +- .../Asset/Benchmark/BenchmarkAsset.cpp | 2 +- .../Asset/Benchmark/BenchmarkAsset.h | 2 +- .../Asset/Benchmark/BenchmarkCommands.cpp | 2 +- .../Asset/Benchmark/BenchmarkCommands.h | 2 +- .../Asset/Benchmark/BenchmarkSettingsAsset.cpp | 2 +- .../Asset/Benchmark/BenchmarkSettingsAsset.h | 2 +- .../AzFramework/Asset/CfgFileAsset.h | 2 +- .../Asset/CustomAssetTypeComponent.cpp | 2 +- .../Asset/CustomAssetTypeComponent.h | 2 +- .../AzFramework/Asset/FileTagAsset.cpp | 2 +- .../AzFramework/Asset/FileTagAsset.h | 2 +- .../AzFramework/Asset/GenericAssetHandler.h | 2 +- .../Asset/NetworkAssetNotification_private.h | 2 +- .../AzFramework/Asset/SimpleAsset.cpp | 2 +- .../AzFramework/Asset/SimpleAsset.h | 2 +- .../AzFramework/Asset/XmlSchemaAsset.cpp | 2 +- .../AzFramework/Asset/XmlSchemaAsset.h | 2 +- .../AzFramework/AzFrameworkModule.cpp | 2 +- .../AzFramework/AzFrameworkModule.h | 2 +- .../AzFramework/CommandLine/CommandLine.h | 2 +- .../CommandLine/CommandRegistrationBus.h | 2 +- ...AzFrameworkConfigurationSystemComponent.cpp | 2 +- .../AzFrameworkConfigurationSystemComponent.h | 2 +- .../AzFramework/Components/CameraBus.h | 2 +- .../AzFramework/Components/ComponentAdapter.h | 2 +- .../Components/ComponentAdapter.inl | 2 +- .../Components/ComponentAdapterHelpers.h | 2 +- .../AzFramework/Components/ConsoleBus.cpp | 2 +- .../AzFramework/Components/ConsoleBus.h | 2 +- .../Components/DeprecatedComponentsBus.h | 2 +- .../Components/EditorEntityEvents.h | 2 +- .../Components/NonUniformScaleComponent.cpp | 2 +- .../Components/NonUniformScaleComponent.h | 2 +- .../Components/TransformComponent.cpp | 2 +- .../Components/TransformComponent.h | 2 +- .../AzFramework/Debug/DebugCameraBus.h | 2 +- .../AzFramework/Dependency/Dependency.h | 2 +- .../AzFramework/Dependency/Dependency.inl | 2 +- .../AzFramework/Dependency/Version.h | 2 +- .../Driller/DrillToFileComponent.cpp | 2 +- .../AzFramework/Driller/DrillToFileComponent.h | 2 +- .../AzFramework/Driller/DrillerConsoleAPI.h | 2 +- .../Driller/RemoteDrillerInterface.cpp | 2 +- .../Driller/RemoteDrillerInterface.h | 2 +- .../AzFramework/Entity/BehaviorEntity.cpp | 2 +- .../AzFramework/Entity/BehaviorEntity.h | 2 +- .../AzFramework/Entity/EntityContext.cpp | 2 +- .../AzFramework/Entity/EntityContext.h | 2 +- .../AzFramework/Entity/EntityContextBus.h | 2 +- .../AzFramework/Entity/EntityDebugDisplayBus.h | 2 +- .../Entity/EntityOwnershipService.h | 2 +- .../Entity/EntityOwnershipServiceBus.h | 2 +- .../AzFramework/Entity/GameEntityContextBus.h | 2 +- .../Entity/GameEntityContextComponent.cpp | 2 +- .../Entity/GameEntityContextComponent.h | 2 +- .../Entity/PrefabEntityOwnershipService.cpp | 2 +- .../Entity/PrefabEntityOwnershipService.h | 2 +- .../Entity/SliceEntityOwnershipService.cpp | 2 +- .../Entity/SliceEntityOwnershipService.h | 2 +- .../Entity/SliceEntityOwnershipServiceBus.h | 2 +- .../Entity/SliceGameEntityOwnershipService.cpp | 2 +- .../Entity/SliceGameEntityOwnershipService.h | 2 +- .../SliceGameEntityOwnershipServiceBus.h | 2 +- .../AzFramework/FileFunc/FileFunc.cpp | 2 +- .../AzFramework/FileFunc/FileFunc.h | 2 +- .../AzFramework/FileTag/FileTag.cpp | 2 +- .../AzFramework/AzFramework/FileTag/FileTag.h | 2 +- .../AzFramework/FileTag/FileTagBus.h | 2 +- .../AzFramework/FileTag/FileTagComponent.cpp | 2 +- .../AzFramework/FileTag/FileTagComponent.h | 2 +- .../AzFramework/Font/FontInterface.h | 2 +- .../AzFramework/AzFramework/Gem/GemInfo.cpp | 2 +- .../AzFramework/AzFramework/Gem/GemInfo.h | 2 +- .../AzFramework/IO/FileOperations.cpp | 2 +- .../AzFramework/IO/FileOperations.h | 2 +- .../AzFramework/AzFramework/IO/LocalFileIO.cpp | 2 +- .../AzFramework/AzFramework/IO/LocalFileIO.h | 2 +- .../AzFramework/IO/RemoteFileIO.cpp | 2 +- .../AzFramework/AzFramework/IO/RemoteFileIO.h | 2 +- .../AzFramework/IO/RemoteStorageDrive.cpp | 2 +- .../AzFramework/IO/RemoteStorageDrive.h | 2 +- .../AzFramework/InGameUI/UiFrameworkBus.h | 2 +- .../InputChannelNotificationBus.h | 2 +- .../Notifications/InputDeviceNotificationBus.h | 2 +- .../Notifications/InputSystemNotificationBus.h | 2 +- .../Notifications/InputTextNotificationBus.h | 2 +- .../Buses/Requests/InputChannelRequestBus.h | 2 +- .../Buses/Requests/InputDeviceRequestBus.h | 2 +- .../Requests/InputHapticFeedbackRequestBus.h | 2 +- .../Buses/Requests/InputLightBarRequestBus.h | 2 +- .../Requests/InputMotionSensorRequestBus.h | 2 +- .../Requests/InputSystemCursorRequestBus.h | 2 +- .../Buses/Requests/InputSystemRequestBus.h | 2 +- .../Buses/Requests/InputTextEntryRequestBus.h | 2 +- .../Input/Channels/InputChannel.cpp | 2 +- .../AzFramework/Input/Channels/InputChannel.h | 2 +- .../Input/Channels/InputChannelAnalog.cpp | 2 +- .../Input/Channels/InputChannelAnalog.h | 2 +- .../InputChannelAnalogWithPosition2D.cpp | 2 +- .../InputChannelAnalogWithPosition2D.h | 2 +- .../Input/Channels/InputChannelAxis1D.cpp | 2 +- .../Input/Channels/InputChannelAxis1D.h | 2 +- .../Input/Channels/InputChannelAxis2D.cpp | 2 +- .../Input/Channels/InputChannelAxis2D.h | 2 +- .../Input/Channels/InputChannelAxis3D.cpp | 2 +- .../Input/Channels/InputChannelAxis3D.h | 2 +- .../Input/Channels/InputChannelDelta.cpp | 2 +- .../Input/Channels/InputChannelDelta.h | 2 +- .../InputChannelDeltaWithSharedPosition2D.cpp | 2 +- .../InputChannelDeltaWithSharedPosition2D.h | 2 +- .../Input/Channels/InputChannelDigital.cpp | 2 +- .../Input/Channels/InputChannelDigital.h | 2 +- .../InputChannelDigitalWithPosition2D.cpp | 2 +- .../InputChannelDigitalWithPosition2D.h | 2 +- ...annelDigitalWithSharedModifierKeyStates.cpp | 2 +- ...ChannelDigitalWithSharedModifierKeyStates.h | 2 +- ...InputChannelDigitalWithSharedPosition2D.cpp | 2 +- .../InputChannelDigitalWithSharedPosition2D.h | 2 +- .../Input/Channels/InputChannelId.cpp | 2 +- .../Input/Channels/InputChannelId.h | 2 +- .../Input/Channels/InputChannelQuaternion.cpp | 2 +- .../Input/Channels/InputChannelQuaternion.h | 2 +- .../Input/Contexts/InputContext.cpp | 2 +- .../AzFramework/Input/Contexts/InputContext.h | 2 +- .../Devices/Gamepad/InputDeviceGamepad.cpp | 2 +- .../Input/Devices/Gamepad/InputDeviceGamepad.h | 2 +- .../AzFramework/Input/Devices/InputDevice.cpp | 2 +- .../AzFramework/Input/Devices/InputDevice.h | 2 +- .../Input/Devices/InputDeviceId.cpp | 2 +- .../AzFramework/Input/Devices/InputDeviceId.h | 2 +- .../Devices/Keyboard/InputDeviceKeyboard.cpp | 2 +- .../Devices/Keyboard/InputDeviceKeyboard.h | 2 +- .../InputDeviceKeyboardWindowsScanCodes.h | 2 +- .../Input/Devices/Motion/InputDeviceMotion.cpp | 2 +- .../Input/Devices/Motion/InputDeviceMotion.h | 2 +- .../Input/Devices/Mouse/InputDeviceMouse.cpp | 2 +- .../Input/Devices/Mouse/InputDeviceMouse.h | 2 +- .../Input/Devices/Touch/InputDeviceTouch.cpp | 2 +- .../Input/Devices/Touch/InputDeviceTouch.h | 2 +- .../InputDeviceVirtualKeyboard.cpp | 2 +- .../InputDeviceVirtualKeyboard.h | 2 +- .../Input/Events/InputChannelEventFilter.cpp | 2 +- .../Input/Events/InputChannelEventFilter.h | 2 +- .../Input/Events/InputChannelEventListener.cpp | 2 +- .../Input/Events/InputChannelEventListener.h | 2 +- .../Input/Events/InputChannelEventSink.cpp | 2 +- .../Input/Events/InputChannelEventSink.h | 2 +- .../Input/Events/InputTextEventListener.cpp | 2 +- .../Input/Events/InputTextEventListener.h | 2 +- .../Input/Mappings/InputMapping.cpp | 2 +- .../AzFramework/Input/Mappings/InputMapping.h | 2 +- .../Input/Mappings/InputMappingAnd.cpp | 2 +- .../Input/Mappings/InputMappingAnd.h | 2 +- .../Input/Mappings/InputMappingOr.cpp | 2 +- .../Input/Mappings/InputMappingOr.h | 2 +- .../Input/System/InputSystemComponent.cpp | 2 +- .../Input/System/InputSystemComponent.h | 2 +- .../AzFramework/Input/User/LocalUserId.h | 2 +- .../Input/Utils/AdjustAnalogInputForDeadZone.h | 2 +- .../AzFramework/Input/Utils/IsAnyKeyOrButton.h | 2 +- .../Input/Utils/ProcessRawInputEventQueues.h | 2 +- .../AzFramework/Logging/LogFile.cpp | 2 +- .../AzFramework/AzFramework/Logging/LogFile.h | 2 +- .../AzFramework/Logging/LoggingComponent.cpp | 2 +- .../AzFramework/Logging/LoggingComponent.h | 2 +- .../AzFramework/Logging/MissingAssetLogger.cpp | 2 +- .../AzFramework/Logging/MissingAssetLogger.h | 2 +- .../Logging/MissingAssetNotificationBus.h | 2 +- .../Logging/StartupLogSinkReporter.cpp | 2 +- .../Logging/StartupLogSinkReporter.h | 2 +- .../AzFramework/Math/InterpolationSample.h | 2 +- .../Metrics/MetricsPlainTextNameRegistration.h | 2 +- .../Network/AssetProcessorConnection.cpp | 2 +- .../Network/AssetProcessorConnection.h | 2 +- .../AzFramework/Network/SocketConnection.cpp | 2 +- .../AzFramework/Network/SocketConnection.h | 2 +- .../Physics/AnimationConfiguration.cpp | 2 +- .../Physics/AnimationConfiguration.h | 2 +- .../AzFramework/Physics/Character.cpp | 2 +- .../AzFramework/Physics/Character.h | 2 +- .../AzFramework/Physics/CharacterBus.h | 2 +- .../Physics/CharacterPhysicsDataBus.h | 2 +- .../AzFramework/Physics/ClassConverters.cpp | 2 +- .../AzFramework/Physics/ClassConverters.h | 2 +- .../AzFramework/Physics/ColliderComponentBus.h | 2 +- .../Physics/Collision/CollisionEvents.cpp | 2 +- .../Physics/Collision/CollisionEvents.h | 2 +- .../Physics/Collision/CollisionGroups.cpp | 2 +- .../Physics/Collision/CollisionGroups.h | 2 +- .../Physics/Collision/CollisionLayers.cpp | 2 +- .../Physics/Collision/CollisionLayers.h | 2 +- .../AzFramework/Physics/CollisionBus.cpp | 2 +- .../AzFramework/Physics/CollisionBus.h | 2 +- .../AzFramework/Physics/Common/PhysicsEvents.h | 2 +- .../Physics/Common/PhysicsSceneQueries.cpp | 2 +- .../Physics/Common/PhysicsSceneQueries.h | 2 +- .../Physics/Common/PhysicsSimulatedBody.cpp | 2 +- .../Physics/Common/PhysicsSimulatedBody.h | 2 +- .../Common/PhysicsSimulatedBodyAutomation.cpp | 2 +- .../Common/PhysicsSimulatedBodyAutomation.h | 2 +- .../Common/PhysicsSimulatedBodyEvents.cpp | 2 +- .../Common/PhysicsSimulatedBodyEvents.h | 2 +- .../AzFramework/Physics/Common/PhysicsTypes.h | 2 +- .../Components/SimulatedBodyComponentBus.h | 2 +- .../Configuration/CollisionConfiguration.cpp | 2 +- .../Configuration/CollisionConfiguration.h | 2 +- .../Configuration/RigidBodyConfiguration.cpp | 2 +- .../Configuration/RigidBodyConfiguration.h | 2 +- .../Configuration/SceneConfiguration.cpp | 2 +- .../Physics/Configuration/SceneConfiguration.h | 2 +- .../SimulatedBodyConfiguration.cpp | 2 +- .../Configuration/SimulatedBodyConfiguration.h | 2 +- .../StaticRigidBodyConfiguration.cpp | 2 +- .../StaticRigidBodyConfiguration.h | 2 +- .../Configuration/SystemConfiguration.cpp | 2 +- .../Configuration/SystemConfiguration.h | 2 +- .../AzFramework/AzFramework/Physics/Joint.cpp | 2 +- .../AzFramework/AzFramework/Physics/Joint.h | 2 +- .../AzFramework/Physics/Material.cpp | 2 +- .../AzFramework/AzFramework/Physics/Material.h | 2 +- .../AzFramework/Physics/MaterialBus.h | 2 +- .../AzFramework/Physics/NameConstants.cpp | 2 +- .../AzFramework/Physics/NameConstants.h | 2 +- .../AzFramework/Physics/PhysicsScene.cpp | 2 +- .../AzFramework/Physics/PhysicsScene.h | 2 +- .../AzFramework/Physics/PhysicsSystem.cpp | 2 +- .../AzFramework/Physics/PhysicsSystem.h | 2 +- .../AzFramework/Physics/PropertyTypes.h | 2 +- .../AzFramework/Physics/Ragdoll.cpp | 2 +- .../AzFramework/AzFramework/Physics/Ragdoll.h | 2 +- .../AzFramework/Physics/RagdollPhysicsBus.h | 2 +- .../AzFramework/Physics/RigidBody.h | 2 +- .../AzFramework/Physics/RigidBodyBus.h | 2 +- .../AzFramework/AzFramework/Physics/Shape.cpp | 2 +- .../AzFramework/AzFramework/Physics/Shape.h | 2 +- .../AzFramework/Physics/ShapeConfiguration.cpp | 2 +- .../AzFramework/Physics/ShapeConfiguration.h | 2 +- .../Physics/SimulatedBodies/RigidBody.cpp | 2 +- .../Physics/SimulatedBodies/RigidBody.h | 2 +- .../SimulatedBodies/StaticRigidBody.cpp | 2 +- .../Physics/SimulatedBodies/StaticRigidBody.h | 2 +- .../AzFramework/Physics/SystemBus.h | 2 +- .../AzFramework/AzFramework/Physics/Utils.cpp | 2 +- .../AzFramework/AzFramework/Physics/Utils.h | 2 +- .../AzFramework/AzFramework/Physics/WindBus.h | 2 +- .../AzFramework/Platform/PlatformDefaults.h | 2 +- .../AzFramework/Process/ProcessCommon_fwd.h | 2 +- .../Process/ProcessCommunicator.cpp | 2 +- .../AzFramework/Process/ProcessCommunicator.h | 2 +- .../AzFramework/Process/ProcessWatcher.cpp | 2 +- .../AzFramework/Process/ProcessWatcher.h | 2 +- .../ProjectManager/ProjectManager.cpp | 2 +- .../ProjectManager/ProjectManager.h | 2 +- .../Render/GameIntersectorComponent.cpp | 2 +- .../Render/GameIntersectorComponent.h | 2 +- .../Render/GeometryIntersectionBus.h | 2 +- .../Render/GeometryIntersectionStructures.h | 2 +- .../AzFramework/Render/Intersector.cpp | 2 +- .../AzFramework/Render/Intersector.h | 2 +- .../AzFramework/Render/IntersectorInterface.h | 2 +- .../AzFramework/Render/RenderSystemBus.h | 2 +- .../AzFramework/AzFramework/Scene/Scene.cpp | 2 +- .../AzFramework/AzFramework/Scene/Scene.h | 2 +- .../AzFramework/AzFramework/Scene/Scene.inl | 2 +- .../AzFramework/Scene/SceneSystemComponent.cpp | 2 +- .../AzFramework/Scene/SceneSystemComponent.h | 2 +- .../AzFramework/Scene/SceneSystemInterface.h | 2 +- .../AzFramework/Script/ScriptComponent.cpp | 2 +- .../AzFramework/Script/ScriptComponent.h | 2 +- .../AzFramework/Script/ScriptDebugAgentBus.h | 2 +- .../Script/ScriptDebugMsgReflection.cpp | 2 +- .../Script/ScriptDebugMsgReflection.h | 2 +- .../Script/ScriptRemoteDebugging.cpp | 2 +- .../AzFramework/Script/ScriptRemoteDebugging.h | 2 +- .../Session/ISessionHandlingRequests.h | 2 +- .../AzFramework/Session/ISessionRequests.cpp | 2 +- .../AzFramework/Session/ISessionRequests.h | 2 +- .../AzFramework/Session/SessionConfig.cpp | 2 +- .../AzFramework/Session/SessionConfig.h | 2 +- .../AzFramework/Session/SessionNotifications.h | 2 +- .../AzFramework/Slice/SliceEntityBus.h | 2 +- .../AzFramework/Slice/SliceInstantiationBus.h | 2 +- .../Slice/SliceInstantiationTicket.cpp | 2 +- .../Slice/SliceInstantiationTicket.h | 2 +- .../Spawnable/RootSpawnableInterface.h | 2 +- .../AzFramework/Spawnable/Spawnable.cpp | 2 +- .../AzFramework/Spawnable/Spawnable.h | 2 +- .../Spawnable/SpawnableAssetHandler.cpp | 2 +- .../Spawnable/SpawnableAssetHandler.h | 2 +- .../Spawnable/SpawnableEntitiesContainer.cpp | 2 +- .../Spawnable/SpawnableEntitiesContainer.h | 2 +- .../Spawnable/SpawnableEntitiesInterface.cpp | 2 +- .../Spawnable/SpawnableEntitiesInterface.h | 2 +- .../Spawnable/SpawnableEntitiesManager.cpp | 2 +- .../Spawnable/SpawnableEntitiesManager.h | 2 +- .../Spawnable/SpawnableMetaData.cpp | 2 +- .../AzFramework/Spawnable/SpawnableMetaData.h | 2 +- .../AzFramework/Spawnable/SpawnableMonitor.cpp | 2 +- .../AzFramework/Spawnable/SpawnableMonitor.h | 2 +- .../Spawnable/SpawnableSystemComponent.cpp | 2 +- .../Spawnable/SpawnableSystemComponent.h | 2 +- .../StreamingInstall/StreamingInstall.cpp | 2 +- .../StreamingInstall/StreamingInstall.h | 2 +- .../StreamingInstallNotifications.h | 2 +- .../StreamingInstallRequests.h | 2 +- .../AzFramework/StringFunc/StringFunc.h | 2 +- .../TargetManagement/NeighborhoodAPI.cpp | 2 +- .../TargetManagement/NeighborhoodAPI.h | 2 +- .../TargetManagement/TargetManagementAPI.h | 2 +- .../TargetManagementComponent.cpp | 2 +- .../TargetManagementComponent.h | 2 +- .../Terrain/TerrainDataRequestBus.cpp | 2 +- .../Terrain/TerrainDataRequestBus.h | 2 +- .../AzFramework/Thermal/ThermalInfo.h | 2 +- .../AzFramework/UnitTest/FrameworkTestTypes.h | 2 +- .../UnitTest/TestDebugDisplayRequests.cpp | 2 +- .../UnitTest/TestDebugDisplayRequests.h | 2 +- .../AzFramework/Viewport/CameraInput.cpp | 2 +- .../AzFramework/Viewport/CameraInput.h | 2 +- .../AzFramework/Viewport/CameraState.cpp | 2 +- .../AzFramework/Viewport/CameraState.h | 2 +- .../AzFramework/Viewport/ClickDetector.cpp | 2 +- .../AzFramework/Viewport/ClickDetector.h | 2 +- .../AzFramework/Viewport/CursorState.h | 2 +- .../Viewport/DisplayContextRequestBus.h | 2 +- .../Viewport/MultiViewportController.h | 2 +- .../Viewport/MultiViewportController.inl | 2 +- .../AzFramework/Viewport/ScreenGeometry.cpp | 2 +- .../AzFramework/Viewport/ScreenGeometry.h | 2 +- .../Viewport/SingleViewportController.cpp | 2 +- .../Viewport/SingleViewportController.h | 2 +- .../AzFramework/Viewport/ViewportBus.cpp | 2 +- .../AzFramework/Viewport/ViewportBus.h | 2 +- .../AzFramework/Viewport/ViewportColors.cpp | 2 +- .../AzFramework/Viewport/ViewportColors.h | 2 +- .../AzFramework/Viewport/ViewportConstants.cpp | 2 +- .../AzFramework/Viewport/ViewportConstants.h | 2 +- .../Viewport/ViewportControllerInterface.h | 2 +- .../Viewport/ViewportControllerList.cpp | 2 +- .../Viewport/ViewportControllerList.h | 2 +- .../AzFramework/Viewport/ViewportId.h | 2 +- .../AzFramework/Viewport/ViewportScreen.cpp | 2 +- .../AzFramework/Viewport/ViewportScreen.h | 2 +- .../AzFramework/Visibility/BoundsBus.cpp | 2 +- .../AzFramework/Visibility/BoundsBus.h | 2 +- .../Visibility/EntityBoundsUnionBus.h | 2 +- .../EntityVisibilityBoundsUnionSystem.cpp | 2 +- .../EntityVisibilityBoundsUnionSystem.h | 2 +- .../Visibility/EntityVisibilityQuery.cpp | 2 +- .../Visibility/EntityVisibilityQuery.h | 2 +- .../AzFramework/Visibility/IVisibilitySystem.h | 2 +- .../Visibility/OctreeSystemComponent.cpp | 2 +- .../Visibility/OctreeSystemComponent.h | 2 +- .../AzFramework/Visibility/VisibilityDebug.cpp | 2 +- .../AzFramework/Visibility/VisibilityDebug.h | 2 +- .../AzFramework/Windowing/NativeWindow.cpp | 2 +- .../AzFramework/Windowing/NativeWindow.h | 2 +- .../AzFramework/Windowing/WindowBus.h | 2 +- .../AzFramework/azframework_files.cmake | 2 +- Code/Framework/AzFramework/CMakeLists.txt | 2 +- .../AzFramework/API/ApplicationAPI_Android.h | 2 +- .../AzFramework/API/ApplicationAPI_Platform.h | 2 +- .../Application/Application_Android.cpp | 2 +- .../AzFramework/Archive/ArchiveVars_Android.h | 2 +- .../AzFramework/Archive/ArchiveVars_Platform.h | 2 +- .../AzFramework/AzFramework_Traits_Android.h | 2 +- .../AzFramework/AzFramework_Traits_Platform.h | 2 +- .../AzFramework/IO/LocalFileIO_Android.cpp | 2 +- .../RawInputNotificationBus_Android.h | 2 +- .../RawInputNotificationBus_Platform.h | 2 +- .../Gamepad/InputDeviceGamepad_Android.cpp | 2 +- .../Keyboard/InputDeviceKeyboard_Android.cpp | 2 +- .../Motion/InputDeviceMotion_Android.cpp | 2 +- .../Devices/Mouse/InputDeviceMouse_Android.cpp | 2 +- .../Devices/Touch/InputDeviceTouch_Android.cpp | 2 +- .../InputDeviceVirtualKeyboard_Android.cpp | 2 +- .../Input/User/LocalUserId_Platform.h | 2 +- .../AzFramework/Process/ProcessCommon.h | 2 +- .../Process/ProcessCommunicator_Android.cpp | 2 +- .../Process/ProcessWatcher_Android.cpp | 2 +- .../Thermal/ThermalInfo_Android.cpp | 2 +- .../AzFramework/Thermal/ThermalInfo_Android.h | 2 +- .../Windowing/NativeWindow_Android.cpp | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Gamepad/InputDeviceGamepad_Apple.mm | 2 +- .../InputDeviceVirtualKeyboard_Apple.mm | 2 +- .../Apple/AzFramework/Utils/SystemUtilsApple.h | 2 +- .../AzFramework/Utils/SystemUtilsApple.mm | 2 +- .../Input/User/LocalUserId_Default.h | 2 +- .../AssetProcessorConnection_Default.cpp | 2 +- .../Process/ProcessCommon_Default.h | 2 +- .../Process/ProcessCommunicator_Default.cpp | 2 +- .../Process/ProcessWatcher_Default.cpp | 2 +- .../TargetManagementComponent_Default.cpp | 2 +- ...ssetSystemComponentHelper_Unimplemented.cpp | 2 +- .../InputDeviceGamepad_Unimplemented.cpp | 2 +- .../InputDeviceKeyboard_Unimplemented.cpp | 2 +- .../Motion/InputDeviceMotion_Unimplemented.cpp | 2 +- .../Mouse/InputDeviceMouse_Unimplemented.cpp | 2 +- .../Touch/InputDeviceTouch_Unimplemented.cpp | 2 +- ...nputDeviceVirtualKeyboard_Unimplemented.cpp | 2 +- .../StreamingInstall_Unimplemented.cpp | 2 +- .../AzFramework/IO/LocalFileIO_UnixLike.cpp | 2 +- .../AzFramework/IO/LocalFileIO_WinAPI.cpp | 2 +- .../Keyboard/InputDeviceKeyboard_WinAPI.h | 2 +- .../AssetProcessorConnection_WinAPI.cpp | 2 +- .../AzFramework/API/ApplicationAPI_Linux.h | 2 +- .../AzFramework/API/ApplicationAPI_Platform.h | 2 +- .../Application/Application_Linux.cpp | 2 +- .../AzFramework/Archive/ArchiveVars_Linux.h | 2 +- .../AzFramework/Archive/ArchiveVars_Platform.h | 2 +- .../Asset/AssetSystemComponentHelper_Linux.cpp | 2 +- .../AzFramework/AzFramework_Traits_Linux.h | 2 +- .../AzFramework/AzFramework_Traits_Platform.h | 2 +- .../Input/User/LocalUserId_Platform.h | 2 +- .../Linux/AzFramework/Process/ProcessCommon.h | 2 +- .../Process/ProcessCommunicator_Linux.cpp | 2 +- .../Process/ProcessWatcher_Linux.cpp | 2 +- .../Windowing/NativeWindow_Linux.cpp | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Mac/AzFramework/API/ApplicationAPI_Mac.h | 2 +- .../AzFramework/API/ApplicationAPI_Platform.h | 2 +- .../AzFramework/Application/Application_Mac.mm | 2 +- .../Mac/AzFramework/Archive/ArchiveVars_Mac.h | 2 +- .../AzFramework/Archive/ArchiveVars_Platform.h | 2 +- .../Asset/AssetSystemComponentHelper_Mac.cpp | 2 +- .../Mac/AzFramework/AzFramework_Traits_Mac.h | 2 +- .../AzFramework/AzFramework_Traits_Platform.h | 2 +- .../RawInputNotificationBus_Mac.h | 2 +- .../RawInputNotificationBus_Platform.h | 2 +- .../Keyboard/InputDeviceKeyboard_Mac.mm | 2 +- .../Devices/Mouse/InputDeviceMouse_Mac.mm | 2 +- .../Input/User/LocalUserId_Platform.h | 2 +- .../Mac/AzFramework/Process/ProcessCommon.h | 2 +- .../Process/ProcessCommunicator_Mac.cpp | 2 +- .../AzFramework/Process/ProcessWatcher_Mac.cpp | 2 +- .../TargetManagementComponent_Mac.cpp | 2 +- .../Mac/AzFramework/Utils/SystemUtilsApple.h | 2 +- .../AzFramework/Windowing/NativeWindow_Mac.mm | 2 +- .../Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../AzFramework/API/ApplicationAPI_Platform.h | 2 +- .../AzFramework/API/ApplicationAPI_Windows.h | 2 +- .../Application/Application_Windows.cpp | 2 +- .../AzFramework/Archive/ArchiveVars_Platform.h | 2 +- .../AzFramework/Archive/ArchiveVars_Windows.h | 2 +- .../AssetSystemComponentHelper_Windows.cpp | 2 +- .../AzFramework/AzFramework_Traits_Platform.h | 2 +- .../AzFramework/AzFramework_Traits_Windows.h | 2 +- .../AzFramework/IO/LocalFileIO_Windows.cpp | 2 +- .../RawInputNotificationBus_Platform.h | 2 +- .../RawInputNotificationBus_Windows.h | 2 +- .../Gamepad/InputDeviceGamepad_Windows.cpp | 2 +- .../Keyboard/InputDeviceKeyboard_Windows.cpp | 2 +- .../Devices/Mouse/InputDeviceMouse_Windows.cpp | 2 +- .../Input/User/LocalUserId_Platform.h | 2 +- .../AzFramework/Process/ProcessCommon.h | 2 +- .../Process/ProcessCommunicator_Win.cpp | 2 +- .../AzFramework/Process/ProcessWatcher_Win.cpp | 2 +- .../TargetManagementComponent_Windows.cpp | 2 +- .../Windowing/NativeWindow_Windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../AzFramework/API/ApplicationAPI_Platform.h | 2 +- .../iOS/AzFramework/API/ApplicationAPI_iOS.h | 2 +- .../AzFramework/Application/Application_iOS.mm | 2 +- .../AzFramework/Archive/ArchiveVars_Platform.h | 2 +- .../iOS/AzFramework/Archive/ArchiveVars_iOS.h | 2 +- .../AzFramework/AzFramework_Traits_Platform.h | 2 +- .../iOS/AzFramework/AzFramework_Traits_iOS.h | 2 +- .../RawInputNotificationBus_Platform.h | 2 +- .../RawInputNotificationBus_iOS.h | 2 +- .../Devices/Motion/InputDeviceMotion_iOS.mm | 2 +- .../Devices/Touch/InputDeviceTouch_iOS.mm | 2 +- .../Input/User/LocalUserId_Platform.h | 2 +- .../iOS/AzFramework/Process/ProcessCommon.h | 2 +- .../Process/ProcessCommunicator_iOS.cpp | 2 +- .../AzFramework/Process/ProcessWatcher_iOS.cpp | 2 +- .../iOS/AzFramework/Utils/SystemUtilsApple.h | 2 +- .../AzFramework/Windowing/NativeWindow_ios.mm | 2 +- .../Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../AzGameFramework/API/GameApplicationAPI.h | 2 +- .../Application/GameApplication.cpp | 2 +- .../Application/GameApplication.h | 2 +- .../AzGameFramework/AzGameFrameworkModule.cpp | 2 +- .../AzGameFramework/AzGameFrameworkModule.h | 2 +- .../AzGameFramework/CMakeLists.txt | 2 +- .../azgameframework_files.cmake | 2 +- Code/Framework/AzGameFramework/CMakeLists.txt | 2 +- .../AzManipulatorTestFramework/CMakeLists.txt | 2 +- .../ActionDispatcher.h | 2 +- .../AzManipulatorTestFramework.h | 2 +- .../AzManipulatorTestFrameworkTestHelpers.h | 2 +- .../AzManipulatorTestFrameworkUtils.h | 2 +- .../DirectManipulatorViewportInteraction.h | 2 +- .../ImmediateModeActionDispatcher.h | 2 +- .../IndirectManipulatorViewportInteraction.h | 2 +- .../RetainedModeActionDispatcher.h | 2 +- .../ViewportInteraction.h | 2 +- .../AzManipulatorTestFrameworkFixture.cpp | 2 +- .../Source/AzManipulatorTestFrameworkUtils.cpp | 2 +- .../DirectManipulatorViewportInteraction.cpp | 2 +- .../Source/ImmediateModeActionDispatcher.cpp | 2 +- .../IndirectManipulatorViewportInteraction.cpp | 2 +- .../Source/RetainedModeActionDispatcher.cpp | 2 +- .../Source/ViewportInteraction.cpp | 2 +- .../AzManipulatorTestFrameworkTestFixtures.h | 2 +- .../Tests/BusCallTest.cpp | 2 +- .../Tests/DirectCallTest.cpp | 2 +- .../Tests/GridSnappingTest.cpp | 2 +- .../AzManipulatorTestFramework/Tests/Main.cpp | 2 +- .../Tests/ViewportInteractionTest.cpp | 2 +- .../Tests/WorldSpaceBuilderTest.cpp | 2 +- .../azmanipulatortestframework_files.cmake | 2 +- ...zmanipulatortestframework_tests_files.cmake | 2 +- .../AutoGen/AutoPackets_Header.jinja | 2 +- .../AutoGen/AutoPackets_Inline.jinja | 2 +- .../AutoGen/AutoPackets_Source.jinja | 2 +- .../AzNetworking/AzNetworkingModule.cpp | 2 +- .../AzNetworking/AzNetworkingModule.h | 2 +- .../ConnectionLayer/ConnectionEnums.h | 2 +- .../ConnectionLayer/ConnectionMetrics.cpp | 2 +- .../ConnectionLayer/ConnectionMetrics.h | 2 +- .../ConnectionLayer/ConnectionMetrics.inl | 2 +- .../AzNetworking/ConnectionLayer/IConnection.h | 2 +- .../ConnectionLayer/IConnection.inl | 2 +- .../ConnectionLayer/IConnectionListener.h | 2 +- .../ConnectionLayer/IConnectionSet.h | 2 +- .../ConnectionLayer/SequenceGenerator.h | 2 +- .../ConnectionLayer/SequenceGenerator.inl | 2 +- .../AzNetworking/DataStructures/ByteBuffer.h | 2 +- .../AzNetworking/DataStructures/ByteBuffer.inl | 2 +- .../DataStructures/FixedSizeBitset.h | 2 +- .../DataStructures/FixedSizeBitset.inl | 2 +- .../DataStructures/FixedSizeBitsetView.h | 2 +- .../DataStructures/FixedSizeBitsetView.inl | 2 +- .../DataStructures/FixedSizeVectorBitset.h | 2 +- .../DataStructures/FixedSizeVectorBitset.inl | 2 +- .../AzNetworking/DataStructures/IBitset.h | 2 +- .../DataStructures/RingBufferBitset.h | 2 +- .../DataStructures/RingBufferBitset.inl | 2 +- .../DataStructures/TimeoutQueue.cpp | 2 +- .../AzNetworking/DataStructures/TimeoutQueue.h | 2 +- .../DataStructures/TimeoutQueue.inl | 2 +- .../AzNetworking/Framework/ICompressor.h | 2 +- .../AzNetworking/Framework/INetworkInterface.h | 2 +- .../AzNetworking/Framework/INetworking.h | 2 +- .../Framework/NetworkInterfaceMetrics.h | 2 +- .../Framework/NetworkingSystemComponent.cpp | 2 +- .../Framework/NetworkingSystemComponent.h | 2 +- .../AzNetworking/PacketLayer/IPacket.h | 2 +- .../AzNetworking/PacketLayer/IPacketHeader.h | 2 +- .../AzNetworking/Serialization/AbstractValue.h | 2 +- .../Serialization/AzContainerSerializers.h | 2 +- .../Serialization/DeltaSerializer.cpp | 2 +- .../Serialization/DeltaSerializer.h | 2 +- .../Serialization/DeltaSerializer.inl | 2 +- .../Serialization/HashSerializer.cpp | 2 +- .../Serialization/HashSerializer.h | 2 +- .../AzNetworking/Serialization/ISerializer.h | 2 +- .../AzNetworking/Serialization/ISerializer.inl | 2 +- .../Serialization/NetworkInputSerializer.cpp | 2 +- .../Serialization/NetworkInputSerializer.h | 2 +- .../Serialization/NetworkInputSerializer.inl | 2 +- .../Serialization/NetworkOutputSerializer.cpp | 2 +- .../Serialization/NetworkOutputSerializer.h | 2 +- .../Serialization/NetworkOutputSerializer.inl | 2 +- .../Serialization/StringifySerializer.cpp | 2 +- .../Serialization/StringifySerializer.h | 2 +- .../Serialization/TrackChangedSerializer.h | 2 +- .../Serialization/TrackChangedSerializer.inl | 2 +- .../TcpTransport/TcpConnection.cpp | 2 +- .../AzNetworking/TcpTransport/TcpConnection.h | 2 +- .../TcpTransport/TcpConnection.inl | 2 +- .../TcpTransport/TcpConnectionSet.cpp | 2 +- .../TcpTransport/TcpConnectionSet.h | 2 +- .../TcpTransport/TcpListenThread.cpp | 2 +- .../TcpTransport/TcpListenThread.h | 2 +- .../TcpTransport/TcpNetworkInterface.cpp | 2 +- .../TcpTransport/TcpNetworkInterface.h | 2 +- .../TcpTransport/TcpPacketHeader.cpp | 2 +- .../TcpTransport/TcpPacketHeader.h | 2 +- .../TcpTransport/TcpPacketHeader.inl | 2 +- .../AzNetworking/TcpTransport/TcpRingBuffer.h | 2 +- .../TcpTransport/TcpRingBuffer.inl | 2 +- .../TcpTransport/TcpRingBufferImpl.cpp | 2 +- .../TcpTransport/TcpRingBufferImpl.h | 2 +- .../TcpTransport/TcpRingBufferImpl.inl | 2 +- .../AzNetworking/TcpTransport/TcpSocket.cpp | 2 +- .../AzNetworking/TcpTransport/TcpSocket.h | 2 +- .../AzNetworking/TcpTransport/TcpSocket.inl | 2 +- .../TcpTransport/TcpSocketManager.h | 2 +- .../TcpTransport/TcpSocketManager_Epoll.cpp | 2 +- .../TcpTransport/TcpSocketManager_None.cpp | 2 +- .../TcpTransport/TcpSocketManager_Select.cpp | 2 +- .../AzNetworking/TcpTransport/TlsSocket.cpp | 2 +- .../AzNetworking/TcpTransport/TlsSocket.h | 2 +- .../AzNetworking/UdpTransport/DtlsEndpoint.cpp | 2 +- .../AzNetworking/UdpTransport/DtlsEndpoint.h | 2 +- .../AzNetworking/UdpTransport/DtlsSocket.cpp | 2 +- .../AzNetworking/UdpTransport/DtlsSocket.h | 2 +- .../UdpTransport/UdpConnection.cpp | 2 +- .../AzNetworking/UdpTransport/UdpConnection.h | 2 +- .../UdpTransport/UdpConnection.inl | 2 +- .../UdpTransport/UdpConnectionSet.cpp | 2 +- .../UdpTransport/UdpConnectionSet.h | 2 +- .../UdpTransport/UdpFragmentQueue.cpp | 2 +- .../UdpTransport/UdpFragmentQueue.h | 2 +- .../UdpTransport/UdpNetworkInterface.cpp | 2 +- .../UdpTransport/UdpNetworkInterface.h | 2 +- .../UdpTransport/UdpPacketHeader.cpp | 2 +- .../UdpTransport/UdpPacketHeader.h | 2 +- .../UdpTransport/UdpPacketHeader.inl | 2 +- .../UdpTransport/UdpPacketIdWindow.cpp | 2 +- .../UdpTransport/UdpPacketIdWindow.h | 2 +- .../UdpTransport/UdpPacketIdWindow.inl | 2 +- .../UdpTransport/UdpPacketTracker.cpp | 2 +- .../UdpTransport/UdpPacketTracker.h | 2 +- .../UdpTransport/UdpPacketTracker.inl | 2 +- .../UdpTransport/UdpReaderThread.cpp | 2 +- .../UdpTransport/UdpReaderThread.h | 2 +- .../UdpTransport/UdpReliableQueue.cpp | 2 +- .../UdpTransport/UdpReliableQueue.h | 2 +- .../AzNetworking/UdpTransport/UdpSocket.cpp | 2 +- .../AzNetworking/UdpTransport/UdpSocket.h | 2 +- .../AzNetworking/UdpTransport/UdpSocket.inl | 2 +- .../AzNetworking/Utilities/CidrAddress.cpp | 2 +- .../AzNetworking/Utilities/CidrAddress.h | 2 +- .../Utilities/EncryptionCommon.cpp | 2 +- .../AzNetworking/Utilities/EncryptionCommon.h | 2 +- .../AzNetworking/Utilities/Endian.h | 2 +- .../AzNetworking/Utilities/IpAddress.cpp | 2 +- .../AzNetworking/Utilities/IpAddress.h | 2 +- .../AzNetworking/Utilities/IpAddress.inl | 2 +- .../AzNetworking/Utilities/NetworkCommon.cpp | 2 +- .../AzNetworking/Utilities/NetworkCommon.h | 2 +- .../AzNetworking/Utilities/NetworkCommon.inl | 2 +- .../AzNetworking/Utilities/NetworkIncludes.h | 2 +- .../AzNetworking/Utilities/QuantizedValues.h | 2 +- .../AzNetworking/Utilities/QuantizedValues.inl | 2 +- .../AzNetworking/Utilities/TimedThread.cpp | 2 +- .../AzNetworking/Utilities/TimedThread.h | 2 +- .../AzNetworking/aznetworking_files.cmake | 2 +- Code/Framework/AzNetworking/CMakeLists.txt | 2 +- .../AzNetworking_Traits_Platform.h | 2 +- .../AzNetworking/Utilities/Endian_Platform.h | 2 +- .../Utilities/NetworkIncludes_Platform.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../AzNetworking/Utilities/Endian_Apple.h | 2 +- .../Utilities/IpAddress_Default.cpp | 2 +- .../AzNetworking/Utilities/Endian_UnixLike.h | 2 +- .../Utilities/NetworkCommon_UnixLike.cpp | 2 +- .../Utilities/NetworkIncludes_UnixLike.h | 2 +- .../AzNetworking/Utilities/Endian_WinAPI.h | 2 +- .../Utilities/NetworkCommon_WinAPI.cpp | 2 +- .../Utilities/NetworkIncludes_WinAPI.h | 2 +- .../AzNetworking_Traits_Platform.h | 2 +- .../AzNetworking/Utilities/Endian_Platform.h | 2 +- .../Utilities/NetworkIncludes_Platform.h | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../AzNetworking_Traits_Platform.h | 2 +- .../AzNetworking/Utilities/Endian_Platform.h | 2 +- .../Utilities/NetworkIncludes_Platform.h | 2 +- .../Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../AzNetworking_Traits_Platform.h | 2 +- .../AzNetworking/Utilities/Endian_Platform.h | 2 +- .../Utilities/NetworkIncludes_Platform.h | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../AzNetworking_Traits_Platform.h | 2 +- .../AzNetworking/Utilities/Endian_Platform.h | 2 +- .../Utilities/NetworkIncludes_Platform.h | 2 +- .../Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../ConnectionLayer/ConnectionMetricsTests.cpp | 2 +- .../ConnectionLayer/SequenceGeneratorTests.cpp | 2 +- .../DataStructures/FixedSizeBitsetTests.cpp | 2 +- .../FixedSizeBitsetViewTests.cpp | 2 +- .../FixedSizeVectorBitsetTests.cpp | 2 +- .../DataStructures/RingBufferBitsetTests.cpp | 2 +- .../Tests/DataStructures/TimeoutQueueTests.cpp | 2 +- Code/Framework/AzNetworking/Tests/Main.cpp | 2 +- .../Serialization/DeltaSerializerTests.cpp | 2 +- .../Serialization/HashSerializerTests.cpp | 2 +- .../NetworkInputSerializerTests.cpp | 2 +- .../NetworkOutputSerializerTests.cpp | 2 +- .../TrackChangedSerializerTests.cpp | 2 +- .../Tests/TcpTransport/TcpTransportTests.cpp | 2 +- .../Tests/UdpTransport/UdpTransportTests.cpp | 2 +- .../Tests/Utilities/CidrAddressTests.cpp | 2 +- .../Tests/Utilities/IpAddressTests.cpp | 2 +- .../Tests/Utilities/NetworkCommonTests.cpp | 2 +- .../Tests/Utilities/QuantizedValuesTests.cpp | 2 +- .../Tests/aznetworkingtests_files.cmake | 2 +- .../AzQtComponents/AzQtComponentsAPI.h | 2 +- .../AzQtComponents/Buses/DragAndDrop.h | 2 +- .../AzQtComponents/Buses/ShortcutDispatch.h | 2 +- .../Components/AutoCustomWindowDecorations.cpp | 2 +- .../Components/AutoCustomWindowDecorations.h | 2 +- .../Components/ButtonDivider.cpp | 2 +- .../AzQtComponents/Components/ButtonDivider.h | 2 +- .../AzQtComponents/Components/ButtonStripe.cpp | 2 +- .../AzQtComponents/Components/ButtonStripe.h | 2 +- .../Components/ConfigHelpers.cpp | 2 +- .../AzQtComponents/Components/ConfigHelpers.h | 2 +- .../AzQtComponents/Components/DockBar.cpp | 2 +- .../AzQtComponents/Components/DockBar.h | 2 +- .../Components/DockBarButton.cpp | 2 +- .../AzQtComponents/Components/DockBarButton.h | 2 +- .../Components/DockMainWindow.cpp | 2 +- .../AzQtComponents/Components/DockMainWindow.h | 2 +- .../AzQtComponents/Components/DockTabBar.cpp | 2 +- .../AzQtComponents/Components/DockTabBar.h | 2 +- .../Components/DockTabWidget.cpp | 2 +- .../AzQtComponents/Components/DockTabWidget.h | 2 +- .../Components/EditorProxyStyle_mac.mm | 2 +- .../Components/ExtendedLabel.cpp | 2 +- .../AzQtComponents/Components/ExtendedLabel.h | 2 +- .../AzQtComponents/Components/FancyDocking.cpp | 2 +- .../AzQtComponents/Components/FancyDocking.h | 2 +- .../Components/FancyDockingDropZoneWidget.cpp | 2 +- .../Components/FancyDockingDropZoneWidget.h | 2 +- .../Components/FancyDockingGhostWidget.cpp | 2 +- .../Components/FancyDockingGhostWidget.h | 2 +- .../Components/FilteredSearchWidget.cpp | 2 +- .../Components/FilteredSearchWidget.h | 2 +- .../Components/GlobalEventFilter.cpp | 2 +- .../Components/GlobalEventFilter.h | 2 +- .../AzQtComponents/Components/HelpButton.cpp | 2 +- .../AzQtComponents/Components/HelpButton.h | 2 +- .../InteractiveWindowGeometryChanger.cpp | 2 +- .../InteractiveWindowGeometryChanger.h | 2 +- .../AzQtComponents/Components/O3DEStylesheet.h | 2 +- .../Components/RepolishMinimizer.h | 2 +- .../Components/SearchLineEdit.cpp | 2 +- .../AzQtComponents/Components/SearchLineEdit.h | 2 +- .../AzQtComponents/Components/Style.cpp | 2 +- .../AzQtComponents/Components/Style.h | 2 +- .../AzQtComponents/Components/StyleHelpers.h | 2 +- .../AzQtComponents/Components/StyleManager.cpp | 2 +- .../AzQtComponents/Components/StyleManager.h | 2 +- .../Components/StyleSheetCache.cpp | 2 +- .../Components/StyleSheetCache.h | 2 +- .../Components/StyledBusyLabel.cpp | 2 +- .../Components/StyledBusyLabel.h | 2 +- .../Components/StyledDetailsTableModel.cpp | 2 +- .../Components/StyledDetailsTableModel.h | 2 +- .../Components/StyledDetailsTableView.cpp | 2 +- .../Components/StyledDetailsTableView.h | 2 +- .../AzQtComponents/Components/StyledDialog.cpp | 2 +- .../AzQtComponents/Components/StyledDialog.h | 2 +- .../Components/StyledDockWidget.cpp | 2 +- .../Components/StyledDockWidget.h | 2 +- .../Components/StyledLineEdit.cpp | 2 +- .../AzQtComponents/Components/StyledLineEdit.h | 2 +- .../Components/StyledSpinBox.cpp | 2 +- .../AzQtComponents/Components/StyledSpinBox.h | 2 +- .../Components/StylesheetPreprocessor.cpp | 2 +- .../Components/StylesheetPreprocessor.h | 2 +- .../AzQtComponents/Components/TagSelector.cpp | 2 +- .../AzQtComponents/Components/TagSelector.h | 2 +- .../Components/TitleBarOverdrawHandler.cpp | 2 +- .../Components/TitleBarOverdrawHandler.h | 2 +- .../Components/TitleBarOverdrawHandler_win.cpp | 2 +- .../Components/TitleBarOverdrawHandler_win.h | 2 +- .../TitleBarOverdrawScreenHandler_win.cpp | 2 +- .../TitleBarOverdrawScreenHandler_win.h | 2 +- .../AzQtComponents/Components/Titlebar.cpp | 2 +- .../AzQtComponents/Components/Titlebar.h | 2 +- .../AzQtComponents/Components/ToolBarArea.cpp | 2 +- .../AzQtComponents/Components/ToolBarArea.h | 2 +- .../Components/ToolButtonComboBox.cpp | 2 +- .../Components/ToolButtonComboBox.h | 2 +- .../Components/ToolButtonLineEdit.cpp | 2 +- .../Components/ToolButtonLineEdit.h | 2 +- .../Components/ToolButtonWithWidget.cpp | 2 +- .../Components/ToolButtonWithWidget.h | 2 +- .../AzQtComponents/Components/VectorEdit.cpp | 2 +- .../AzQtComponents/Components/VectorEdit.h | 2 +- .../Components/Widgets/AssetFolderListView.cpp | 2 +- .../Components/Widgets/AssetFolderListView.h | 2 +- .../Components/Widgets/AssetFolderListView.qss | 2 +- .../Widgets/AssetFolderThumbnailView.cpp | 2 +- .../Widgets/AssetFolderThumbnailView.h | 2 +- .../Components/Widgets/BaseStyleSheet.qss | 2 +- .../Components/Widgets/BreadCrumbs.cpp | 2 +- .../Components/Widgets/BreadCrumbs.h | 2 +- .../Components/Widgets/BreadCrumbs.qss | 2 +- .../Components/Widgets/BrowseEdit.cpp | 2 +- .../Components/Widgets/BrowseEdit.h | 2 +- .../Components/Widgets/BrowseEdit.qss | 2 +- .../AzQtComponents/Components/Widgets/Card.cpp | 2 +- .../AzQtComponents/Components/Widgets/Card.h | 2 +- .../AzQtComponents/Components/Widgets/Card.qss | 2 +- .../Components/Widgets/CardHeader.cpp | 2 +- .../Components/Widgets/CardHeader.h | 2 +- .../Components/Widgets/CardNotification.cpp | 2 +- .../Components/Widgets/CardNotification.h | 2 +- .../Components/Widgets/CheckBox.cpp | 2 +- .../Components/Widgets/CheckBox.h | 2 +- .../Components/Widgets/CheckBox.qss | 2 +- .../Components/Widgets/ColorLabel.cpp | 2 +- .../Components/Widgets/ColorLabel.h | 2 +- .../Components/Widgets/ColorLabel.qss | 2 +- .../Components/Widgets/ColorPicker.cpp | 2 +- .../Components/Widgets/ColorPicker.h | 2 +- .../Components/Widgets/ColorPicker.qss | 2 +- .../ColorPicker/ColorComponentSliders.cpp | 2 +- .../ColorPicker/ColorComponentSliders.h | 2 +- .../Widgets/ColorPicker/ColorController.cpp | 2 +- .../Widgets/ColorPicker/ColorController.h | 2 +- .../Widgets/ColorPicker/ColorGrid.cpp | 2 +- .../Components/Widgets/ColorPicker/ColorGrid.h | 2 +- .../Widgets/ColorPicker/ColorHexEdit.cpp | 2 +- .../Widgets/ColorPicker/ColorHexEdit.h | 2 +- .../Widgets/ColorPicker/ColorPreview.cpp | 2 +- .../Widgets/ColorPicker/ColorPreview.h | 2 +- .../Widgets/ColorPicker/ColorRGBAEdit.cpp | 2 +- .../Widgets/ColorPicker/ColorRGBAEdit.h | 2 +- .../Widgets/ColorPicker/ColorValidator.cpp | 2 +- .../Widgets/ColorPicker/ColorValidator.h | 2 +- .../Widgets/ColorPicker/ColorWarning.cpp | 2 +- .../Widgets/ColorPicker/ColorWarning.h | 2 +- .../Widgets/ColorPicker/GammaEdit.cpp | 2 +- .../Components/Widgets/ColorPicker/GammaEdit.h | 2 +- .../Components/Widgets/ColorPicker/Palette.cpp | 2 +- .../Components/Widgets/ColorPicker/Palette.h | 2 +- .../Widgets/ColorPicker/PaletteCard.cpp | 2 +- .../Widgets/ColorPicker/PaletteCard.h | 2 +- .../ColorPicker/PaletteCardCollection.cpp | 2 +- .../ColorPicker/PaletteCardCollection.h | 2 +- .../Widgets/ColorPicker/PaletteView.cpp | 2 +- .../Widgets/ColorPicker/PaletteView.h | 2 +- .../Components/Widgets/ColorPicker/Swatch.cpp | 2 +- .../Components/Widgets/ColorPicker/Swatch.h | 2 +- .../Components/Widgets/ComboBox.cpp | 2 +- .../Components/Widgets/ComboBox.h | 2 +- .../Components/Widgets/ComboBox.qss | 2 +- .../Components/Widgets/DialogButtonBox.cpp | 2 +- .../Components/Widgets/DialogButtonBox.h | 2 +- .../Components/Widgets/DragAndDrop.cpp | 2 +- .../Components/Widgets/DragAndDrop.h | 2 +- .../Components/Widgets/ElidingLabel.cpp | 2 +- .../Components/Widgets/ElidingLabel.h | 2 +- .../Components/Widgets/Eyedropper.cpp | 2 +- .../Components/Widgets/Eyedropper.h | 2 +- .../Widgets/FilteredSearchWidget.qss | 2 +- .../Components/Widgets/GradientSlider.cpp | 2 +- .../Components/Widgets/GradientSlider.h | 2 +- .../Widgets/Internal/OverlayWidgetLayer.cpp | 2 +- .../Widgets/Internal/OverlayWidgetLayer.h | 2 +- .../Components/Widgets/LineEdit.cpp | 2 +- .../Components/Widgets/LineEdit.h | 2 +- .../Components/Widgets/LineEdit.qss | 2 +- .../Widgets/LogicalTabOrderingWidget.cpp | 2 +- .../Widgets/LogicalTabOrderingWidget.h | 2 +- .../AzQtComponents/Components/Widgets/Menu.cpp | 2 +- .../AzQtComponents/Components/Widgets/Menu.h | 2 +- .../AzQtComponents/Components/Widgets/Menu.qss | 2 +- .../Components/Widgets/MenuBar.qss | 2 +- .../Components/Widgets/MessageBox.cpp | 2 +- .../Components/Widgets/MessageBox.h | 2 +- .../Components/Widgets/OverlayWidget.cpp | 2 +- .../Components/Widgets/OverlayWidget.h | 2 +- .../Components/Widgets/ProgressBar.cpp | 2 +- .../Components/Widgets/ProgressBar.h | 2 +- .../Components/Widgets/ProgressBar.qss | 2 +- .../Components/Widgets/PushButton.cpp | 2 +- .../Components/Widgets/PushButton.h | 2 +- .../Components/Widgets/PushButton.qss | 2 +- .../Components/Widgets/QDockWidget.qss | 2 +- .../Components/Widgets/RadioButton.cpp | 2 +- .../Components/Widgets/RadioButton.h | 2 +- .../Components/Widgets/RadioButton.qss | 2 +- .../Widgets/ReflectedPropertyEditor.qss | 2 +- .../Components/Widgets/ScrollBar.cpp | 2 +- .../Components/Widgets/ScrollBar.h | 2 +- .../Components/Widgets/ScrollBar.qss | 2 +- .../Components/Widgets/SegmentBar.cpp | 2 +- .../Components/Widgets/SegmentBar.h | 2 +- .../Components/Widgets/SegmentControl.cpp | 2 +- .../Components/Widgets/SegmentControl.h | 2 +- .../Components/Widgets/SegmentControl.qss | 2 +- .../Components/Widgets/Slider.cpp | 2 +- .../AzQtComponents/Components/Widgets/Slider.h | 2 +- .../Components/Widgets/Slider.qss | 2 +- .../Components/Widgets/SliderCombo.cpp | 2 +- .../Components/Widgets/SliderCombo.h | 2 +- .../Components/Widgets/SpinBox.cpp | 2 +- .../Components/Widgets/SpinBox.h | 2 +- .../Components/Widgets/SpinBox.qss | 2 +- .../Components/Widgets/Splitter.qss | 2 +- .../Components/Widgets/StatusBar.cpp | 2 +- .../Components/Widgets/StatusBar.h | 2 +- .../Components/Widgets/StyledDockWidget.qss | 2 +- .../Components/Widgets/TabWidget.cpp | 2 +- .../Components/Widgets/TabWidget.h | 2 +- .../Components/Widgets/TabWidget.qss | 2 +- .../Widgets/TabWidgetActionToolBar.cpp | 2 +- .../Widgets/TabWidgetActionToolBar.h | 2 +- .../Components/Widgets/TableView.cpp | 2 +- .../Components/Widgets/TableView.h | 2 +- .../Components/Widgets/TableView.qss | 2 +- .../AzQtComponents/Components/Widgets/Text.cpp | 2 +- .../AzQtComponents/Components/Widgets/Text.h | 2 +- .../AzQtComponents/Components/Widgets/Text.qss | 2 +- .../Components/Widgets/TitleBar.qss | 2 +- .../Components/Widgets/ToolBar.cpp | 2 +- .../Components/Widgets/ToolBar.h | 2 +- .../Components/Widgets/ToolBar.qss | 2 +- .../Components/Widgets/ToolButton.cpp | 2 +- .../Components/Widgets/ToolButton.h | 2 +- .../Components/Widgets/ToolTip.qss | 2 +- .../Components/Widgets/TreeView.cpp | 2 +- .../Components/Widgets/TreeView.h | 2 +- .../Components/Widgets/VectorInput.cpp | 2 +- .../Components/Widgets/VectorInput.h | 2 +- .../Components/Widgets/VectorInput.qss | 2 +- .../Widgets/WindowDecorationWrapper.qss | 2 +- .../Components/WindowDecorationWrapper.cpp | 2 +- .../Components/WindowDecorationWrapper.h | 2 +- .../DragAndDrop/MainWindowDragAndDrop.h | 2 +- .../DragAndDrop/ViewportDragAndDrop.h | 2 +- .../Gallery/AssetBrowserFolderPage.cpp | 2 +- .../Gallery/AssetBrowserFolderPage.h | 2 +- .../AzQtComponents/Gallery/BreadCrumbsPage.cpp | 2 +- .../AzQtComponents/Gallery/BreadCrumbsPage.h | 2 +- .../AzQtComponents/Gallery/BrowseEditPage.cpp | 2 +- .../AzQtComponents/Gallery/BrowseEditPage.h | 2 +- .../AzQtComponents/Gallery/ButtonPage.cpp | 2 +- .../AzQtComponents/Gallery/ButtonPage.h | 2 +- .../AzQtComponents/Gallery/CardPage.cpp | 2 +- .../AzQtComponents/Gallery/CardPage.h | 2 +- .../AzQtComponents/Gallery/CheckBoxPage.cpp | 2 +- .../AzQtComponents/Gallery/CheckBoxPage.h | 2 +- .../AzQtComponents/Gallery/ColorLabelPage.cpp | 2 +- .../AzQtComponents/Gallery/ColorLabelPage.h | 2 +- .../AzQtComponents/Gallery/ColorPickerPage.cpp | 2 +- .../AzQtComponents/Gallery/ColorPickerPage.h | 2 +- .../AzQtComponents/Gallery/ComboBoxPage.cpp | 2 +- .../AzQtComponents/Gallery/ComboBoxPage.h | 2 +- .../Gallery/ComponentDemoWidget.cpp | 2 +- .../Gallery/ComponentDemoWidget.h | 2 +- .../AzQtComponents/Gallery/DragAndDropPage.cpp | 2 +- .../AzQtComponents/Gallery/DragAndDropPage.h | 2 +- .../AzQtComponents/Gallery/ExampleWidget.qss | 2 +- .../Gallery/FilteredSearchWidgetPage.cpp | 2 +- .../Gallery/FilteredSearchWidgetPage.h | 2 +- .../Gallery/FixedStateButton.cpp | 2 +- .../AzQtComponents/Gallery/FixedStateButton.h | 2 +- .../Gallery/GradientSliderPage.cpp | 2 +- .../Gallery/GradientSliderPage.h | 2 +- .../AzQtComponents/Gallery/HyperlinkPage.cpp | 2 +- .../AzQtComponents/Gallery/HyperlinkPage.h | 2 +- .../AzQtComponents/Gallery/LineEditPage.cpp | 2 +- .../AzQtComponents/Gallery/LineEditPage.h | 2 +- .../AzQtComponents/Gallery/MenuPage.cpp | 2 +- .../AzQtComponents/Gallery/MenuPage.h | 2 +- .../Gallery/ProgressIndicatorPage.cpp | 2 +- .../Gallery/ProgressIndicatorPage.h | 2 +- .../AzQtComponents/Gallery/RadioButtonPage.cpp | 2 +- .../AzQtComponents/Gallery/RadioButtonPage.h | 2 +- .../Gallery/ReflectedPropertyEditorPage.cpp | 2 +- .../Gallery/ReflectedPropertyEditorPage.h | 2 +- .../AzQtComponents/Gallery/ScrollBarPage.cpp | 2 +- .../AzQtComponents/Gallery/ScrollBarPage.h | 2 +- .../Gallery/SegmentControlPage.cpp | 2 +- .../Gallery/SegmentControlPage.h | 2 +- .../AzQtComponents/Gallery/SliderComboPage.cpp | 2 +- .../AzQtComponents/Gallery/SliderComboPage.h | 2 +- .../AzQtComponents/Gallery/SliderPage.cpp | 2 +- .../AzQtComponents/Gallery/SliderPage.h | 2 +- .../AzQtComponents/Gallery/SpinBoxPage.cpp | 2 +- .../AzQtComponents/Gallery/SpinBoxPage.h | 2 +- .../AzQtComponents/Gallery/SplitterPage.cpp | 2 +- .../AzQtComponents/Gallery/SplitterPage.h | 2 +- .../AzQtComponents/Gallery/StyleSheetLabel.qss | 2 +- .../AzQtComponents/Gallery/StyleSheetPage.cpp | 2 +- .../AzQtComponents/Gallery/StyleSheetPage.h | 2 +- .../AzQtComponents/Gallery/StyleSheetPage.qss | 2 +- .../AzQtComponents/Gallery/StyleSheetView.qss | 2 +- .../Gallery/StyledDockWidgetPage.cpp | 2 +- .../Gallery/StyledDockWidgetPage.h | 2 +- .../AzQtComponents/Gallery/SvgLabelPage.cpp | 2 +- .../AzQtComponents/Gallery/SvgLabelPage.h | 2 +- .../AzQtComponents/Gallery/TabWidgetPage.cpp | 2 +- .../AzQtComponents/Gallery/TabWidgetPage.h | 2 +- .../AzQtComponents/Gallery/TableViewPage.cpp | 2 +- .../AzQtComponents/Gallery/TableViewPage.h | 2 +- .../AzQtComponents/Gallery/TitleBarPage.cpp | 2 +- .../AzQtComponents/Gallery/TitleBarPage.h | 2 +- .../Gallery/ToggleSwitchPage.cpp | 2 +- .../AzQtComponents/Gallery/ToggleSwitchPage.h | 2 +- .../AzQtComponents/Gallery/ToolBarPage.cpp | 2 +- .../AzQtComponents/Gallery/ToolBarPage.h | 2 +- .../AzQtComponents/Gallery/TreeViewPage.cpp | 2 +- .../AzQtComponents/Gallery/TreeViewPage.h | 2 +- .../AzQtComponents/Gallery/TypographyPage.cpp | 2 +- .../AzQtComponents/Gallery/TypographyPage.h | 2 +- .../AzQtComponents/Gallery/main.cpp | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../PropertyEditorStandalone/main.cpp | 2 +- .../StyleGallery/ConditionGroupWidget.cpp | 2 +- .../StyleGallery/ConditionGroupWidget.h | 2 +- .../StyleGallery/ConditionWidget.cpp | 2 +- .../StyleGallery/ConditionWidget.h | 2 +- .../StyleGallery/DeploymentsWidget.cpp | 2 +- .../StyleGallery/DeploymentsWidget.h | 2 +- .../AzQtComponents/StyleGallery/MyCombo.cpp | 2 +- .../AzQtComponents/StyleGallery/MyCombo.h | 2 +- .../StyleGallery/ViewportTitleDlg.cpp | 2 +- .../StyleGallery/ViewportTitleDlg.h | 2 +- .../AzQtComponents/StyleGallery/main.cpp | 2 +- .../AzQtComponents/StyleGallery/mainwidget.cpp | 2 +- .../AzQtComponents/StyleGallery/mainwidget.h | 2 +- .../Tests/AzQtComponentTests.cpp | 2 +- .../Tests/ColorControllerTests.cpp | 2 +- .../Tests/FloatToStringConversionTests.cpp | 2 +- .../AzQtComponents/Tests/HexParsingTests.cpp | 2 +- .../Tests/StyleSheetCacheTests.cpp | 2 +- .../Utilities/AutoSettingsGroup.h | 2 +- .../Utilities/ColorUtilities.cpp | 2 +- .../AzQtComponents/Utilities/ColorUtilities.h | 2 +- .../AzQtComponents/Utilities/Conversions.cpp | 2 +- .../AzQtComponents/Utilities/Conversions.h | 2 +- .../Utilities/DesktopUtilities.cpp | 2 +- .../Utilities/DesktopUtilities.h | 2 +- .../Utilities/HandleDpiAwareness.cpp | 2 +- .../Utilities/HandleDpiAwareness.h | 2 +- .../AzQtComponents/Utilities/MouseHider.h | 2 +- .../Utilities/MouseHider_linux.cpp | 2 +- .../AzQtComponents/Utilities/MouseHider_mac.mm | 2 +- .../Utilities/MouseHider_win.cpp | 2 +- .../AzQtComponents/Utilities/QtPluginPaths.cpp | 2 +- .../AzQtComponents/Utilities/QtPluginPaths.h | 2 +- .../Utilities/QtViewPaneEffects.cpp | 2 +- .../Utilities/QtViewPaneEffects.h | 2 +- .../Utilities/QtWindowUtilities.cpp | 2 +- .../Utilities/QtWindowUtilities.h | 2 +- .../Utilities/QtWindowUtilities_linux.cpp | 2 +- .../Utilities/QtWindowUtilities_mac.mm | 2 +- .../Utilities/QtWindowUtilities_win.cpp | 2 +- .../Utilities/RandomNumberGenerator.cpp | 2 +- .../Utilities/RandomNumberGenerator.h | 2 +- .../AzQtComponents/Utilities/ScopedCleanup.h | 2 +- .../AzQtComponents/Utilities/ScreenGrabber.h | 2 +- .../Utilities/ScreenGrabber_linux.cpp | 2 +- .../Utilities/ScreenGrabber_mac.mm | 2 +- .../Utilities/ScreenGrabber_win.cpp | 2 +- .../Utilities/ScreenUtilities.cpp | 2 +- .../AzQtComponents/Utilities/ScreenUtilities.h | 2 +- .../Utilities/SelectionProxyModel.cpp | 2 +- .../Utilities/SelectionProxyModel.h | 2 +- .../AzQtComponents/Utilities/TextUtilities.cpp | 2 +- .../AzQtComponents/Utilities/TextUtilities.h | 2 +- .../AzQtComponents/azqtcomponents_files.cmake | 2 +- .../azqtcomponents_gallery_files.cmake | 2 +- .../azqtcomponents_rpestandalone_files.cmake | 2 +- .../azqtcomponents_style_files.cmake | 2 +- .../azqtcomponents_testing_files.cmake | 2 +- Code/Framework/AzQtComponents/CMakeLists.txt | 2 +- .../Utilities/HandleDpiAwareness_Default.cpp | 2 +- .../Components/StyledDockWidget_Linux.cpp | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Components/StyledDockWidget_Mac.cpp | 2 +- .../Platform/Mac/platform_mac.cmake | 2 +- .../Components/StyledDockWidget_Windows.cpp | 2 +- .../Utilities/HandleDpiAwareness_Windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- Code/Framework/AzTest/AzTest/AzTest.cpp | 2 +- Code/Framework/AzTest/AzTest/AzTest.h | 2 +- .../AzTest/AzTest/ColorizedOutput.cpp | 2 +- .../AzTest/AzTest/GemTestEnvironment.cpp | 2 +- .../AzTest/AzTest/GemTestEnvironment.h | 2 +- Code/Framework/AzTest/AzTest/Platform.h | 2 +- .../Platform/Android/AzTest_Traits_Android.h | 2 +- .../Platform/Android/AzTest_Traits_Platform.h | 2 +- .../Platform/Android/Platform_Android.cpp | 2 +- .../ScopedAutoTempDirectory_Android.cpp | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../AzTest/ColorizedOutput_Unimplemented.cpp | 2 +- .../ScopedAutoTempDirectory_Unimplemented.cpp | 2 +- .../Unimplemented/Platform_Unimplemented.cpp | 2 +- .../AzTest/ColorizedOutput_UnixLike.cpp | 2 +- .../ScopedAutoTempDirectory_UnixLike.cpp | 2 +- .../WinAPI/AzTest/ColorizedOutput_WinAPI.cpp | 2 +- .../Platform/Linux/AzTest_Traits_Linux.h | 2 +- .../Platform/Linux/AzTest_Traits_Platform.h | 2 +- .../AzTest/Platform/Linux/Platform_Linux.cpp | 2 +- .../AzTest/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../AzTest/Platform/Mac/AzTest_Traits_Mac.h | 2 +- .../Platform/Mac/AzTest_Traits_Platform.h | 2 +- .../AzTest/Platform/Mac/Platform_Mac.cpp | 2 +- .../AzTest/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/AzTest_Traits_Platform.h | 2 +- .../Platform/Windows/AzTest_Traits_Windows.h | 2 +- .../Platform/Windows/Platform_Windows.cpp | 2 +- .../ScopedAutoTempDirectory_Windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/AzTest_Traits_Platform.h | 2 +- .../AzTest/Platform/iOS/AzTest_Traits_iOS.h | 2 +- .../AzTest/Platform/iOS/Platform_iOS.cpp | 2 +- .../AzTest/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Code/Framework/AzTest/AzTest/Utils.cpp | 2 +- Code/Framework/AzTest/AzTest/Utils.h | 2 +- .../Framework/AzTest/AzTest/aztest_files.cmake | 2 +- Code/Framework/AzTest/CMakeLists.txt | 2 +- .../AzToolsFramework/API/AssetDatabaseBus.h | 2 +- .../API/ComponentEntityObjectBus.h | 2 +- .../API/ComponentEntitySelectionBus.h | 2 +- .../API/EditorAnimationSystemRequestBus.h | 2 +- .../API/EditorAssetSystemAPI.h | 2 +- .../AzToolsFramework/API/EditorCameraBus.cpp | 2 +- .../AzToolsFramework/API/EditorCameraBus.h | 2 +- .../AzToolsFramework/API/EditorEntityAPI.h | 2 +- .../API/EditorLevelNotificationBus.h | 2 +- .../API/EditorPythonConsoleBus.h | 2 +- .../API/EditorPythonRunnerRequestsBus.h | 2 +- .../API/EditorVegetationRequestsBus.h | 2 +- .../API/EditorViewportIconDisplayInterface.h | 2 +- .../API/EditorWindowRequestBus.h | 2 +- .../API/EntityCompositionNotificationBus.h | 2 +- .../API/EntityCompositionRequestBus.h | 2 +- .../API/EntityPropertyEditorRequestsBus.h | 2 +- .../AzToolsFramework/API/ToolsApplicationAPI.h | 2 +- .../AzToolsFramework/API/ViewPaneOptions.h | 2 +- .../Application/EditorEntityManager.cpp | 2 +- .../Application/EditorEntityManager.h | 2 +- .../AzToolsFramework/Application/Ticker.cpp | 2 +- .../AzToolsFramework/Application/Ticker.h | 2 +- .../Application/ToolsApplication.cpp | 2 +- .../Application/ToolsApplication.h | 2 +- .../AzToolsFramework/Archive/ArchiveAPI.h | 2 +- .../Archive/ArchiveComponent.cpp | 2 +- .../Archive/ArchiveComponent.h | 2 +- .../Archive/NullArchiveComponent.cpp | 2 +- .../Archive/NullArchiveComponent.h | 2 +- .../AzToolsFramework/Asset/AssetBundler.cpp | 2 +- .../AzToolsFramework/Asset/AssetBundler.h | 2 +- .../AzToolsFramework/Asset/AssetDebugInfo.cpp | 2 +- .../AzToolsFramework/Asset/AssetDebugInfo.h | 2 +- .../Asset/AssetProcessorMessages.cpp | 2 +- .../Asset/AssetProcessorMessages.h | 2 +- .../Asset/AssetSeedManager.cpp | 2 +- .../AzToolsFramework/Asset/AssetSeedManager.h | 2 +- .../Asset/AssetSystemComponent.cpp | 2 +- .../Asset/AssetSystemComponent.h | 2 +- .../AzToolsFramework/Asset/AssetUtils.cpp | 2 +- .../AzToolsFramework/Asset/AssetUtils.h | 2 +- .../AssetBrowser/AssetBrowserBus.h | 2 +- .../AssetBrowser/AssetBrowserBus.inl | 2 +- .../AssetBrowser/AssetBrowserComponent.cpp | 2 +- .../AssetBrowser/AssetBrowserComponent.h | 2 +- .../AssetBrowser/AssetBrowserEntry.h | 2 +- .../AssetBrowser/AssetBrowserFilterModel.cpp | 2 +- .../AssetBrowser/AssetBrowserFilterModel.h | 2 +- .../AssetBrowser/AssetBrowserModel.cpp | 2 +- .../AssetBrowser/AssetBrowserModel.h | 2 +- .../AssetBrowser/AssetBrowserSourceDropBus.h | 2 +- .../AssetBrowser/AssetEntryChange.h | 2 +- .../AssetBrowser/AssetEntryChangeset.cpp | 2 +- .../AssetBrowser/AssetEntryChangeset.h | 2 +- .../AssetPicker/AssetPickerDialog.cpp | 2 +- .../AssetPicker/AssetPickerDialog.h | 2 +- .../AssetBrowser/AssetSelectionModel.cpp | 2 +- .../AssetBrowser/AssetSelectionModel.h | 2 +- .../AssetBrowser/EBusFindAssetTypeByName.h | 2 +- .../AssetBrowser/Entries/AssetBrowserEntry.cpp | 2 +- .../AssetBrowser/Entries/AssetBrowserEntry.h | 2 +- .../AssetBrowser/Entries/AssetBrowserEntry.inl | 2 +- .../Entries/AssetBrowserEntryCache.cpp | 2 +- .../Entries/AssetBrowserEntryCache.h | 2 +- .../Entries/FolderAssetBrowserEntry.cpp | 2 +- .../Entries/FolderAssetBrowserEntry.h | 2 +- .../Entries/ProductAssetBrowserEntry.cpp | 2 +- .../Entries/ProductAssetBrowserEntry.h | 2 +- .../Entries/RootAssetBrowserEntry.cpp | 2 +- .../Entries/RootAssetBrowserEntry.h | 2 +- .../Entries/SourceAssetBrowserEntry.cpp | 2 +- .../Entries/SourceAssetBrowserEntry.h | 2 +- .../AssetBrowser/Previewer/EmptyPreviewer.cpp | 2 +- .../AssetBrowser/Previewer/EmptyPreviewer.h | 2 +- .../AssetBrowser/Previewer/Previewer.cpp | 2 +- .../AssetBrowser/Previewer/Previewer.h | 2 +- .../AssetBrowser/Previewer/PreviewerBus.h | 2 +- .../AssetBrowser/Previewer/PreviewerFactory.h | 2 +- .../AssetBrowser/Previewer/PreviewerFrame.cpp | 2 +- .../AssetBrowser/Previewer/PreviewerFrame.h | 2 +- .../AssetBrowser/Search/Filter.cpp | 2 +- .../AssetBrowser/Search/Filter.h | 2 +- .../AssetBrowser/Search/FilterByWidget.cpp | 2 +- .../AssetBrowser/Search/FilterByWidget.h | 2 +- .../Search/SearchAssetTypeSelectorWidget.cpp | 2 +- .../Search/SearchAssetTypeSelectorWidget.h | 2 +- .../Search/SearchParametersWidget.cpp | 2 +- .../Search/SearchParametersWidget.h | 2 +- .../AssetBrowser/Search/SearchWidget.cpp | 2 +- .../AssetBrowser/Search/SearchWidget.h | 2 +- .../AssetBrowser/SortFilterProxyModel.cpp | 2 +- .../AssetBrowserProductThumbnail.cpp | 2 +- .../Thumbnails/FolderThumbnail.cpp | 2 +- .../AssetBrowser/Thumbnails/FolderThumbnail.h | 2 +- .../Thumbnails/ProductThumbnail.cpp | 2 +- .../AssetBrowser/Thumbnails/ProductThumbnail.h | 2 +- .../Thumbnails/SourceThumbnail.cpp | 2 +- .../AssetBrowser/Thumbnails/SourceThumbnail.h | 2 +- .../Views/AssetBrowserFolderWidget.cpp | 2 +- .../Views/AssetBrowserFolderWidget.h | 2 +- .../Views/AssetBrowserTreeView.cpp | 2 +- .../AssetBrowser/Views/AssetBrowserTreeView.h | 2 +- .../AssetBrowser/Views/EntryDelegate.cpp | 2 +- .../AssetBrowser/Views/EntryDelegate.h | 2 +- .../AssetBundle/AssetBundleAPI.h | 2 +- .../AssetBundle/AssetBundleComponent.cpp | 2 +- .../AssetBundle/AssetBundleComponent.h | 2 +- .../PlatformAddressedAssetCatalog.cpp | 2 +- .../PlatformAddressedAssetCatalog.h | 2 +- .../PlatformAddressedAssetCatalogBus.h | 2 +- .../PlatformAddressedAssetCatalogManager.cpp | 2 +- .../PlatformAddressedAssetCatalogManager.h | 2 +- .../AssetDatabase/AssetDatabaseConnection.cpp | 2 +- .../AssetDatabase/AssetDatabaseConnection.h | 2 +- .../AssetEditor/AssetEditorBus.h | 2 +- .../AssetEditor/AssetEditorHeader.cpp | 2 +- .../AssetEditor/AssetEditorHeader.h | 2 +- .../AssetEditor/AssetEditorUtils.h | 2 +- .../AssetEditor/AssetEditorWidget.cpp | 2 +- .../AssetEditor/AssetEditorWidget.h | 2 +- .../AzToolsFrameworkModule.cpp | 2 +- .../AzToolsFramework/AzToolsFrameworkModule.h | 2 +- .../AzToolsFramework_precompiled.h | 2 +- .../Commands/BaseSliceCommand.cpp | 2 +- .../Commands/BaseSliceCommand.h | 2 +- .../Commands/ComponentModeCommand.cpp | 2 +- .../Commands/ComponentModeCommand.h | 2 +- .../Commands/CreateSliceCommand.cpp | 2 +- .../Commands/CreateSliceCommand.h | 2 +- .../Commands/DetachSubSliceInstanceCommand.cpp | 2 +- .../Commands/DetachSubSliceInstanceCommand.h | 2 +- .../Commands/EntityManipulatorCommand.cpp | 2 +- .../Commands/EntityManipulatorCommand.h | 2 +- .../Commands/EntityStateCommand.cpp | 2 +- .../Commands/EntityStateCommand.h | 2 +- .../Commands/EntityTransformCommand.cpp | 2 +- .../Commands/EntityTransformCommand.h | 2 +- .../AzToolsFramework/Commands/LegacyCommand.h | 2 +- .../Commands/PreemptiveUndoCache.cpp | 2 +- .../Commands/PreemptiveUndoCache.h | 2 +- .../Commands/PushToSliceCommand.cpp | 2 +- .../Commands/PushToSliceCommand.h | 2 +- .../Commands/SelectionCommand.cpp | 2 +- .../Commands/SelectionCommand.h | 2 +- .../Commands/SliceDetachEntityCommand.cpp | 2 +- .../Commands/SliceDetachEntityCommand.h | 2 +- .../Component/EditorComponentAPIBus.h | 2 +- .../Component/EditorComponentAPIComponent.cpp | 2 +- .../Component/EditorComponentAPIComponent.h | 2 +- .../Component/EditorLevelComponentAPIBus.h | 2 +- .../EditorLevelComponentAPIComponent.cpp | 2 +- .../EditorLevelComponentAPIComponent.h | 2 +- .../ComponentMode/ComponentModeCollection.cpp | 2 +- .../ComponentMode/ComponentModeCollection.h | 2 +- .../ComponentMode/ComponentModeDelegate.cpp | 2 +- .../ComponentMode/ComponentModeDelegate.h | 2 +- .../ComponentMode/ComponentModeViewportUi.cpp | 2 +- .../ComponentMode/ComponentModeViewportUi.h | 2 +- .../ComponentModeViewportUiRequestBus.h | 2 +- .../ComponentMode/EditorBaseComponentMode.cpp | 2 +- .../ComponentMode/EditorBaseComponentMode.h | 2 +- .../ComponentMode/EditorComponentModeBus.h | 2 +- .../ComponentModes/BoxComponentMode.cpp | 2 +- .../ComponentModes/BoxComponentMode.h | 2 +- .../ComponentModes/BoxViewportEdit.cpp | 2 +- .../ComponentModes/BoxViewportEdit.h | 2 +- .../AzToolsFramework/Debug/TraceContext.h | 2 +- .../AzToolsFramework/Debug/TraceContext.inl | 2 +- .../Debug/TraceContextBufferedFormatter.cpp | 2 +- .../Debug/TraceContextBufferedFormatter.h | 2 +- .../Debug/TraceContextBufferedFormatter.inl | 2 +- .../Debug/TraceContextLogFormatter.cpp | 2 +- .../Debug/TraceContextLogFormatter.h | 2 +- .../Debug/TraceContextMultiStackHandler.cpp | 2 +- .../Debug/TraceContextMultiStackHandler.h | 2 +- .../Debug/TraceContextSingleStackHandler.cpp | 2 +- .../Debug/TraceContextSingleStackHandler.h | 2 +- .../Debug/TraceContextStack.cpp | 2 +- .../AzToolsFramework/Debug/TraceContextStack.h | 2 +- .../Debug/TraceContextStackInterface.h | 2 +- .../Editor/EditorContextMenuBus.h | 2 +- .../Editor/EditorSettingsAPIBus.h | 2 +- .../Entity/EditorEntityAPIBus.h | 2 +- .../Entity/EditorEntityActionComponent.cpp | 2 +- .../Entity/EditorEntityActionComponent.h | 2 +- .../Entity/EditorEntityContextBus.h | 2 +- .../Entity/EditorEntityContextComponent.cpp | 2 +- .../Entity/EditorEntityContextComponent.h | 2 +- .../Entity/EditorEntityContextPickingBus.h | 2 +- .../Entity/EditorEntityFixupComponent.cpp | 2 +- .../Entity/EditorEntityFixupComponent.h | 2 +- .../Entity/EditorEntityHelpers.cpp | 2 +- .../Entity/EditorEntityHelpers.h | 2 +- .../Entity/EditorEntityInfoBus.h | 2 +- .../Entity/EditorEntityModel.cpp | 2 +- .../Entity/EditorEntityModel.h | 2 +- .../Entity/EditorEntityModelBus.h | 2 +- .../Entity/EditorEntityModelComponent.cpp | 2 +- .../Entity/EditorEntityModelComponent.h | 2 +- .../Entity/EditorEntityRuntimeActivationBus.h | 2 +- .../Entity/EditorEntitySearchBus.h | 2 +- .../Entity/EditorEntitySearchComponent.cpp | 2 +- .../Entity/EditorEntitySearchComponent.h | 2 +- .../Entity/EditorEntitySortBus.h | 2 +- .../Entity/EditorEntitySortComponent.cpp | 2 +- .../Entity/EditorEntitySortComponent.h | 2 +- .../Entity/EditorEntityStartStatus.h | 2 +- .../Entity/EditorEntityTransformBus.h | 2 +- .../PrefabEditorEntityOwnershipInterface.h | 2 +- .../PrefabEditorEntityOwnershipService.cpp | 2 +- .../PrefabEditorEntityOwnershipService.h | 2 +- .../SliceEditorEntityOwnershipService.cpp | 2 +- .../Entity/SliceEditorEntityOwnershipService.h | 2 +- .../SliceEditorEntityOwnershipServiceBus.h | 2 +- .../Fingerprinting/TypeFingerprinter.cpp | 2 +- .../Fingerprinting/TypeFingerprinter.h | 2 +- .../Manipulators/AngularManipulator.cpp | 2 +- .../Manipulators/AngularManipulator.h | 2 +- .../Manipulators/BaseManipulator.cpp | 2 +- .../Manipulators/BaseManipulator.h | 2 +- .../Manipulators/BoxManipulatorRequestBus.h | 2 +- .../Manipulators/EditorVertexSelection.cpp | 2 +- .../Manipulators/EditorVertexSelection.h | 2 +- .../Manipulators/HoverSelection.h | 2 +- .../Manipulators/LineHoverSelection.cpp | 2 +- .../Manipulators/LineHoverSelection.h | 2 +- .../LineSegmentSelectionManipulator.cpp | 2 +- .../LineSegmentSelectionManipulator.h | 2 +- .../Manipulators/LinearManipulator.cpp | 2 +- .../Manipulators/LinearManipulator.h | 2 +- .../Manipulators/ManipulatorBus.h | 2 +- .../Manipulators/ManipulatorDebug.cpp | 2 +- .../Manipulators/ManipulatorDebug.h | 2 +- .../Manipulators/ManipulatorManager.cpp | 2 +- .../Manipulators/ManipulatorManager.h | 2 +- .../Manipulators/ManipulatorSnapping.cpp | 2 +- .../Manipulators/ManipulatorSnapping.h | 2 +- .../Manipulators/ManipulatorSpace.cpp | 2 +- .../Manipulators/ManipulatorSpace.h | 2 +- .../Manipulators/ManipulatorView.cpp | 2 +- .../Manipulators/ManipulatorView.h | 2 +- .../Manipulators/MultiLinearManipulator.cpp | 2 +- .../Manipulators/MultiLinearManipulator.h | 2 +- .../Manipulators/PlanarManipulator.cpp | 2 +- .../Manipulators/PlanarManipulator.h | 2 +- .../Manipulators/RotationManipulators.cpp | 2 +- .../Manipulators/RotationManipulators.h | 2 +- .../Manipulators/ScaleManipulators.cpp | 2 +- .../Manipulators/ScaleManipulators.h | 2 +- .../Manipulators/SelectionManipulator.cpp | 2 +- .../Manipulators/SelectionManipulator.h | 2 +- .../Manipulators/SplineHoverSelection.cpp | 2 +- .../Manipulators/SplineHoverSelection.h | 2 +- .../SplineSelectionManipulator.cpp | 2 +- .../Manipulators/SplineSelectionManipulator.h | 2 +- .../Manipulators/SurfaceManipulator.cpp | 2 +- .../Manipulators/SurfaceManipulator.h | 2 +- .../Manipulators/TranslationManipulators.cpp | 2 +- .../Manipulators/TranslationManipulators.h | 2 +- .../AzToolsFramework/Maths/TransformUtils.h | 2 +- .../AzToolsFramework/Picking/BoundInterface.h | 2 +- .../AzToolsFramework/Picking/ContextBoundAPI.h | 2 +- .../Manipulators/ManipulatorBoundManager.cpp | 2 +- .../Manipulators/ManipulatorBoundManager.h | 2 +- .../Picking/Manipulators/ManipulatorBounds.cpp | 2 +- .../Picking/Manipulators/ManipulatorBounds.h | 2 +- .../Prefab/EditorPrefabComponent.cpp | 2 +- .../Prefab/EditorPrefabComponent.h | 2 +- .../Prefab/Instance/Instance.cpp | 2 +- .../Prefab/Instance/Instance.h | 2 +- .../Prefab/Instance/InstanceEntityIdMapper.cpp | 2 +- .../Prefab/Instance/InstanceEntityIdMapper.h | 2 +- .../Prefab/Instance/InstanceEntityMapper.cpp | 2 +- .../Prefab/Instance/InstanceEntityMapper.h | 2 +- .../Instance/InstanceEntityMapperInterface.h | 2 +- .../Prefab/Instance/InstanceEntityScrubber.cpp | 2 +- .../Prefab/Instance/InstanceEntityScrubber.h | 2 +- .../Prefab/Instance/InstanceSerializer.cpp | 2 +- .../Prefab/Instance/InstanceSerializer.h | 2 +- .../Instance/InstanceToTemplateInterface.h | 2 +- .../Instance/InstanceToTemplatePropagator.cpp | 2 +- .../Instance/InstanceToTemplatePropagator.h | 2 +- .../Prefab/Instance/InstanceUpdateExecutor.cpp | 2 +- .../Prefab/Instance/InstanceUpdateExecutor.h | 2 +- .../Instance/InstanceUpdateExecutorInterface.h | 2 +- .../Prefab/Instance/TemplateInstanceMapper.cpp | 2 +- .../Prefab/Instance/TemplateInstanceMapper.h | 2 +- .../Instance/TemplateInstanceMapperInterface.h | 2 +- .../AzToolsFramework/Prefab/Link/Link.cpp | 2 +- .../AzToolsFramework/Prefab/Link/Link.h | 2 +- .../AzToolsFramework/Prefab/PrefabDomTypes.h | 2 +- .../AzToolsFramework/Prefab/PrefabDomUtils.cpp | 2 +- .../AzToolsFramework/Prefab/PrefabDomUtils.h | 2 +- .../AzToolsFramework/Prefab/PrefabIdTypes.h | 2 +- .../AzToolsFramework/Prefab/PrefabLoader.cpp | 2 +- .../AzToolsFramework/Prefab/PrefabLoader.h | 2 +- .../Prefab/PrefabLoaderInterface.h | 2 +- .../Prefab/PrefabPublicHandler.cpp | 2 +- .../Prefab/PrefabPublicHandler.h | 2 +- .../Prefab/PrefabPublicInterface.h | 2 +- .../Prefab/PrefabPublicNotificationBus.h | 2 +- .../Prefab/PrefabSystemComponent.cpp | 2 +- .../Prefab/PrefabSystemComponent.h | 2 +- .../Prefab/PrefabSystemComponentInterface.h | 2 +- .../AzToolsFramework/Prefab/PrefabUndo.cpp | 2 +- .../AzToolsFramework/Prefab/PrefabUndo.h | 2 +- .../Prefab/PrefabUndoCache.cpp | 2 +- .../AzToolsFramework/Prefab/PrefabUndoCache.h | 2 +- .../Prefab/PrefabUndoHelpers.cpp | 2 +- .../Prefab/PrefabUndoHelpers.h | 2 +- .../ComponentRequirementsValidator.cpp | 2 +- .../Spawnable/ComponentRequirementsValidator.h | 2 +- .../Prefab/Spawnable/EditorInfoRemover.cpp | 2 +- .../Prefab/Spawnable/EditorInfoRemover.h | 2 +- .../EditorOnlyEntityHandler.cpp | 2 +- .../EditorOnlyEntityHandler.h | 2 +- .../UiEditorOnlyEntityHandler.cpp | 2 +- .../UiEditorOnlyEntityHandler.h | 2 +- .../WorldEditorOnlyEntityHandler.cpp | 2 +- .../WorldEditorOnlyEntityHandler.h | 2 +- .../Spawnable/PrefabCatchmentProcessor.cpp | 2 +- .../Spawnable/PrefabCatchmentProcessor.h | 2 +- .../Spawnable/PrefabConversionPipeline.cpp | 2 +- .../Spawnable/PrefabConversionPipeline.h | 2 +- .../Prefab/Spawnable/PrefabProcessor.h | 2 +- .../Spawnable/PrefabProcessorContext.cpp | 2 +- .../Prefab/Spawnable/PrefabProcessorContext.h | 2 +- .../Prefab/Spawnable/ProcesedObjectStore.cpp | 2 +- .../Prefab/Spawnable/ProcesedObjectStore.h | 2 +- .../Spawnable/SpawnableMetaDataBuilder.cpp | 2 +- .../Spawnable/SpawnableMetaDataBuilder.h | 2 +- .../Prefab/Spawnable/SpawnableUtils.cpp | 2 +- .../Prefab/Spawnable/SpawnableUtils.h | 2 +- .../Prefab/Template/Template.cpp | 2 +- .../Prefab/Template/Template.h | 2 +- .../PropertyTreeEditor/PropertyTreeEditor.cpp | 2 +- .../PropertyTreeEditor/PropertyTreeEditor.h | 2 +- .../PropertyTreeEditorComponent.cpp | 2 +- .../PropertyTreeEditorComponent.h | 2 +- .../PythonTerminal/ScriptHelpDialog.cpp | 2 +- .../PythonTerminal/ScriptHelpDialog.h | 2 +- .../PythonTerminal/ScriptTermDialog.cpp | 2 +- .../PythonTerminal/ScriptTermDialog.h | 2 +- .../Render/EditorIntersectorComponent.cpp | 2 +- .../Render/EditorIntersectorComponent.h | 2 +- .../SQLite/SQLiteBoundColumnSet.cpp | 2 +- .../SQLite/SQLiteBoundColumnSet.h | 2 +- .../SQLite/SQLiteConnection.cpp | 2 +- .../AzToolsFramework/SQLite/SQLiteConnection.h | 2 +- .../AzToolsFramework/SQLite/SQLiteQuery.cpp | 2 +- .../AzToolsFramework/SQLite/SQLiteQuery.h | 2 +- .../SQLite/SQLiteQueryLogBus.h | 2 +- .../Slice/SliceCompilation.cpp | 2 +- .../AzToolsFramework/Slice/SliceCompilation.h | 2 +- .../Slice/SliceDataFlagsCommand.cpp | 2 +- .../Slice/SliceDataFlagsCommand.h | 2 +- .../Slice/SliceDependencyBrowserBus.h | 2 +- .../Slice/SliceDependencyBrowserComponent.cpp | 2 +- .../Slice/SliceDependencyBrowserComponent.h | 2 +- .../Slice/SliceMetadataEntityContextBus.h | 2 +- .../SliceMetadataEntityContextComponent.cpp | 2 +- .../SliceMetadataEntityContextComponent.h | 2 +- .../Slice/SliceRelationshipNode.cpp | 2 +- .../Slice/SliceRelationshipNode.h | 2 +- .../AzToolsFramework/Slice/SliceRequestBus.h | 2 +- .../Slice/SliceRequestComponent.cpp | 2 +- .../Slice/SliceRequestComponent.h | 2 +- .../Slice/SliceTransaction.cpp | 2 +- .../AzToolsFramework/Slice/SliceTransaction.h | 2 +- .../AzToolsFramework/Slice/SliceUtilities.cpp | 2 +- .../AzToolsFramework/Slice/SliceUtilities.h | 2 +- .../SourceControl/LocalFileSCComponent.cpp | 2 +- .../SourceControl/LocalFileSCComponent.h | 2 +- .../SourceControl/PerforceComponent.cpp | 2 +- .../SourceControl/PerforceComponent.h | 2 +- .../SourceControl/PerforceConnection.cpp | 2 +- .../SourceControl/PerforceConnection.h | 2 +- .../QtSourceControlNotificationHandler.cpp | 2 +- .../QtSourceControlNotificationHandler.h | 2 +- .../SourceControl/SourceControlAPI.h | 2 +- .../Thumbnails/LoadingThumbnail.cpp | 2 +- .../Thumbnails/LoadingThumbnail.h | 2 +- .../Thumbnails/MissingThumbnail.cpp | 2 +- .../Thumbnails/MissingThumbnail.h | 2 +- .../Thumbnails/SourceControlThumbnail.cpp | 2 +- .../Thumbnails/SourceControlThumbnail.h | 2 +- .../Thumbnails/SourceControlThumbnailBus.h | 2 +- .../AzToolsFramework/Thumbnails/Thumbnail.cpp | 2 +- .../AzToolsFramework/Thumbnails/Thumbnail.h | 2 +- .../AzToolsFramework/Thumbnails/Thumbnail.inl | 2 +- .../Thumbnails/ThumbnailContext.cpp | 2 +- .../Thumbnails/ThumbnailContext.h | 2 +- .../Thumbnails/ThumbnailDelegate.h | 2 +- .../Thumbnails/ThumbnailWidget.cpp | 2 +- .../Thumbnails/ThumbnailWidget.h | 2 +- .../Thumbnails/ThumbnailerBus.h | 2 +- .../Thumbnails/ThumbnailerComponent.cpp | 2 +- .../Thumbnails/ThumbnailerComponent.h | 2 +- .../Thumbnails/ThumbnailerNullComponent.cpp | 2 +- .../Thumbnails/ThumbnailerNullComponent.h | 2 +- ...lsFrameworkConfigurationSystemComponent.cpp | 2 +- ...oolsFrameworkConfigurationSystemComponent.h | 2 +- .../ComponentAssetMimeDataContainer.cpp | 2 +- .../ComponentAssetMimeDataContainer.h | 2 +- .../ToolsComponents/ComponentMimeData.cpp | 2 +- .../ToolsComponents/ComponentMimeData.h | 2 +- .../EditorAssetMimeDataContainer.cpp | 2 +- .../EditorAssetMimeDataContainer.h | 2 +- .../ToolsComponents/EditorAssetReference.cpp | 2 +- .../ToolsComponents/EditorAssetReference.h | 2 +- .../ToolsComponents/EditorComponentAdapter.h | 2 +- .../ToolsComponents/EditorComponentAdapter.inl | 2 +- .../ToolsComponents/EditorComponentBase.cpp | 2 +- .../ToolsComponents/EditorComponentBase.h | 2 +- .../EditorDisabledCompositionBus.h | 2 +- .../EditorDisabledCompositionComponent.cpp | 2 +- .../EditorDisabledCompositionComponent.h | 2 +- .../EditorEntityIconComponent.cpp | 2 +- .../EditorEntityIconComponent.h | 2 +- .../EditorEntityIconComponentBus.h | 2 +- .../EditorEntityIdContainer.cpp | 2 +- .../ToolsComponents/EditorEntityIdContainer.h | 2 +- .../EditorInspectorComponent.cpp | 2 +- .../ToolsComponents/EditorInspectorComponent.h | 2 +- .../EditorInspectorComponentBus.h | 2 +- .../ToolsComponents/EditorLayerComponent.cpp | 2 +- .../ToolsComponents/EditorLayerComponent.h | 2 +- .../ToolsComponents/EditorLayerComponentBus.h | 2 +- .../ToolsComponents/EditorLockComponent.cpp | 2 +- .../ToolsComponents/EditorLockComponent.h | 2 +- .../ToolsComponents/EditorLockComponentBus.h | 2 +- .../EditorNonUniformScaleComponent.cpp | 2 +- .../EditorNonUniformScaleComponent.h | 2 +- .../EditorNonUniformScaleComponentMode.cpp | 2 +- .../EditorNonUniformScaleComponentMode.h | 2 +- .../EditorOnlyEntityComponent.cpp | 2 +- .../EditorOnlyEntityComponent.h | 2 +- .../EditorOnlyEntityComponentBus.h | 2 +- .../ToolsComponents/EditorOutlinerComponent.h | 2 +- .../EditorPendingCompositionBus.h | 2 +- .../EditorPendingCompositionComponent.cpp | 2 +- .../EditorPendingCompositionComponent.h | 2 +- .../EditorSelectionAccentSystemComponent.cpp | 2 +- .../EditorSelectionAccentSystemComponent.h | 2 +- .../EditorSelectionAccentingBus.h | 2 +- .../ToolsComponents/EditorVisibilityBus.h | 2 +- .../EditorVisibilityComponent.cpp | 2 +- .../EditorVisibilityComponent.h | 2 +- .../GenericComponentWrapper.cpp | 2 +- .../ToolsComponents/GenericComponentWrapper.h | 2 +- .../ToolsComponents/LayerResult.cpp | 2 +- .../ToolsComponents/LayerResult.h | 2 +- .../ToolsComponents/ScriptEditorComponent.cpp | 2 +- .../ToolsComponents/ScriptEditorComponent.h | 2 +- .../ToolsComponents/SelectionComponent.cpp | 2 +- .../ToolsComponents/SelectionComponent.h | 2 +- .../ToolsComponents/SelectionComponentBus.h | 2 +- .../ToolsComponents/ToolsAssetCatalogBus.h | 2 +- .../ToolsAssetCatalogComponent.cpp | 2 +- .../ToolsAssetCatalogComponent.h | 2 +- .../ToolsComponents/TransformComponent.cpp | 2 +- .../ToolsComponents/TransformComponent.h | 2 +- .../ToolsComponents/TransformComponentBus.h | 2 +- .../ToolsFileUtils/ToolsFileUtils.h | 2 +- .../ToolsFileUtils/ToolsFileUtils_generic.cpp | 2 +- .../ToolsFileUtils/ToolsFileUtils_win.cpp | 2 +- .../ToolsMessaging/EntityHighlightBus.h | 2 +- .../ComponentPalette/ComponentPaletteModel.cpp | 2 +- .../ComponentPalette/ComponentPaletteModel.hxx | 2 +- .../ComponentPaletteModelFilter.cpp | 2 +- .../ComponentPaletteModelFilter.hxx | 2 +- .../ComponentPalette/ComponentPaletteUtil.cpp | 2 +- .../ComponentPalette/ComponentPaletteUtil.hxx | 2 +- .../ComponentPaletteWidget.cpp | 2 +- .../ComponentPaletteWidget.hxx | 2 +- .../UI/Docking/DockWidgetUtils.cpp | 2 +- .../UI/Docking/DockWidgetUtils.h | 2 +- .../EditorEntityUiHandlerBase.cpp | 2 +- .../EditorEntityUi/EditorEntityUiHandlerBase.h | 2 +- .../EditorEntityUi/EditorEntityUiInterface.h | 2 +- .../EditorEntityUiSystemComponent.cpp | 2 +- .../EditorEntityUiSystemComponent.h | 2 +- .../UI/Layer/AddToLayerMenu.cpp | 2 +- .../AzToolsFramework/UI/Layer/AddToLayerMenu.h | 2 +- .../UI/Layer/LayerUiHandler.cpp | 2 +- .../AzToolsFramework/UI/Layer/LayerUiHandler.h | 2 +- .../UI/Layer/NameConflictWarning.cpp | 2 +- .../UI/Layer/NameConflictWarning.hxx | 2 +- .../UI/LegacyFramework/Core/EditorContextBus.h | 2 +- .../Core/EditorFrameworkAPI.cpp | 2 +- .../LegacyFramework/Core/EditorFrameworkAPI.h | 2 +- .../Core/EditorFrameworkApplication.cpp | 2 +- .../Core/EditorFrameworkApplication.h | 2 +- .../UI/LegacyFramework/Core/IPCComponent.cpp | 2 +- .../UI/LegacyFramework/Core/IPCComponent.h | 2 +- .../CustomMenus/CustomMenusAPI.h | 2 +- .../CustomMenus/CustomMenusComponent.cpp | 2 +- .../LegacyFramework/MainWindowSavedState.cpp | 2 +- .../UI/LegacyFramework/MainWindowSavedState.h | 2 +- .../UI/LegacyFramework/UIFramework.cpp | 2 +- .../UI/LegacyFramework/UIFramework.hxx | 2 +- .../UI/LegacyFramework/UIFrameworkAPI.cpp | 2 +- .../UI/LegacyFramework/UIFrameworkAPI.h | 2 +- .../LegacyFramework/UIFrameworkPreferences.cpp | 2 +- .../UI/Logging/GenericLogPanel.cpp | 2 +- .../UI/Logging/GenericLogPanel.h | 2 +- .../AzToolsFramework/UI/Logging/LogControl.cpp | 2 +- .../AzToolsFramework/UI/Logging/LogControl.h | 2 +- .../AzToolsFramework/UI/Logging/LogEntry.cpp | 2 +- .../AzToolsFramework/UI/Logging/LogEntry.h | 2 +- .../AzToolsFramework/UI/Logging/LogLine.cpp | 2 +- .../AzToolsFramework/UI/Logging/LogLine.h | 2 +- .../UI/Logging/LogPanel_Panel.cpp | 2 +- .../UI/Logging/LogPanel_Panel.h | 2 +- .../UI/Logging/LogTableItemDelegate.cpp | 2 +- .../UI/Logging/LogTableItemDelegate.h | 2 +- .../UI/Logging/LogTableModel.cpp | 2 +- .../UI/Logging/LogTableModel.h | 2 +- .../UI/Logging/LoggingCommon.h | 2 +- .../UI/Logging/NewLogTabDialog.cpp | 2 +- .../UI/Logging/NewLogTabDialog.h | 2 +- .../UI/Logging/NewLogTabDialog.qss | 2 +- .../UI/Logging/StyledLogPanel.cpp | 2 +- .../UI/Logging/StyledLogPanel.h | 2 +- .../UI/Logging/StyledTracePrintFLogPanel.cpp | 2 +- .../UI/Logging/StyledTracePrintFLogPanel.h | 2 +- .../UI/Logging/TracePrintFLogPanel.cpp | 2 +- .../UI/Logging/TracePrintFLogPanel.h | 2 +- .../UI/Outliner/EntityOutliner.qss | 2 +- .../UI/Outliner/EntityOutlinerCacheBus.h | 2 +- .../EntityOutlinerDisplayOptionsMenu.cpp | 2 +- .../EntityOutlinerDisplayOptionsMenu.h | 2 +- .../UI/Outliner/EntityOutlinerListModel.cpp | 2 +- .../UI/Outliner/EntityOutlinerListModel.hxx | 2 +- .../UI/Outliner/EntityOutlinerSearchWidget.cpp | 2 +- .../UI/Outliner/EntityOutlinerSearchWidget.h | 2 +- .../EntityOutlinerSortFilterProxyModel.cpp | 2 +- .../EntityOutlinerSortFilterProxyModel.hxx | 2 +- .../UI/Outliner/EntityOutlinerTreeView.cpp | 2 +- .../UI/Outliner/EntityOutlinerTreeView.hxx | 2 +- .../UI/Outliner/EntityOutlinerWidget.cpp | 2 +- .../UI/Outliner/EntityOutlinerWidget.hxx | 2 +- .../UI/Prefab/LevelRootUiHandler.cpp | 2 +- .../UI/Prefab/LevelRootUiHandler.h | 2 +- .../UI/Prefab/PrefabEditInterface.h | 2 +- .../UI/Prefab/PrefabEditManager.cpp | 2 +- .../UI/Prefab/PrefabEditManager.h | 2 +- .../UI/Prefab/PrefabIntegrationBus.h | 2 +- .../UI/Prefab/PrefabIntegrationInterface.h | 2 +- .../UI/Prefab/PrefabIntegrationManager.cpp | 2 +- .../UI/Prefab/PrefabIntegrationManager.h | 2 +- .../UI/Prefab/PrefabUiHandler.cpp | 2 +- .../UI/Prefab/PrefabUiHandler.h | 2 +- .../UI/PropertyEditor/ComponentEditor.cpp | 2 +- .../UI/PropertyEditor/ComponentEditor.hxx | 2 +- .../PropertyEditor/ComponentEditorHeader.cpp | 2 +- .../PropertyEditor/ComponentEditorHeader.hxx | 2 +- .../UI/PropertyEditor/DHQComboBox.cpp | 2 +- .../UI/PropertyEditor/DHQComboBox.hxx | 2 +- .../UI/PropertyEditor/DHQSlider.cpp | 2 +- .../UI/PropertyEditor/DHQSlider.hxx | 2 +- .../UI/PropertyEditor/EntityIdQLabel.cpp | 2 +- .../UI/PropertyEditor/EntityIdQLabel.hxx | 2 +- .../UI/PropertyEditor/EntityIdQLineEdit.cpp | 2 +- .../UI/PropertyEditor/EntityIdQLineEdit.h | 2 +- .../UI/PropertyEditor/EntityPropertyEditor.cpp | 2 +- .../UI/PropertyEditor/EntityPropertyEditor.hxx | 2 +- .../UI/PropertyEditor/GenericComboBoxCtrl.cpp | 2 +- .../UI/PropertyEditor/GenericComboBoxCtrl.h | 2 +- .../UI/PropertyEditor/GenericComboBoxCtrl.inl | 2 +- .../UI/PropertyEditor/GrowTextEdit.cpp | 2 +- .../UI/PropertyEditor/GrowTextEdit.h | 2 +- .../PropertyEditor/InstanceDataHierarchy.cpp | 2 +- .../UI/PropertyEditor/InstanceDataHierarchy.h | 2 +- .../Model/AssetCompleterModel.cpp | 2 +- .../PropertyEditor/Model/AssetCompleterModel.h | 2 +- .../MultiLineTextEditHandler.cpp | 2 +- .../PropertyEditor/MultiLineTextEditHandler.h | 2 +- .../UI/PropertyEditor/PropertyAssetCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyAssetCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyAudioCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyAudioCtrl.h | 2 +- .../UI/PropertyEditor/PropertyAudioCtrlTypes.h | 2 +- .../PropertyBoolComboBoxCtrl.cpp | 2 +- .../PropertyBoolComboBoxCtrl.hxx | 2 +- .../PropertyBoolRadioButtonsCtrl.cpp | 2 +- .../PropertyBoolRadioButtonsCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyButtonCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyButtonCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyCRCCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyCRCCtrl.h | 2 +- .../UI/PropertyEditor/PropertyCheckBoxCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyCheckBoxCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyColorCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyColorCtrl.hxx | 2 +- .../PropertyDoubleSliderCtrl.cpp | 2 +- .../PropertyDoubleSliderCtrl.hxx | 2 +- .../PropertyEditor/PropertyDoubleSpinCtrl.cpp | 2 +- .../PropertyEditor/PropertyDoubleSpinCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyEditorAPI.h | 2 +- .../PropertyEditorAPI_Internals.h | 2 +- .../PropertyEditorAPI_Internals_Impl.h | 2 +- .../UI/PropertyEditor/PropertyEditorApi.cpp | 2 +- .../UI/PropertyEditor/PropertyEditor_UITypes.h | 2 +- .../UI/PropertyEditor/PropertyEntityIdCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyEntityIdCtrl.hxx | 2 +- .../PropertyEnumComboBoxCtrl.cpp | 2 +- .../PropertyEnumComboBoxCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyIntCtrlCommon.h | 2 +- .../PropertyEditor/PropertyIntSliderCtrl.cpp | 2 +- .../PropertyEditor/PropertyIntSliderCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyIntSpinCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyIntSpinCtrl.hxx | 2 +- .../PropertyManagerComponent.cpp | 2 +- .../PropertyEditor/PropertyManagerComponent.h | 2 +- .../UI/PropertyEditor/PropertyQTConstants.h | 2 +- .../UI/PropertyEditor/PropertyRowWidget.cpp | 2 +- .../UI/PropertyEditor/PropertyRowWidget.hxx | 2 +- .../PropertyStringComboBoxCtrl.cpp | 2 +- .../PropertyStringComboBoxCtrl.hxx | 2 +- .../PropertyStringLineEditCtrl.cpp | 2 +- .../PropertyStringLineEditCtrl.hxx | 2 +- .../UI/PropertyEditor/PropertyVectorCtrl.cpp | 2 +- .../UI/PropertyEditor/PropertyVectorCtrl.hxx | 2 +- .../UI/PropertyEditor/QtWidgetLimits.h | 2 +- .../PropertyEditor/ReflectedPropertyEditor.cpp | 2 +- .../PropertyEditor/ReflectedPropertyEditor.hxx | 2 +- .../PropertyEditor/ThumbnailPropertyCtrl.cpp | 2 +- .../UI/PropertyEditor/ThumbnailPropertyCtrl.h | 2 +- .../View/AssetCompleterListView.cpp | 2 +- .../View/AssetCompleterListView.h | 2 +- .../UI/SearchWidget/SearchCriteriaWidget.cpp | 2 +- .../UI/SearchWidget/SearchCriteriaWidget.hxx | 2 +- .../UI/SearchWidget/SearchWidgetTypes.hxx | 2 +- .../AzToolsFramework/UI/Slice/Constants.h | 2 +- .../Slice/SliceOverridesNotificationWindow.cpp | 2 +- .../Slice/SliceOverridesNotificationWindow.hxx | 2 +- ...SliceOverridesNotificationWindowManager.cpp | 2 +- ...SliceOverridesNotificationWindowManager.hxx | 2 +- .../UI/Slice/SlicePushWidget.cpp | 2 +- .../UI/Slice/SlicePushWidget.hxx | 2 +- .../UI/Slice/SliceRelationshipBus.h | 2 +- .../UI/Slice/SliceRelationshipWidget.cpp | 2 +- .../UI/Slice/SliceRelationshipWidget.hxx | 2 +- .../UI/UICore/AZAutoSizingScrollArea.cpp | 2 +- .../UI/UICore/AZAutoSizingScrollArea.hxx | 2 +- .../UI/UICore/AspectRatioAwarePixmapWidget.cpp | 2 +- .../UI/UICore/AspectRatioAwarePixmapWidget.hxx | 2 +- .../UI/UICore/ClickableLabel.cpp | 2 +- .../UI/UICore/ClickableLabel.hxx | 2 +- .../UI/UICore/ColorPickerDelegate.cpp | 2 +- .../UI/UICore/ColorPickerDelegate.hxx | 2 +- .../AzToolsFramework/UI/UICore/IconButton.cpp | 2 +- .../AzToolsFramework/UI/UICore/IconButton.hxx | 2 +- .../UI/UICore/OverwritePromptDialog.cpp | 2 +- .../UI/UICore/OverwritePromptDialog.hxx | 2 +- .../UI/UICore/PlainTextEdit.cpp | 2 +- .../UI/UICore/PlainTextEdit.hxx | 2 +- .../UI/UICore/ProgressShield.cpp | 2 +- .../UI/UICore/ProgressShield.hxx | 2 +- .../UI/UICore/QTreeViewStateSaver.cpp | 2 +- .../UI/UICore/QTreeViewStateSaver.hxx | 2 +- .../UI/UICore/QWidgetSavedState.cpp | 2 +- .../UI/UICore/QWidgetSavedState.h | 2 +- .../UI/UICore/SaveChangesDialog.cpp | 2 +- .../UI/UICore/SaveChangesDialog.hxx | 2 +- .../UI/UICore/TargetSelectorButton.cpp | 2 +- .../UI/UICore/TargetSelectorButton.hxx | 2 +- .../AzToolsFramework/UI/UICore/WidgetHelpers.h | 2 +- .../AzToolsFramework/Undo/UndoCacheInterface.h | 2 +- .../AzToolsFramework/Undo/UndoSystem.cpp | 2 +- .../AzToolsFramework/Undo/UndoSystem.h | 2 +- .../UnitTest/AzToolsFrameworkTestHelpers.cpp | 2 +- .../UnitTest/AzToolsFrameworkTestHelpers.h | 2 +- .../UnitTest/ToolsTestApplication.cpp | 2 +- .../UnitTest/ToolsTestApplication.h | 2 +- .../AzToolsFramework/Viewport/ActionBus.h | 2 +- .../Viewport/EditorContextMenu.cpp | 2 +- .../Viewport/EditorContextMenu.h | 2 +- .../Viewport/VertexContainerDisplay.cpp | 2 +- .../Viewport/VertexContainerDisplay.h | 2 +- .../Viewport/ViewportMessages.h | 2 +- .../Viewport/ViewportTypes.cpp | 2 +- .../AzToolsFramework/Viewport/ViewportTypes.h | 2 +- .../ViewportSelection/EditorBoxSelect.cpp | 2 +- .../ViewportSelection/EditorBoxSelect.h | 2 +- .../EditorDefaultSelection.cpp | 2 +- .../ViewportSelection/EditorDefaultSelection.h | 2 +- .../ViewportSelection/EditorHelpers.cpp | 2 +- .../ViewportSelection/EditorHelpers.h | 2 +- .../EditorInteractionSystemComponent.cpp | 2 +- .../EditorInteractionSystemComponent.h | 2 +- ...eractionSystemViewportSelectionRequestBus.h | 2 +- .../EditorPickEntitySelection.cpp | 2 +- .../EditorPickEntitySelection.h | 2 +- .../ViewportSelection/EditorSelectionUtil.cpp | 2 +- .../ViewportSelection/EditorSelectionUtil.h | 2 +- .../EditorTransformComponentSelection.cpp | 2 +- .../EditorTransformComponentSelection.h | 2 +- ...orTransformComponentSelectionRequestBus.cpp | 2 +- ...itorTransformComponentSelectionRequestBus.h | 2 +- .../EditorVisibleEntityDataCache.cpp | 2 +- .../EditorVisibleEntityDataCache.h | 2 +- .../AzToolsFramework/ViewportUi/Button.cpp | 2 +- .../AzToolsFramework/ViewportUi/Button.h | 2 +- .../ViewportUi/ButtonGroup.cpp | 2 +- .../AzToolsFramework/ViewportUi/ButtonGroup.h | 2 +- .../AzToolsFramework/ViewportUi/TextField.cpp | 2 +- .../AzToolsFramework/ViewportUi/TextField.h | 2 +- .../ViewportUi/ViewportUiCluster.cpp | 2 +- .../ViewportUi/ViewportUiCluster.h | 2 +- .../ViewportUi/ViewportUiDisplay.cpp | 2 +- .../ViewportUi/ViewportUiDisplay.h | 2 +- .../ViewportUi/ViewportUiDisplayLayout.cpp | 2 +- .../ViewportUi/ViewportUiDisplayLayout.h | 2 +- .../ViewportUi/ViewportUiManager.cpp | 2 +- .../ViewportUi/ViewportUiManager.h | 2 +- .../ViewportUi/ViewportUiRequestBus.h | 2 +- .../ViewportUi/ViewportUiSwitcher.cpp | 2 +- .../ViewportUi/ViewportUiSwitcher.h | 2 +- .../ViewportUi/ViewportUiTextField.cpp | 2 +- .../ViewportUi/ViewportUiTextField.h | 2 +- .../ViewportUi/ViewportUiWidgetCallbacks.cpp | 2 +- .../ViewportUi/ViewportUiWidgetCallbacks.h | 2 +- .../aztoolsframework_files.cmake | 2 +- .../aztoolsframework_linux_files.cmake | 2 +- .../aztoolsframework_linux_tests_files.cmake | 2 +- .../aztoolsframework_mac_files.cmake | 2 +- .../aztoolsframework_win_files.cmake | 2 +- .../aztoolsframework_windows_files.cmake | 2 +- .../aztoolsframeworktestcommon_files.cmake | 2 +- .../AzToolsFramework/newoverride.inl | 2 +- Code/Framework/AzToolsFramework/CMakeLists.txt | 2 +- .../Common/Clang/aztoolsframework_clang.cmake | 2 +- .../Common/MSVC/aztoolsframework_msvc.cmake | 2 +- .../Archive/ArchiveComponent_Linux.cpp | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Archive/ArchiveComponent_Mac.cpp | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Archive/ArchiveComponent_Windows.cpp | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../AzToolsFramework/Tests/ArchiveTests.cpp | 2 +- .../Tests/AssetFileInfoListComparison.cpp | 2 +- .../Tests/AssetSeedManager.cpp | 2 +- .../AzToolsFramework/Tests/AssetSystemMocks.h | 2 +- .../AzToolsFramework/Tests/AssetUtils.cpp | 2 +- .../Tests/ComponentModeTestDoubles.cpp | 2 +- .../Tests/ComponentModeTestDoubles.h | 2 +- .../Tests/ComponentModeTestFixture.cpp | 2 +- .../Tests/ComponentModeTestFixture.h | 2 +- .../Tests/ComponentModeTests.cpp | 2 +- .../EditorTransformComponentSelectionTests.cpp | 2 +- .../Tests/EditorVertexSelectionTests.cpp | 2 +- .../EditorEntityContextComponentTests.cpp | 2 +- .../Tests/Entity/EditorEntityHelpersTests.cpp | 2 +- .../EditorEntitySearchComponentTests.cpp | 2 +- .../Entity/EditorEntitySelectionTests.cpp | 2 +- .../Tests/EntityIdQLabelTests.cpp | 2 +- .../Tests/EntityInspectorTests.cpp | 4 ++-- .../Tests/FingerprintingTests.cpp | 2 +- .../Tests/IntegerPrimtitiveTestConfig.h | 2 +- .../AzToolsFramework/Tests/LogLines.cpp | 2 +- Code/Framework/AzToolsFramework/Tests/Main.cpp | 2 +- .../Tests/ManipulatorBoundsTests.cpp | 2 +- .../Tests/ManipulatorCoreTests.cpp | 2 +- .../Tests/ManipulatorViewTests.cpp | 2 +- .../Tests/PerforceComponentTests.cpp | 2 +- .../PlatformAddressedAssetCatalogTests.cpp | 2 +- .../Benchmark/PrefabBenchmarkFixture.cpp | 2 +- .../Prefab/Benchmark/PrefabBenchmarkFixture.h | 2 +- .../Benchmark/PrefabCreateBenchmarks.cpp | 2 +- .../Benchmark/PrefabInstantiateBenchmarks.cpp | 2 +- .../Prefab/Benchmark/PrefabLoadBenchmarks.cpp | 2 +- .../PrefabUpdateInstancesBenchmarks.cpp | 2 +- .../Benchmark/SpawnableCreateBenchmarks.cpp | 2 +- .../Prefab/MockPrefabFileIOActionValidator.cpp | 2 +- .../Prefab/MockPrefabFileIOActionValidator.h | 2 +- .../Tests/Prefab/PrefabDuplicateTests.cpp | 2 +- .../Tests/Prefab/PrefabEntityAliasTests.cpp | 2 +- ...PrefabInstanceToTemplatePropagatorTests.cpp | 2 +- .../Tests/Prefab/PrefabInstantiateTests.cpp | 2 +- .../Tests/Prefab/PrefabLoadTemplateTests.cpp | 2 +- .../Tests/Prefab/PrefabTestComponent.cpp | 2 +- .../Tests/Prefab/PrefabTestComponent.h | 2 +- .../Tests/Prefab/PrefabTestData.cpp | 2 +- .../Tests/Prefab/PrefabTestData.h | 2 +- .../Tests/Prefab/PrefabTestDataUtils.cpp | 2 +- .../Tests/Prefab/PrefabTestDataUtils.h | 2 +- .../Tests/Prefab/PrefabTestDomUtils.cpp | 2 +- .../Tests/Prefab/PrefabTestDomUtils.h | 2 +- .../Tests/Prefab/PrefabTestFixture.cpp | 2 +- .../Tests/Prefab/PrefabTestFixture.h | 2 +- .../Tests/Prefab/PrefabTestUndoFixture.cpp | 2 +- .../Tests/Prefab/PrefabTestUndoFixture.h | 2 +- .../Tests/Prefab/PrefabTestUtils.h | 2 +- .../Tests/Prefab/PrefabUndoLinkTests.cpp | 2 +- .../Tests/Prefab/PrefabUndoTests.cpp | 2 +- .../Prefab/PrefabUpdateInstancesTests.cpp | 2 +- .../Tests/Prefab/PrefabUpdateTemplateTests.cpp | 2 +- .../Prefab/PrefabUpdateWithPatchesTests.cpp | 2 +- .../Spawnable/SpawnableMetaDataTests.cpp | 2 +- .../Tests/Prefab/SpawnableCreateTests.cpp | 2 +- .../SpawnableRemoveEditorInfoTestFixture.cpp | 2 +- .../SpawnableRemoveEditorInfoTestFixture.h | 2 +- .../Prefab/SpawnableRemoveEditorInfoTests.cpp | 2 +- .../SpawnableSortEntitiesTestFixture.cpp | 2 +- .../Prefab/SpawnableSortEntitiesTestFixture.h | 2 +- .../Prefab/SpawnableSortEntitiesTests.cpp | 2 +- .../Tests/PropertyIntCtrlCommonTests.cpp | 2 +- .../Tests/PropertyIntCtrlCommonTests.h | 2 +- .../Tests/PropertyIntSliderCtrlTests.cpp | 2 +- .../Tests/PropertyIntSpinCtrlTests.cpp | 2 +- .../Tests/PropertyTreeEditorTests.cpp | 2 +- .../Tests/PythonBindingTests.cpp | 2 +- .../Tests/QtWidgetLimitsTests.cpp | 2 +- .../Framework/AzToolsFramework/Tests/Slice.cpp | 2 +- .../SliceStabilityCreateTests.cpp | 2 +- .../SliceStabilityPushTests.cpp | 2 +- .../SliceStabilityReParentTests.cpp | 2 +- .../SliceStabilityTestFramework.cpp | 2 +- .../SliceStabilityTestFramework.h | 2 +- .../Tests/SliceUpgradeTests.cpp | 2 +- .../Tests/SliceUpgradeTestsData.h | 2 +- .../AzToolsFramework/Tests/SpinBoxTests.cpp | 2 +- .../Tests/ThumbnailerTests.cpp | 2 +- .../EditorLayerComponentTests.cpp | 2 +- .../EditorTransformComponentTests.cpp | 2 +- .../Tests/UI/EntityIdQLineEditTests.cpp | 2 +- .../Tests/UI/EntityPropertyEditorTests.cpp | 2 +- .../AzToolsFramework/Tests/UndoStack.cpp | 2 +- .../Tests/Viewport/ClusterTests.cpp | 2 +- .../Tests/Viewport/ViewportScreenTests.cpp | 2 +- .../Tests/Viewport/ViewportUiClusterTests.cpp | 2 +- .../Tests/Viewport/ViewportUiDisplayTests.cpp | 2 +- .../Tests/Viewport/ViewportUiManagerTests.cpp | 2 +- .../Viewport/ViewportUiWidgetManagerTests.cpp | 2 +- .../Tests/Visibility/EditorVisibilityTests.cpp | 2 +- .../Tests/aztoolsframeworktests_files.cmake | 2 +- Code/Framework/CMakeLists.txt | 2 +- Code/Framework/Crcfix/CMakeLists.txt | 2 +- .../Crcfix/Platform/Linux/PAL_linux.cmake | 2 +- .../Crcfix/Platform/Mac/PAL_mac.cmake | 2 +- .../Crcfix/Platform/Windows/PAL_windows.cmake | 2 +- Code/Framework/Crcfix/crcfix.cpp | 2 +- Code/Framework/Crcfix/crcfix_files.cmake | 2 +- Code/Framework/GFxFramework/CMakeLists.txt | 2 +- .../GFxFramework/GFxFramework/CMakeLists.txt | 2 +- .../GFxFramework/MaterialIO/IMaterial.h | 2 +- .../GFxFramework/MaterialIO/Material.cpp | 2 +- .../GFxFramework/MaterialIO/Material.h | 2 +- .../GFxFramework/gfxframework_files.cmake | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- Code/Framework/GridMate/CMakeLists.txt | 2 +- Code/Framework/GridMate/GridMate/BuildInfo.h | 2 +- .../GridMate/GridMate/Carrier/Carrier.cpp | 2 +- .../GridMate/GridMate/Carrier/Carrier.h | 2 +- .../GridMate/GridMate/Carrier/Compressor.h | 2 +- .../GridMate/GridMate/Carrier/Cripter.h | 2 +- .../GridMate/Carrier/DefaultHandshake.cpp | 2 +- .../GridMate/Carrier/DefaultHandshake.h | 2 +- .../GridMate/Carrier/DefaultSimulator.cpp | 2 +- .../GridMate/Carrier/DefaultSimulator.h | 2 +- .../GridMate/Carrier/DefaultTrafficControl.cpp | 2 +- .../GridMate/Carrier/DefaultTrafficControl.h | 2 +- .../GridMate/GridMate/Carrier/Driver.h | 2 +- .../GridMate/GridMate/Carrier/DriverEvents.h | 2 +- .../GridMate/GridMate/Carrier/Handshake.h | 2 +- .../GridMate/Carrier/SecureSocketDriver.cpp | 2 +- .../GridMate/Carrier/SecureSocketDriver.h | 2 +- .../GridMate/GridMate/Carrier/Simulator.h | 2 +- .../GridMate/GridMate/Carrier/SocketDriver.cpp | 2 +- .../GridMate/GridMate/Carrier/SocketDriver.h | 2 +- .../Carrier/StreamSecureSocketDriver.cpp | 2 +- .../Carrier/StreamSecureSocketDriver.h | 2 +- .../GridMate/Carrier/StreamSocketDriver.cpp | 2 +- .../GridMate/Carrier/StreamSocketDriver.h | 2 +- .../GridMate/GridMate/Carrier/TrafficControl.h | 2 +- .../GridMate/GridMate/Carrier/Utils.h | 2 +- .../GridMate/GridMate/Containers/list.h | 2 +- .../GridMate/GridMate/Containers/queue.h | 2 +- .../GridMate/GridMate/Containers/set.h | 2 +- .../GridMate/GridMate/Containers/slist.h | 2 +- .../GridMate/Containers/unordered_map.h | 2 +- .../GridMate/Containers/unordered_set.h | 2 +- .../GridMate/GridMate/Containers/vector.h | 2 +- Code/Framework/GridMate/GridMate/Docs.h | 2 +- .../GridMate/Drillers/CarrierDriller.cpp | 2 +- .../GridMate/Drillers/CarrierDriller.h | 2 +- .../GridMate/Drillers/ReplicaDriller.cpp | 2 +- .../GridMate/Drillers/ReplicaDriller.h | 2 +- .../GridMate/Drillers/SessionDriller.cpp | 2 +- .../GridMate/Drillers/SessionDriller.h | 2 +- Code/Framework/GridMate/GridMate/EBus.h | 2 +- Code/Framework/GridMate/GridMate/GridMate.cpp | 2 +- Code/Framework/GridMate/GridMate/GridMate.h | 2 +- .../GridMate/GridMate/GridMateEventsBus.h | 2 +- .../GridMate/GridMate/GridMateService.h | 2 +- Code/Framework/GridMate/GridMate/MathUtils.h | 2 +- Code/Framework/GridMate/GridMate/Memory.h | 2 +- .../GridMate/Online/OnlineUtilityThread.h | 2 +- .../GridMate/Online/UserServiceTypes.h | 2 +- .../Replica/BasicHostChunkDescriptor.h | 2 +- .../GridMate/GridMate/Replica/DataSet.cpp | 2 +- .../GridMate/GridMate/Replica/DataSet.h | 2 +- .../GridMate/Replica/DeltaCompressedDataSet.h | 2 +- .../Interest/BitmaskInterestHandler.cpp | 2 +- .../Replica/Interest/BitmaskInterestHandler.h | 2 +- .../GridMate/Replica/Interest/InterestDefs.h | 2 +- .../GridMate/Replica/Interest/InterestEvents.h | 2 +- .../Replica/Interest/InterestManager.cpp | 2 +- .../Replica/Interest/InterestManager.h | 2 +- .../Replica/Interest/InterestQueryResult.cpp | 2 +- .../Replica/Interest/InterestQueryResult.h | 2 +- .../GridMate/Replica/Interest/RulesHandler.h | 2 +- .../GridMate/GridMate/Replica/Interpolators.h | 2 +- .../GridMate/Replica/MigrationSequence.cpp | 2 +- .../GridMate/Replica/MigrationSequence.h | 2 +- .../GridMate/Replica/RemoteProcedureCall.cpp | 2 +- .../GridMate/Replica/RemoteProcedureCall.h | 2 +- .../GridMate/GridMate/Replica/Replica.cpp | 2 +- .../GridMate/GridMate/Replica/Replica.h | 2 +- .../GridMate/GridMate/Replica/ReplicaChunk.cpp | 2 +- .../GridMate/GridMate/Replica/ReplicaChunk.h | 2 +- .../Replica/ReplicaChunkDescriptor.cpp | 2 +- .../GridMate/Replica/ReplicaChunkDescriptor.h | 2 +- .../GridMate/Replica/ReplicaChunkInterface.h | 2 +- .../GridMate/GridMate/Replica/ReplicaCommon.h | 2 +- .../GridMate/GridMate/Replica/ReplicaDefs.h | 2 +- .../GridMate/Replica/ReplicaDrillerEvents.h | 2 +- .../GridMate/Replica/ReplicaFunctions.h | 2 +- .../GridMate/Replica/ReplicaFunctions.inl | 2 +- .../GridMate/Replica/ReplicaInline.inl | 2 +- .../GridMate/GridMate/Replica/ReplicaMgr.cpp | 2 +- .../GridMate/GridMate/Replica/ReplicaMgr.h | 2 +- .../GridMate/Replica/ReplicaStatus.cpp | 2 +- .../GridMate/GridMate/Replica/ReplicaStatus.h | 2 +- .../GridMate/Replica/ReplicaStatusInterface.h | 2 +- .../GridMate/Replica/ReplicaTarget.cpp | 2 +- .../GridMate/GridMate/Replica/ReplicaTarget.h | 2 +- .../GridMate/GridMate/Replica/ReplicaUtils.h | 2 +- .../GridMate/Replica/SystemReplicas.cpp | 2 +- .../GridMate/GridMate/Replica/SystemReplicas.h | 2 +- .../Replica/Tasks/ReplicaMarshalTasks.cpp | 2 +- .../Replica/Tasks/ReplicaMarshalTasks.h | 2 +- .../Replica/Tasks/ReplicaPriorityPolicy.h | 2 +- .../Replica/Tasks/ReplicaProcessPolicy.cpp | 2 +- .../Replica/Tasks/ReplicaProcessPolicy.h | 2 +- .../GridMate/Replica/Tasks/ReplicaTask.h | 2 +- .../Replica/Tasks/ReplicaTaskManager.h | 2 +- .../Replica/Tasks/ReplicaUpdateTasks.cpp | 2 +- .../Replica/Tasks/ReplicaUpdateTasks.h | 2 +- .../GridMate/GridMate/Replica/Throttles.h | 2 +- .../GridMate/GridMate/Serialize/Buffer.cpp | 2 +- .../GridMate/GridMate/Serialize/Buffer.h | 2 +- .../GridMate/Serialize/CompressionMarshal.cpp | 2 +- .../GridMate/Serialize/CompressionMarshal.h | 2 +- .../GridMate/Serialize/ContainerMarshal.h | 2 +- .../GridMate/GridMate/Serialize/DataMarshal.h | 2 +- .../GridMate/Serialize/MarshalerTypes.h | 2 +- .../GridMate/GridMate/Serialize/MathMarshal.h | 2 +- .../GridMate/GridMate/Serialize/PackedSize.h | 2 +- .../GridMate/Serialize/UtilityMarshal.h | 2 +- .../GridMate/GridMate/Serialize/UuidMarshal.h | 2 +- .../GridMate/GridMate/Session/LANSession.cpp | 2 +- .../GridMate/GridMate/Session/LANSession.h | 2 +- .../GridMate/Session/LANSessionServiceBus.h | 2 +- .../GridMate/Session/LANSessionServiceTypes.h | 2 +- .../GridMate/GridMate/Session/Session.cpp | 2 +- .../GridMate/GridMate/Session/Session.h | 2 +- .../GridMate/Session/SessionServiceBus.h | 2 +- .../GridMate/GridMate/String/StringUtils.h | 2 +- .../GridMate/GridMate/String/string.h | 2 +- Code/Framework/GridMate/GridMate/Types.h | 2 +- Code/Framework/GridMate/GridMate/Version.h | 2 +- .../GridMate/VoiceChat/VoiceChatServiceBus.h | 2 +- .../GridMate/GridMate/gridmate_files.cmake | 2 +- .../GridMate/GridMate/gridmate_ssl_files.cmake | 2 +- .../GridMate/Carrier/SocketDriver_Android.h | 2 +- .../GridMate/Carrier/SocketDriver_Platform.h | 2 +- .../Android/GridMate/Carrier/Utils_Android.cpp | 2 +- .../GridMate/Session/LANSession_Android.cpp | 2 +- .../Android/GridMate/Session/Session_Android.h | 2 +- .../GridMate/Session/Session_Platform.h | 2 +- .../Platform/Android/GridMate_Traits_Android.h | 2 +- .../Android/GridMate_Traits_Platform.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../GridMate/Carrier/SocketDriver_UnixLike.cpp | 2 +- .../GridMate/Carrier/SocketDriver_UnixLike.h | 2 +- .../GridMate/Carrier/Utils_UnixLike.cpp | 2 +- .../GridMate/Carrier/SocketDriver_WinAPI.cpp | 2 +- .../WinAPI/GridMate/Carrier/Utils_WinAPI.cpp | 2 +- .../Platform/Common/gridmate_clang.cmake | 2 +- .../Platform/Common/gridmate_msvc.cmake | 2 +- .../GridMate/Carrier/SocketDriver_Platform.h | 2 +- .../GridMate/Session/LANSession_Linux.cpp | 2 +- .../Linux/GridMate/Session/Session_Linux.h | 2 +- .../Linux/GridMate/Session/Session_Platform.h | 2 +- .../GridMate/String/StringUtils_Platform.h | 2 +- .../Platform/Linux/GridMate_Traits_Linux.h | 2 +- .../Platform/Linux/GridMate_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../GridMate/Carrier/SocketDriver_Platform.h | 2 +- .../Mac/GridMate/Session/LANSession_Mac.cpp | 2 +- .../Mac/GridMate/Session/Session_Mac.h | 2 +- .../Mac/GridMate/Session/Session_Platform.h | 2 +- .../Platform/Mac/GridMate_Traits_Mac.h | 2 +- .../Platform/Mac/GridMate_Traits_Platform.h | 2 +- .../GridMate/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../GridMate/Carrier/SocketDriver_Platform.h | 2 +- .../GridMate/Carrier/SocketDriver_Windows.h | 2 +- .../Windows/GridMate/Carrier/Utils_Windows.cpp | 2 +- .../GridMate/Session/LANSession_Windows.cpp | 2 +- .../GridMate/Session/Session_Platform.h | 2 +- .../Windows/GridMate/Session/Session_Windows.h | 2 +- .../Windows/GridMate_Traits_Platform.h | 2 +- .../Platform/Windows/GridMate_Traits_Windows.h | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../GridMate/Carrier/SocketDriver_Platform.h | 2 +- .../iOS/GridMate/Session/LANSession_iOS.cpp | 2 +- .../iOS/GridMate/Session/Session_Platform.h | 2 +- .../iOS/GridMate/Session/Session_iOS.h | 2 +- .../Platform/iOS/GridMate_Traits_Platform.h | 2 +- .../Platform/iOS/GridMate_Traits_iOS.h | 2 +- .../GridMate/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Code/Framework/GridMate/Tests/Carrier.cpp | 2 +- .../Tests/CarrierStreamSocketDriverTests.cpp | 2 +- Code/Framework/GridMate/Tests/Certificates.cpp | 2 +- .../Android/GridMateTests/Tests_Platform.h | 2 +- .../Android/GridMateTests_Traits_Android.h | 2 +- .../Android/GridMateTests_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../GridMateTests/Tests_Unimplemented.h | 2 +- .../Linux/GridMateTests/Tests_Platform.h | 2 +- .../Linux/GridMateTests_Traits_Linux.h | 2 +- .../Linux/GridMateTests_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Mac/GridMateTests/Tests_Platform.h | 2 +- .../Platform/Mac/GridMateTests_Traits_Mac.h | 2 +- .../Mac/GridMateTests_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/GridMateTests/Tests_Platform.h | 2 +- .../Windows/GridMateTests_Traits_Platform.h | 2 +- .../Windows/GridMateTests_Traits_Windows.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/GridMateTests/Tests_Platform.h | 2 +- .../iOS/GridMateTests_Traits_Platform.h | 2 +- .../Platform/iOS/GridMateTests_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Code/Framework/GridMate/Tests/Replica.cpp | 2 +- .../GridMate/Tests/ReplicaBehavior.cpp | 2 +- .../Framework/GridMate/Tests/ReplicaMedium.cpp | 2 +- Code/Framework/GridMate/Tests/ReplicaSmall.cpp | 2 +- Code/Framework/GridMate/Tests/Serialize.cpp | 2 +- Code/Framework/GridMate/Tests/Session.cpp | 2 +- .../Tests/StreamSecureSocketDriverTests.cpp | 2 +- .../GridMate/Tests/StreamSocketDriverTests.cpp | 2 +- Code/Framework/GridMate/Tests/TestProfiler.cpp | 2 +- Code/Framework/GridMate/Tests/TestProfiler.h | 2 +- Code/Framework/GridMate/Tests/Tests.h | 2 +- .../GridMate/Tests/gridmate_test_files.cmake | 2 +- Code/Framework/GridMate/Tests/test_Main.cpp | 2 +- Code/Framework/Tests/Application.cpp | 2 +- .../Tests/ArchiveCompressionTests.cpp | 2 +- Code/Framework/Tests/ArchiveTests.cpp | 2 +- Code/Framework/Tests/AssetCatalog.cpp | 2 +- .../Tests/AssetProcessorConnection.cpp | 2 +- Code/Framework/Tests/BehaviorEntityTests.cpp | 2 +- Code/Framework/Tests/BinToTextEncode.cpp | 2 +- Code/Framework/Tests/CMakeLists.txt | 2 +- Code/Framework/Tests/CameraInputTests.cpp | 2 +- Code/Framework/Tests/CameraState.cpp | 2 +- Code/Framework/Tests/ClickDetectorTests.cpp | 2 +- Code/Framework/Tests/ComponentAdapterTests.cpp | 2 +- Code/Framework/Tests/ComponentAddRemove.cpp | 2 +- Code/Framework/Tests/CursorStateTests.cpp | 2 +- Code/Framework/Tests/EntityContext.cpp | 2 +- .../EntityOwnershipServiceTestFixture.cpp | 2 +- .../EntityOwnershipServiceTestFixture.h | 2 +- .../SliceEditorEntityOwnershipTests.cpp | 2 +- .../SliceEntityOwnershipTests.cpp | 2 +- Code/Framework/Tests/EntityTestbed.h | 2 +- Code/Framework/Tests/FileFunc.cpp | 2 +- Code/Framework/Tests/FileIO.cpp | 2 +- Code/Framework/Tests/FileTagTests.cpp | 2 +- .../Tests/FrameworkApplicationFixture.h | 2 +- Code/Framework/Tests/GenAppDescriptors.cpp | 2 +- .../Tests/GenericComponentWrapperTest.cpp | 2 +- Code/Framework/Tests/InputTests.cpp | 2 +- Code/Framework/Tests/InstanceDataHierarchy.cpp | 2 +- .../Mocks/MockSpawnableEntitiesInterface.h | 2 +- Code/Framework/Tests/NativeWindow.cpp | 2 +- .../Framework/Tests/OctreePerformanceTests.cpp | 2 +- Code/Framework/Tests/OctreeTests.cpp | 2 +- .../Android/AzFrameworkTests_Traits_Android.h | 2 +- .../Android/AzFrameworkTests_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Linux/AzFrameworkTests_Traits_Linux.h | 2 +- .../Linux/AzFrameworkTests_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/AzFrameworkTests_Traits_Mac.h | 2 +- .../Mac/AzFrameworkTests_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/AzFrameworkTests_Traits_Platform.h | 2 +- .../Windows/AzFrameworkTests_Traits_Windows.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/AzFrameworkTests_Traits_Platform.h | 2 +- .../Platform/iOS/AzFrameworkTests_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Code/Framework/Tests/PlatformHelper.cpp | 2 +- Code/Framework/Tests/ProcessLaunchMain.cpp | 2 +- .../Tests/ProcessLaunchParseTests.cpp | 2 +- Code/Framework/Tests/SQLiteConnectionTests.cpp | 2 +- Code/Framework/Tests/Scene.cpp | 2 +- .../Tests/Script/ScriptComponentTests.cpp | 2 +- .../Tests/Script/ScriptEntityTests.cpp | 2 +- Code/Framework/Tests/Slices.cpp | 2 +- .../SpawnableEntitiesManagerTests.cpp | 2 +- Code/Framework/Tests/TransformComponent.cpp | 2 +- Code/Framework/Tests/Utils/Utils.cpp | 2 +- Code/Framework/Tests/Utils/Utils.h | 2 +- .../Tests/framework_shared_tests_files.cmake | 2 +- .../Framework/Tests/frameworktests_files.cmake | 2 +- .../Tests/process_launch_test_files.cmake | 2 +- Code/LauncherUnified/CMakeLists.txt | 2 +- .../FindLauncherGenerator.cmake | 2 +- Code/LauncherUnified/Game.cpp | 2 +- Code/LauncherUnified/Launcher.cpp | 2 +- Code/LauncherUnified/Launcher.h | 2 +- Code/LauncherUnified/LauncherProject.cpp | 2 +- .../LauncherUnified_traits_android.cmake | 2 +- .../Platform/Android/Launcher_Android.cpp | 2 +- .../Platform/Android/Launcher_Traits_Android.h | 2 +- .../Android/Launcher_Traits_Platform.h | 2 +- .../Android/launcher_game_android_files.cmake | 2 +- .../Android/launcher_project_android.cmake | 2 +- .../Platform/Android/native_app_glue_include.c | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Platform/Common/Apple/Launcher_Apple.h | 2 +- .../Platform/Common/Apple/Launcher_Apple.mm | 2 +- .../Common/UnixLike/Launcher_UnixLike.cpp | 2 +- .../Common/UnixLike/Launcher_UnixLike.h | 2 +- .../Linux/LauncherUnified_traits_linux.cmake | 2 +- .../Platform/Linux/Launcher_Linux.cpp | 2 +- .../Platform/Linux/Launcher_Traits_Linux.h | 2 +- .../Platform/Linux/Launcher_Traits_Platform.h | 2 +- .../Linux/launcher_game_linux_files.cmake | 2 +- .../Linux/launcher_project_linux.cmake | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Mac/LauncherUnified_traits_mac.cmake | 2 +- .../Platform/Mac/Launcher_Mac.mm | 2 +- .../Platform/Mac/Launcher_Traits_Mac.h | 2 +- .../Platform/Mac/Launcher_Traits_Platform.h | 2 +- .../Mac/O3DEApplicationDelegate_Mac.mm | 2 +- .../Platform/Mac/O3DEApplication_Mac.h | 2 +- .../Platform/Mac/O3DEApplication_Mac.mm | 2 +- .../Platform/Mac/launcher_game_mac_files.cmake | 2 +- .../Platform/Mac/launcher_project_mac.cmake | 2 +- .../Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../LauncherUnified_traits_windows.cmake | 2 +- .../Platform/Windows/Launcher_Game_Windows.cpp | 2 +- .../Windows/Launcher_Traits_Platform.h | 2 +- .../Platform/Windows/Launcher_Traits_Windows.h | 2 +- .../Platform/Windows/Launcher_Windows.cpp | 2 +- .../Windows/launcher_game_windows_files.cmake | 2 +- .../Windows/launcher_project_windows.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/LauncherUnified_traits_ios.cmake | 2 +- .../Platform/iOS/Launcher_Traits_Platform.h | 2 +- .../Platform/iOS/Launcher_Traits_iOS.h | 2 +- .../Platform/iOS/Launcher_iOS.mm | 2 +- .../iOS/O3DEApplicationDelegate_iOS.mm | 2 +- .../Platform/iOS/O3DEApplication_iOS.mm | 2 +- .../Platform/iOS/launcher_game_ios_files.cmake | 2 +- .../Platform/iOS/launcher_project_ios.cmake | 2 +- .../Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Code/LauncherUnified/Server.cpp | 2 +- .../Tests/LauncherUnifiedTests.cpp | 2 +- Code/LauncherUnified/Tests/Test.cpp | 2 +- Code/LauncherUnified/launcher_files.cmake | 2 +- Code/LauncherUnified/launcher_game_files.cmake | 2 +- Code/LauncherUnified/launcher_generator.cmake | 2 +- .../launcher_project_files.cmake | 2 +- .../launcher_server_files.cmake | 2 +- Code/LauncherUnified/launcher_test_files.cmake | 2 +- Code/Legacy/CMakeLists.txt | 2 +- Code/Legacy/CryCommon/AndroidSpecific.h | 2 +- Code/Legacy/CryCommon/AnimKey.h | 2 +- Code/Legacy/CryCommon/AppleSpecific.h | 2 +- Code/Legacy/CryCommon/BaseTypes.h | 2 +- Code/Legacy/CryCommon/BitFiddling.h | 2 +- Code/Legacy/CryCommon/CMakeLists.txt | 2 +- Code/Legacy/CryCommon/Common_TypeInfo.cpp | 2 +- Code/Legacy/CryCommon/CompileTimeAssert.h | 2 +- Code/Legacy/CryCommon/CryArray.h | 2 +- Code/Legacy/CryCommon/CryAssert.h | 2 +- Code/Legacy/CryCommon/CryAssert_Android.h | 2 +- Code/Legacy/CryCommon/CryAssert_Linux.h | 2 +- Code/Legacy/CryCommon/CryAssert_Mac.h | 2 +- Code/Legacy/CryCommon/CryAssert_iOS.h | 2 +- Code/Legacy/CryCommon/CryAssert_impl.h | 2 +- Code/Legacy/CryCommon/CryCommon.cpp | 2 +- Code/Legacy/CryCommon/CryCrc32.h | 2 +- Code/Legacy/CryCommon/CryCustomTypes.h | 2 +- Code/Legacy/CryCommon/CryEndian.h | 2 +- Code/Legacy/CryCommon/CryFile.h | 2 +- Code/Legacy/CryCommon/CryFixedString.h | 2 +- Code/Legacy/CryCommon/CryHalf.inl | 2 +- Code/Legacy/CryCommon/CryHalf_info.h | 2 +- Code/Legacy/CryCommon/CryHeaders.h | 2 +- Code/Legacy/CryCommon/CryHeaders_info.cpp | 2 +- Code/Legacy/CryCommon/CryLegacyAllocator.h | 2 +- Code/Legacy/CryCommon/CryLibrary.cpp | 2 +- Code/Legacy/CryCommon/CryLibrary.h | 2 +- Code/Legacy/CryCommon/CryListenerSet.h | 2 +- Code/Legacy/CryCommon/CryName.h | 2 +- Code/Legacy/CryCommon/CryPath.h | 2 +- Code/Legacy/CryCommon/CryPodArray.h | 2 +- Code/Legacy/CryCommon/CryRandomInternal.h | 2 +- Code/Legacy/CryCommon/CrySizer.h | 2 +- Code/Legacy/CryCommon/CryString.h | 2 +- Code/Legacy/CryCommon/CrySystemBus.h | 2 +- Code/Legacy/CryCommon/CryThread.h | 2 +- Code/Legacy/CryCommon/CryThreadImpl.h | 2 +- Code/Legacy/CryCommon/CryThreadImpl_pthreads.h | 2 +- Code/Legacy/CryCommon/CryThreadImpl_windows.h | 2 +- Code/Legacy/CryCommon/CryThread_dummy.h | 2 +- Code/Legacy/CryCommon/CryThread_pthreads.h | 2 +- Code/Legacy/CryCommon/CryThread_windows.h | 2 +- Code/Legacy/CryCommon/CryTypeInfo.cpp | 2 +- Code/Legacy/CryCommon/CryTypeInfo.h | 2 +- Code/Legacy/CryCommon/CryVersion.h | 2 +- Code/Legacy/CryCommon/CryWindows.h | 2 +- Code/Legacy/CryCommon/Cry_Camera.h | 2 +- Code/Legacy/CryCommon/Cry_Color.h | 2 +- Code/Legacy/CryCommon/Cry_Geo.h | 2 +- Code/Legacy/CryCommon/Cry_GeoDistance.h | 2 +- Code/Legacy/CryCommon/Cry_GeoIntersect.h | 2 +- Code/Legacy/CryCommon/Cry_GeoOverlap.h | 2 +- Code/Legacy/CryCommon/Cry_HWMatrix.h | 2 +- Code/Legacy/CryCommon/Cry_HWVector3.h | 2 +- Code/Legacy/CryCommon/Cry_Math.h | 2 +- Code/Legacy/CryCommon/Cry_Matrix33.h | 2 +- Code/Legacy/CryCommon/Cry_Matrix34.h | 2 +- Code/Legacy/CryCommon/Cry_Matrix44.h | 2 +- Code/Legacy/CryCommon/Cry_MatrixDiag.h | 2 +- Code/Legacy/CryCommon/Cry_Quat.h | 2 +- Code/Legacy/CryCommon/Cry_ValidNumber.h | 2 +- Code/Legacy/CryCommon/Cry_Vector2.h | 2 +- Code/Legacy/CryCommon/Cry_Vector3.h | 2 +- Code/Legacy/CryCommon/Cry_Vector4.h | 2 +- Code/Legacy/CryCommon/Cry_XOptimise.h | 2 +- Code/Legacy/CryCommon/FrameProfiler.h | 2 +- Code/Legacy/CryCommon/FunctorBaseFunction.h | 2 +- Code/Legacy/CryCommon/FunctorBaseMember.h | 2 +- Code/Legacy/CryCommon/HMDBus.h | 2 +- Code/Legacy/CryCommon/HeapAllocator.h | 2 +- .../CryCommon/HeightmapUpdateNotificationBus.h | 2 +- .../CryCommon/IAudioInterfacesCommonData.h | 2 +- Code/Legacy/CryCommon/IAudioSystem.h | 2 +- Code/Legacy/CryCommon/ICmdLine.h | 2 +- Code/Legacy/CryCommon/IConsole.h | 2 +- Code/Legacy/CryCommon/IEntityRenderState.h | 2 +- .../CryCommon/IEntityRenderState_info.cpp | 2 +- Code/Legacy/CryCommon/IFont.h | 2 +- Code/Legacy/CryCommon/IFunctorBase.h | 2 +- Code/Legacy/CryCommon/IGem.h | 2 +- Code/Legacy/CryCommon/IIndexedMesh.h | 2 +- Code/Legacy/CryCommon/IIndexedMesh_info.cpp | 2 +- Code/Legacy/CryCommon/ILevelSystem.h | 2 +- Code/Legacy/CryCommon/ILocalizationManager.h | 2 +- Code/Legacy/CryCommon/ILog.h | 2 +- Code/Legacy/CryCommon/IMNM.h | 2 +- Code/Legacy/CryCommon/IMaterial.h | 2 +- Code/Legacy/CryCommon/IMiniLog.h | 2 +- Code/Legacy/CryCommon/IMovieSystem.h | 2 +- Code/Legacy/CryCommon/INavigationSystem.h | 2 +- Code/Legacy/CryCommon/IPathfinder.h | 2 +- Code/Legacy/CryCommon/IPhysics.h | 2 +- Code/Legacy/CryCommon/IPostEffectGroup.h | 2 +- Code/Legacy/CryCommon/IProcess.h | 2 +- Code/Legacy/CryCommon/IReadWriteXMLSink.h | 2 +- Code/Legacy/CryCommon/IRenderAuxGeom.h | 2 +- Code/Legacy/CryCommon/IRenderMesh.h | 2 +- Code/Legacy/CryCommon/IRenderer.h | 2 +- Code/Legacy/CryCommon/ISerialize.h | 2 +- Code/Legacy/CryCommon/IShader.h | 2 +- Code/Legacy/CryCommon/ISplines.h | 2 +- Code/Legacy/CryCommon/IStatObj.h | 2 +- Code/Legacy/CryCommon/IStereoRenderer.h | 2 +- Code/Legacy/CryCommon/ISurfaceType.h | 2 +- Code/Legacy/CryCommon/ISystem.h | 2 +- Code/Legacy/CryCommon/ITexture.h | 2 +- Code/Legacy/CryCommon/ITimer.h | 2 +- Code/Legacy/CryCommon/IValidator.h | 2 +- Code/Legacy/CryCommon/IViewSystem.h | 2 +- Code/Legacy/CryCommon/IWindowMessageHandler.h | 2 +- Code/Legacy/CryCommon/IXml.h | 2 +- Code/Legacy/CryCommon/LCGRandom.h | 2 +- Code/Legacy/CryCommon/LegacyAllocator.h | 2 +- Code/Legacy/CryCommon/Linux32Specific.h | 2 +- Code/Legacy/CryCommon/Linux64Specific.h | 2 +- Code/Legacy/CryCommon/LinuxSpecific.h | 2 +- Code/Legacy/CryCommon/Linux_Win32Wrapper.h | 2 +- Code/Legacy/CryCommon/LoadScreenBus.h | 2 +- Code/Legacy/CryCommon/LocalizationManagerBus.h | 2 +- .../CryCommon/LocalizationManagerBus.inl | 2 +- .../CryCommon/LyShine/Animation/IUiAnimation.h | 2 +- .../CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h | 2 +- .../LyShine/Bus/Tools/UiSystemToolsBus.h | 2 +- .../CryCommon/LyShine/Bus/UiAnimateEntityBus.h | 2 +- .../CryCommon/LyShine/Bus/UiAnimationBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiButtonBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiCanvasBus.h | 2 +- .../CryCommon/LyShine/Bus/UiCanvasManagerBus.h | 2 +- .../Bus/UiCanvasUpdateNotificationBus.h | 2 +- .../CryCommon/LyShine/Bus/UiCheckboxBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiCursorBus.h | 2 +- .../CryCommon/LyShine/Bus/UiDraggableBus.h | 2 +- .../CryCommon/LyShine/Bus/UiDropTargetBus.h | 2 +- .../CryCommon/LyShine/Bus/UiDropdownBus.h | 2 +- .../LyShine/Bus/UiDropdownOptionBus.h | 2 +- .../CryCommon/LyShine/Bus/UiDynamicLayoutBus.h | 2 +- .../LyShine/Bus/UiDynamicScrollBoxBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiEditorBus.h | 2 +- .../CryCommon/LyShine/Bus/UiEditorCanvasBus.h | 2 +- .../Bus/UiEditorChangeNotificationBus.h | 2 +- .../CryCommon/LyShine/Bus/UiElementBus.h | 2 +- .../CryCommon/LyShine/Bus/UiEntityContextBus.h | 2 +- Code/Legacy/CryCommon/LyShine/Bus/UiFaderBus.h | 2 +- .../LyShine/Bus/UiFlipbookAnimationBus.h | 2 +- .../LyShine/Bus/UiGameEntityContextBus.h | 2 +- Code/Legacy/CryCommon/LyShine/Bus/UiImageBus.h | 2 +- .../CryCommon/LyShine/Bus/UiImageSequenceBus.h | 2 +- .../LyShine/Bus/UiIndexableImageBus.h | 2 +- .../LyShine/Bus/UiInitializationBus.h | 2 +- .../LyShine/Bus/UiInteractableActionsBus.h | 2 +- .../CryCommon/LyShine/Bus/UiInteractableBus.h | 2 +- .../LyShine/Bus/UiInteractableStatesBus.h | 2 +- .../LyShine/Bus/UiInteractionMaskBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiLayoutBus.h | 2 +- .../CryCommon/LyShine/Bus/UiLayoutCellBus.h | 2 +- .../LyShine/Bus/UiLayoutCellDefaultBus.h | 2 +- .../CryCommon/LyShine/Bus/UiLayoutColumnBus.h | 2 +- .../LyShine/Bus/UiLayoutControllerBus.h | 2 +- .../CryCommon/LyShine/Bus/UiLayoutFitterBus.h | 2 +- .../CryCommon/LyShine/Bus/UiLayoutGridBus.h | 2 +- .../CryCommon/LyShine/Bus/UiLayoutManagerBus.h | 2 +- .../CryCommon/LyShine/Bus/UiLayoutRowBus.h | 2 +- .../CryCommon/LyShine/Bus/UiMarkupButtonBus.h | 2 +- Code/Legacy/CryCommon/LyShine/Bus/UiMaskBus.h | 2 +- .../CryCommon/LyShine/Bus/UiNavigationBus.h | 2 +- .../LyShine/Bus/UiParticleEmitterBus.h | 2 +- .../CryCommon/LyShine/Bus/UiRadioButtonBus.h | 2 +- .../Bus/UiRadioButtonCommunicationBus.h | 2 +- .../LyShine/Bus/UiRadioButtonGroupBus.h | 2 +- .../Bus/UiRadioButtonGroupCommunicationBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiRenderBus.h | 2 +- .../CryCommon/LyShine/Bus/UiRenderControlBus.h | 2 +- .../CryCommon/LyShine/Bus/UiScrollBarBus.h | 2 +- .../CryCommon/LyShine/Bus/UiScrollBoxBus.h | 2 +- .../CryCommon/LyShine/Bus/UiScrollableBus.h | 2 +- .../CryCommon/LyShine/Bus/UiScrollerBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiSliderBus.h | 2 +- .../CryCommon/LyShine/Bus/UiSpawnerBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiSystemBus.h | 2 +- Code/Legacy/CryCommon/LyShine/Bus/UiTextBus.h | 2 +- .../CryCommon/LyShine/Bus/UiTextInputBus.h | 2 +- .../CryCommon/LyShine/Bus/UiTooltipBus.h | 2 +- .../LyShine/Bus/UiTooltipDataPopulatorBus.h | 2 +- .../LyShine/Bus/UiTooltipDisplayBus.h | 2 +- .../CryCommon/LyShine/Bus/UiTransform2dBus.h | 2 +- .../CryCommon/LyShine/Bus/UiTransformBus.h | 2 +- .../Legacy/CryCommon/LyShine/Bus/UiVisualBus.h | 2 +- .../LyShine/Bus/World/UiCanvasOnMeshBus.h | 2 +- .../LyShine/Bus/World/UiCanvasRefBus.h | 2 +- Code/Legacy/CryCommon/LyShine/IDraw2d.h | 2 +- Code/Legacy/CryCommon/LyShine/ILyShine.h | 2 +- Code/Legacy/CryCommon/LyShine/IRenderGraph.h | 2 +- Code/Legacy/CryCommon/LyShine/ISprite.h | 2 +- Code/Legacy/CryCommon/LyShine/UiAssetTypes.h | 2 +- Code/Legacy/CryCommon/LyShine/UiBase.h | 2 +- .../CryCommon/LyShine/UiComponentTypes.h | 2 +- .../Legacy/CryCommon/LyShine/UiEntityContext.h | 2 +- .../CryCommon/LyShine/UiLayoutCellBase.h | 2 +- .../CryCommon/LyShine/UiSerializeHelpers.h | 2 +- Code/Legacy/CryCommon/MTPseudoRandom.cpp | 2 +- Code/Legacy/CryCommon/MacSpecific.h | 2 +- .../Bus/EditorSequenceAgentComponentBus.h | 2 +- .../CryCommon/Maestro/Bus/EditorSequenceBus.h | 2 +- .../Maestro/Bus/EditorSequenceComponentBus.h | 2 +- .../Maestro/Bus/SequenceAgentComponentBus.h | 2 +- .../Maestro/Bus/SequenceComponentBus.h | 2 +- .../CryCommon/Maestro/Types/AnimNodeType.h | 2 +- .../CryCommon/Maestro/Types/AnimParamType.h | 2 +- .../Legacy/CryCommon/Maestro/Types/AnimValue.h | 2 +- .../CryCommon/Maestro/Types/AnimValueType.h | 2 +- .../CryCommon/Maestro/Types/AssetBlendKey.h | 2 +- .../CryCommon/Maestro/Types/AssetBlends.h | 2 +- .../CryCommon/Maestro/Types/SequenceType.h | 2 +- .../CryCommon/MainThreadRenderRequestBus.h | 2 +- Code/Legacy/CryCommon/MathConversion.h | 2 +- Code/Legacy/CryCommon/MemoryAccess.h | 2 +- Code/Legacy/CryCommon/MetaUtils.h | 2 +- Code/Legacy/CryCommon/MicrophoneBus.h | 2 +- Code/Legacy/CryCommon/MiniQueue.h | 2 +- Code/Legacy/CryCommon/Mocks/IAudioSystemMock.h | 2 +- Code/Legacy/CryCommon/Mocks/ICVarMock.h | 2 +- Code/Legacy/CryCommon/Mocks/IConsoleMock.h | 2 +- Code/Legacy/CryCommon/Mocks/ICryPakMock.h | 2 +- Code/Legacy/CryCommon/Mocks/ILogMock.h | 2 +- .../CryCommon/Mocks/IRemoteConsoleMock.h | 2 +- Code/Legacy/CryCommon/Mocks/IRendererMock.h | 2 +- Code/Legacy/CryCommon/Mocks/ISystemMock.h | 2 +- Code/Legacy/CryCommon/Mocks/ITextureMock.h | 2 +- Code/Legacy/CryCommon/Mocks/ITimerMock.h | 2 +- Code/Legacy/CryCommon/Mocks/StubTimer.h | 2 +- Code/Legacy/CryCommon/MultiThread.h | 2 +- Code/Legacy/CryCommon/MultiThread_Containers.h | 2 +- Code/Legacy/CryCommon/NullAudioSystem.h | 2 +- Code/Legacy/CryCommon/Options.h | 2 +- Code/Legacy/CryCommon/PoolAllocator.h | 2 +- Code/Legacy/CryCommon/ProjectDefines.h | 2 +- Code/Legacy/CryCommon/Random.h | 2 +- Code/Legacy/CryCommon/Range.h | 2 +- Code/Legacy/CryCommon/RenderBus.h | 2 +- Code/Legacy/CryCommon/SFunctor.h | 2 +- Code/Legacy/CryCommon/ScopedVariableSetter.h | 2 +- Code/Legacy/CryCommon/SerializationTypes.h | 2 +- Code/Legacy/CryCommon/SerializeFwd.h | 2 +- Code/Legacy/CryCommon/SimpleSerialize.h | 2 +- Code/Legacy/CryCommon/StatObjBus.h | 2 +- Code/Legacy/CryCommon/StaticInstance.h | 2 +- Code/Legacy/CryCommon/StereoRendererBus.h | 2 +- Code/Legacy/CryCommon/StlUtils.h | 2 +- Code/Legacy/CryCommon/StringUtils.h | 2 +- Code/Legacy/CryCommon/Synchronization.h | 2 +- Code/Legacy/CryCommon/Tarray.h | 2 +- Code/Legacy/CryCommon/TimeValue.h | 2 +- Code/Legacy/CryCommon/TimeValue_info.h | 2 +- Code/Legacy/CryCommon/Timer.h | 2 +- Code/Legacy/CryCommon/TypeInfo_decl.h | 2 +- Code/Legacy/CryCommon/TypeInfo_impl.h | 2 +- Code/Legacy/CryCommon/UnicodeBinding.h | 2 +- Code/Legacy/CryCommon/UnicodeEncoding.h | 2 +- Code/Legacy/CryCommon/UnicodeFunctions.h | 2 +- Code/Legacy/CryCommon/UnicodeIterator.h | 2 +- Code/Legacy/CryCommon/VRCommon.h | 2 +- Code/Legacy/CryCommon/VectorMap.h | 2 +- Code/Legacy/CryCommon/VectorSet.h | 2 +- Code/Legacy/CryCommon/Vertex.h | 2 +- Code/Legacy/CryCommon/VertexFormats.h | 2 +- Code/Legacy/CryCommon/Win32specific.h | 2 +- Code/Legacy/CryCommon/Win64specific.h | 2 +- Code/Legacy/CryCommon/WinBase.cpp | 2 +- Code/Legacy/CryCommon/XMLBinaryHeaders.h | 2 +- Code/Legacy/CryCommon/crycommon_files.cmake | 2 +- .../CryCommon/crycommon_testing_files.cmake | 2 +- Code/Legacy/CryCommon/iOSSpecific.h | 2 +- Code/Legacy/CryCommon/physinterface.h | 2 +- Code/Legacy/CryCommon/platform.h | 2 +- Code/Legacy/CryCommon/platform_impl.cpp | 2 +- Code/Legacy/CryCommon/primitives.h | 2 +- Code/Legacy/CryCommon/smartptr.h | 2 +- Code/Legacy/CryCommon/stridedptr.h | 2 +- Code/Legacy/CrySystem/AZCoreLogSink.h | 2 +- .../CrySystem/AZCrySystemInitLogSink.cpp | 2 +- Code/Legacy/CrySystem/AZCrySystemInitLogSink.h | 2 +- Code/Legacy/CrySystem/CMakeLists.txt | 2 +- Code/Legacy/CrySystem/CmdLine.cpp | 2 +- Code/Legacy/CrySystem/CmdLine.h | 2 +- Code/Legacy/CrySystem/CmdLineArg.cpp | 2 +- Code/Legacy/CrySystem/CmdLineArg.h | 2 +- Code/Legacy/CrySystem/ConsoleBatchFile.cpp | 2 +- Code/Legacy/CrySystem/ConsoleBatchFile.h | 2 +- Code/Legacy/CrySystem/ConsoleHelpGen.cpp | 2 +- Code/Legacy/CrySystem/ConsoleHelpGen.h | 2 +- Code/Legacy/CrySystem/CrySystem_precompiled.h | 2 +- Code/Legacy/CrySystem/DebugCallStack.cpp | 2 +- Code/Legacy/CrySystem/DebugCallStack.h | 2 +- Code/Legacy/CrySystem/DllMain.cpp | 2 +- Code/Legacy/CrySystem/Huffman.cpp | 2 +- Code/Legacy/CrySystem/Huffman.h | 2 +- Code/Legacy/CrySystem/IDebugCallStack.cpp | 2 +- Code/Legacy/CrySystem/IDebugCallStack.h | 2 +- .../CrySystem/LevelSystem/LevelSystem.cpp | 2 +- .../Legacy/CrySystem/LevelSystem/LevelSystem.h | 2 +- .../LevelSystem/SpawnableLevelSystem.cpp | 2 +- .../LevelSystem/SpawnableLevelSystem.h | 2 +- .../CrySystem/LocalizedStringManager.cpp | 2 +- Code/Legacy/CrySystem/LocalizedStringManager.h | 2 +- Code/Legacy/CrySystem/Log.cpp | 2 +- Code/Legacy/CrySystem/Log.h | 2 +- .../CrySystem/RemoteConsole/RemoteConsole.cpp | 2 +- .../CrySystem/RemoteConsole/RemoteConsole.h | 2 +- .../RemoteConsole/RemoteConsole_impl.inl | 2 +- .../RemoteConsole/RemoteConsole_none.inl | 2 +- Code/Legacy/CrySystem/SimpleStringPool.h | 2 +- Code/Legacy/CrySystem/System.cpp | 2 +- Code/Legacy/CrySystem/System.h | 2 +- Code/Legacy/CrySystem/SystemCFG.cpp | 2 +- Code/Legacy/CrySystem/SystemCFG.h | 2 +- .../Legacy/CrySystem/SystemEventDispatcher.cpp | 2 +- Code/Legacy/CrySystem/SystemEventDispatcher.h | 2 +- Code/Legacy/CrySystem/SystemInit.cpp | 2 +- Code/Legacy/CrySystem/SystemWin32.cpp | 2 +- Code/Legacy/CrySystem/Timer.cpp | 2 +- Code/Legacy/CrySystem/Timer.h | 2 +- .../CrySystem/ViewSystem/DebugCamera.cpp | 2 +- Code/Legacy/CrySystem/ViewSystem/DebugCamera.h | 2 +- Code/Legacy/CrySystem/ViewSystem/View.cpp | 2 +- Code/Legacy/CrySystem/ViewSystem/View.h | 2 +- .../Legacy/CrySystem/ViewSystem/ViewSystem.cpp | 2 +- Code/Legacy/CrySystem/ViewSystem/ViewSystem.h | 2 +- .../Legacy/CrySystem/WindowsErrorReporting.cpp | 2 +- Code/Legacy/CrySystem/XConsole.cpp | 2 +- Code/Legacy/CrySystem/XConsole.h | 2 +- Code/Legacy/CrySystem/XConsoleVariable.cpp | 2 +- Code/Legacy/CrySystem/XConsoleVariable.h | 2 +- Code/Legacy/CrySystem/XML/CMakeLists.txt | 2 +- Code/Legacy/CrySystem/XML/ReadWriteXMLSink.h | 2 +- Code/Legacy/CrySystem/XML/ReadXMLSink.cpp | 2 +- .../CrySystem/XML/SerializeXMLReader.cpp | 2 +- Code/Legacy/CrySystem/XML/SerializeXMLReader.h | 2 +- .../CrySystem/XML/SerializeXMLWriter.cpp | 2 +- Code/Legacy/CrySystem/XML/SerializeXMLWriter.h | 2 +- Code/Legacy/CrySystem/XML/WriteXMLSource.cpp | 2 +- Code/Legacy/CrySystem/XML/XMLBinaryNode.cpp | 2 +- Code/Legacy/CrySystem/XML/XMLBinaryNode.h | 2 +- Code/Legacy/CrySystem/XML/XMLBinaryReader.cpp | 2 +- Code/Legacy/CrySystem/XML/XMLBinaryReader.h | 2 +- Code/Legacy/CrySystem/XML/XMLBinaryWriter.cpp | 2 +- Code/Legacy/CrySystem/XML/XMLBinaryWriter.h | 2 +- Code/Legacy/CrySystem/XML/XMLPatcher.cpp | 2 +- Code/Legacy/CrySystem/XML/XMLPatcher.h | 2 +- Code/Legacy/CrySystem/XML/XmlUtils.cpp | 2 +- Code/Legacy/CrySystem/XML/XmlUtils.h | 2 +- .../XML/crysystem_xmlbinary_files.cmake | 2 +- Code/Legacy/CrySystem/XML/xml.cpp | 2 +- Code/Legacy/CrySystem/XML/xml.h | 2 +- Code/Legacy/CrySystem/XML/xml_string.h | 2 +- Code/Legacy/CrySystem/crysystem_files.cmake | 2 +- .../CrySystem/crysystem_shared_files.cmake | 2 +- Code/Tools/AWSNativeSDKInit/CMakeLists.txt | 2 +- .../aws_native_sdk_init_files.cmake | 2 +- .../AWSNativeSDKInit/AWSLogSystemInterface.h | 2 +- .../AWSNativeSDKInit/AWSMemoryInterface.h | 2 +- .../AWSNativeSDKInit/AWSNativeSDKInit.h | 2 +- .../source/AWSLogSystemInterface.cpp | 2 +- .../source/AWSMemoryInterface.cpp | 2 +- .../source/AWSNativeSDKInit.cpp | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Default/AWSNativeSDKInit_Default.cpp | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../ProjectBuilder/ProjectActivity.java | 2 +- Code/Tools/AssetBundler/CMakeLists.txt | 2 +- .../Platform/Linux/PAL_linux.cmake | 2 +- .../Linux/assetbundlergui_linux_files.cmake | 2 +- .../utils/GUIApplicationManager_Linux.cpp | 2 +- .../AssetBundler/Platform/Mac/PAL_mac.cmake | 2 +- .../Mac/assetbundlergui_mac_files.cmake | 2 +- .../source/utils/GUIApplicationManager_OSX.cpp | 2 +- .../Platform/Windows/PAL_windows.cmake | 2 +- .../assetbundlergui_windows_files.cmake | 2 +- .../source/utils/GUIApplicationManager_Win.cpp | 2 +- .../AssetBundler/assetbundler_exe_files.cmake | 2 +- .../assetbundlerbatch_exe_files.cmake | 2 +- .../AssetBundler/assetbundlerbatch_files.cmake | 2 +- .../assetbundlerbatch_test_files.cmake | 2 +- .../AssetBundler/assetbundlergui_files.cmake | 2 +- Code/Tools/AssetBundler/source/main.cpp | 2 +- .../AssetBundlerAbstractFileTableModel.cpp | 2 +- .../AssetBundlerAbstractFileTableModel.h | 2 +- .../AssetBundlerFileTableFilterModel.cpp | 2 +- .../models/AssetBundlerFileTableFilterModel.h | 2 +- .../source/models/AssetListFileTableModel.cpp | 2 +- .../source/models/AssetListFileTableModel.h | 2 +- .../source/models/AssetListTableModel.cpp | 2 +- .../source/models/AssetListTableModel.h | 2 +- .../source/models/BundleFileListModel.cpp | 2 +- .../source/models/BundleFileListModel.h | 2 +- .../source/models/RulesFileTableModel.cpp | 2 +- .../source/models/RulesFileTableModel.h | 2 +- .../source/models/SeedListFileTableModel.cpp | 2 +- .../source/models/SeedListFileTableModel.h | 2 +- .../source/models/SeedListTableModel.cpp | 2 +- .../source/models/SeedListTableModel.h | 2 +- .../AssetBundler/source/ui/AddSeedDialog.cpp | 2 +- .../AssetBundler/source/ui/AddSeedDialog.h | 2 +- .../source/ui/AssetBundlerTabWidget.cpp | 2 +- .../source/ui/AssetBundlerTabWidget.h | 2 +- .../source/ui/AssetListTabWidget.cpp | 2 +- .../source/ui/AssetListTabWidget.h | 2 +- .../source/ui/BundleListTabWidget.cpp | 2 +- .../source/ui/BundleListTabWidget.h | 2 +- .../source/ui/ComparisonDataWidget.cpp | 2 +- .../source/ui/ComparisonDataWidget.h | 2 +- .../AssetBundler/source/ui/EditSeedDialog.cpp | 2 +- .../AssetBundler/source/ui/EditSeedDialog.h | 2 +- .../source/ui/GenerateBundlesModal.cpp | 2 +- .../source/ui/GenerateBundlesModal.h | 2 +- .../AssetBundler/source/ui/MainWindow.cpp | 2 +- Code/Tools/AssetBundler/source/ui/MainWindow.h | 2 +- .../AssetBundler/source/ui/NewFileDialog.cpp | 2 +- .../AssetBundler/source/ui/NewFileDialog.h | 2 +- .../source/ui/PlatformSelectionWidget.cpp | 2 +- .../source/ui/PlatformSelectionWidget.h | 2 +- .../AssetBundler/source/ui/RulesTabWidget.cpp | 2 +- .../AssetBundler/source/ui/RulesTabWidget.h | 2 +- .../AssetBundler/source/ui/SeedTabWidget.cpp | 2 +- .../AssetBundler/source/ui/SeedTabWidget.h | 2 +- .../source/ui/style/AssetBundler.qss | 2 +- .../source/utils/GUIApplicationManager.cpp | 2 +- .../source/utils/GUIApplicationManager.h | 2 +- .../source/utils/applicationManager.cpp | 2 +- .../source/utils/applicationManager.h | 2 +- Code/Tools/AssetBundler/source/utils/utils.cpp | 2 +- Code/Tools/AssetBundler/source/utils/utils.h | 2 +- Code/Tools/AssetBundler/tests/UtilsTests.cpp | 2 +- .../tests/applicationManagerTests.cpp | 2 +- Code/Tools/AssetBundler/tests/main.h | 2 +- Code/Tools/AssetBundler/tests/tests_main.cpp | 2 +- .../AssetBuilder/AssetBuilderApplication.cpp | 2 +- .../AssetBuilder/AssetBuilderApplication.h | 2 +- .../AssetBuilder/AssetBuilderComponent.cpp | 2 +- .../AssetBuilder/AssetBuilderComponent.h | 2 +- .../AssetBuilder/AssetBuilderInfo.cpp | 2 +- .../AssetBuilder/AssetBuilderInfo.h | 2 +- .../AssetProcessor/AssetBuilder/CMakeLists.txt | 2 +- .../Linux/AssetBuilderApplication_linux.cpp | 2 +- .../Linux/asset_builder_linux_files.cmake | 2 +- .../Mac/AssetBuilderApplication_mac.cpp | 2 +- .../Platform/Mac/asset_builder_mac_files.cmake | 2 +- .../AssetBuilderApplication_windows.cpp | 2 +- .../Windows/asset_builder_windows_files.cmake | 2 +- .../Tests/AssetBuilderApplicationTests.cpp | 2 +- .../AssetBuilder/TraceMessageHook.cpp | 2 +- .../AssetBuilder/TraceMessageHook.h | 2 +- .../asset_builder_darwin_files.cmake | 2 +- .../AssetBuilder/asset_builder_files.cmake | 2 +- .../Tools/AssetProcessor/AssetBuilder/main.cpp | 2 +- .../AssetBuilderSDK/AssetBuilderBusses.h | 2 +- .../AssetBuilderSDK/AssetBuilderEBusHelper.h | 2 +- .../AssetBuilderSDK/AssetBuilderSDK.cpp | 2 +- .../AssetBuilderSDK/AssetBuilderSDK.h | 2 +- .../SerializationDependencies.cpp | 2 +- .../SerializationDependencies.h | 2 +- .../AssetBuilderSDK/CMakeLists.txt | 2 +- .../AssetBuilderSDK/assetbuilder_files.cmake | 2 +- Code/Tools/AssetProcessor/CMakeLists.txt | 2 +- .../Linux/AssetProcessor_Traits_Linux.h | 2 +- .../Linux/AssetProcessor_Traits_Platform.h | 2 +- .../Linux/assetprocessor_gui_linux_files.cmake | 2 +- .../Platform/Linux/assetprocessor_linux.cmake | 2 +- .../Linux/assetprocessor_linux_files.cmake | 2 +- .../native/FileWatcher/FileWatcher_linux.cpp | 2 +- .../Platform/Linux/native/resource.h | 2 +- .../Platform/Mac/AssetProcessor_Traits_Mac.h | 2 +- .../Mac/AssetProcessor_Traits_Platform.h | 2 +- .../Mac/assetprocessor_gui_mac_files.cmake | 2 +- .../Platform/Mac/assetprocessor_mac.cmake | 2 +- .../Mac/assetprocessor_mac_files.cmake | 2 +- .../native/FileWatcher/FileWatcher_macos.cpp | 2 +- .../Mac/native/FileWatcher/FileWatcher_win.cpp | 2 +- .../Platform/Mac/native/resource.h | 2 +- .../Mac/native/utilities/MacDockIconHandler.h | 2 +- .../Mac/native/utilities/MacDockIconHandler.mm | 2 +- .../Windows/AssetProcessor_Traits_Platform.h | 2 +- .../Windows/AssetProcessor_Traits_Windows.h | 2 +- .../assetprocessor_gui_windows_files.cmake | 2 +- .../Windows/assetprocessor_windows.cmake | 2 +- .../Windows/assetprocessor_windows_files.cmake | 2 +- .../native/FileWatcher/FileWatcher_win.cpp | 2 +- .../Platform/Windows/native/resource.h | 2 +- .../assetprocessor_batch_files.cmake | 2 +- .../assetprocessor_gui_files.cmake | 2 +- .../assetprocessor_static_batch_files.cmake | 2 +- .../assetprocessor_static_files.cmake | 2 +- .../assetprocessor_test_files.cmake | 2 +- .../native/AssetDatabase/AssetDatabase.cpp | 2 +- .../native/AssetDatabase/AssetDatabase.h | 2 +- .../native/AssetManager/AssetCatalog.cpp | 2 +- .../native/AssetManager/AssetCatalog.h | 2 +- .../native/AssetManager/AssetData.h | 2 +- .../AssetManager/AssetRequestHandler.cpp | 2 +- .../native/AssetManager/AssetRequestHandler.h | 2 +- .../AssetManager/ControlRequestHandler.cpp | 2 +- .../AssetManager/ControlRequestHandler.h | 2 +- .../native/AssetManager/FileStateCache.cpp | 2 +- .../native/AssetManager/FileStateCache.h | 2 +- .../AssetManager/PathDependencyManager.cpp | 2 +- .../AssetManager/PathDependencyManager.h | 2 +- .../AssetManager/SourceFileRelocator.cpp | 2 +- .../native/AssetManager/SourceFileRelocator.h | 2 +- .../AssetManager/assetProcessorManager.cpp | 2 +- .../AssetManager/assetProcessorManager.h | 2 +- .../AssetManager/assetScanFolderInfo.cpp | 2 +- .../native/AssetManager/assetScanFolderInfo.h | 2 +- .../native/AssetManager/assetScanner.cpp | 2 +- .../native/AssetManager/assetScanner.h | 2 +- .../native/AssetManager/assetScannerWorker.cpp | 2 +- .../native/AssetManager/assetScannerWorker.h | 2 +- .../native/AssetManager/assetdata.cpp | 2 +- .../native/AssetProcessorBatchBuildTarget.cpp | 2 +- .../native/AssetProcessorBuildTarget.cpp | 2 +- .../native/FileProcessor/FileProcessor.cpp | 2 +- .../native/FileProcessor/FileProcessor.h | 2 +- .../native/FileServer/fileServer.cpp | 2 +- .../native/FileServer/fileServer.h | 2 +- .../native/FileWatcher/FileWatcher.cpp | 2 +- .../native/FileWatcher/FileWatcher.h | 2 +- .../native/FileWatcher/FileWatcherAPI.h | 2 +- .../SettingsRegistryBuilder.cpp | 2 +- .../InternalBuilders/SettingsRegistryBuilder.h | 2 +- .../AssetProcessor/native/assetprocessor.h | 2 +- .../native/connection/connection.cpp | 2 +- .../native/connection/connection.h | 2 +- .../native/connection/connectionManager.cpp | 2 +- .../native/connection/connectionManager.h | 2 +- .../native/connection/connectionMessages.h | 2 +- .../native/connection/connectionworker.cpp | 2 +- .../native/connection/connectionworker.h | 2 +- .../Tools/AssetProcessor/native/main_batch.cpp | 2 +- Code/Tools/AssetProcessor/native/main_gui.cpp | 2 +- Code/Tools/AssetProcessor/native/precompiled.h | 2 +- .../native/resourcecompiler/JobsModel.cpp | 2 +- .../native/resourcecompiler/JobsModel.h | 2 +- .../native/resourcecompiler/RCBuilder.cpp | 2 +- .../native/resourcecompiler/RCBuilder.h | 2 +- .../native/resourcecompiler/RCCommon.cpp | 2 +- .../native/resourcecompiler/RCCommon.h | 2 +- .../RCJobSortFilterProxyModel.cpp | 2 +- .../RCJobSortFilterProxyModel.h | 2 +- .../resourcecompiler/RCQueueSortModel.cpp | 2 +- .../native/resourcecompiler/RCQueueSortModel.h | 2 +- .../native/resourcecompiler/rccontroller.cpp | 2 +- .../native/resourcecompiler/rccontroller.h | 2 +- .../native/resourcecompiler/rcjob.cpp | 2 +- .../native/resourcecompiler/rcjob.h | 2 +- .../native/resourcecompiler/rcjoblistmodel.cpp | 2 +- .../native/resourcecompiler/rcjoblistmodel.h | 2 +- .../shadercompiler/shadercompilerManager.cpp | 2 +- .../shadercompiler/shadercompilerManager.h | 2 +- .../shadercompiler/shadercompilerMessages.h | 2 +- .../shadercompiler/shadercompilerModel.cpp | 2 +- .../shadercompiler/shadercompilerModel.h | 2 +- .../shadercompiler/shadercompilerjob.cpp | 2 +- .../native/shadercompiler/shadercompilerjob.h | 2 +- .../AssetCatalog/AssetCatalogUnitTests.cpp | 2 +- .../tests/AssetProcessorMessagesTests.cpp | 2 +- .../native/tests/AssetProcessorTest.cpp | 2 +- .../native/tests/AssetProcessorTest.h | 2 +- .../native/tests/BaseAssetProcessorTest.h | 2 +- .../BuilderConfigurationTests.cpp | 2 +- .../tests/FileProcessor/FileProcessorTests.cpp | 2 +- .../tests/FileProcessor/FileProcessorTests.h | 2 +- .../FileStateCache/FileStateCacheTests.cpp | 2 +- .../tests/FileStateCache/FileStateCacheTests.h | 2 +- .../SettingsRegistryBuilderTests.cpp | 2 +- .../tests/MissingDependencyScannerTests.cpp | 2 +- .../tests/PathDependencyManagerTests.cpp | 2 +- .../native/tests/SourceFileRelocatorTests.cpp | 2 +- .../AssetBuilderSDKBehaviorTests.cpp | 2 +- .../SerializationDependenciesTests.cpp | 2 +- .../assetBuilderSDK/assetBuilderSDKTest.cpp | 2 +- .../assetBuilderSDK/assetBuilderSDKTest.h | 2 +- .../tests/assetdatabase/AssetDatabaseTest.cpp | 2 +- .../assetmanager/AssetProcessorManagerTest.cpp | 2 +- .../assetmanager/AssetProcessorManagerTest.h | 2 +- .../tests/assetscanner/AssetScannerTests.cpp | 2 +- .../tests/assetscanner/AssetScannerTests.h | 2 +- .../platformconfigurationtests.cpp | 2 +- .../platformconfigurationtests.h | 2 +- .../tests/resourcecompiler/RCBuilderTest.cpp | 2 +- .../tests/resourcecompiler/RCBuilderTest.h | 2 +- .../resourcecompiler/RCControllerTest.cpp | 2 +- .../tests/resourcecompiler/RCControllerTest.h | 2 +- .../tests/resourcecompiler/RCJobTest.cpp | 2 +- .../native/tests/resourcecompiler/RCJobTest.h | 2 +- .../AssetProcessor/native/tests/test_main.cpp | 2 +- .../native/tests/utilities/JobModelTest.cpp | 2 +- .../native/tests/utilities/JobModelTest.h | 2 +- .../native/tests/utilities/assetUtilsTest.cpp | 2 +- .../native/ui/AssetDetailsPanel.cpp | 2 +- .../native/ui/AssetDetailsPanel.h | 2 +- .../native/ui/AssetTreeFilterModel.cpp | 2 +- .../native/ui/AssetTreeFilterModel.h | 2 +- .../AssetProcessor/native/ui/AssetTreeItem.cpp | 2 +- .../AssetProcessor/native/ui/AssetTreeItem.h | 2 +- .../native/ui/AssetTreeModel.cpp | 2 +- .../AssetProcessor/native/ui/AssetTreeModel.h | 2 +- .../native/ui/ConnectionEditDialog.cpp | 2 +- .../native/ui/ConnectionEditDialog.h | 2 +- .../AssetProcessor/native/ui/GoToButton.cpp | 2 +- .../AssetProcessor/native/ui/GoToButton.h | 2 +- .../native/ui/JobTreeViewItemDelegate.cpp | 2 +- .../native/ui/JobTreeViewItemDelegate.h | 2 +- .../AssetProcessor/native/ui/MainWindow.cpp | 2 +- .../AssetProcessor/native/ui/MainWindow.h | 2 +- .../native/ui/ProductAssetDetailsPanel.cpp | 2 +- .../native/ui/ProductAssetDetailsPanel.h | 2 +- .../native/ui/ProductAssetTreeItemData.cpp | 2 +- .../native/ui/ProductAssetTreeItemData.h | 2 +- .../native/ui/ProductAssetTreeModel.cpp | 2 +- .../native/ui/ProductAssetTreeModel.h | 2 +- .../native/ui/SourceAssetDetailsPanel.cpp | 2 +- .../native/ui/SourceAssetDetailsPanel.h | 2 +- .../native/ui/SourceAssetTreeItemData.cpp | 2 +- .../native/ui/SourceAssetTreeItemData.h | 2 +- .../native/ui/SourceAssetTreeModel.cpp | 2 +- .../native/ui/SourceAssetTreeModel.h | 2 +- .../native/ui/style/AssetProcessor.qss | 2 +- .../native/ui/style/AssetsTab.qss | 2 +- .../AssetProcessor/native/ui/style/LogsTab.qss | 2 +- .../AssetProcessingStateDataUnitTests.cpp | 2 +- .../AssetProcessingStateDataUnitTests.h | 2 +- .../AssetProcessorManagerUnitTests.cpp | 2 +- .../unittests/AssetProcessorManagerUnitTests.h | 2 +- .../AssetProcessorServerUnitTests.cpp | 2 +- .../unittests/AssetProcessorServerUnitTests.h | 2 +- .../unittests/AssetRequestHandlerUnitTests.cpp | 2 +- .../unittests/AssetRequestHandlerUnitTests.h | 2 +- .../native/unittests/AssetScannerUnitTests.cpp | 2 +- .../native/unittests/AssetScannerUnitTests.h | 2 +- .../native/unittests/BuilderSDKUnitTests.cpp | 2 +- .../unittests/ConnectionManagerUnitTests.cpp | 2 +- .../unittests/ConnectionManagerUnitTests.h | 2 +- .../native/unittests/ConnectionUnitTests.cpp | 2 +- .../native/unittests/ConnectionUnitTests.h | 2 +- .../native/unittests/FileWatcherUnitTests.cpp | 2 +- .../native/unittests/FileWatcherUnitTests.h | 2 +- .../unittests/MockApplicationManager.cpp | 2 +- .../native/unittests/MockApplicationManager.h | 2 +- .../native/unittests/MockConnectionHandler.h | 2 +- .../PlatformConfigurationUnitTests.cpp | 2 +- .../unittests/PlatformConfigurationUnitTests.h | 2 +- .../native/unittests/RCcontrollerUnitTests.cpp | 2 +- .../native/unittests/RCcontrollerUnitTests.h | 2 +- .../unittests/ShaderCompilerUnitTests.cpp | 2 +- .../native/unittests/ShaderCompilerUnitTests.h | 2 +- .../native/unittests/UnitTestRunner.cpp | 2 +- .../native/unittests/UnitTestRunner.h | 2 +- .../native/unittests/UtilitiesUnitTests.cpp | 2 +- .../native/unittests/UtilitiesUnitTests.h | 2 +- .../native/utilities/ApplicationManager.cpp | 2 +- .../native/utilities/ApplicationManager.h | 2 +- .../native/utilities/ApplicationManagerAPI.h | 2 +- .../utilities/ApplicationManagerBase.cpp | 2 +- .../native/utilities/ApplicationManagerBase.h | 2 +- .../native/utilities/ApplicationServer.cpp | 2 +- .../native/utilities/ApplicationServer.h | 2 +- .../native/utilities/AssetBuilderInfo.cpp | 2 +- .../native/utilities/AssetBuilderInfo.h | 2 +- .../native/utilities/AssetServerHandler.cpp | 2 +- .../native/utilities/AssetServerHandler.h | 2 +- .../native/utilities/AssetUtilEBusHelper.h | 2 +- .../utilities/BatchApplicationManager.cpp | 2 +- .../native/utilities/BatchApplicationManager.h | 2 +- .../utilities/BatchApplicationServer.cpp | 2 +- .../native/utilities/BatchApplicationServer.h | 2 +- .../native/utilities/BuilderConfigurationBus.h | 2 +- .../utilities/BuilderConfigurationManager.cpp | 2 +- .../utilities/BuilderConfigurationManager.h | 2 +- .../native/utilities/BuilderManager.cpp | 2 +- .../native/utilities/BuilderManager.h | 2 +- .../native/utilities/BuilderManager.inl | 2 +- .../native/utilities/ByteArrayStream.cpp | 2 +- .../native/utilities/ByteArrayStream.h | 2 +- .../utilities/CommunicatorTracePrinter.cpp | 2 +- .../utilities/CommunicatorTracePrinter.h | 2 +- .../native/utilities/GUIApplicationManager.cpp | 2 +- .../native/utilities/GUIApplicationManager.h | 2 +- .../native/utilities/GUIApplicationServer.cpp | 2 +- .../native/utilities/GUIApplicationServer.h | 2 +- .../native/utilities/IniConfiguration.cpp | 2 +- .../native/utilities/IniConfiguration.h | 2 +- .../native/utilities/JobDiagnosticTracker.cpp | 2 +- .../native/utilities/JobDiagnosticTracker.h | 2 +- .../utilities/LineByLineDependencyScanner.cpp | 2 +- .../utilities/LineByLineDependencyScanner.h | 2 +- .../native/utilities/LogPanel.cpp | 2 +- .../AssetProcessor/native/utilities/LogPanel.h | 2 +- .../utilities/MissingDependencyScanner.cpp | 2 +- .../utilities/MissingDependencyScanner.h | 2 +- .../native/utilities/PlatformConfiguration.cpp | 2 +- .../native/utilities/PlatformConfiguration.h | 2 +- .../native/utilities/PotentialDependencies.h | 2 +- .../utilities/SpecializedDependencyScanner.h | 2 +- .../native/utilities/ThreadHelper.cpp | 2 +- .../native/utilities/ThreadHelper.h | 2 +- .../utilities/UnitTestShaderCompilerServer.cpp | 2 +- .../utilities/UnitTestShaderCompilerServer.h | 2 +- .../native/utilities/assetUtils.cpp | 2 +- .../native/utilities/assetUtils.h | 2 +- .../native/utilities/windowscreen.cpp | 2 +- .../native/utilities/windowscreen.h | 2 +- Code/Tools/AzTestRunner/CMakeLists.txt | 2 +- .../Platform/Android/native_app_glue_include.c | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Platform/Android/platform_android.cpp | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Android/platform_traits_android.cmake | 2 +- .../Platform/Common/platform_host_main.cpp | 2 +- .../Platform/Common/platform_host_posix.cpp | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Linux/platform_traits_linux.cmake | 2 +- .../Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Mac/platform_traits_mac.cmake | 2 +- .../Windows/platform_traits_windows.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Platform/Windows/platform_windows.cpp | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../AzTestRunner/Platform/iOS/Launcher_iOS.mm | 2 +- .../Platform/iOS/TestLauncherTarget.mm | 2 +- .../Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Platform/iOS/platform_traits_ios.cmake | 2 +- .../AzTestRunner/aztestrunner_files.cmake | 2 +- .../AzTestRunner/aztestrunner_test_files.cmake | 2 +- Code/Tools/AzTestRunner/src/aztestrunner.h | 2 +- Code/Tools/AzTestRunner/src/main.cpp | 2 +- Code/Tools/AzTestRunner/test/RunnerTest.cpp | 2 +- Code/Tools/CMakeLists.txt | 2 +- Code/Tools/CrashHandler/CMakeLists.txt | 2 +- .../Android/CrashHandler_Traits_Android.h | 2 +- .../Android/CrashHandler_Traits_Platform.h | 2 +- .../Platform/Android/PAL_android.cmake | 2 +- .../CrashHandler/Platform/CrashHandler_mac.cpp | 2 +- .../CrashHandler/Platform/CrashHandler_win.cpp | 2 +- .../Platform/Linux/CrashHandler_Traits_Linux.h | 2 +- .../Linux/CrashHandler_Traits_Platform.h | 2 +- .../Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Mac/CrashHandler_Traits_Mac.h | 2 +- .../Mac/CrashHandler_Traits_Platform.h | 2 +- .../CrashHandler/Platform/Mac/PAL_mac.cmake | 2 +- .../Windows/CrashHandler_Traits_Platform.h | 2 +- .../Windows/CrashHandler_Traits_Windows.h | 2 +- .../Platform/Windows/PAL_windows.cmake | 2 +- .../Windows/crash_handler_windows_files.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/CrashHandler_Traits_Platform.h | 2 +- .../Platform/iOS/CrashHandler_Traits_iOS.h | 2 +- .../CrashHandler/Platform/iOS/PAL_ios.cmake | 2 +- .../Tools/CrashHandler/Shared/CrashHandler.cpp | 2 +- Code/Tools/CrashHandler/Shared/CrashHandler.h | 2 +- Code/Tools/CrashHandler/Support/CMakeLists.txt | 2 +- .../Support/crash_handler_support_files.cmake | 2 +- .../Support/include/CrashSupport.h | 2 +- .../crash_handler_support_windows_files.cmake | 2 +- .../Support/platform/mac/CrashSupport_mac.cpp | 2 +- .../Support/platform/win/CrashSupport_win.cpp | 2 +- .../CrashHandler/Support/src/CrashSupport.cpp | 2 +- Code/Tools/CrashHandler/Tools/CMakeLists.txt | 2 +- .../tools_crash_handler_windows_files.cmake | 2 +- .../tools_crash_uploader_windows_files.cmake | 2 +- .../CrashHandler/Tools/ToolsCrashHandler.cpp | 2 +- .../CrashHandler/Tools/ToolsCrashHandler.h | 2 +- .../Tools/ToolsCrashHandler_mac.cpp | 2 +- .../Tools/ToolsCrashHandler_win.cpp | 2 +- .../Tools/Uploader/SendReportDialog.cpp | 2 +- .../Tools/Uploader/SendReportDialog.h | 2 +- .../Tools/Uploader/ToolsCrashUploader.cpp | 2 +- .../Tools/Uploader/ToolsCrashUploader.h | 2 +- .../Tools/Uploader/platforms/posix/main.cpp | 2 +- .../Tools/Uploader/platforms/win/main.cpp | 2 +- .../Tools/tools_crash_handler_files.cmake | 2 +- .../Tools/tools_crash_uploader_files.cmake | 2 +- .../include/Uploader/BufferedDataStream.h | 2 +- .../Uploader/include/Uploader/CrashUploader.h | 2 +- .../include/Uploader/FileStreamDataSource.h | 2 +- .../Uploader/src/BufferedDataStream.cpp | 2 +- .../Uploader/src/CrashUploader.cpp | 2 +- .../Uploader/src/FileStreamDataSource.cpp | 2 +- .../CrashHandler/crash_handler_files.cmake | 2 +- .../crash_uploader_support_files.cmake | 2 +- Code/Tools/DeltaCataloger/CMakeLists.txt | 2 +- Code/Tools/DeltaCataloger/Tests/tests_main.cpp | 2 +- .../DeltaCataloger/deltacataloger_files.cmake | 2 +- .../deltacataloger_test_files.cmake | 2 +- .../deltacataloger_win_files.cmake | 2 +- Code/Tools/DeltaCataloger/source/main.cpp | 2 +- Code/Tools/GridHub/CMakeLists.txt | 2 +- Code/Tools/GridHub/GridHub/gridhub.cpp | 2 +- Code/Tools/GridHub/GridHub/gridhub.hxx | 2 +- Code/Tools/GridHub/GridHub/main.cpp | 2 +- .../Platform/Linux/gridhub_linux_files.cmake | 2 +- .../Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Mac/gridhub_mac_files.cmake | 2 +- .../GridHub/Platform/Mac/platform_mac.cmake | 2 +- .../Windows/gridhub_windows_files.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- Code/Tools/GridHub/gridhub_files.cmake | 2 +- Code/Tools/News/CMakeLists.txt | 2 +- Code/Tools/News/NewsBuilder/CMakeLists.txt | 2 +- .../Tools/News/NewsBuilder/EndpointManager.cpp | 2 +- Code/Tools/News/NewsBuilder/EndpointManager.h | 2 +- .../Platform/Android/PAL_android.cmake | 2 +- .../NewsBuilder/Platform/Linux/PAL_linux.cmake | 2 +- .../NewsBuilder/Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Windows/PAL_windows.cmake | 2 +- .../NewsBuilder/Platform/iOS/PAL_ios.cmake | 2 +- .../News/NewsBuilder/Qt/ArticleDetails.cpp | 2 +- .../Tools/News/NewsBuilder/Qt/ArticleDetails.h | 2 +- .../NewsBuilder/Qt/ArticleDetailsContainer.cpp | 2 +- .../NewsBuilder/Qt/ArticleDetailsContainer.h | 2 +- .../Qt/BuilderArticleViewContainer.cpp | 2 +- .../Qt/BuilderArticleViewContainer.h | 2 +- .../News/NewsBuilder/Qt/EndpointEntryView.cpp | 2 +- .../News/NewsBuilder/Qt/EndpointEntryView.h | 2 +- .../NewsBuilder/Qt/EndpointManagerView.cpp | 2 +- .../News/NewsBuilder/Qt/EndpointManagerView.h | 2 +- Code/Tools/News/NewsBuilder/Qt/ImageItem.cpp | 2 +- Code/Tools/News/NewsBuilder/Qt/ImageItem.h | 2 +- .../Tools/News/NewsBuilder/Qt/LogContainer.cpp | 2 +- Code/Tools/News/NewsBuilder/Qt/LogContainer.h | 2 +- Code/Tools/News/NewsBuilder/Qt/NewsBuilder.cpp | 2 +- Code/Tools/News/NewsBuilder/Qt/NewsBuilder.h | 2 +- .../News/NewsBuilder/Qt/QCustomMessageBox.cpp | 2 +- .../News/NewsBuilder/Qt/QCustomMessageBox.h | 2 +- Code/Tools/News/NewsBuilder/Qt/SelectImage.cpp | 2 +- Code/Tools/News/NewsBuilder/Qt/SelectImage.h | 2 +- .../BuilderResourceManifest.cpp | 2 +- .../BuilderResourceManifest.h | 2 +- .../ResourceManagement/DeleteDescriptor.cpp | 2 +- .../ResourceManagement/DeleteDescriptor.h | 2 +- .../ResourceManagement/ImageDescriptor.cpp | 2 +- .../ResourceManagement/ImageDescriptor.h | 2 +- .../ResourceManagement/UploadDescriptor.cpp | 2 +- .../ResourceManagement/UploadDescriptor.h | 2 +- Code/Tools/News/NewsBuilder/S3Connector.cpp | 2 +- Code/Tools/News/NewsBuilder/S3Connector.h | 2 +- Code/Tools/News/NewsBuilder/UidGenerator.cpp | 2 +- Code/Tools/News/NewsBuilder/UidGenerator.h | 2 +- Code/Tools/News/NewsBuilder/main.cpp | 2 +- .../News/NewsBuilder/news_builder_files.cmake | 2 +- Code/Tools/News/NewsShared/ErrorCodes.h | 2 +- Code/Tools/News/NewsShared/LogType.h | 2 +- .../News/NewsShared/Qt/ArticleErrorView.cpp | 2 +- .../News/NewsShared/Qt/ArticleErrorView.h | 2 +- Code/Tools/News/NewsShared/Qt/ArticleView.cpp | 2 +- Code/Tools/News/NewsShared/Qt/ArticleView.h | 2 +- .../NewsShared/Qt/ArticleViewContainer.cpp | 2 +- .../News/NewsShared/Qt/ArticleViewContainer.h | 2 +- .../News/NewsShared/Qt/KeepInTouchView.cpp | 2 +- .../Tools/News/NewsShared/Qt/KeepInTouchView.h | 2 +- .../ResourceManagement/ArticleDescriptor.cpp | 2 +- .../ResourceManagement/ArticleDescriptor.h | 2 +- .../ResourceManagement/Descriptor.cpp | 2 +- .../NewsShared/ResourceManagement/Descriptor.h | 2 +- .../ResourceManagement/JsonDescriptor.cpp | 2 +- .../ResourceManagement/JsonDescriptor.h | 2 +- .../ResourceManagement/QtDownloadManager.cpp | 2 +- .../ResourceManagement/QtDownloadManager.h | 2 +- .../ResourceManagement/QtDownloader.cpp | 2 +- .../ResourceManagement/QtDownloader.h | 2 +- .../NewsShared/ResourceManagement/Resource.cpp | 2 +- .../NewsShared/ResourceManagement/Resource.h | 2 +- .../ResourceManagement/ResourceManifest.cpp | 2 +- .../ResourceManagement/ResourceManifest.h | 2 +- Code/Tools/News/news_shared_files.cmake | 2 +- Code/Tools/ProjectManager/CMakeLists.txt | 2 +- .../Platform/Android/PAL_android.cmake | 2 +- .../Common/Clang/projectmanager_clang.cmake | 2 +- .../Common/MSVC/projectmanager_msvc.cmake | 2 +- .../Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Linux/PAL_linux_files.cmake | 2 +- .../Platform/Linux/PAL_linux_tests_files.cmake | 2 +- .../Linux/ProjectManager_Test_Traits_Linux.h | 2 +- .../ProjectManager_Test_Traits_Platform.h | 2 +- .../Platform/Linux/Python_linux.cpp | 2 +- .../ProjectManager/Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Mac/PAL_mac_files.cmake | 2 +- .../Platform/Mac/PAL_mac_tests_files.cmake | 2 +- .../Mac/ProjectManager_Test_Traits_Mac.h | 2 +- .../Mac/ProjectManager_Test_Traits_Platform.h | 2 +- .../ProjectManager/Platform/Mac/Python_mac.cpp | 2 +- .../Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/Windows/PAL_windows_files.cmake | 2 +- .../Windows/PAL_windows_tests_files.cmake | 2 +- .../ProjectManager_Test_Traits_Platform.h | 2 +- .../ProjectManager_Test_Traits_Windows.h | 2 +- .../Platform/Windows/Python_windows.cpp | 2 +- .../ProjectManager/Platform/iOS/PAL_ios.cmake | 2 +- .../ProjectManager/Source/Application.cpp | 2 +- Code/Tools/ProjectManager/Source/Application.h | 2 +- .../Source/CreateProjectCtrl.cpp | 2 +- .../ProjectManager/Source/CreateProjectCtrl.h | 2 +- .../Tools/ProjectManager/Source/EngineInfo.cpp | 2 +- Code/Tools/ProjectManager/Source/EngineInfo.h | 2 +- .../Source/EngineSettingsScreen.cpp | 2 +- .../Source/EngineSettingsScreen.h | 2 +- .../Source/FormBrowseEditWidget.cpp | 2 +- .../Source/FormBrowseEditWidget.h | 2 +- .../Source/FormFolderBrowseEditWidget.cpp | 2 +- .../Source/FormFolderBrowseEditWidget.h | 2 +- .../Source/FormImageBrowseEditWidget.cpp | 2 +- .../Source/FormImageBrowseEditWidget.h | 2 +- .../Source/FormLineEditWidget.cpp | 2 +- .../ProjectManager/Source/FormLineEditWidget.h | 2 +- .../GemCatalog/GemCatalogHeaderWidget.cpp | 2 +- .../Source/GemCatalog/GemCatalogHeaderWidget.h | 2 +- .../Source/GemCatalog/GemCatalogScreen.cpp | 2 +- .../Source/GemCatalog/GemCatalogScreen.h | 2 +- .../Source/GemCatalog/GemFilterWidget.cpp | 2 +- .../Source/GemCatalog/GemFilterWidget.h | 2 +- .../Source/GemCatalog/GemInfo.cpp | 2 +- .../ProjectManager/Source/GemCatalog/GemInfo.h | 2 +- .../Source/GemCatalog/GemInspector.cpp | 2 +- .../Source/GemCatalog/GemInspector.h | 2 +- .../Source/GemCatalog/GemItemDelegate.cpp | 2 +- .../Source/GemCatalog/GemItemDelegate.h | 2 +- .../Source/GemCatalog/GemListHeaderWidget.cpp | 2 +- .../Source/GemCatalog/GemListHeaderWidget.h | 2 +- .../Source/GemCatalog/GemListView.cpp | 2 +- .../Source/GemCatalog/GemListView.h | 2 +- .../Source/GemCatalog/GemModel.cpp | 2 +- .../Source/GemCatalog/GemModel.h | 2 +- .../GemCatalog/GemRequirementDelegate.cpp | 2 +- .../Source/GemCatalog/GemRequirementDelegate.h | 2 +- .../Source/GemCatalog/GemRequirementDialog.cpp | 2 +- .../Source/GemCatalog/GemRequirementDialog.h | 2 +- .../GemRequirementFilterProxyModel.cpp | 2 +- .../GemRequirementFilterProxyModel.h | 2 +- .../GemCatalog/GemRequirementListView.cpp | 2 +- .../Source/GemCatalog/GemRequirementListView.h | 2 +- .../GemCatalog/GemSortFilterProxyModel.cpp | 2 +- .../GemCatalog/GemSortFilterProxyModel.h | 2 +- .../Tools/ProjectManager/Source/LinkWidget.cpp | 2 +- Code/Tools/ProjectManager/Source/LinkWidget.h | 2 +- .../Source/NewProjectSettingsScreen.cpp | 2 +- .../Source/NewProjectSettingsScreen.h | 2 +- .../ProjectManager/Source/PathValidator.cpp | 2 +- .../ProjectManager/Source/PathValidator.h | 2 +- .../ProjectManager/Source/ProjectBuilder.cpp | 2 +- .../ProjectManager/Source/ProjectBuilder.h | 2 +- .../Source/ProjectButtonWidget.cpp | 2 +- .../Source/ProjectButtonWidget.h | 2 +- .../ProjectManager/Source/ProjectInfo.cpp | 2 +- Code/Tools/ProjectManager/Source/ProjectInfo.h | 2 +- .../ProjectManager/Source/ProjectManagerDefs.h | 2 +- .../Source/ProjectManagerWindow.cpp | 2 +- .../Source/ProjectManagerWindow.h | 2 +- .../Source/ProjectSettingsScreen.cpp | 2 +- .../Source/ProjectSettingsScreen.h | 2 +- .../Source/ProjectTemplateInfo.cpp | 2 +- .../Source/ProjectTemplateInfo.h | 2 +- .../ProjectManager/Source/ProjectUtils.cpp | 2 +- .../Tools/ProjectManager/Source/ProjectUtils.h | 2 +- .../ProjectManager/Source/ProjectsScreen.cpp | 2 +- .../ProjectManager/Source/ProjectsScreen.h | 2 +- .../ProjectManager/Source/PythonBindings.cpp | 2 +- .../ProjectManager/Source/PythonBindings.h | 2 +- .../Source/PythonBindingsInterface.h | 2 +- Code/Tools/ProjectManager/Source/ScreenDefs.h | 2 +- .../ProjectManager/Source/ScreenFactory.cpp | 2 +- .../ProjectManager/Source/ScreenFactory.h | 2 +- .../Source/ScreenHeaderWidget.cpp | 2 +- .../ProjectManager/Source/ScreenHeaderWidget.h | 2 +- .../Tools/ProjectManager/Source/ScreenWidget.h | 2 +- .../ProjectManager/Source/ScreensCtrl.cpp | 2 +- Code/Tools/ProjectManager/Source/ScreensCtrl.h | 2 +- Code/Tools/ProjectManager/Source/TagWidget.cpp | 2 +- Code/Tools/ProjectManager/Source/TagWidget.h | 2 +- .../Source/TemplateButtonWidget.cpp | 2 +- .../Source/TemplateButtonWidget.h | 2 +- .../Source/UpdateProjectCtrl.cpp | 2 +- .../ProjectManager/Source/UpdateProjectCtrl.h | 2 +- .../Source/UpdateProjectSettingsScreen.cpp | 2 +- .../Source/UpdateProjectSettingsScreen.h | 2 +- Code/Tools/ProjectManager/Source/main.cpp | 2 +- .../project_manager_app_files.cmake | 2 +- .../ProjectManager/project_manager_files.cmake | 2 +- .../project_manager_tests_files.cmake | 2 +- .../ProjectManager/tests/ApplicationTests.cpp | 2 +- .../tests/PythonBindingsTests.cpp | 2 +- Code/Tools/ProjectManager/tests/UtilsTests.cpp | 2 +- Code/Tools/ProjectManager/tests/main.cpp | 2 +- .../Tools/PythonBindingsExample/CMakeLists.txt | 2 +- .../pythonbindingsexample_app_files.cmake | 2 +- .../pythonbindingsexample_files.cmake | 2 +- .../pythonbindingsexample_tests_files.cmake | 2 +- .../source/Application.cpp | 2 +- .../PythonBindingsExample/source/Application.h | 2 +- .../source/ApplicationParameters.cpp | 2 +- .../source/ApplicationParameters.h | 2 +- .../Clang/pythonbindingsexample_clang.cmake | 2 +- .../MSVC/pythonbindingsexample_msvc.cmake | 2 +- .../PythonBindingsExample/source/main.cpp | 2 +- .../tests/ApplicationTests.cpp | 2 +- .../PythonBindingsExample/tests/TestMain.cpp | 2 +- .../tests/run_python_tests.bat | 2 +- .../tests/test_framework.py | 2 +- .../tests/test_hello_tool.py | 2 +- .../tool_dependencies.cmake | 2 +- Code/Tools/RemoteConsole/CMakeLists.txt | 2 +- .../RemoteConsole/Core/RemoteConsoleCore.cpp | 2 +- .../RemoteConsole/Core/RemoteConsoleCore.h | 2 +- .../Core/remoteconsolecore_files.cmake | 2 +- .../Android/RemoteConsole_Traits_Android.h | 2 +- .../Android/RemoteConsole_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Linux/RemoteConsole_Traits_Linux.h | 2 +- .../Linux/RemoteConsole_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/RemoteConsole_Traits_Mac.h | 2 +- .../Mac/RemoteConsole_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/RemoteConsole_Traits_Platform.h | 2 +- .../Windows/RemoteConsole_Traits_Windows.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/RemoteConsole_Traits_Platform.h | 2 +- .../Platform/iOS/RemoteConsole_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Code/Tools/SceneAPI/CMakeLists.txt | 2 +- .../SceneAPI/FbxSceneBuilder/CMakeLists.txt | 2 +- .../Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp | 2 +- .../FbxImportRequestHandler.cpp | 2 +- .../FbxSceneBuilder/FbxImportRequestHandler.h | 2 +- .../SceneAPI/FbxSceneBuilder/FbxImporter.cpp | 2 +- .../SceneAPI/FbxSceneBuilder/FbxImporter.h | 2 +- .../FbxSceneBuilderConfiguration.h | 2 +- .../FbxSceneBuilder/FbxSceneSystem.cpp | 2 +- .../SceneAPI/FbxSceneBuilder/FbxSceneSystem.h | 2 +- .../ImportContexts/AssImpImportContexts.cpp | 2 +- .../ImportContexts/AssImpImportContexts.h | 2 +- .../ImportContexts/ImportContexts.cpp | 2 +- .../ImportContexts/ImportContexts.h | 2 +- .../Importers/AssImpAnimationImporter.cpp | 2 +- .../Importers/AssImpAnimationImporter.h | 2 +- .../AssImpBitangentStreamImporter.cpp | 2 +- .../Importers/AssImpBitangentStreamImporter.h | 2 +- .../Importers/AssImpBlendShapeImporter.cpp | 2 +- .../Importers/AssImpBlendShapeImporter.h | 2 +- .../Importers/AssImpBoneImporter.cpp | 2 +- .../Importers/AssImpBoneImporter.h | 2 +- .../Importers/AssImpColorStreamImporter.cpp | 2 +- .../Importers/AssImpColorStreamImporter.h | 2 +- .../Importers/AssImpImporterUtilities.cpp | 2 +- .../Importers/AssImpImporterUtilities.h | 2 +- .../Importers/AssImpMaterialImporter.cpp | 2 +- .../Importers/AssImpMaterialImporter.h | 2 +- .../Importers/AssImpMeshImporter.cpp | 2 +- .../Importers/AssImpMeshImporter.h | 2 +- .../Importers/AssImpSkinImporter.cpp | 2 +- .../Importers/AssImpSkinImporter.h | 2 +- .../Importers/AssImpSkinWeightsImporter.cpp | 2 +- .../Importers/AssImpSkinWeightsImporter.h | 2 +- .../Importers/AssImpTangentStreamImporter.cpp | 2 +- .../Importers/AssImpTangentStreamImporter.h | 2 +- .../Importers/AssImpTransformImporter.cpp | 2 +- .../Importers/AssImpTransformImporter.h | 2 +- .../Importers/AssImpUvMapImporter.cpp | 2 +- .../Importers/AssImpUvMapImporter.h | 2 +- .../Importers/ImporterUtilities.cpp | 2 +- .../Importers/ImporterUtilities.h | 2 +- .../Importers/ImporterUtilities.inl | 2 +- .../Utilities/AssImpMeshImporterUtilities.cpp | 2 +- .../Utilities/AssImpMeshImporterUtilities.h | 2 +- .../Importers/Utilities/RenamedNodesMap.cpp | 2 +- .../Importers/Utilities/RenamedNodesMap.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Importers/FbxImporterUtilitiesTests.cpp | 2 +- .../Utilities/RenamedNodesMapTests.cpp | 2 +- .../FbxSceneBuilder/Tests/TestFbxMesh.cpp | 2 +- .../FbxSceneBuilder/Tests/TestFbxMesh.h | 2 +- .../FbxSceneBuilder/Tests/TestFbxNode.cpp | 2 +- .../FbxSceneBuilder/Tests/TestFbxNode.h | 2 +- .../FbxSceneBuilder/Tests/TestFbxSkin.cpp | 2 +- .../FbxSceneBuilder/Tests/TestFbxSkin.h | 2 +- .../FbxSceneBuilder/Tests/TestsMain.cpp | 2 +- .../fbxscenebuilder_files.cmake | 2 +- .../fbxscenebuilder_shared_files.cmake | 2 +- .../fbxscenebuilder_testing_files.cmake | 2 +- .../SDKWrapper/AssImpMaterialWrapper.cpp | 2 +- .../SDKWrapper/AssImpMaterialWrapper.h | 2 +- .../SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp | 2 +- .../SceneAPI/SDKWrapper/AssImpNodeWrapper.h | 2 +- .../SceneAPI/SDKWrapper/AssImpSceneWrapper.cpp | 2 +- .../SceneAPI/SDKWrapper/AssImpSceneWrapper.h | 2 +- .../SDKWrapper/AssImpTypeConverter.cpp | 2 +- .../SceneAPI/SDKWrapper/AssImpTypeConverter.h | 2 +- Code/Tools/SceneAPI/SDKWrapper/CMakeLists.txt | 2 +- .../SceneAPI/SDKWrapper/MaterialWrapper.cpp | 2 +- .../SceneAPI/SDKWrapper/MaterialWrapper.h | 2 +- Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp | 2 +- Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h | 2 +- .../Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp | 2 +- Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h | 2 +- .../SceneAPI/SDKWrapper/sdkwrapper_files.cmake | 2 +- Code/Tools/SceneAPI/SceneCore/CMakeLists.txt | 2 +- .../SceneCore/Components/BehaviorComponent.cpp | 2 +- .../SceneCore/Components/BehaviorComponent.h | 2 +- .../Components/ExportingComponent.cpp | 2 +- .../SceneCore/Components/ExportingComponent.h | 2 +- .../Components/GenerationComponent.cpp | 2 +- .../SceneCore/Components/GenerationComponent.h | 2 +- .../SceneCore/Components/LoadingComponent.cpp | 2 +- .../SceneCore/Components/LoadingComponent.h | 2 +- .../Components/RCExportingComponent.cpp | 2 +- .../Components/RCExportingComponent.h | 2 +- .../Components/SceneSystemComponent.cpp | 2 +- .../Components/SceneSystemComponent.h | 2 +- .../Components/Utilities/EntityConstructor.cpp | 2 +- .../Components/Utilities/EntityConstructor.h | 2 +- .../SceneCore/Containers/GraphObjectProxy.cpp | 2 +- .../SceneCore/Containers/GraphObjectProxy.h | 2 +- .../SceneCore/Containers/RuleContainer.cpp | 2 +- .../SceneCore/Containers/RuleContainer.h | 2 +- .../SceneCore/Containers/RuleContainer.inl | 2 +- .../SceneAPI/SceneCore/Containers/Scene.cpp | 2 +- .../SceneAPI/SceneCore/Containers/Scene.h | 2 +- .../SceneCore/Containers/SceneGraph.cpp | 2 +- .../SceneAPI/SceneCore/Containers/SceneGraph.h | 2 +- .../SceneCore/Containers/SceneGraph.inl | 2 +- .../SceneCore/Containers/SceneManifest.cpp | 2 +- .../SceneCore/Containers/SceneManifest.h | 2 +- .../SceneCore/Containers/SceneManifest.inl | 2 +- .../SceneCore/Containers/Utilities/Filters.h | 2 +- .../SceneCore/Containers/Utilities/Filters.inl | 2 +- .../Containers/Utilities/ProxyPointer.h | 2 +- .../Containers/Utilities/ProxyPointer.inl | 2 +- .../Utilities/SceneGraphUtilities.cpp | 2 +- .../Containers/Utilities/SceneGraphUtilities.h | 2 +- .../Utilities/SceneGraphUtilities.inl | 2 +- .../Containers/Utilities/SceneUtilities.cpp | 2 +- .../Containers/Utilities/SceneUtilities.h | 2 +- .../Containers/Views/ConvertIterator.h | 2 +- .../Containers/Views/ConvertIterator.inl | 2 +- .../Containers/Views/FilterIterator.h | 2 +- .../Containers/Views/FilterIterator.inl | 2 +- .../SceneCore/Containers/Views/PairIterator.h | 2 +- .../Containers/Views/PairIterator.inl | 2 +- .../Containers/Views/SceneGraphChildIterator.h | 2 +- .../Views/SceneGraphChildIterator.inl | 2 +- .../Views/SceneGraphDownwardsIterator.h | 2 +- .../Views/SceneGraphDownwardsIterator.inl | 2 +- .../Views/SceneGraphUpwardsIterator.h | 2 +- .../Views/SceneGraphUpwardsIterator.inl | 2 +- .../SceneAPI/SceneCore/Containers/Views/View.h | 2 +- .../SceneCore/Containers/Views/View.inl | 2 +- .../SceneCore/DataTypes/DataTypeUtilities.cpp | 2 +- .../SceneCore/DataTypes/DataTypeUtilities.h | 2 +- .../SceneCore/DataTypes/DataTypeUtilities.inl | 2 +- .../DataTypes/GraphData/IAnimationData.h | 2 +- .../DataTypes/GraphData/IBlendShapeData.h | 2 +- .../SceneCore/DataTypes/GraphData/IBoneData.h | 2 +- .../DataTypes/GraphData/IMaterialData.h | 2 +- .../SceneCore/DataTypes/GraphData/IMeshData.h | 2 +- .../GraphData/IMeshVertexBitangentData.h | 2 +- .../DataTypes/GraphData/IMeshVertexColorData.h | 2 +- .../GraphData/IMeshVertexTangentData.h | 2 +- .../DataTypes/GraphData/IMeshVertexUVData.h | 2 +- .../DataTypes/GraphData/ISkinWeightData.h | 2 +- .../SceneCore/DataTypes/GraphData/ITransform.h | 2 +- .../DataTypes/Groups/IAnimationGroup.h | 2 +- .../SceneCore/DataTypes/Groups/IGroup.h | 2 +- .../SceneCore/DataTypes/Groups/IMeshGroup.h | 2 +- .../DataTypes/Groups/ISceneNodeGroup.h | 2 +- .../DataTypes/Groups/ISkeletonGroup.h | 2 +- .../SceneCore/DataTypes/Groups/ISkinGroup.h | 2 +- .../SceneCore/DataTypes/IGraphObject.h | 2 +- .../SceneCore/DataTypes/IManifestObject.h | 2 +- .../ManifestBase/ISceneNodeSelectionList.h | 2 +- .../SceneAPI/SceneCore/DataTypes/MatrixType.h | 2 +- .../DataTypes/Rules/IBlendShapeRule.h | 2 +- .../SceneCore/DataTypes/Rules/IClothRule.h | 2 +- .../SceneCore/DataTypes/Rules/ICommentRule.h | 2 +- .../DataTypes/Rules/ICoordinateSystemRule.h | 2 +- .../SceneCore/DataTypes/Rules/ILodRule.h | 2 +- .../SceneCore/DataTypes/Rules/IMaterialRule.h | 2 +- .../DataTypes/Rules/IMeshAdvancedRule.h | 2 +- .../SceneAPI/SceneCore/DataTypes/Rules/IRule.h | 2 +- .../DataTypes/Rules/IScriptProcessorRule.h | 2 +- .../DataTypes/Rules/ISkeletonProxyRule.h | 2 +- .../SceneCore/DataTypes/Rules/ISkinRule.h | 2 +- Code/Tools/SceneAPI/SceneCore/DllMain.cpp | 2 +- .../SceneCore/Events/AssetImportRequest.cpp | 2 +- .../SceneCore/Events/AssetImportRequest.h | 2 +- .../SceneCore/Events/CallProcessorBinder.cpp | 2 +- .../SceneCore/Events/CallProcessorBinder.h | 2 +- .../SceneCore/Events/CallProcessorBinder.inl | 2 +- .../SceneCore/Events/CallProcessorBus.cpp | 2 +- .../SceneCore/Events/CallProcessorBus.h | 2 +- .../SceneCore/Events/CallProcessorBus.inl | 2 +- .../SceneCore/Events/ExportEventContext.cpp | 2 +- .../SceneCore/Events/ExportEventContext.h | 2 +- .../SceneCore/Events/ExportProductList.cpp | 2 +- .../SceneCore/Events/ExportProductList.h | 2 +- .../SceneCore/Events/GenerateEventContext.cpp | 2 +- .../SceneCore/Events/GenerateEventContext.h | 2 +- .../SceneCore/Events/GraphMetaInfoBus.h | 2 +- .../SceneCore/Events/ImportEventContext.cpp | 2 +- .../SceneCore/Events/ImportEventContext.h | 2 +- .../SceneCore/Events/ManifestMetaInfoBus.cpp | 2 +- .../SceneCore/Events/ManifestMetaInfoBus.h | 2 +- .../SceneCore/Events/ProcessingResult.cpp | 2 +- .../SceneCore/Events/ProcessingResult.h | 2 +- .../SceneCore/Events/SceneSerializationBus.h | 2 +- .../SceneCore/Export/MtlMaterialExporter.cpp | 2 +- .../SceneCore/Export/MtlMaterialExporter.h | 2 +- .../Import/ManifestImportRequestHandler.cpp | 2 +- .../Import/ManifestImportRequestHandler.h | 2 +- .../SceneCore/Mocks/Containers/MockScene.h | 2 +- .../DataTypes/GraphData/MockIBlendShapeData.h | 2 +- .../Mocks/DataTypes/GraphData/MockIMeshData.h | 2 +- .../GraphData/MockIMeshVertexColorData.h | 2 +- .../GraphData/MockIMeshVertexUVData.h | 2 +- .../Mocks/DataTypes/GraphData/MockITransform.h | 2 +- .../Mocks/DataTypes/Groups/MockIGroup.h | 2 +- .../Mocks/DataTypes/Groups/MockIMeshGroup.h | 2 +- .../ManifestBase/MockISceneNodeSelectionList.h | 2 +- .../Mocks/DataTypes/MockIGraphObject.h | 2 +- .../DataTypes/Rules/MockIBlendShapeRule.h | 2 +- .../DataTypes/Rules/MockIMeshAdvancedRule.h | 2 +- .../Mocks/Events/MockAssetImportRequest.h | 2 +- .../SceneCore/SceneBuilderDependencyBus.h | 2 +- .../SceneCore/SceneCoreConfiguration.h | 2 +- .../SceneCore/SceneCoreStandaloneAllocator.cpp | 2 +- .../SceneCore/SceneCoreStandaloneAllocator.h | 2 +- .../Tests/Containers/SceneBehaviorTests.cpp | 2 +- .../Tests/Containers/SceneGraphTests.cpp | 2 +- .../Tests/Containers/SceneManifestTests.cpp | 2 +- .../SceneCore/Tests/Containers/SceneTests.cpp | 2 +- .../Containers/Utilities/FiltersTests.cpp | 2 +- .../Containers/Views/ConvertIteratorTests.cpp | 2 +- .../Containers/Views/FilterIteratorTests.cpp | 2 +- .../Views/IteratorConformityTests.cpp | 2 +- .../Tests/Containers/Views/IteratorTestsBase.h | 2 +- .../Containers/Views/PairIteratorTests.cpp | 2 +- .../Views/SceneGraphChildIteratorTests.cpp | 2 +- .../Views/SceneGraphDownwardsIteratorTests.cpp | 2 +- .../Views/SceneGraphUpwardsIteratorTests.cpp | 2 +- .../SceneCore/Tests/DataObjectTests.cpp | 2 +- .../Tests/Events/AssetImporterRequestTests.cpp | 2 +- .../SceneCore/Tests/Export/MaterialIOTests.cpp | 2 +- .../SceneAPI/SceneCore/Tests/TestsMain.cpp | 2 +- .../Tests/Utilities/PatternMatcherTests.cpp | 2 +- .../Utilities/SceneGraphSelectorTests.cpp | 2 +- .../Utilities/CoordinateSystemConverter.cpp | 2 +- .../Utilities/CoordinateSystemConverter.h | 2 +- .../SceneCore/Utilities/DebugOutput.cpp | 2 +- .../SceneAPI/SceneCore/Utilities/DebugOutput.h | 2 +- .../SceneCore/Utilities/DebugOutput.inl | 2 +- .../SceneCore/Utilities/FileUtilities.cpp | 2 +- .../SceneCore/Utilities/FileUtilities.h | 2 +- .../SceneAPI/SceneCore/Utilities/HashHelper.h | 2 +- .../SceneCore/Utilities/PatternMatcher.cpp | 2 +- .../SceneCore/Utilities/PatternMatcher.h | 2 +- .../SceneAPI/SceneCore/Utilities/Reporting.h | 2 +- .../SceneCore/Utilities/SceneGraphSelector.cpp | 2 +- .../SceneCore/Utilities/SceneGraphSelector.h | 2 +- .../SceneAPI/SceneCore/scenecore_files.cmake | 2 +- .../SceneCore/scenecore_testing_files.cmake | 2 +- .../SceneData/Behaviors/AnimationGroup.h | 2 +- .../Behaviors/BehaviorsAnimationGroup.cpp | 2 +- .../SceneData/Behaviors/BehaviorsMeshGroup.cpp | 2 +- .../Behaviors/BehaviorsSkeletonGroup.cpp | 2 +- .../SceneData/Behaviors/BehaviorsSkinGroup.cpp | 2 +- .../Behaviors/BlendShapeRuleBehavior.cpp | 2 +- .../Behaviors/BlendShapeRuleBehavior.h | 2 +- .../SceneData/Behaviors/LodRuleBehavior.cpp | 2 +- .../SceneData/Behaviors/LodRuleBehavior.h | 2 +- .../Behaviors/MaterialRuleBehavior.cpp | 2 +- .../SceneData/Behaviors/MaterialRuleBehavior.h | 2 +- .../SceneData/Behaviors/MeshAdvancedRule.cpp | 2 +- .../SceneData/Behaviors/MeshAdvancedRule.h | 2 +- .../SceneAPI/SceneData/Behaviors/MeshGroup.h | 2 +- .../SceneAPI/SceneData/Behaviors/Registry.cpp | 2 +- .../SceneAPI/SceneData/Behaviors/Registry.h | 2 +- .../Behaviors/ScriptProcessorRuleBehavior.cpp | 2 +- .../Behaviors/ScriptProcessorRuleBehavior.h | 2 +- .../SceneData/Behaviors/SkeletonGroup.h | 2 +- .../SceneAPI/SceneData/Behaviors/SkinGroup.h | 2 +- .../SceneData/Behaviors/SkinRuleBehavior.cpp | 2 +- .../SceneData/Behaviors/SkinRuleBehavior.h | 2 +- Code/Tools/SceneAPI/SceneData/CMakeLists.txt | 2 +- Code/Tools/SceneAPI/SceneData/DllMain.cpp | 2 +- .../SceneData/GraphData/AnimationData.cpp | 2 +- .../SceneData/GraphData/AnimationData.h | 2 +- .../SceneData/GraphData/BlendShapeData.cpp | 2 +- .../SceneData/GraphData/BlendShapeData.h | 2 +- .../SceneAPI/SceneData/GraphData/BoneData.cpp | 2 +- .../SceneAPI/SceneData/GraphData/BoneData.h | 2 +- .../SceneData/GraphData/MaterialData.cpp | 2 +- .../SceneData/GraphData/MaterialData.h | 2 +- .../SceneAPI/SceneData/GraphData/MeshData.cpp | 2 +- .../SceneAPI/SceneData/GraphData/MeshData.h | 2 +- .../GraphData/MeshDataPrimitiveUtils.cpp | 2 +- .../GraphData/MeshDataPrimitiveUtils.h | 2 +- .../GraphData/MeshVertexBitangentData.cpp | 2 +- .../GraphData/MeshVertexBitangentData.h | 2 +- .../GraphData/MeshVertexColorData.cpp | 2 +- .../SceneData/GraphData/MeshVertexColorData.h | 2 +- .../GraphData/MeshVertexTangentData.cpp | 2 +- .../GraphData/MeshVertexTangentData.h | 2 +- .../SceneData/GraphData/MeshVertexUVData.cpp | 2 +- .../SceneData/GraphData/MeshVertexUVData.h | 2 +- .../SceneData/GraphData/RootBoneData.cpp | 2 +- .../SceneData/GraphData/RootBoneData.h | 2 +- .../SceneData/GraphData/SkinMeshData.h | 2 +- .../SceneData/GraphData/SkinWeightData.cpp | 2 +- .../SceneData/GraphData/SkinWeightData.h | 2 +- .../SceneData/GraphData/TransformData.cpp | 2 +- .../SceneData/GraphData/TransformData.h | 2 +- .../SceneData/Groups/AnimationGroup.cpp | 2 +- .../SceneAPI/SceneData/Groups/AnimationGroup.h | 2 +- .../SceneAPI/SceneData/Groups/MeshGroup.cpp | 2 +- .../SceneAPI/SceneData/Groups/MeshGroup.h | 2 +- .../SceneData/Groups/SkeletonGroup.cpp | 2 +- .../SceneAPI/SceneData/Groups/SkeletonGroup.h | 2 +- .../SceneAPI/SceneData/Groups/SkinGroup.cpp | 2 +- .../SceneAPI/SceneData/Groups/SkinGroup.h | 2 +- .../ManifestBase/SceneNodeSelectionList.cpp | 2 +- .../ManifestBase/SceneNodeSelectionList.h | 2 +- .../SceneData/ManifestMetaInfoHandler.cpp | 2 +- .../SceneData/ManifestMetaInfoHandler.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../SceneAPI/SceneData/ReflectionRegistrar.cpp | 2 +- .../SceneAPI/SceneData/ReflectionRegistrar.h | 2 +- .../SceneData/Rules/BlendShapeRule.cpp | 2 +- .../SceneAPI/SceneData/Rules/BlendShapeRule.h | 2 +- .../SceneAPI/SceneData/Rules/CommentRule.cpp | 2 +- .../SceneAPI/SceneData/Rules/CommentRule.h | 2 +- .../SceneData/Rules/CoordinateSystemRule.cpp | 2 +- .../SceneData/Rules/CoordinateSystemRule.h | 2 +- .../Tools/SceneAPI/SceneData/Rules/LodRule.cpp | 2 +- Code/Tools/SceneAPI/SceneData/Rules/LodRule.h | 2 +- .../SceneAPI/SceneData/Rules/MaterialRule.cpp | 2 +- .../SceneAPI/SceneData/Rules/MaterialRule.h | 2 +- .../SceneData/Rules/ScriptProcessorRule.cpp | 2 +- .../SceneData/Rules/ScriptProcessorRule.h | 2 +- .../SceneData/Rules/SkeletonProxyRule.cpp | 2 +- .../SceneData/Rules/SkeletonProxyRule.h | 2 +- .../SceneData/Rules/SkinMeshAdvancedRule.cpp | 2 +- .../SceneData/Rules/SkinMeshAdvancedRule.h | 2 +- .../SceneAPI/SceneData/Rules/SkinRule.cpp | 2 +- Code/Tools/SceneAPI/SceneData/Rules/SkinRule.h | 2 +- .../SceneData/Rules/StaticMeshAdvancedRule.cpp | 2 +- .../SceneData/Rules/StaticMeshAdvancedRule.h | 2 +- .../SceneAPI/SceneData/Rules/TangentsRule.cpp | 2 +- .../SceneAPI/SceneData/Rules/TangentsRule.h | 2 +- .../SceneData/SceneDataConfiguration.h | 2 +- .../SceneData/SceneDataStandaloneAllocator.cpp | 2 +- .../SceneData/SceneDataStandaloneAllocator.h | 2 +- .../SceneData/SceneData_darwin_files.cmake | 2 +- .../SceneAPI/SceneData/SceneData_files.cmake | 2 +- .../SceneData/SceneData_testing_files.cmake | 2 +- .../Tests/GraphData/GraphDataBehaviorTests.cpp | 2 +- .../GraphData/MeshDataPrimitiveUtilsTests.cpp | 2 +- .../Tests/GraphData/MeshDataTests.cpp | 2 +- .../SceneManifest/SceneManifestRuleTests.cpp | 2 +- .../SceneAPI/SceneData/Tests/TestsMain.cpp | 2 +- Code/Tools/SceneAPI/SceneUI/CMakeLists.txt | 2 +- .../CommonWidgets/ExpandCollapseToggler.cpp | 2 +- .../CommonWidgets/ExpandCollapseToggler.h | 2 +- .../SceneUI/CommonWidgets/JobWatcher.cpp | 2 +- .../SceneUI/CommonWidgets/JobWatcher.h | 2 +- .../SceneUI/CommonWidgets/OverlayWidget.h | 2 +- .../SceneUI/CommonWidgets/OverlayWidgetLayer.h | 2 +- .../CommonWidgets/ProcessingOverlayWidget.cpp | 2 +- .../CommonWidgets/ProcessingOverlayWidget.h | 2 +- Code/Tools/SceneAPI/SceneUI/DllMain.cpp | 2 +- .../SceneAPI/SceneUI/GraphMetaInfoHandler.cpp | 2 +- .../SceneAPI/SceneUI/GraphMetaInfoHandler.h | 2 +- .../AsyncOperationProcessingHandler.cpp | 2 +- .../AsyncOperationProcessingHandler.h | 2 +- .../ExportJobProcessingHandler.cpp | 2 +- .../ExportJobProcessingHandler.h | 2 +- .../ProcessingHandlers/ProcessingHandler.cpp | 2 +- .../ProcessingHandlers/ProcessingHandler.h | 2 +- .../SceneUI/ManifestMetaInfoHandler.cpp | 2 +- .../SceneAPI/SceneUI/ManifestMetaInfoHandler.h | 2 +- .../SceneUI/RowWidgets/HeaderHandler.cpp | 2 +- .../SceneUI/RowWidgets/HeaderHandler.h | 2 +- .../SceneUI/RowWidgets/HeaderWidget.cpp | 2 +- .../SceneAPI/SceneUI/RowWidgets/HeaderWidget.h | 2 +- .../SceneUI/RowWidgets/ManifestNameHandler.cpp | 2 +- .../SceneUI/RowWidgets/ManifestNameHandler.h | 2 +- .../SceneUI/RowWidgets/ManifestNameWidget.cpp | 2 +- .../SceneUI/RowWidgets/ManifestNameWidget.h | 2 +- .../RowWidgets/ManifestVectorHandler.cpp | 2 +- .../SceneUI/RowWidgets/ManifestVectorHandler.h | 2 +- .../RowWidgets/ManifestVectorWidget.cpp | 2 +- .../SceneUI/RowWidgets/ManifestVectorWidget.h | 2 +- .../RowWidgets/NodeListSelectionHandler.cpp | 2 +- .../RowWidgets/NodeListSelectionHandler.h | 2 +- .../RowWidgets/NodeListSelectionWidget.cpp | 2 +- .../RowWidgets/NodeListSelectionWidget.h | 2 +- .../RowWidgets/NodeTreeSelectionHandler.cpp | 2 +- .../RowWidgets/NodeTreeSelectionHandler.h | 2 +- .../RowWidgets/NodeTreeSelectionWidget.cpp | 2 +- .../RowWidgets/NodeTreeSelectionWidget.h | 2 +- .../SceneUI/RowWidgets/TransformRowHandler.cpp | 2 +- .../SceneUI/RowWidgets/TransformRowHandler.h | 2 +- .../SceneUI/RowWidgets/TransformRowWidget.cpp | 2 +- .../SceneUI/RowWidgets/TransformRowWidget.h | 2 +- .../SceneAPI/SceneUI/SceneUIConfiguration.h | 2 +- .../SceneUI/SceneUIStandaloneAllocator.cpp | 2 +- .../SceneUI/SceneUIStandaloneAllocator.h | 2 +- .../Tools/SceneAPI/SceneUI/SceneUI_files.cmake | 2 +- .../SceneUI/SceneUI_testing_files.cmake | 2 +- .../SceneUI/SceneWidgets/ManifestWidget.cpp | 2 +- .../SceneUI/SceneWidgets/ManifestWidget.h | 2 +- .../SceneWidgets/ManifestWidgetPage.cpp | 2 +- .../SceneUI/SceneWidgets/ManifestWidgetPage.h | 2 +- .../SceneWidgets/SceneGraphInspectWidget.cpp | 2 +- .../SceneWidgets/SceneGraphInspectWidget.h | 2 +- .../SceneUI/SceneWidgets/SceneGraphWidget.cpp | 2 +- .../SceneUI/SceneWidgets/SceneGraphWidget.h | 2 +- .../RowWidgets/TransformRowWidgetTests.cpp | 2 +- .../Tools/SceneAPI/SceneUI/Tests/TestsMain.cpp | 2 +- .../SerializeContextTools/Application.cpp | 2 +- Code/Tools/SerializeContextTools/Application.h | 2 +- .../Tools/SerializeContextTools/CMakeLists.txt | 2 +- Code/Tools/SerializeContextTools/Converter.cpp | 2 +- Code/Tools/SerializeContextTools/Converter.h | 2 +- Code/Tools/SerializeContextTools/Dumper.cpp | 2 +- Code/Tools/SerializeContextTools/Dumper.h | 2 +- .../Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Windows/PAL_windows.cmake | 2 +- .../SerializeContextTools/SliceConverter.cpp | 2 +- .../SerializeContextTools/SliceConverter.h | 2 +- ...liceConverterEditorEntityContextComponent.h | 2 +- Code/Tools/SerializeContextTools/Utilities.cpp | 2 +- Code/Tools/SerializeContextTools/Utilities.h | 2 +- Code/Tools/SerializeContextTools/main.cpp | 2 +- .../serializecontexttools_files.cmake | 2 +- Code/Tools/Standalone/CMakeLists.txt | 2 +- .../EventTraceDataAggregator_Unimplemented.cpp | 2 +- .../StandaloneApplication_Unimplemented.cpp | 2 +- .../Platform/Linux/lua_ide_linux_files.cmake | 2 +- .../Platform/Linux/profiler_linux_files.cmake | 2 +- .../EvenTrace/EventTraceDataAggregator_Mac.cpp | 2 +- .../Mac/Source/StandaloneApplication_Mac.cpp | 2 +- .../Platform/Mac/lua_ide_mac_files.cmake | 2 +- .../Platform/Mac/profiler_mac_files.cmake | 2 +- .../EventTraceDataAggregator_Windows.cpp | 2 +- .../Source/StandaloneApplication_Windows.cpp | 2 +- .../Windows/lua_ide_windows_files.cmake | 2 +- .../Windows/profiler_windows_files.cmake | 2 +- .../Source/AssetDatabaseLocationListener.cpp | 2 +- .../Source/AssetDatabaseLocationListener.h | 2 +- .../Annotations/AnnotationHeaderView.cpp | 2 +- .../Annotations/AnnotationHeaderView.hxx | 2 +- .../Source/Driller/Annotations/Annotations.cpp | 2 +- .../Source/Driller/Annotations/Annotations.hxx | 2 +- .../Annotations/AnnotationsDataView.cpp | 2 +- .../Annotations/AnnotationsDataView.hxx | 2 +- .../Annotations/AnnotationsDataView_Events.cpp | 2 +- .../Annotations/AnnotationsDataView_Events.hxx | 2 +- .../AnnotationsHeaderView_Events.cpp | 2 +- .../AnnotationsHeaderView_Events.hxx | 2 +- .../Annotations/ConfigureAnnotationsWindow.cpp | 2 +- .../Annotations/ConfigureAnnotationsWindow.hxx | 2 +- .../Standalone/Source/Driller/AreaChart.cpp | 2 +- .../Standalone/Source/Driller/AreaChart.hxx | 2 +- Code/Tools/Standalone/Source/Driller/Axis.cpp | 2 +- Code/Tools/Standalone/Source/Driller/Axis.hxx | 2 +- .../Source/Driller/CSVExportSettings.h | 2 +- .../Driller/Carrier/CarrierDataAggregator.cpp | 2 +- .../Driller/Carrier/CarrierDataAggregator.hxx | 2 +- .../Source/Driller/Carrier/CarrierDataEvents.h | 2 +- .../Driller/Carrier/CarrierDataParser.cpp | 2 +- .../Source/Driller/Carrier/CarrierDataParser.h | 2 +- .../Source/Driller/Carrier/CarrierDataView.cpp | 2 +- .../Source/Driller/Carrier/CarrierDataView.hxx | 2 +- .../Carrier/CarrierOperationTelemetryEvent.h | 2 +- .../Driller/ChannelConfigurationDialog.cpp | 2 +- .../Driller/ChannelConfigurationDialog.hxx | 2 +- .../Driller/ChannelConfigurationWidget.cpp | 2 +- .../Driller/ChannelConfigurationWidget.hxx | 2 +- .../Source/Driller/ChannelControl.cpp | 2 +- .../Source/Driller/ChannelControl.hxx | 2 +- .../Source/Driller/ChannelDataView.cpp | 2 +- .../Source/Driller/ChannelDataView.hxx | 2 +- .../Source/Driller/ChannelProfilerWidget.cpp | 2 +- .../Source/Driller/ChannelProfilerWidget.hxx | 2 +- .../Source/Driller/ChartNumberFormats.cpp | 2 +- .../Source/Driller/ChartNumberFormats.h | 2 +- .../Standalone/Source/Driller/ChartTypes.cpp | 2 +- .../Standalone/Source/Driller/ChartTypes.hxx | 2 +- .../Source/Driller/CollapsiblePanel.cpp | 2 +- .../Source/Driller/CollapsiblePanel.hxx | 2 +- .../Source/Driller/CombinedEventsControl.cpp | 2 +- .../Source/Driller/CombinedEventsControl.hxx | 2 +- .../Driller/CustomizeCSVExportWidget.cpp | 2 +- .../Driller/CustomizeCSVExportWidget.hxx | 2 +- .../Source/Driller/DoubleListSelector.cpp | 2 +- .../Source/Driller/DoubleListSelector.hxx | 2 +- .../Source/Driller/DrillerAggregator.cpp | 2 +- .../Source/Driller/DrillerAggregator.hxx | 2 +- .../Driller/DrillerAggregatorOptions.hxx | 2 +- .../Source/Driller/DrillerCaptureWindow.cpp | 2 +- .../Source/Driller/DrillerCaptureWindow.hxx | 2 +- .../Source/Driller/DrillerContext.cpp | 2 +- .../Standalone/Source/Driller/DrillerContext.h | 2 +- .../Source/Driller/DrillerContextInterface.h | 2 +- .../Source/Driller/DrillerDataContainer.cpp | 2 +- .../Source/Driller/DrillerDataContainer.h | 2 +- .../Source/Driller/DrillerDataTypes.h | 2 +- .../Standalone/Source/Driller/DrillerEvent.cpp | 2 +- .../Standalone/Source/Driller/DrillerEvent.h | 2 +- .../Source/Driller/DrillerMainWindow.cpp | 2 +- .../Source/Driller/DrillerMainWindow.hxx | 2 +- .../Driller/DrillerMainWindowMessages.cpp | 2 +- .../Source/Driller/DrillerMainWindowMessages.h | 2 +- .../Source/Driller/DrillerNetworkMessages.h | 2 +- .../Driller/DrillerOperationTelemetryEvent.cpp | 2 +- .../Driller/DrillerOperationTelemetryEvent.h | 2 +- .../EventTrace/EventTraceDataAggregator.cpp | 2 +- .../EventTrace/EventTraceDataAggregator.h | 2 +- .../EventTrace/EventTraceDataParser.cpp | 2 +- .../Driller/EventTrace/EventTraceDataParser.h | 2 +- .../Driller/EventTrace/EventTraceEvents.h | 2 +- .../Source/Driller/FilteredListView.cpp | 2 +- .../Source/Driller/FilteredListView.hxx | 2 +- .../GenericCustomizeCSVExportWidget.cpp | 2 +- .../GenericCustomizeCSVExportWidget.hxx | 2 +- .../Driller/IO/StreamerDataAggregator.cpp | 2 +- .../Source/Driller/IO/StreamerDataParser.cpp | 2 +- .../Source/Driller/IO/StreamerDataView.cpp | 2 +- .../Driller/IO/StreamerDrillerDialog.cpp | 2 +- .../Source/Driller/IO/StreamerEvents.cpp | 2 +- .../Driller/Memory/MemoryDataAggregator.cpp | 2 +- .../Driller/Memory/MemoryDataAggregator.hxx | 2 +- .../Source/Driller/Memory/MemoryDataParser.cpp | 2 +- .../Source/Driller/Memory/MemoryDataParser.h | 2 +- .../Source/Driller/Memory/MemoryDataView.cpp | 2 +- .../Source/Driller/Memory/MemoryDataView.hxx | 2 +- .../Source/Driller/Memory/MemoryEvents.cpp | 2 +- .../Source/Driller/Memory/MemoryEvents.h | 2 +- .../Profiler/ProfilerDataAggregator.cpp | 2 +- .../Profiler/ProfilerDataAggregator.hxx | 2 +- .../Driller/Profiler/ProfilerDataPanel.cpp | 2 +- .../Driller/Profiler/ProfilerDataPanel.hxx | 2 +- .../Driller/Profiler/ProfilerDataParser.cpp | 2 +- .../Driller/Profiler/ProfilerDataParser.h | 2 +- .../Driller/Profiler/ProfilerDataView.cpp | 2 +- .../Driller/Profiler/ProfilerDataView.hxx | 2 +- .../Source/Driller/Profiler/ProfilerEvents.cpp | 2 +- .../Source/Driller/Profiler/ProfilerEvents.h | 2 +- .../Profiler/ProfilerOperationTelemetryEvent.h | 2 +- .../Source/Driller/RacetrackChart.cpp | 2 +- .../Source/Driller/RacetrackChart.hxx | 2 +- .../Rendering/VRAM/VRAMDataAggregator.cpp | 2 +- .../Rendering/VRAM/VRAMDataAggregator.hxx | 2 +- .../Driller/Rendering/VRAM/VRAMDataParser.cpp | 2 +- .../Driller/Rendering/VRAM/VRAMDataParser.h | 2 +- .../Driller/Rendering/VRAM/VRAMEvents.cpp | 2 +- .../Source/Driller/Rendering/VRAM/VRAMEvents.h | 2 +- .../Source/Driller/Replica/BaseDetailView.h | 2 +- .../Source/Driller/Replica/BaseDetailView.inl | 2 +- .../Driller/Replica/BaseDetailViewQObject.cpp | 2 +- .../Driller/Replica/BaseDetailViewQObject.hxx | 2 +- .../Driller/Replica/BaseDetailViewSavedState.h | 2 +- .../Replica/OverallReplicaDetailView.cpp | 2 +- .../Replica/OverallReplicaDetailView.hxx | 2 +- .../Replica/ReplicaBandwidthChartData.cpp | 2 +- .../Replica/ReplicaBandwidthChartData.h | 2 +- .../Replica/ReplicaChunkTypeDetailView.cpp | 2 +- .../Replica/ReplicaChunkTypeDetailView.h | 2 +- .../ReplicaChunkUsageDataContainers.cpp | 2 +- .../Replica/ReplicaChunkUsageDataContainers.h | 2 +- .../Driller/Replica/ReplicaDataAggregator.cpp | 2 +- .../Driller/Replica/ReplicaDataAggregator.hxx | 2 +- ...ReplicaDataAggregatorConfigurationPanel.cpp | 2 +- ...ReplicaDataAggregatorConfigurationPanel.hxx | 2 +- .../Source/Driller/Replica/ReplicaDataEvents.h | 2 +- .../Driller/Replica/ReplicaDataParser.cpp | 2 +- .../Source/Driller/Replica/ReplicaDataParser.h | 2 +- .../Source/Driller/Replica/ReplicaDataView.cpp | 2 +- .../Source/Driller/Replica/ReplicaDataView.hxx | 2 +- .../Driller/Replica/ReplicaDetailView.cpp | 2 +- .../Source/Driller/Replica/ReplicaDetailView.h | 2 +- .../Driller/Replica/ReplicaDisplayHelpers.cpp | 2 +- .../Driller/Replica/ReplicaDisplayHelpers.h | 2 +- .../Driller/Replica/ReplicaDisplayTypes.cpp | 2 +- .../Driller/Replica/ReplicaDisplayTypes.h | 2 +- .../Replica/ReplicaDrillerConfigToolbar.cpp | 2 +- .../Replica/ReplicaDrillerConfigToolbar.hxx | 2 +- .../Replica/ReplicaOperationTelemetryEvent.h | 2 +- .../Driller/Replica/ReplicaTreeViewModel.cpp | 2 +- .../Driller/Replica/ReplicaTreeViewModel.hxx | 2 +- .../Replica/ReplicaUsageDataContainers.cpp | 2 +- .../Replica/ReplicaUsageDataContainers.h | 2 +- .../Standalone/Source/Driller/StripChart.cpp | 2 +- .../Standalone/Source/Driller/StripChart.hxx | 2 +- .../Driller/Trace/TraceDrillerDialog.cpp | 2 +- .../Driller/Trace/TraceDrillerDialog.hxx | 2 +- .../Trace/TraceMessageDataAggregator.cpp | 2 +- .../Trace/TraceMessageDataAggregator.hxx | 2 +- .../Driller/Trace/TraceMessageDataParser.cpp | 2 +- .../Driller/Trace/TraceMessageDataParser.h | 2 +- .../Source/Driller/Trace/TraceMessageEvents.h | 2 +- .../Trace/TraceOperationTelemetryEvent.h | 2 +- .../Unsupported/UnsupportedDataAggregator.cpp | 2 +- .../Unsupported/UnsupportedDataAggregator.hxx | 2 +- .../Unsupported/UnsupportedDataParser.cpp | 2 +- .../Unsupported/UnsupportedDataParser.h | 2 +- .../Driller/Unsupported/UnsupportedEvents.h | 2 +- .../Source/Driller/Workspaces/Workspace.cpp | 2 +- .../Source/Driller/Workspaces/Workspace.h | 2 +- .../Standalone/Source/Editor/LuaEditor.cpp | 2 +- .../Tools/Standalone/Source/Editor/LuaEditor.h | 2 +- .../Source/Editor/ProfilerEditor.cpp | 2 +- .../Standalone/Source/Editor/ProfilerEditor.h | 2 +- Code/Tools/Standalone/Source/Editor/Resource.h | 2 +- .../Tools/Standalone/Source/Editor/targetver.h | 2 +- .../Standalone/Source/LUA/BasicScriptChecker.h | 2 +- .../Standalone/Source/LUA/BreakpointPanel.cpp | 2 +- .../Standalone/Source/LUA/BreakpointPanel.hxx | 2 +- .../Source/LUA/ClassReferenceFilter.cpp | 2 +- .../Source/LUA/ClassReferenceFilter.hxx | 2 +- .../Source/LUA/ClassReferencePanel.cpp | 2 +- .../Source/LUA/ClassReferencePanel.hxx | 2 +- .../Source/LUA/CodeCompletion/LUACompleter.cpp | 2 +- .../Source/LUA/CodeCompletion/LUACompleter.hxx | 2 +- .../LUA/CodeCompletion/LUACompletionModel.cpp | 2 +- .../LUA/CodeCompletion/LUACompletionModel.hxx | 2 +- .../Source/LUA/DebugAttachmentButton.cpp | 2 +- .../Source/LUA/DebugAttachmentButton.hxx | 2 +- .../LUA/LUABreakpointTrackerMessages.cpp | 2 +- .../Source/LUA/LUABreakpointTrackerMessages.h | 2 +- .../Source/LUA/LUAContextControlMessages.h | 2 +- .../Source/LUA/LUADebuggerComponent.cpp | 2 +- .../Source/LUA/LUADebuggerComponent.h | 2 +- .../Source/LUA/LUADebuggerMessages.h | 2 +- .../Source/LUA/LUAEditorBlockState.h | 2 +- .../Source/LUA/LUAEditorBreakpointWidget.cpp | 2 +- .../Source/LUA/LUAEditorBreakpointWidget.hxx | 2 +- .../Standalone/Source/LUA/LUAEditorContext.cpp | 2 +- .../Standalone/Source/LUA/LUAEditorContext.h | 2 +- .../Source/LUA/LUAEditorContextInterface.h | 2 +- .../Source/LUA/LUAEditorContextMessages.h | 2 +- .../Source/LUA/LUAEditorDebuggerMessages.h | 2 +- .../Source/LUA/LUAEditorFindDialog.cpp | 2 +- .../Source/LUA/LUAEditorFindDialog.hxx | 2 +- .../Source/LUA/LUAEditorFindResults.cpp | 2 +- .../Source/LUA/LUAEditorFindResults.hxx | 2 +- .../Source/LUA/LUAEditorFoldingWidget.cpp | 2 +- .../Source/LUA/LUAEditorFoldingWidget.hxx | 2 +- .../Source/LUA/LUAEditorGoToLineDialog.cpp | 2 +- .../Source/LUA/LUAEditorGoToLineDialog.hxx | 2 +- .../Source/LUA/LUAEditorMainWindow.cpp | 2 +- .../Source/LUA/LUAEditorMainWindow.hxx | 2 +- .../Source/LUA/LUAEditorPlainTextEdit.cpp | 2 +- .../Source/LUA/LUAEditorPlainTextEdit.hxx | 2 +- .../Source/LUA/LUAEditorSettingsDialog.cpp | 2 +- .../Source/LUA/LUAEditorSettingsDialog.hxx | 2 +- .../Source/LUA/LUAEditorStyleMessages.cpp | 2 +- .../Source/LUA/LUAEditorStyleMessages.h | 2 +- .../Source/LUA/LUAEditorSyntaxHighlighter.cpp | 2 +- .../Source/LUA/LUAEditorSyntaxHighlighter.hxx | 2 +- .../Standalone/Source/LUA/LUAEditorView.cpp | 2 +- .../Standalone/Source/LUA/LUAEditorView.hxx | 2 +- .../Source/LUA/LUAEditorViewMessages.h | 2 +- .../Source/LUA/LUALocalsTrackerMessages.h | 2 +- .../Source/LUA/LUAStackTrackerMessages.h | 2 +- .../LUA/LUATargetContextTrackerMessages.cpp | 2 +- .../LUA/LUATargetContextTrackerMessages.h | 2 +- .../Source/LUA/LUAWatchesDebuggerMessages.h | 2 +- .../Standalone/Source/LUA/ScriptCheckerAPI.h | 2 +- .../Tools/Standalone/Source/LUA/StackPanel.cpp | 2 +- .../Tools/Standalone/Source/LUA/StackPanel.hxx | 2 +- .../Source/LUA/TargetContextButton.cpp | 2 +- .../Source/LUA/TargetContextButton.hxx | 2 +- .../Standalone/Source/LUA/WatchesPanel.cpp | 2 +- .../Standalone/Source/LUA/WatchesPanel.hxx | 2 +- .../Standalone/Source/LuaIDEApplication.cpp | 2 +- .../Standalone/Source/LuaIDEApplication.h | 2 +- .../Standalone/Source/ProfilerApplication.cpp | 2 +- .../Standalone/Source/ProfilerApplication.h | 2 +- .../Source/StandaloneToolsApplication.cpp | 2 +- .../Source/StandaloneToolsApplication.h | 2 +- .../Standalone/Source/Telemetry/TelemetryBus.h | 2 +- .../Source/Telemetry/TelemetryComponent.cpp | 2 +- .../Source/Telemetry/TelemetryComponent.h | 2 +- .../Source/Telemetry/TelemetryEvent.cpp | 2 +- .../Source/Telemetry/TelemetryEvent.h | 2 +- .../Standalone/StandaloneTools_precompiled.h | 2 +- Code/Tools/Standalone/lua_ide_files.cmake | 2 +- Code/Tools/Standalone/profiler_files.cmake | 2 +- .../Standalone/standalone_tools_files.cmake | 2 +- Code/Tools/Standalone/targetver.h | 2 +- Code/Tools/TestImpactFramework/CMakeLists.txt | 2 +- .../Frontend/CMakeLists.txt | 2 +- .../Frontend/Console/CMakeLists.txt | 2 +- .../Frontend/Console/Code/CMakeLists.txt | 2 +- .../Console/Code/Source/TestImpactConsole.cpp | 2 +- ...mpactframework_frontend_console_files.cmake | 2 +- .../Platform/Android/PAL_android.cmake | 2 +- .../Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/iOS/PAL_ios.cmake | 2 +- .../TestImpactFramework/Runtime/CMakeLists.txt | 2 +- .../Runtime/Code/CMakeLists.txt | 2 +- .../Runtime/Code/Source/Dummy.cpp | 2 +- .../Source/Platform/Windows/Dummy_Windows.cpp | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../testimpactframework_runtime_files.cmake | 2 +- Gems/AWSClientAuth/CMakeLists.txt | 2 +- Gems/AWSClientAuth/Code/CMakeLists.txt | 2 +- .../Code/Include/Private/AWSClientAuthBus.h | 2 +- .../Code/Include/Private/AWSClientAuthModule.h | 2 +- .../AWSClientAuthResourceMappingConstants.h | 2 +- .../Private/AWSClientAuthSystemComponent.h | 2 +- .../AWSCognitoAuthenticationProvider.h | 2 +- ...henticationNotificationBusBehaviorHandler.h | 2 +- .../AuthenticationProviderInterface.h | 2 +- .../AuthenticationProviderManager.h | 2 +- .../AuthenticationProviderScriptCanvasBus.h | 2 +- .../AuthenticationProviderTypes.h | 2 +- .../GoogleAuthenticationProvider.h | 2 +- .../Authentication/LWAAuthenticationProvider.h | 2 +- .../Private/Authentication/OAuthConstants.h | 2 +- ...ientAuthPersistentCognitoIdentityProvider.h | 2 +- .../AWSCognitoAuthorizationController.h | 2 +- ...thorizationNotificationBusBehaviorHandler.h | 2 +- .../AWSCognitoUserManagementController.h | 2 +- ...rManagementNotificationBusBehaviorHandler.h | 2 +- .../Authentication/AuthenticationProviderBus.h | 2 +- .../Authentication/AuthenticationTokens.h | 2 +- .../Authorization/AWSCognitoAuthorizationBus.h | 2 +- .../Authorization/ClientAuthAWSCredentials.h | 2 +- .../AWSCognitoUserManagementBus.h | 2 +- .../Code/Source/AWSClientAuthModule.cpp | 2 +- .../Source/AWSClientAuthSystemComponent.cpp | 2 +- .../AWSCognitoAuthenticationProvider.cpp | 2 +- .../AuthenticationProviderInterface.cpp | 2 +- .../AuthenticationProviderManager.cpp | 2 +- .../Authentication/AuthenticationTokens.cpp | 2 +- .../GoogleAuthenticationProvider.cpp | 2 +- .../LWAAuthenticationProvider.cpp | 2 +- ...ntAuthPersistentCognitoIdentityProvider.cpp | 2 +- .../AWSCognitoAuthorizationController.cpp | 2 +- .../AWSCognitoUserManagementController.cpp | 2 +- .../Code/Tests/AWSClientAuthGemMock.h | 2 +- .../Code/Tests/AWSClientAuthGemTest.cpp | 2 +- .../Tests/AWSClientAuthSystemComponentTest.cpp | 2 +- .../AWSCognitoAuthenticationProviderTest.cpp | 2 +- .../AuthenticationProviderManagerMock.h | 2 +- ...ationProviderManagerScriptCanvasBusTest.cpp | 2 +- .../AuthenticationProviderManagerTest.cpp | 2 +- .../GoogleAuthenticationProviderTest.cpp | 2 +- .../LWAAuthenticationProviderTest.cpp | 2 +- ...thPersistentCognitoIdentityProviderTest.cpp | 2 +- .../AWSCognitoAuthorizationControllerTest.cpp | 2 +- .../AWSCognitoUserManagementControllerTest.cpp | 2 +- .../Code/awsclientauth_files.cmake | 2 +- .../Code/awsclientauth_shared_files.cmake | 2 +- .../Code/awsclientauth_test_files.cmake | 2 +- Gems/AWSClientAuth/cdk/app.py | 2 +- Gems/AWSClientAuth/cdk/auth/__init__.py | 2 +- .../cdk/auth/cognito_identity_pool_role.py | 2 +- .../cdk/auth/cognito_user_pool_sms_role.py | 2 +- .../cdk/aws_client_auth/__init__.py | 2 +- .../cdk/aws_client_auth/client_auth_stack.py | 2 +- Gems/AWSClientAuth/cdk/cognito/__init__.py | 2 +- .../cdk/cognito/cognito_identity_pool.py | 2 +- .../cdk/cognito/cognito_user_pool.py | 2 +- Gems/AWSClientAuth/cdk/utils/__init__.py | 2 +- Gems/AWSClientAuth/cdk/utils/constants.py | 2 +- Gems/AWSClientAuth/cdk/utils/name_utils.py | 2 +- Gems/AWSCore/CMakeLists.txt | 2 +- Gems/AWSCore/Code/CMakeLists.txt | 2 +- .../Code/Include/Private/AWSCoreEditorModule.h | 2 +- .../Private/AWSCoreEditorSystemComponent.h | 2 +- .../Code/Include/Private/AWSCoreInternalBus.h | 2 +- .../Code/Include/Private/AWSCoreModule.h | 2 +- .../Include/Private/AWSCoreSystemComponent.h | 2 +- .../Configuration/AWSCoreConfiguration.h | 2 +- .../Credential/AWSCVarCredentialHandler.h | 2 +- .../Private/Credential/AWSCredentialManager.h | 2 +- .../Credential/AWSDefaultCredentialHandler.h | 2 +- .../Private/Editor/AWSCoreEditorManager.h | 2 +- .../Attribution/AWSAttributionServiceApi.h | 2 +- .../AWSCoreAttributionConsentDialog.h | 2 +- .../Attribution/AWSCoreAttributionConstant.h | 2 +- .../Attribution/AWSCoreAttributionManager.h | 2 +- .../Attribution/AWSCoreAttributionMetric.h | 2 +- .../AWSCoreAttributionSystemComponent.h | 2 +- .../Editor/Constants/AWSCoreEditorMenuLinks.h | 2 +- .../Editor/Constants/AWSCoreEditorMenuNames.h | 2 +- .../Android/AWSCoreEditor_Traits_Android.h | 2 +- .../Android/AWSCoreEditor_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Linux/AWSCoreEditor_Traits_Linux.h | 2 +- .../Linux/AWSCoreEditor_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/AWSCoreEditor_Traits_Mac.h | 2 +- .../Mac/AWSCoreEditor_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/AWSCoreEditor_Traits_Platform.h | 2 +- .../Windows/AWSCoreEditor_Traits_Windows.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/AWSCoreEditor_Traits_Platform.h | 2 +- .../Platform/iOS/AWSCoreEditor_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Private/Editor/UI/AWSCoreEditorMenu.h | 2 +- .../UI/AWSCoreResourceMappingToolAction.h | 2 +- .../AWSResourceMappingConstants.h | 2 +- .../AWSResourceMappingManager.h | 2 +- .../ResourceMapping/AWSResourceMappingUtils.h | 2 +- Gems/AWSCore/Code/Include/Public/AWSCoreBus.h | 2 +- .../Public/Credential/AWSCredentialBus.h | 2 +- .../Include/Public/Framework/AWSApiClientJob.h | 2 +- .../Public/Framework/AWSApiClientJobConfig.h | 2 +- .../Code/Include/Public/Framework/AWSApiJob.h | 2 +- .../Include/Public/Framework/AWSApiJobConfig.h | 2 +- .../Public/Framework/AWSApiRequestJob.h | 2 +- .../Public/Framework/AWSApiRequestJobConfig.h | 2 +- .../Code/Include/Public/Framework/Error.h | 2 +- .../Public/Framework/HttpClientComponent.h | 2 +- .../Include/Public/Framework/HttpRequestJob.h | 2 +- .../Public/Framework/HttpRequestJobConfig.h | 2 +- .../Include/Public/Framework/JobExecuter.h | 2 +- .../Public/Framework/JsonObjectHandler.h | 2 +- .../Code/Include/Public/Framework/JsonWriter.h | 2 +- .../Public/Framework/MultipartFormData.h | 2 +- .../Include/Public/Framework/RequestBuilder.h | 2 +- .../Public/Framework/ServiceClientJob.h | 2 +- .../Public/Framework/ServiceClientJobConfig.h | 2 +- .../Code/Include/Public/Framework/ServiceJob.h | 2 +- .../Public/Framework/ServiceJobConfig.h | 2 +- .../Include/Public/Framework/ServiceJobUtil.h | 2 +- .../Public/Framework/ServiceRequestJob.h | 2 +- .../Public/Framework/ServiceRequestJobConfig.h | 2 +- .../Code/Include/Public/Framework/Util.h | 2 +- .../ResourceMapping/AWSResourceMappingBus.h | 2 +- .../ScriptCanvas/AWSScriptBehaviorBase.h | 2 +- .../ScriptCanvas/AWSScriptBehaviorDynamoDB.h | 2 +- .../ScriptCanvas/AWSScriptBehaviorLambda.h | 2 +- .../Public/ScriptCanvas/AWSScriptBehaviorS3.h | 2 +- .../ScriptCanvas/AWSScriptBehaviorsComponent.h | 2 +- .../Code/Source/AWSCoreEditorModule.cpp | 2 +- .../Source/AWSCoreEditorSystemComponent.cpp | 2 +- Gems/AWSCore/Code/Source/AWSCoreModule.cpp | 2 +- .../AWSCoreResourceMappingToolModule.cpp | 2 +- .../Code/Source/AWSCoreSystemComponent.cpp | 2 +- .../Configuration/AWSCoreConfiguration.cpp | 2 +- .../Credential/AWSCVarCredentialHandler.cpp | 2 +- .../Source/Credential/AWSCredentialManager.cpp | 2 +- .../Credential/AWSDefaultCredentialHandler.cpp | 2 +- .../Source/Editor/AWSCoreEditorManager.cpp | 2 +- .../Attribution/AWSAttributionServiceApi.cpp | 2 +- .../AWSCoreAttributionConsentDialog.cpp | 2 +- .../Attribution/AWSCoreAttributionManager.cpp | 2 +- .../Attribution/AWSCoreAttributionMetric.cpp | 2 +- .../AWSCoreAttributionSystemComponent.cpp | 2 +- .../Source/Editor/UI/AWSCoreEditorMenu.cpp | 2 +- .../UI/AWSCoreResourceMappingToolAction.cpp | 2 +- .../Code/Source/Framework/AWSApiJob.cpp | 2 +- .../Code/Source/Framework/AWSApiJobConfig.cpp | 2 +- Gems/AWSCore/Code/Source/Framework/Error.cpp | 2 +- .../Code/Source/Framework/HttpRequestJob.cpp | 2 +- .../Source/Framework/HttpRequestJobConfig.cpp | 2 +- .../Source/Framework/JsonObjectHandler.cpp | 2 +- .../Source/Framework/MultipartFormData.cpp | 2 +- .../Code/Source/Framework/RequestBuilder.cpp | 2 +- .../Code/Source/Framework/ServiceJob.cpp | 2 +- .../Code/Source/Framework/ServiceJobConfig.cpp | 2 +- .../AWSResourceMappingManager.cpp | 2 +- .../AWSResourceMappingUtils.cpp | 2 +- .../ScriptCanvas/AWSScriptBehaviorDynamoDB.cpp | 2 +- .../ScriptCanvas/AWSScriptBehaviorLambda.cpp | 2 +- .../ScriptCanvas/AWSScriptBehaviorS3.cpp | 2 +- .../AWSScriptBehaviorsComponent.cpp | 2 +- .../Code/Tests/AWSCoreSystemComponentTest.cpp | 2 +- Gems/AWSCore/Code/Tests/AWSCoreTest.cpp | 2 +- .../Configuration/AWSCoreConfigurationTest.cpp | 2 +- .../AWSCVarCredentialHandlerTest.cpp | 2 +- .../Tests/Credential/AWSCredentialBusTest.cpp | 2 +- .../AWSDefaultCredentialHandlerTest.cpp | 2 +- .../Tests/Editor/AWSCoreEditorManagerTest.cpp | 2 +- .../AWSCoreEditorSystemComponentTest.cpp | 2 +- .../Code/Tests/Editor/AWSCoreEditorTest.cpp | 2 +- .../AWSAttributionServiceApiTest.cpp | 2 +- .../AWSCoreAttributionManagerTest.cpp | 2 +- .../AWSCoreAttributionMetricTest.cpp | 2 +- .../AWSCoreAttributionSystemComponentTest.cpp | 2 +- .../awscore_editor_tests_linux_files.cmake | 2 +- .../Mac/awscore_editor_tests_mac_files.cmake | 2 +- .../awscore_editor_tests_windows_files.cmake | 2 +- .../Tests/Editor/UI/AWSCoreEditorMenuTest.cpp | 2 +- .../Tests/Editor/UI/AWSCoreEditorUIFixture.h | 2 +- .../AWSCoreResourceMappingToolActionTest.cpp | 2 +- .../Framework/AWSApiClientJobConfigTest.cpp | 2 +- .../Tests/Framework/AWSApiJobConfigTest.cpp | 2 +- .../Tests/Framework/HttpRequestJobTest.cpp | 2 +- .../Tests/Framework/JsonObjectHandlerTest.cpp | 2 +- .../Code/Tests/Framework/JsonWriterTest.cpp | 2 +- .../Tests/Framework/RequestBuilderTest.cpp | 2 +- .../Framework/ServiceClientJobConfigTest.cpp | 2 +- .../Tests/Framework/ServiceJobUtilTest.cpp | 2 +- .../Tests/Framework/ServiceRequestJobTest.cpp | 2 +- Gems/AWSCore/Code/Tests/Framework/UtilTest.cpp | 2 +- .../AWSResourceMappingManagerTest.cpp | 2 +- .../AWSResourceMappingUtilsTest.cpp | 2 +- .../AWSScriptBehaviorDynamoDBTest.cpp | 2 +- .../AWSScriptBehaviorLambdaTest.cpp | 2 +- .../ScriptCanvas/AWSScriptBehaviorS3Test.cpp | 2 +- .../AWSScriptBehaviorsComponentTest.cpp | 2 +- .../Code/Tests/TestFramework/AWSCoreFixture.h | 2 +- .../ResourceMappingTool/controller/__init__.py | 2 +- .../controller/error_controller.py | 2 +- .../controller/import_resources_controller.py | 2 +- .../controller/view_edit_controller.py | 2 +- .../ResourceMappingTool/manager/__init__.py | 2 +- .../manager/configuration_manager.py | 2 +- .../manager/controller_manager.py | 2 +- .../manager/thread_manager.py | 2 +- .../manager/view_manager.py | 2 +- .../ResourceMappingTool/model/__init__.py | 2 +- .../model/basic_resource_attributes.py | 2 +- .../ResourceMappingTool/model/configuration.py | 2 +- .../ResourceMappingTool/model/constants.py | 2 +- .../model/error_messages.py | 2 +- .../model/notification_label_text.py | 2 +- .../model/resource_abstract_model.py | 2 +- .../model/resource_mapping_attributes.py | 2 +- .../model/resource_proxy_model.py | 2 +- .../model/resource_table_model.py | 2 +- .../model/resource_tree_model.py | 2 +- .../model/view_size_constants.py | 2 +- .../multithread/__init__.py | 2 +- .../ResourceMappingTool/multithread/worker.py | 2 +- .../resource_mapping_tool.py | 2 +- .../ResourceMappingTool/style/__init__.py | 2 +- .../style/azqtcomponents_resources.py | 2 +- .../style/base_style_sheet.qss | 2 +- .../style/editormainwindow_resources.py | 2 +- .../ResourceMappingTool/tests/__init__.py | 2 +- .../ResourceMappingTool/tests/unit/__init__.py | 2 +- .../tests/unit/controller/__init__.py | 2 +- .../test_import_resources_controller.py | 2 +- .../controller/test_view_edit_controller.py | 2 +- .../tests/unit/manager/__init__.py | 2 +- .../unit/manager/test_configuration_manager.py | 2 +- .../unit/manager/test_controller_manager.py | 2 +- .../tests/unit/manager/test_thread_manager.py | 2 +- .../tests/unit/manager/test_view_manager.py | 2 +- .../tests/unit/multithread/__init__.py | 2 +- .../tests/unit/multithread/test_worker.py | 2 +- .../tests/unit/utils/__init__.py | 2 +- .../tests/unit/utils/test_aws_utils.py | 2 +- .../tests/unit/utils/test_environment_utils.py | 2 +- .../tests/unit/utils/test_file_utils.py | 2 +- .../tests/unit/utils/test_json_utils.py | 2 +- .../ResourceMappingTool/utils/__init__.py | 2 +- .../ResourceMappingTool/utils/aws_utils.py | 2 +- .../utils/environment_utils.py | 2 +- .../ResourceMappingTool/utils/file_utils.py | 2 +- .../ResourceMappingTool/utils/json_utils.py | 2 +- .../Tools/ResourceMappingTool/view/__init__.py | 2 +- .../view/common_view_components.py | 2 +- .../ResourceMappingTool/view/error_page.py | 2 +- .../view/import_resources_page.py | 2 +- .../ResourceMappingTool/view/view_edit_page.py | 2 +- Gems/AWSCore/Code/awscore_editor_files.cmake | 2 +- .../Code/awscore_editor_shared_files.cmake | 2 +- .../Code/awscore_editor_tests_files.cmake | 2 +- Gems/AWSCore/Code/awscore_files.cmake | 2 +- .../awscore_resourcemappingtool_files.cmake | 2 +- Gems/AWSCore/Code/awscore_shared_files.cmake | 2 +- Gems/AWSCore/Code/awscore_tests_files.cmake | 2 +- Gems/AWSCore/cdk/app.py | 2 +- Gems/AWSCore/cdk/constants.py | 2 +- Gems/AWSCore/cdk/core/aws_core.py | 2 +- Gems/AWSCore/cdk/core/core_stack.py | 2 +- Gems/AWSCore/cdk/core_stack_properties.py | 2 +- Gems/AWSCore/cdk/example/__init__.py | 2 +- Gems/AWSCore/cdk/example/auth.py | 2 +- .../cdk/example/dynamodb_table_seeder.py | 2 +- .../cdk/example/example_resources_stack.py | 2 +- .../cdk/example/lambda/lambda-handler.py | 2 +- Gems/AWSMetrics/CMakeLists.txt | 2 +- Gems/AWSMetrics/Code/CMakeLists.txt | 2 +- .../Code/Include/Private/AWSMetricsConstant.h | 2 +- .../Code/Include/Private/AWSMetricsModule.h | 2 +- .../Include/Private/AWSMetricsServiceApi.h | 2 +- .../Private/AWSMetricsSystemComponent.h | 2 +- .../Code/Include/Private/ClientConfiguration.h | 2 +- .../Include/Private/DefaultClientIdProvider.h | 2 +- .../Code/Include/Private/GlobalStatistics.h | 2 +- .../Code/Include/Private/IdentityProvider.h | 2 +- .../Code/Include/Private/MetricsAttribute.h | 2 +- .../Code/Include/Private/MetricsEvent.h | 2 +- .../Code/Include/Private/MetricsEventBuilder.h | 2 +- .../Code/Include/Private/MetricsManager.h | 2 +- .../Code/Include/Private/MetricsQueue.h | 2 +- .../Code/Include/Public/AWSMetricsBus.h | 2 +- .../Code/Source/AWSMetricsModule.cpp | 2 +- .../Code/Source/AWSMetricsServiceApi.cpp | 2 +- .../Code/Source/AWSMetricsSystemComponent.cpp | 2 +- .../Code/Source/ClientConfiguration.cpp | 2 +- .../Code/Source/DefaultClientIdProvider.cpp | 2 +- .../Code/Source/IdentityProvider.cpp | 2 +- .../Code/Source/MetricsAttribute.cpp | 2 +- Gems/AWSMetrics/Code/Source/MetricsEvent.cpp | 2 +- .../Code/Source/MetricsEventBuilder.cpp | 2 +- Gems/AWSMetrics/Code/Source/MetricsManager.cpp | 2 +- Gems/AWSMetrics/Code/Source/MetricsQueue.cpp | 2 +- Gems/AWSMetrics/Code/Tests/AWSMetricsGemMock.h | 2 +- .../Code/Tests/AWSMetricsServiceApiTest.cpp | 2 +- .../Tests/AWSMetricsSystemComponentTest.cpp | 2 +- Gems/AWSMetrics/Code/Tests/AWSMetricsTest.cpp | 2 +- .../Code/Tests/ClientIdProviderTest.cpp | 2 +- .../Code/Tests/MetricsAttributeTest.cpp | 2 +- .../Code/Tests/MetricsEventBuilderTest.cpp | 2 +- .../AWSMetrics/Code/Tests/MetricsEventTest.cpp | 2 +- .../Code/Tests/MetricsManagerTest.cpp | 2 +- .../AWSMetrics/Code/Tests/MetricsQueueTest.cpp | 2 +- Gems/AWSMetrics/Code/awsmetrics_files.cmake | 2 +- .../Code/awsmetrics_shared_files.cmake | 2 +- .../Code/awsmetrics_tests_files.cmake | 2 +- Gems/AWSMetrics/cdk/app.py | 2 +- Gems/AWSMetrics/cdk/aws_metrics/__init__.py | 2 +- Gems/AWSMetrics/cdk/aws_metrics/auth.py | 2 +- .../cdk/aws_metrics/aws_metrics_constants.py | 2 +- .../cdk/aws_metrics/aws_metrics_construct.py | 2 +- .../cdk/aws_metrics/aws_metrics_stack.py | 2 +- .../cdk/aws_metrics/batch_analytics.py | 2 +- .../cdk/aws_metrics/batch_processing.py | 2 +- Gems/AWSMetrics/cdk/aws_metrics/dashboard.py | 2 +- .../cdk/aws_metrics/data_ingestion.py | 2 +- .../cdk/aws_metrics/data_lake_integration.py | 2 +- .../analytics_processing.py | 2 +- .../events_processing.py | 2 +- .../cdk/aws_metrics/layout_widget_construct.py | 2 +- .../policy_statements_builder/__init__.py | 2 +- .../admin_policy_statements_builder.py | 2 +- .../policy_statements_builder_interface.py | 2 +- .../user_policy_statements_builder.py | 2 +- .../aws_metrics/real_time_data_processing.py | 2 +- Gems/Achievements/CMakeLists.txt | 2 +- Gems/Achievements/Code/CMakeLists.txt | 2 +- .../Achievements/AchievementNotificationBus.h | 2 +- .../Achievements/AchievementRequestBus.h | 2 +- .../Code/Source/AchievementsModule.cpp | 2 +- .../Source/AchievementsSystemComponent.cpp | 2 +- .../Code/Source/AchievementsSystemComponent.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Platform/AppleTV/platform_appletv.cmake | 2 +- ...hievementsSystemComponent_Unimplemented.cpp | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Achievements/Code/achievements_files.cmake | 2 +- .../Code/achievements_shared_files.cmake | 2 +- Gems/AssetMemoryAnalyzer/CMakeLists.txt | 2 +- Gems/AssetMemoryAnalyzer/Code/CMakeLists.txt | 2 +- .../AssetMemoryAnalyzerBus.h | 2 +- .../Code/Source/AssetMemoryAnalyzer.cpp | 2 +- .../Code/Source/AssetMemoryAnalyzer.h | 2 +- .../Code/Source/AssetMemoryAnalyzerModule.cpp | 2 +- .../AssetMemoryAnalyzerSystemComponent.cpp | 2 +- .../AssetMemoryAnalyzerSystemComponent.h | 2 +- .../Source/AssetMemoryAnalyzer_precompiled.h | 2 +- .../Code/Source/DebugImGUI.cpp | 2 +- .../Code/Source/DebugImGUI.h | 2 +- .../Code/Source/ExportCSV.cpp | 2 +- .../Code/Source/ExportCSV.h | 2 +- .../Code/Source/ExportJSON.cpp | 2 +- .../Code/Source/ExportJSON.h | 2 +- .../Code/Source/FormatUtils.cpp | 2 +- .../Code/Source/FormatUtils.h | 2 +- .../Code/Tests/AssetMemoryAnalyzerTest.cpp | 2 +- .../Code/assetmemoryanalyzer_files.cmake | 2 +- .../assetmemoryanalyzer_shared_files.cmake | 2 +- .../Code/assetmemoryanalyzer_tests_files.cmake | 2 +- Gems/AssetValidation/CMakeLists.txt | 2 +- Gems/AssetValidation/Code/CMakeLists.txt | 2 +- .../AssetValidation/AssetValidationBus.h | 2 +- .../Code/Source/AssetSeedUtil.cpp | 2 +- .../Code/Source/AssetSeedUtil.h | 2 +- .../Code/Source/AssetSystemTestCommands.cpp | 2 +- .../Code/Source/AssetSystemTestCommands.h | 2 +- .../Code/Source/AssetValidationModule.cpp | 2 +- .../Source/AssetValidationSystemComponent.cpp | 2 +- .../Source/AssetValidationSystemComponent.h | 2 +- .../Code/Tests/AssetValidationTest.cpp | 2 +- .../Code/Tests/AssetValidationTestShared.h | 2 +- .../Code/assetvalidation_files.cmake | 2 +- .../Code/assetvalidation_shared_files.cmake | 2 +- .../Code/assetvalidation_tests_files.cmake | 2 +- Gems/Atom/Asset/CMakeLists.txt | 2 +- .../Asset/ImageProcessingAtom/CMakeLists.txt | 2 +- .../ImageProcessingAtom/Code/CMakeLists.txt | 2 +- .../Include/Atom/ImageProcessing/ImageObject.h | 2 +- .../Atom/ImageProcessing/ImageProcessingBus.h | 2 +- .../ImageProcessing/ImageProcessingEditorBus.h | 2 +- .../Atom/ImageProcessing/PixelFormats.h | 2 +- .../BuilderSettings/BuilderSettingManager.cpp | 2 +- .../BuilderSettings/BuilderSettingManager.h | 2 +- .../Source/BuilderSettings/BuilderSettings.cpp | 2 +- .../Source/BuilderSettings/BuilderSettings.h | 2 +- .../Source/BuilderSettings/CubemapSettings.cpp | 2 +- .../Source/BuilderSettings/CubemapSettings.h | 2 +- .../BuilderSettings/ImageProcessingDefines.h | 2 +- .../Source/BuilderSettings/MipmapSettings.cpp | 2 +- .../Source/BuilderSettings/MipmapSettings.h | 2 +- .../Source/BuilderSettings/PlatformSettings.h | 2 +- .../Source/BuilderSettings/PresetSettings.cpp | 2 +- .../Source/BuilderSettings/PresetSettings.h | 2 +- .../Source/BuilderSettings/TextureSettings.cpp | 2 +- .../Source/BuilderSettings/TextureSettings.h | 2 +- .../Code/Source/Compressors/CTSquisher.cpp | 2 +- .../Code/Source/Compressors/CTSquisher.h | 2 +- .../Code/Source/Compressors/Compressor.cpp | 2 +- .../Code/Source/Compressors/Compressor.h | 2 +- .../CryTextureSquisher/ColorBlockRGBA4x4c.cpp | 2 +- .../CryTextureSquisher/ColorBlockRGBA4x4c.h | 2 +- .../CryTextureSquisher/ColorBlockRGBA4x4f.cpp | 2 +- .../CryTextureSquisher/ColorBlockRGBA4x4f.h | 2 +- .../CryTextureSquisher/ColorBlockRGBA4x4s.cpp | 2 +- .../CryTextureSquisher/ColorBlockRGBA4x4s.h | 2 +- .../CryTextureSquisher/ColorTypes.h | 2 +- .../CryTextureSquisher/CryTextureSquisher.cpp | 2 +- .../CryTextureSquisher/CryTextureSquisher.h | 2 +- .../Code/Source/Compressors/ETC2.cpp | 2 +- .../Code/Source/Compressors/ETC2.h | 2 +- .../Compressors/ISPCTextureCompressor.cpp | 2 +- .../Source/Compressors/ISPCTextureCompressor.h | 2 +- .../Code/Source/Compressors/PVRTC.cpp | 2 +- .../Code/Source/Compressors/PVRTC.h | 2 +- .../Code/Source/Converters/AlphaCoverage.cpp | 2 +- .../Code/Source/Converters/ColorChart.cpp | 2 +- .../Source/Converters/ConvertPixelFormat.cpp | 2 +- .../Code/Source/Converters/Cubemap.cpp | 2 +- .../Code/Source/Converters/Cubemap.h | 2 +- .../Code/Source/Converters/FIR-Filter.cpp | 2 +- .../Code/Source/Converters/FIR-Weights.cpp | 2 +- .../Code/Source/Converters/FIR-Weights.h | 2 +- .../Code/Source/Converters/FIR-Windows.h | 2 +- .../Code/Source/Converters/Gamma.cpp | 2 +- .../Code/Source/Converters/HighPass.cpp | 2 +- .../Code/Source/Converters/Histogram.cpp | 2 +- .../Code/Source/Converters/Histogram.h | 2 +- .../Code/Source/Converters/Normalize.cpp | 2 +- .../Code/Source/Converters/PixelOperation.cpp | 2 +- .../Code/Source/Converters/PixelOperation.h | 2 +- .../Code/Source/Editor/EditorCommon.cpp | 2 +- .../Code/Source/Editor/EditorCommon.h | 2 +- .../Code/Source/Editor/ImagePopup.cpp | 2 +- .../Code/Source/Editor/ImagePopup.h | 2 +- .../Code/Source/Editor/MipmapSettingWidget.cpp | 2 +- .../Code/Source/Editor/MipmapSettingWidget.h | 2 +- .../Code/Source/Editor/PresetInfoPopup.cpp | 2 +- .../Code/Source/Editor/PresetInfoPopup.h | 2 +- .../Editor/ResolutionSettingItemWidget.cpp | 2 +- .../Editor/ResolutionSettingItemWidget.h | 2 +- .../Source/Editor/ResolutionSettingWidget.cpp | 2 +- .../Source/Editor/ResolutionSettingWidget.h | 2 +- .../Editor/TexturePresetSelectionWidget.cpp | 2 +- .../Editor/TexturePresetSelectionWidget.h | 2 +- .../Source/Editor/TexturePreviewWidget.cpp | 2 +- .../Code/Source/Editor/TexturePreviewWidget.h | 2 +- .../Source/Editor/TexturePropertyEditor.cpp | 2 +- .../Code/Source/Editor/TexturePropertyEditor.h | 2 +- .../Code/Source/ImageBuilderBaseType.h | 2 +- .../Code/Source/ImageBuilderComponent.cpp | 2 +- .../Code/Source/ImageBuilderComponent.h | 2 +- .../Code/Source/ImageLoader/DdsLoader.cpp | 2 +- .../Code/Source/ImageLoader/ExrLoader.cpp | 2 +- .../Code/Source/ImageLoader/ImageLoaders.cpp | 2 +- .../Code/Source/ImageLoader/ImageLoaders.h | 2 +- .../Code/Source/ImageLoader/QtImageLoader.cpp | 2 +- .../Code/Source/ImageLoader/TIFFLoader.cpp | 2 +- .../Code/Source/ImageProcessingModule.cpp | 2 +- .../Source/ImageProcessingSystemComponent.cpp | 2 +- .../Source/ImageProcessingSystemComponent.h | 2 +- .../Code/Source/ImageProcessing_precompiled.h | 2 +- .../Android/ImageProcessing_Traits_Android.h | 2 +- .../Android/ImageProcessing_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- ...ageprocessingatom_editor_static_clang.cmake | 2 +- ...mageprocessingatom_editor_static_msvc.cmake | 2 +- .../Linux/ImageProcessing_Traits_Linux.h | 2 +- .../Linux/ImageProcessing_Traits_Platform.h | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/ImageProcessing_Traits_Mac.h | 2 +- .../Mac/ImageProcessing_Traits_Platform.h | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/ImageProcessing_Traits_Platform.h | 2 +- .../Windows/ImageProcessing_Traits_Windows.h | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/ImageProcessing_Traits_Platform.h | 2 +- .../Platform/iOS/ImageProcessing_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Code/Source/Previewer/ImagePreviewer.cpp | 2 +- .../Code/Source/Previewer/ImagePreviewer.h | 2 +- .../Source/Previewer/ImagePreviewerFactory.cpp | 2 +- .../Source/Previewer/ImagePreviewerFactory.h | 2 +- .../Code/Source/Processing/AzDXGIFormat.h | 2 +- .../Code/Source/Processing/DDSHeader.h | 2 +- .../Source/Processing/ImageAssetProducer.cpp | 2 +- .../Source/Processing/ImageAssetProducer.h | 2 +- .../Code/Source/Processing/ImageConvert.cpp | 2 +- .../Code/Source/Processing/ImageConvert.h | 2 +- .../Code/Source/Processing/ImageConvertJob.cpp | 2 +- .../Code/Source/Processing/ImageConvertJob.h | 2 +- .../Code/Source/Processing/ImageFlags.h | 2 +- .../Code/Source/Processing/ImageObjectImpl.cpp | 2 +- .../Code/Source/Processing/ImageObjectImpl.h | 2 +- .../Code/Source/Processing/ImagePreview.cpp | 2 +- .../Code/Source/Processing/ImagePreview.h | 2 +- .../Code/Source/Processing/ImageToProcess.h | 2 +- .../Code/Source/Processing/PixelFormatInfo.cpp | 2 +- .../Code/Source/Processing/PixelFormatInfo.h | 2 +- .../Code/Source/Processing/Utils.cpp | 2 +- .../Code/Source/Processing/Utils.h | 2 +- .../Code/Source/Thumbnail/ImageThumbnail.cpp | 2 +- .../Code/Source/Thumbnail/ImageThumbnail.h | 2 +- .../ImageThumbnailSystemComponent.cpp | 2 +- .../Thumbnail/ImageThumbnailSystemComponent.h | 2 +- .../Code/Tests/ImageProcessing_Test.cpp | 2 +- .../Code/imageprocessing_files.cmake | 2 +- .../Code/imageprocessing_tests_files.cmake | 2 +- .../imageprocessingatom_headers_files.cmake | 2 +- .../imageprocessingatom_shared_files.cmake | 2 +- .../External/CubeMapGen/CImageSurface.cpp | 2 +- .../External/CubeMapGen/VectorMacros.h | 2 +- Gems/Atom/Asset/Shader/CMakeLists.txt | 2 +- .../Platform/Android/Vulkan/AzslcHeader.azsli | 2 +- .../Android/Vulkan/PlatformHeader.hlsli | 2 +- .../AZSL/Platform/Mac/Metal/AzslcHeader.azsli | 2 +- .../Platform/Mac/Metal/PlatformHeader.hlsli | 2 +- .../AZSL/Platform/Mac/Null/AzslcHeader.azsli | 2 +- .../Platform/Windows/DX12/AzslcHeader.azsli | 2 +- .../Platform/Windows/DX12/PlatformHeader.hlsli | 2 +- .../Platform/Windows/Null/AzslcHeader.azsli | 2 +- .../Platform/Windows/Vulkan/AzslcHeader.azsli | 2 +- .../Windows/Vulkan/PlatformHeader.hlsli | 2 +- .../AZSL/Platform/iOS/Metal/AzslcHeader.azsli | 2 +- .../Platform/iOS/Metal/PlatformHeader.hlsli | 2 +- Gems/Atom/Asset/Shader/Code/CMakeLists.txt | 2 +- .../AtomShaderCapabilitiesConfigFile.cpp | 2 +- .../Editor/AtomShaderCapabilitiesConfigFile.h | 2 +- .../Code/Source/Editor/AtomShaderConfig.cpp | 2 +- .../Code/Source/Editor/AtomShaderConfig.h | 2 +- .../Shader/Code/Source/Editor/AzslBuilder.cpp | 2 +- .../Shader/Code/Source/Editor/AzslBuilder.h | 2 +- .../Shader/Code/Source/Editor/AzslCompiler.cpp | 2 +- .../Shader/Code/Source/Editor/AzslCompiler.h | 2 +- .../Asset/Shader/Code/Source/Editor/AzslData.h | 2 +- .../Source/Editor/AzslShaderBuilderModule.cpp | 2 +- .../AzslShaderBuilderSystemComponent.cpp | 2 +- .../Editor/AzslShaderBuilderSystemComponent.h | 2 +- .../Source/Editor/CommonFiles/CommonTypes.cpp | 2 +- .../Source/Editor/CommonFiles/CommonTypes.h | 2 +- .../Editor/CommonFiles/GlobalBuildOptions.cpp | 2 +- .../Editor/CommonFiles/GlobalBuildOptions.h | 2 +- .../Source/Editor/CommonFiles/Preprocessor.cpp | 2 +- .../Source/Editor/CommonFiles/Preprocessor.h | 2 +- .../Source/Editor/PrecompiledShaderBuilder.cpp | 2 +- .../Source/Editor/PrecompiledShaderBuilder.h | 2 +- .../Code/Source/Editor/ShaderAssetBuilder.cpp | 2 +- .../Code/Source/Editor/ShaderAssetBuilder.h | 2 +- .../Source/Editor/ShaderBuilderUtility.cpp | 2 +- .../Code/Source/Editor/ShaderBuilderUtility.h | 2 +- .../Editor/ShaderPlatformInterfaceRequest.h | 2 +- .../Editor/ShaderVariantAssetBuilder.cpp | 2 +- .../Source/Editor/ShaderVariantAssetBuilder.h | 2 +- .../Code/Source/Editor/SrgLayoutBuilder.cpp | 2 +- .../Code/Source/Editor/SrgLayoutBuilder.h | 2 +- .../Code/Source/Editor/SrgLayoutUtility.cpp | 2 +- .../Code/Source/Editor/SrgLayoutUtility.h | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Android/ShaderBuilder_Traits_Android.h | 2 +- .../Android/ShaderBuilder_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Clang/atom_asset_shader_static_clang.cmake | 2 +- .../MSVC/atom_asset_shader_static_msvc.cmake | 2 +- .../Unimplemented/ModuleStub_Unimplemented.cpp | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Linux/ShaderBuilder_Traits_Linux.h | 2 +- .../Linux/ShaderBuilder_Traits_Platform.h | 2 +- .../Linux/platform_builders_linux.cmake | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Mac/ShaderBuilder_Traits_Mac.h | 2 +- .../Mac/ShaderBuilder_Traits_Platform.h | 2 +- .../Platform/Mac/platform_builders_mac.cmake | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Windows/ShaderBuilder_Traits_Platform.h | 2 +- .../Windows/ShaderBuilder_Traits_Windows.h | 2 +- .../Windows/platform_builders_windows.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../iOS/ShaderBuilder_Traits_Platform.h | 2 +- .../Platform/iOS/ShaderBuilder_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Tests/Common/ShaderBuilderTestFixture.cpp | 2 +- .../Tests/Common/ShaderBuilderTestFixture.h | 2 +- .../Tests/SupervariantCmdArgumentTests.cpp | 2 +- .../atom_asset_shader_builders_files.cmake | 2 +- ...om_asset_shader_builders_shared_files.cmake | 2 +- ...atom_asset_shader_builders_stub_files.cmake | 2 +- ...tom_asset_shader_builders_tests_files.cmake | 2 +- Gems/Atom/Bootstrap/CMakeLists.txt | 2 +- Gems/Atom/Bootstrap/Code/CMakeLists.txt | 2 +- .../Atom/Bootstrap/BootstrapNotificationBus.h | 2 +- .../Atom/Bootstrap/BootstrapRequestBus.h | 2 +- .../Include/Atom/Bootstrap/DefaultWindowBus.h | 2 +- .../Bootstrap/Code/Source/BootstrapModule.cpp | 2 +- .../Code/Source/BootstrapSystemComponent.cpp | 2 +- .../Code/Source/BootstrapSystemComponent.h | 2 +- Gems/Atom/Bootstrap/Code/bootstrap_files.cmake | 2 +- .../Code/bootstrap_headers_files.cmake | 2 +- Gems/Atom/CMakeLists.txt | 2 +- Gems/Atom/Component/CMakeLists.txt | 2 +- Gems/Atom/Component/DebugCamera/CMakeLists.txt | 2 +- .../Component/DebugCamera/Code/CMakeLists.txt | 2 +- .../DebugCamera/ArcBallControllerBus.h | 2 +- .../DebugCamera/ArcBallControllerComponent.h | 2 +- .../Component/DebugCamera/CameraComponent.h | 2 +- .../DebugCamera/CameraControllerBus.h | 2 +- .../DebugCamera/CameraControllerComponent.h | 2 +- .../DebugCamera/NoClipControllerBus.h | 2 +- .../DebugCamera/NoClipControllerComponent.h | 2 +- .../Code/Source/ArcBallControllerComponent.cpp | 2 +- .../Code/Source/CameraComponent.cpp | 2 +- .../Code/Source/CameraControllerComponent.cpp | 2 +- .../Code/Source/DebugCameraUtils.cpp | 2 +- .../DebugCamera/Code/Source/DebugCameraUtils.h | 2 +- .../DebugCamera/Code/Source/Module.cpp | 2 +- .../Code/Source/NoClipControllerComponent.cpp | 2 +- .../atom_component_debugcamera_files.cmake | 2 +- ...om_component_debugcamera_shared_files.cmake | 2 +- Gems/Atom/Feature/CMakeLists.txt | 2 +- .../Materials/Special/ShadowCatcher.azsl | 2 +- .../Materials/Types/EnhancedPBR_Common.azsli | 2 +- .../Types/EnhancedPBR_DepthPass_WithPS.azsl | 2 +- .../Types/EnhancedPBR_ForwardPass.azsl | 2 +- .../Types/EnhancedPBR_Shadowmap_WithPS.azsl | 2 +- .../Types/EnhancedPBR_SubsurfaceState.lua | 2 +- .../Types/MaterialInputs/AlphaInput.azsli | 2 +- .../Types/MaterialInputs/BaseColorInput.azsli | 2 +- .../Types/MaterialInputs/ClearCoatInput.azsli | 2 +- .../MaterialInputs/DetailMapsCommonFunctor.lua | 2 +- .../Types/MaterialInputs/DetailMapsInput.azsli | 2 +- .../Types/MaterialInputs/EmissiveInput.azsli | 2 +- .../Types/MaterialInputs/MetallicInput.azsli | 2 +- .../Types/MaterialInputs/NormalInput.azsli | 2 +- .../Types/MaterialInputs/OcclusionInput.azsli | 2 +- .../Types/MaterialInputs/ParallaxInput.azsli | 2 +- .../Types/MaterialInputs/RoughnessInput.azsli | 2 +- .../Types/MaterialInputs/SpecularInput.azsli | 2 +- .../Types/MaterialInputs/SubsurfaceInput.azsli | 2 +- .../MaterialInputs/TransmissionInput.azsli | 2 +- .../Types/MaterialInputs/UvSetCount.azsli | 2 +- .../Common/Assets/Materials/Types/Skin.azsl | 2 +- .../Assets/Materials/Types/Skin_Common.azsli | 2 +- .../Materials/Types/Skin_WrinkleMaps.lua | 2 +- ...ardMultilayerPBR_ClearCoatEnableFeature.lua | 2 +- .../Types/StandardMultilayerPBR_Common.azsli | 2 +- ...StandardMultilayerPBR_DepthPass_WithPS.azsl | 2 +- .../StandardMultilayerPBR_Displacement.lua | 2 +- .../StandardMultilayerPBR_ForwardPass.azsl | 2 +- .../StandardMultilayerPBR_LayerEnable.lua | 2 +- .../StandardMultilayerPBR_ShaderEnable.lua | 2 +- ...StandardMultilayerPBR_Shadowmap_WithPS.azsl | 2 +- .../StandardPBR_ClearCoatEnableFeature.lua | 2 +- .../Types/StandardPBR_ClearCoatState.lua | 2 +- .../Materials/Types/StandardPBR_Common.azsli | 2 +- .../Types/StandardPBR_DepthPass_WithPS.azsl | 2 +- .../Types/StandardPBR_EmissiveState.lua | 2 +- .../Types/StandardPBR_ForwardPass.azsl | 2 +- .../StandardPBR_HandleOpacityDoubleSided.lua | 2 +- .../Types/StandardPBR_HandleOpacityMode.lua | 2 +- .../Types/StandardPBR_LowEndForward.azsl | 2 +- .../Types/StandardPBR_ParallaxState.lua | 2 +- .../Materials/Types/StandardPBR_Roughness.lua | 2 +- .../Types/StandardPBR_ShaderEnable.lua | 2 +- .../Types/StandardPBR_Shadowmap_WithPS.azsl | 2 +- .../material_property_overrides_demo.lua | 2 +- .../material_property_overrides_demo.py | 2 +- .../ShaderLib/Atom/Features/BlendUtility.azsli | 2 +- .../AcesCg_To_LinearSrgb.azsli | 2 +- .../GeneratedTransforms/Aces_To_AcesCg.azsli | 2 +- .../CalculateLuminance_AcesCg.azsli | 2 +- .../CalculateLuminance_LinearSrgb.azsli | 2 +- .../LinearSrgb_To_AcesCg.azsli | 2 +- .../LinearSrgb_To_Srgb.azsli | 2 +- .../Srgb_To_LinearSrgb.azsli | 2 +- .../ColorManagement/TransformColor.azsli | 2 +- .../Features/CoreLights/PhotometricValue.azsli | 2 +- .../Features/Decals/DecalTextureUtil.azsli | 2 +- .../Atom/Features/IndirectRendering.azsli | 2 +- .../LightCulling/LightCullingShared.azsli | 2 +- .../LightCullingTileIterator.azsli | 2 +- .../ShaderLib/Atom/Features/Math/Filter.azsli | 2 +- .../Atom/Features/Math/FilterPassSrg.azsli | 2 +- .../Atom/Features/Math/IntersectionTests.azsli | 2 +- .../Atom/Features/MatrixUtility.azsli | 2 +- .../MorphTargets/MorphTargetCompression.azsli | 2 +- .../Atom/Features/PBR/AlphaUtils.azsli | 2 +- .../Atom/Features/PBR/BackLighting.azsli | 2 +- .../ShaderLib/Atom/Features/PBR/Decals.azsli | 2 +- .../Atom/Features/PBR/DefaultObjectSrg.azsli | 2 +- .../Atom/Features/PBR/ForwardPassOutput.azsli | 2 +- .../Atom/Features/PBR/ForwardPassSrg.azsli | 2 +- .../PBR/ForwardSubsurfacePassOutput.azsli | 2 +- .../Atom/Features/PBR/Hammersley.azsli | 2 +- .../PBR/Lighting/DualSpecularLighting.azsli | 2 +- .../PBR/Lighting/EnhancedLighting.azsli | 2 +- .../Features/PBR/Lighting/LightingData.azsli | 2 +- .../Features/PBR/Lighting/SkinLighting.azsli | 2 +- .../PBR/Lighting/StandardLighting.azsli | 2 +- .../Atom/Features/PBR/LightingOptions.azsli | 2 +- .../Atom/Features/PBR/LightingUtils.azsli | 2 +- .../Features/PBR/Lights/CapsuleLight.azsli | 2 +- .../Features/PBR/Lights/DirectionalLight.azsli | 2 +- .../Atom/Features/PBR/Lights/DiskLight.azsli | 2 +- .../Atom/Features/PBR/Lights/Ibl.azsli | 2 +- .../Features/PBR/Lights/LightTypesCommon.azsli | 2 +- .../Atom/Features/PBR/Lights/Lights.azsli | 2 +- .../Atom/Features/PBR/Lights/PointLight.azsli | 2 +- .../Features/PBR/Lights/PolygonLight.azsli | 2 +- .../Atom/Features/PBR/Lights/QuadLight.azsli | 2 +- .../Features/PBR/Lights/SimplePointLight.azsli | 2 +- .../Features/PBR/Lights/SimpleSpotLight.azsli | 2 +- .../Atom/Features/PBR/Microfacet/Brdf.azsli | 2 +- .../Atom/Features/PBR/Microfacet/Fresnel.azsli | 2 +- .../Atom/Features/PBR/Microfacet/Ggx.azsli | 2 +- .../PBR/Surfaces/AnisotropicSurfaceData.azsli | 2 +- .../PBR/Surfaces/BasePbrSurfaceData.azsli | 2 +- .../PBR/Surfaces/ClearCoatSurfaceData.azsli | 2 +- .../PBR/Surfaces/DualSpecularSurface.azsli | 2 +- .../PBR/Surfaces/EnhancedSurface.azsli | 2 +- .../Features/PBR/Surfaces/SkinSurface.azsli | 2 +- .../PBR/Surfaces/StandardSurface.azsli | 2 +- .../PBR/Surfaces/TransmissionSurfaceData.azsli | 2 +- .../Atom/Features/ParallaxMapping.azsli | 2 +- .../Atom/Features/PostProcessing/Aces.azsli | 2 +- .../AcesColorSpaceConversion.azsli | 2 +- .../PostProcessing/FullscreenPixelInfo.azsli | 2 +- .../PostProcessing/FullscreenVertex.azsli | 2 +- .../PostProcessing/FullscreenVertexInfo.azsli | 2 +- .../PostProcessing/FullscreenVertexUtil.azsli | 2 +- .../Features/PostProcessing/GlyphData.azsli | 2 +- .../Features/PostProcessing/GlyphRender.azsli | 2 +- .../PostProcessing/PostProcessUtil.azsli | 2 +- .../RayTracing/RayTracingMaterialSrg.azsli | 2 +- .../RayTracing/RayTracingMaterialUtils.azsli | 2 +- .../RayTracing/RayTracingSceneSrg.azsli | 2 +- .../RayTracing/RayTracingSceneUtils.azsli | 2 +- .../Features/ScreenSpace/ScreenSpaceUtil.azsli | 2 +- .../Atom/Features/ShaderQualityOptions.azsli | 2 +- .../Features/Shadow/BicubicPcfFilters.azsli | 2 +- .../Shadow/DirectionalLightShadow.azsli | 2 +- .../Atom/Features/Shadow/JitterTablePcf.azsli | 2 +- .../Atom/Features/Shadow/ProjectedShadow.azsli | 2 +- .../Atom/Features/Shadow/Shadow.azsli | 2 +- .../Features/Shadow/ShadowmapAtlasLib.azsli | 2 +- .../Features/SphericalHarmonicsUtility.azsli | 2 +- .../ShaderLib/Atom/Features/SrgSemantics.azsli | 2 +- .../Atom/Features/Vertex/VertexHelper.azsli | 2 +- .../CoreLights/SceneSrg.azsli | 2 +- .../CoreLights/ViewSrg.azsli | 2 +- .../ShaderResourceGroups/Decals/ViewSrg.azsli | 2 +- .../PostProcessing/SceneSrg.azsli | 2 +- .../PostProcessing/ViewSrg.azsli | 2 +- .../Assets/ShaderResourceGroups/SceneSrg.azsli | 2 +- .../ShaderResourceGroups/SceneSrgAll.azsli | 2 +- .../ShaderResourceGroups/SceneTimeSrg.azsli | 2 +- .../ShaderResourceGroups/SkyBox/SceneSrg.azsli | 2 +- .../Assets/ShaderResourceGroups/ViewSrg.azsli | 2 +- .../ShaderResourceGroups/ViewSrgAll.azsli | 2 +- .../Assets/Shaders/AuxGeom/AuxGeomObject.azsl | 2 +- .../Shaders/AuxGeom/AuxGeomObjectLit.azsl | 2 +- .../Assets/Shaders/AuxGeom/AuxGeomWorld.azsl | 2 +- .../Assets/Shaders/AuxGeom/ObjectSrg.azsli | 2 +- .../Assets/Shaders/AuxGeom/ObjectSrgLit.azsli | 2 +- .../Shaders/BRDFTexture/BRDFTextureCS.azsl | 2 +- .../CheckerboardColorResolveCS.azsl | 2 +- .../Common/Assets/Shaders/Depth/DepthPass.azsl | 2 +- .../DiffuseComposite.azsl | 2 +- .../DiffuseComposite_nomsaa.azsl | 2 +- .../DiffuseGlobalFullscreen.azsl | 2 +- .../DiffuseGlobalFullscreen_nomsaa.azsl | 2 +- .../DiffuseProbeGridDownsample.azsl | 2 +- .../DiffuseProbeGridDownsample_nomsaa.azsl | 2 +- .../Common/Assets/Shaders/ImGui/ImGui.azsl | 2 +- .../Shaders/LightCulling/LightCulling.azsl | 2 +- .../LightCulling/LightCullingHeatmap.azsl | 2 +- .../LightCulling/LightCullingRemap.azsl | 2 +- .../LightCulling/LightCullingTilePrepare.azsl | 2 +- .../Assets/Shaders/LuxCore/RenderTexture.azsl | 2 +- .../Math/GaussianFilterFloatHorizontal.azsl | 2 +- .../Math/GaussianFilterFloatVertical.azsl | 2 +- .../Shaders/MorphTargets/MorphTargetCS.azsl | 2 +- .../Shaders/MorphTargets/MorphTargetSRG.azsli | 2 +- .../MotionVector/CameraMotionVector.azsl | 2 +- .../Shaders/MotionVector/MeshMotionVector.azsl | 2 +- .../PostProcessing/AcesOutputTransformLut.azsl | 2 +- .../PostProcessing/ApplyShaperLookupTable.azsl | 2 +- .../BakeAcesOutputTransformLutCS.azsl | 2 +- .../PostProcessing/BlendColorGradingLuts.azsl | 2 +- .../Shaders/PostProcessing/BloomBlurCS.azsl | 2 +- .../PostProcessing/BloomCompositeCS.azsl | 2 +- .../PostProcessing/BloomDownsampleCS.azsl | 2 +- .../ContrastAdaptiveSharpening.azsl | 2 +- .../PostProcessing/ConvertToAcescg.azsl | 2 +- .../PostProcessing/DepthDownsample.azsl | 2 +- .../Shaders/PostProcessing/DepthOfField.azsli | 2 +- .../PostProcessing/DepthOfFieldBlurBokeh.azsl | 2 +- .../PostProcessing/DepthOfFieldComposite.azsl | 2 +- .../PostProcessing/DepthOfFieldDownSample.azsl | 2 +- .../PostProcessing/DepthOfFieldMask.azsl | 2 +- .../PostProcessing/DepthOfFieldPrepare.azsl | 2 +- .../DepthOfFieldWriteFocusDepthFromGpu.azsl | 2 +- .../PostProcessing/DepthToLinearDepth.azsl | 2 +- .../Shaders/PostProcessing/DepthUpsample.azsl | 2 +- .../PostProcessing/DiffuseSpecularMerge.azsl | 2 +- .../Shaders/PostProcessing/DisplayMapper.azsl | 2 +- .../DisplayMapperOnlyGammaCorrection.azsl | 2 +- .../DownsampleLuminanceMinAvgMaxCS.azsl | 2 +- .../PostProcessing/DownsampleMinAvgMaxCS.azsl | 2 +- .../Shaders/PostProcessing/EyeAdaptation.azsl | 2 +- .../PostProcessing/EyeAdaptationUtil.azsli | 2 +- .../FastDepthAwareBlurCommon.azsli | 2 +- .../PostProcessing/FastDepthAwareBlurHor.azsl | 2 +- .../PostProcessing/FastDepthAwareBlurVer.azsl | 2 +- .../Shaders/PostProcessing/FullscreenCopy.azsl | 2 +- .../LookModificationTransform.azsl | 2 +- .../PostProcessing/LuminanceHeatmap.azsl | 2 +- .../LuminanceHistogramCommon.azsli | 2 +- .../LuminanceHistogramGenerator.azsl | 2 +- .../PostProcessing/MSAAResolveCustom.azsl | 2 +- .../PostProcessing/MSAAResolveDepth.azsl | 2 +- .../PostProcessing/ModulateTexture.azsl | 2 +- .../PostProcessing/OutputTransform.azsl | 2 +- .../SMAABlendingWeightCalculation.azsl | 2 +- .../SMAAConvertToPerceptualColor.azsl | 2 +- .../PostProcessing/SMAAEdgeDetection.azsl | 2 +- .../SMAANeighborhoodBlending.azsl | 2 +- .../Shaders/PostProcessing/SMAAUtils.azsli | 2 +- .../ScreenSpaceSubsurfaceScatteringCS.azsl | 2 +- .../Shaders/PostProcessing/SsaoCompute.azsl | 2 +- .../Assets/Shaders/PostProcessing/Taa.azsl | 2 +- .../Shaders/PostProcessing/UniformColor.azsl | 2 +- .../Shaders/Reflections/ReflectionCommon.azsli | 2 +- .../Reflections/ReflectionComposite.azsl | 2 +- .../ReflectionComposite_nomsaa.azsl | 2 +- .../ReflectionGlobalFullscreen.azsl | 2 +- .../ReflectionGlobalFullscreen_nomsaa.azsl | 2 +- .../ReflectionProbeBlendWeight.azsl | 2 +- .../ReflectionProbeRenderCommon.azsli | 2 +- .../ReflectionProbeRenderInner.azsl | 2 +- .../ReflectionProbeRenderObjectSrg.azsli | 2 +- .../ReflectionProbeRenderOuter.azsl | 2 +- .../Reflections/ReflectionProbeStencil.azsl | 2 +- .../ReflectionScreenSpaceBlurCommon.azsli | 2 +- .../ReflectionScreenSpaceBlurHorizontal.azsl | 2 +- .../ReflectionScreenSpaceBlurVertical.azsl | 2 +- .../ReflectionScreenSpaceComposite.azsl | 2 +- .../ReflectionScreenSpaceTrace.azsl | 2 +- .../ReflectionScreenSpaceTrace.azsli | 2 +- .../Shaders/ScreenSpace/DeferredFog.azsl | 2 +- .../Shaders/Shadow/DepthExponentiation.azsl | 2 +- .../Assets/Shaders/Shadow/Shadowmap.azsl | 2 +- .../Shaders/SkinnedMesh/LinearSkinningCS.azsl | 2 +- .../SkinnedMesh/LinearSkinningPassSRG.azsli | 2 +- .../Common/Assets/Shaders/SkyBox/SkyBox.azsl | 2 +- .../Shaders/SkyBox/SkyBox_TwoOutputs.azsl | 2 +- .../atom_feature_common_asset_files.cmake | 2 +- .../Common/Assets/generate_asset_cmake.bat | 4 ++-- Gems/Atom/Feature/Common/CMakeLists.txt | 2 +- Gems/Atom/Feature/Common/Code/CMakeLists.txt | 2 +- .../ACES/AcesDisplayMapperFeatureProcessor.h | 2 +- .../Feature/Automation/AtomAutomationBus.h | 2 +- .../Feature/AuxGeom/AuxGeomFeatureProcessor.h | 2 +- .../CapsuleLightFeatureProcessorInterface.h | 2 +- .../Feature/CoreLights/CoreLightsConstants.h | 2 +- ...DirectionalLightFeatureProcessorInterface.h | 2 +- .../DiskLightFeatureProcessorInterface.h | 2 +- .../Feature/CoreLights/EsmShadowmapsPassData.h | 2 +- .../Atom/Feature/CoreLights/PhotometricValue.h | 2 +- .../PointLightFeatureProcessorInterface.h | 2 +- .../PolygonLightFeatureProcessorInterface.h | 2 +- .../QuadLightFeatureProcessorInterface.h | 2 +- .../Atom/Feature/CoreLights/ShadowConstants.h | 2 +- ...SimplePointLightFeatureProcessorInterface.h | 2 +- .../SimpleSpotLightFeatureProcessorInterface.h | 2 +- .../Decals/DecalFeatureProcessorInterface.h | 2 +- ...obalIlluminationFeatureProcessorInterface.h | 2 +- ...DiffuseProbeGridFeatureProcessorInterface.h | 2 +- .../DisplayMapper/AcesOutputTransformLutPass.h | 2 +- .../DisplayMapper/AcesOutputTransformPass.h | 2 +- .../DisplayMapper/ApplyShaperLookupTablePass.h | 2 +- .../BakeAcesOutputTransformLutPass.h | 2 +- .../DisplayMapperConfigurationDescriptor.h | 2 +- .../DisplayMapperFeatureProcessorInterface.h | 2 +- .../DisplayMapperFullScreenPass.h | 2 +- .../Feature/DisplayMapper/DisplayMapperPass.h | 2 +- .../DisplayMapper/OutputTransformPass.h | 2 +- .../Include/Atom/Feature/ImGui/ImGuiUtils.h | 2 +- .../Include/Atom/Feature/ImGui/SystemBus.h | 2 +- .../ImageBasedLightFeatureProcessor.h | 2 +- .../ImageBasedLightFeatureProcessorInterface.h | 2 +- .../Feature/LookupTable/LookupTableAsset.h | 2 +- .../Include/Atom/Feature/LuxCore/LuxCoreBus.h | 2 +- .../Atom/Feature/LuxCore/LuxCoreTexturePass.h | 2 +- .../Atom/Feature/LuxCore/RenderTexturePass.h | 2 +- .../Atom/Feature/Material/MaterialAssignment.h | 2 +- .../Feature/Material/MaterialAssignmentId.h | 2 +- .../Atom/Feature/Mesh/MeshFeatureProcessor.h | 2 +- .../Mesh/MeshFeatureProcessorInterface.h | 2 +- .../MorphTargets/MorphTargetInputBuffers.h | 2 +- ...sionCullingPlaneFeatureProcessorInterface.h | 2 +- .../Atom/Feature/ParamMacros/EndParams.inl | 2 +- .../Atom/Feature/ParamMacros/MapAllCommon.inl | 2 +- .../Feature/ParamMacros/MapOverrideCommon.inl | 2 +- .../Feature/ParamMacros/MapOverrideEmpty.inl | 2 +- .../Feature/ParamMacros/MapParamCommon.inl | 2 +- .../Atom/Feature/ParamMacros/MapParamEmpty.inl | 2 +- .../Feature/ParamMacros/ParamMacrosHowTo.inl | 2 +- .../Feature/ParamMacros/StartOverrideBlend.inl | 2 +- .../ParamMacros/StartOverrideEditorContext.inl | 2 +- .../ParamMacros/StartParamBehaviorContext.inl | 2 +- .../ParamMacros/StartParamCopySettingsFrom.inl | 2 +- .../ParamMacros/StartParamCopySettingsTo.inl | 2 +- .../ParamMacros/StartParamFunctions.inl | 2 +- .../StartParamFunctionsOverride.inl | 2 +- .../ParamMacros/StartParamFunctionsVirtual.inl | 2 +- .../Feature/ParamMacros/StartParamMembers.inl | 2 +- .../ParamMacros/StartParamSerializeContext.inl | 2 +- .../Feature/PostProcess/Bloom/BloomConstants.h | 2 +- .../Feature/PostProcess/Bloom/BloomParams.inl | 2 +- .../PostProcess/Bloom/BloomSettingsInterface.h | 2 +- .../DepthOfField/DepthOfFieldConstants.h | 2 +- .../DepthOfField/DepthOfFieldParams.inl | 2 +- .../DepthOfFieldSettingsInterface.h | 2 +- .../ExposureControl/ExposureControlConstants.h | 2 +- .../ExposureControl/ExposureControlParams.inl | 2 +- .../ExposureControlSettingsInterface.h | 2 +- .../LookModificationParams.inl | 2 +- .../LookModificationSettingsInterface.h | 2 +- .../PostFxLayerCategoriesConstants.h | 2 +- .../PostProcessFeatureProcessorInterface.h | 2 +- .../Feature/PostProcess/PostProcessParams.inl | 2 +- .../PostProcess/PostProcessSettings.inl | 2 +- .../PostProcess/PostProcessSettingsInterface.h | 2 +- .../Feature/PostProcess/Ssao/SsaoConstants.h | 2 +- .../Feature/PostProcess/Ssao/SsaoParams.inl | 2 +- .../PostProcess/Ssao/SsaoSettingsInterface.h | 2 +- .../PostProcessing/PostProcessingConstants.h | 2 +- .../SMAAFeatureProcessorInterface.h | 2 +- .../ReflectionProbeFeatureProcessor.h | 2 +- .../ReflectionProbeFeatureProcessorInterface.h | 2 +- .../Feature/ScreenSpace/DeferredFogParams.inl | 2 +- .../ScreenSpace/DeferredFogSettingsInterface.h | 2 +- .../ProjectedShadowFeatureProcessorInterface.h | 2 +- .../SkinnedMeshFeatureProcessorBus.h | 2 +- .../SkinnedMeshFeatureProcessorInterface.h | 2 +- .../SkinnedMesh/SkinnedMeshInputBuffers.h | 2 +- .../Feature/SkinnedMesh/SkinnedMeshInstance.h | 2 +- .../SkinnedMeshOutputStreamManagerInterface.h | 2 +- .../SkinnedMeshRenderProxyInterface.h | 2 +- .../SkinnedMesh/SkinnedMeshShaderOptions.h | 2 +- .../Feature/SkinnedMesh/SkinnedMeshStatsBus.h | 2 +- .../SkinnedMesh/SkinnedMeshVertexStreams.h | 2 +- .../SkyBox/SkyBoxFeatureProcessorInterface.h | 2 +- .../Include/Atom/Feature/SkyBox/SkyBoxFogBus.h | 2 +- .../Include/Atom/Feature/SkyBox/SkyBoxLUT.h | 2 +- .../Atom/Feature/SkyBox/SkyboxConstants.h | 2 +- .../SphericalHarmonicsUtility.h | 2 +- .../SphericalHarmonicsUtility.inl | 2 +- .../TransformServiceFeatureProcessor.h | 2 +- ...TransformServiceFeatureProcessorInterface.h | 2 +- .../Atom/Feature/Utils/EditorLightingPreset.h | 2 +- .../Atom/Feature/Utils/EditorModelPreset.h | 2 +- .../Utils/EditorRenderComponentAdapter.h | 2 +- .../Utils/EditorRenderComponentAdapter.inl | 2 +- .../Atom/Feature/Utils/FrameCaptureBus.h | 2 +- .../Atom/Feature/Utils/GpuBufferHandler.h | 2 +- .../Include/Atom/Feature/Utils/IndexableList.h | 2 +- .../Atom/Feature/Utils/LightingPreset.h | 2 +- .../Include/Atom/Feature/Utils/ModelPreset.h | 2 +- .../Feature/Utils/MultiIndexedDataVector.h | 2 +- .../Atom/Feature/Utils/MultiSparseVector.h | 2 +- .../Atom/Feature/Utils/ProfilingCaptureBus.h | 2 +- .../Include/Atom/Feature/Utils/SparseVector.h | 2 +- .../Code/Mocks/MockMeshFeatureProcessor.h | 2 +- .../ACES/AcesDisplayMapperFeatureProcessor.cpp | 2 +- .../Common/Code/Source/AuxGeom/AuxGeomBase.h | 2 +- .../AuxGeom/AuxGeomDrawProcessorShared.cpp | 2 +- .../AuxGeom/AuxGeomDrawProcessorShared.h | 2 +- .../Code/Source/AuxGeom/AuxGeomDrawQueue.cpp | 2 +- .../Code/Source/AuxGeom/AuxGeomDrawQueue.h | 2 +- .../Source/AuxGeom/AuxGeomFeatureProcessor.cpp | 2 +- .../AuxGeom/DynamicPrimitiveProcessor.cpp | 2 +- .../Source/AuxGeom/DynamicPrimitiveProcessor.h | 2 +- .../Source/AuxGeom/FixedShapeProcessor.cpp | 2 +- .../Code/Source/AuxGeom/FixedShapeProcessor.h | 2 +- .../Code/Source/Builders/BuilderModule.cpp | 2 +- .../CheckerboardColorResolvePass.cpp | 2 +- .../CheckerboardColorResolvePass.h | 2 +- .../Source/Checkerboard/CheckerboardPass.cpp | 2 +- .../Source/Checkerboard/CheckerboardPass.h | 2 +- .../Common/Code/Source/CommonModule.cpp | 2 +- .../Code/Source/CommonSystemComponent.cpp | 2 +- .../Common/Code/Source/CommonSystemComponent.h | 2 +- .../CapsuleLightFeatureProcessor.cpp | 2 +- .../CoreLights/CapsuleLightFeatureProcessor.h | 2 +- .../CoreLights/CascadedShadowmapsPass.cpp | 2 +- .../Source/CoreLights/CascadedShadowmapsPass.h | 2 +- .../CoreLights/CoreLightsSystemComponent.cpp | 2 +- .../CoreLights/CoreLightsSystemComponent.h | 2 +- .../CoreLights/DepthExponentiationPass.cpp | 2 +- .../CoreLights/DepthExponentiationPass.h | 2 +- .../DirectionalLightFeatureProcessor.cpp | 2 +- .../DirectionalLightFeatureProcessor.h | 2 +- .../CoreLights/DiskLightFeatureProcessor.cpp | 2 +- .../CoreLights/DiskLightFeatureProcessor.h | 2 +- .../Source/CoreLights/EsmShadowmapsPass.cpp | 2 +- .../Code/Source/CoreLights/EsmShadowmapsPass.h | 2 +- .../Code/Source/CoreLights/IndexedDataVector.h | 2 +- .../Source/CoreLights/IndexedDataVector.inl | 2 +- .../Source/CoreLights/LightCullingConstants.h | 2 +- .../Source/CoreLights/LightCullingPass.cpp | 2 +- .../Code/Source/CoreLights/LightCullingPass.h | 2 +- .../Source/CoreLights/LightCullingRemap.cpp | 2 +- .../Code/Source/CoreLights/LightCullingRemap.h | 2 +- .../CoreLights/LightCullingTilePreparePass.cpp | 2 +- .../CoreLights/LightCullingTilePreparePass.h | 2 +- .../Code/Source/CoreLights/LtcCommon.cpp | 2 +- .../Common/Code/Source/CoreLights/LtcCommon.h | 2 +- .../Source/CoreLights/PhotometricValue.cpp | 2 +- .../CoreLights/PointLightFeatureProcessor.cpp | 2 +- .../CoreLights/PointLightFeatureProcessor.h | 2 +- .../PolygonLightFeatureProcessor.cpp | 2 +- .../CoreLights/PolygonLightFeatureProcessor.h | 2 +- .../CoreLights/ProjectedShadowmapsPass.cpp | 2 +- .../CoreLights/ProjectedShadowmapsPass.h | 2 +- .../CoreLights/QuadLightFeatureProcessor.cpp | 2 +- .../CoreLights/QuadLightFeatureProcessor.h | 2 +- .../Common/Code/Source/CoreLights/Shadow.cpp | 2 +- .../Common/Code/Source/CoreLights/Shadow.h | 2 +- .../Code/Source/CoreLights/ShadowmapAtlas.cpp | 2 +- .../Code/Source/CoreLights/ShadowmapAtlas.h | 2 +- .../Code/Source/CoreLights/ShadowmapPass.cpp | 2 +- .../Code/Source/CoreLights/ShadowmapPass.h | 2 +- .../SimplePointLightFeatureProcessor.cpp | 2 +- .../SimplePointLightFeatureProcessor.h | 2 +- .../SimpleSpotLightFeatureProcessor.cpp | 2 +- .../SimpleSpotLightFeatureProcessor.h | 2 +- .../Code/Source/Decals/AsyncLoadTracker.h | 2 +- .../Source/Decals/DecalFeatureProcessor.cpp | 2 +- .../Code/Source/Decals/DecalFeatureProcessor.h | 2 +- .../Code/Source/Decals/DecalTextureArray.cpp | 2 +- .../Code/Source/Decals/DecalTextureArray.h | 2 +- .../DecalTextureArrayFeatureProcessor.cpp | 2 +- .../Decals/DecalTextureArrayFeatureProcessor.h | 2 +- ...ffuseGlobalIlluminationFeatureProcessor.cpp | 2 +- ...DiffuseGlobalIlluminationFeatureProcessor.h | 2 +- .../DiffuseProbeGrid.cpp | 2 +- .../DiffuseProbeGrid.h | 2 +- .../DiffuseProbeGridBlendDistancePass.cpp | 2 +- .../DiffuseProbeGridBlendDistancePass.h | 2 +- .../DiffuseProbeGridBlendIrradiancePass.cpp | 2 +- .../DiffuseProbeGridBlendIrradiancePass.h | 2 +- .../DiffuseProbeGridBorderUpdatePass.cpp | 2 +- .../DiffuseProbeGridBorderUpdatePass.h | 2 +- .../DiffuseProbeGridClassificationPass.cpp | 2 +- .../DiffuseProbeGridClassificationPass.h | 2 +- .../DiffuseProbeGridFeatureProcessor.cpp | 2 +- .../DiffuseProbeGridFeatureProcessor.h | 2 +- .../DiffuseProbeGridRayTracingPass.cpp | 2 +- .../DiffuseProbeGridRayTracingPass.h | 2 +- .../DiffuseProbeGridRelocationPass.cpp | 2 +- .../DiffuseProbeGridRelocationPass.h | 2 +- .../DiffuseProbeGridRenderPass.cpp | 2 +- .../DiffuseProbeGridRenderPass.h | 2 +- .../DiffuseProbeGridTextureReadback.cpp | 2 +- .../DiffuseProbeGridTextureReadback.h | 2 +- .../AcesOutputTransformLutPass.cpp | 2 +- .../DisplayMapper/AcesOutputTransformPass.cpp | 2 +- .../ApplyShaperLookupTablePass.cpp | 2 +- .../BakeAcesOutputTransformLutPass.cpp | 2 +- .../DisplayMapperConfigurationDescriptor.cpp | 2 +- .../DisplayMapperFullScreenPass.cpp | 2 +- .../Source/DisplayMapper/DisplayMapperPass.cpp | 2 +- .../DisplayMapper/OutputTransformPass.cpp | 2 +- .../Source/EditorCommonSystemComponent.cpp | 2 +- .../Code/Source/EditorCommonSystemComponent.h | 2 +- .../Source/FrameCaptureSystemComponent.cpp | 2 +- .../Code/Source/FrameCaptureSystemComponent.h | 2 +- .../Common/Code/Source/ImGui/ImGuiPass.cpp | 2 +- .../Common/Code/Source/ImGui/ImGuiPass.h | 2 +- .../Code/Source/ImGui/ImGuiSystemComponent.cpp | 2 +- .../Code/Source/ImGui/ImGuiSystemComponent.h | 2 +- .../ImageBasedLightFeatureProcessor.cpp | 2 +- .../Source/LookupTable/LookupTableAsset.cpp | 2 +- .../Code/Source/LuxCore/LuxCoreMaterial.cpp | 2 +- .../Code/Source/LuxCore/LuxCoreMaterial.h | 2 +- .../Common/Code/Source/LuxCore/LuxCoreMesh.cpp | 2 +- .../Common/Code/Source/LuxCore/LuxCoreMesh.h | 2 +- .../Code/Source/LuxCore/LuxCoreObject.cpp | 2 +- .../Common/Code/Source/LuxCore/LuxCoreObject.h | 2 +- .../Code/Source/LuxCore/LuxCoreRenderer.cpp | 2 +- .../Code/Source/LuxCore/LuxCoreRenderer.h | 2 +- .../Code/Source/LuxCore/LuxCoreTexture.cpp | 2 +- .../Code/Source/LuxCore/LuxCoreTexture.h | 2 +- .../Code/Source/LuxCore/LuxCoreTexturePass.cpp | 2 +- .../Code/Source/LuxCore/RenderTexturePass.cpp | 2 +- .../Material/ConvertEmissiveUnitFunctor.cpp | 2 +- .../Material/ConvertEmissiveUnitFunctor.h | 2 +- .../ConvertEmissiveUnitFunctorSourceData.cpp | 2 +- .../ConvertEmissiveUnitFunctorSourceData.h | 2 +- .../Code/Source/Material/DrawListFunctor.cpp | 2 +- .../Code/Source/Material/DrawListFunctor.h | 2 +- .../Material/DrawListFunctorSourceData.cpp | 2 +- .../Material/DrawListFunctorSourceData.h | 2 +- .../Source/Material/MaterialAssignment.cpp | 2 +- .../Source/Material/MaterialAssignmentId.cpp | 2 +- .../Material/MaterialAssignmentSerializer.cpp | 2 +- .../Material/MaterialAssignmentSerializer.h | 2 +- .../MaterialConverterSystemComponent.cpp | 2 +- .../MaterialConverterSystemComponent.h | 2 +- .../SubsurfaceTransmissionParameterFunctor.cpp | 2 +- .../SubsurfaceTransmissionParameterFunctor.h | 2 +- ...eTransmissionParameterFunctorSourceData.cpp | 2 +- ...aceTransmissionParameterFunctorSourceData.h | 2 +- .../Source/Material/Transform2DFunctor.cpp | 2 +- .../Code/Source/Material/Transform2DFunctor.h | 2 +- .../Material/Transform2DFunctorSourceData.cpp | 2 +- .../Material/Transform2DFunctorSourceData.h | 2 +- .../Code/Source/Material/UseTextureFunctor.cpp | 2 +- .../Code/Source/Material/UseTextureFunctor.h | 2 +- .../Material/UseTextureFunctorSourceData.cpp | 2 +- .../Material/UseTextureFunctorSourceData.h | 2 +- .../Code/Source/Math/GaussianMathFilter.cpp | 2 +- .../Code/Source/Math/GaussianMathFilter.h | 2 +- .../Common/Code/Source/Math/MathFilter.cpp | 2 +- .../Common/Code/Source/Math/MathFilter.h | 2 +- .../Code/Source/Math/MathFilterDescriptor.h | 2 +- .../Code/Source/Mesh/MeshFeatureProcessor.cpp | 2 +- .../MorphTargets/MorphTargetComputePass.cpp | 2 +- .../MorphTargets/MorphTargetComputePass.h | 2 +- .../MorphTargets/MorphTargetDispatchItem.cpp | 2 +- .../MorphTargets/MorphTargetDispatchItem.h | 2 +- .../MorphTargets/MorphTargetInputBuffers.cpp | 2 +- .../OcclusionCullingPlane.cpp | 2 +- .../OcclusionCullingPlane.h | 2 +- .../OcclusionCullingPlaneFeatureProcessor.cpp | 2 +- .../OcclusionCullingPlaneFeatureProcessor.h | 2 +- .../Android/Atom_Feature_Traits_Android.h | 2 +- .../Android/Atom_Feature_Traits_Platform.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Android/runtime_dependencies_clients.cmake | 2 +- .../Android/runtime_dependencies_tools.cmake | 2 +- .../Clang/atom_feature_common_clang.cmake | 2 +- .../Common/MSVC/atom_feature_common_msvc.cmake | 2 +- .../Platform/Linux/Atom_Feature_Traits_Linux.h | 2 +- .../Linux/Atom_Feature_Traits_Platform.h | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Linux/runtime_dependencies_clients.cmake | 2 +- .../Linux/runtime_dependencies_tools.cmake | 2 +- .../Platform/Mac/Atom_Feature_Traits_Mac.h | 2 +- .../Mac/Atom_Feature_Traits_Platform.h | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Mac/runtime_dependencies_clients.cmake | 2 +- .../Mac/runtime_dependencies_tools.cmake | 2 +- .../Windows/Atom_Feature_Traits_Platform.h | 2 +- .../Windows/Atom_Feature_Traits_Windows.h | 2 +- .../Windows/LaunchLuxCoreUI_Windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Windows/runtime_dependencies_clients.cmake | 2 +- .../Windows/runtime_dependencies_tools.cmake | 2 +- .../iOS/Atom_Feature_Traits_Platform.h | 2 +- .../Platform/iOS/Atom_Feature_Traits_iOS.h | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../iOS/runtime_dependencies_clients.cmake | 2 +- .../iOS/runtime_dependencies_tools.cmake | 2 +- .../Source/PostProcess/Bloom/BloomSettings.cpp | 2 +- .../Source/PostProcess/Bloom/BloomSettings.h | 2 +- .../DepthOfField/DepthOfFieldSettings.cpp | 2 +- .../DepthOfField/DepthOfFieldSettings.h | 2 +- .../ExposureControlSettings.cpp | 2 +- .../ExposureControl/ExposureControlSettings.h | 2 +- .../LookModificationSettings.cpp | 2 +- .../LookModificationSettings.h | 2 +- .../Source/PostProcess/PostProcessBase.cpp | 2 +- .../Code/Source/PostProcess/PostProcessBase.h | 2 +- .../PostProcessFeatureProcessor.cpp | 2 +- .../PostProcess/PostProcessFeatureProcessor.h | 2 +- .../Source/PostProcess/PostProcessSettings.cpp | 2 +- .../Source/PostProcess/PostProcessSettings.h | 2 +- .../Source/PostProcess/Ssao/SsaoSettings.cpp | 2 +- .../Source/PostProcess/Ssao/SsaoSettings.h | 2 +- .../BlendColorGradingLutsPass.cpp | 2 +- .../PostProcessing/BlendColorGradingLutsPass.h | 2 +- .../Source/PostProcessing/BloomBlurPass.cpp | 2 +- .../Code/Source/PostProcessing/BloomBlurPass.h | 2 +- .../PostProcessing/BloomCompositePass.cpp | 2 +- .../Source/PostProcessing/BloomCompositePass.h | 2 +- .../PostProcessing/BloomDownsamplePass.cpp | 2 +- .../PostProcessing/BloomDownsamplePass.h | 2 +- .../Source/PostProcessing/BloomParentPass.cpp | 2 +- .../Source/PostProcessing/BloomParentPass.h | 2 +- .../DepthOfFieldBokehBlurPass.cpp | 2 +- .../PostProcessing/DepthOfFieldBokehBlurPass.h | 2 +- .../DepthOfFieldCompositePass.cpp | 2 +- .../PostProcessing/DepthOfFieldCompositePass.h | 2 +- .../DepthOfFieldCopyFocusDepthToCpuPass.cpp | 2 +- .../DepthOfFieldCopyFocusDepthToCpuPass.h | 2 +- .../PostProcessing/DepthOfFieldMaskPass.cpp | 2 +- .../PostProcessing/DepthOfFieldMaskPass.h | 2 +- .../PostProcessing/DepthOfFieldParentPass.cpp | 2 +- .../PostProcessing/DepthOfFieldParentPass.h | 2 +- .../PostProcessing/DepthOfFieldPencilMap.h | 2 +- .../DepthOfFieldReadBackFocusDepthPass.cpp | 2 +- .../DepthOfFieldReadBackFocusDepthPass.h | 2 +- .../DepthOfFieldWriteFocusDepthFromGpuPass.cpp | 2 +- .../DepthOfFieldWriteFocusDepthFromGpuPass.h | 2 +- .../PostProcessing/DepthUpsamplePass.cpp | 2 +- .../Source/PostProcessing/DepthUpsamplePass.h | 2 +- .../ExposureControlRenderProxy.cpp | 2 +- .../PostProcessing/EyeAdaptationPass.cpp | 2 +- .../Source/PostProcessing/EyeAdaptationPass.h | 2 +- .../FastDepthAwareBlurPasses.cpp | 2 +- .../PostProcessing/FastDepthAwareBlurPasses.h | 2 +- .../LookModificationCompositePass.cpp | 2 +- .../LookModificationCompositePass.h | 2 +- .../LookModificationTransformPass.cpp | 2 +- .../LookModificationTransformPass.h | 2 +- .../LuminanceHistogramGeneratorPass.cpp | 2 +- .../LuminanceHistogramGeneratorPass.h | 2 +- .../PostProcessingShaderOptionBase.cpp | 2 +- .../PostProcessingShaderOptionBase.h | 2 +- .../Source/PostProcessing/SMAABasePass.cpp | 2 +- .../Code/Source/PostProcessing/SMAABasePass.h | 2 +- .../SMAABlendingWeightCalculationPass.cpp | 2 +- .../SMAABlendingWeightCalculationPass.h | 2 +- .../Code/Source/PostProcessing/SMAACommon.h | 2 +- .../SMAAConfigurationDescriptor.cpp | 2 +- .../SMAAConfigurationDescriptor.h | 2 +- .../PostProcessing/SMAAEdgeDetectionPass.cpp | 2 +- .../PostProcessing/SMAAEdgeDetectionPass.h | 2 +- .../PostProcessing/SMAAFeatureProcessor.cpp | 2 +- .../PostProcessing/SMAAFeatureProcessor.h | 2 +- .../SMAANeighborhoodBlendingPass.cpp | 2 +- .../SMAANeighborhoodBlendingPass.h | 2 +- .../Code/Source/PostProcessing/SsaoPasses.cpp | 2 +- .../Code/Source/PostProcessing/SsaoPasses.h | 2 +- .../SubsurfaceScatteringPass.cpp | 2 +- .../PostProcessing/SubsurfaceScatteringPass.h | 2 +- .../Code/Source/PostProcessing/TaaPass.cpp | 2 +- .../Code/Source/PostProcessing/TaaPass.h | 2 +- .../Source/ProfilingCaptureSystemComponent.cpp | 2 +- .../Source/ProfilingCaptureSystemComponent.h | 2 +- .../RayTracingAccelerationStructurePass.cpp | 2 +- .../RayTracingAccelerationStructurePass.h | 2 +- .../RayTracing/RayTracingFeatureProcessor.cpp | 2 +- .../RayTracing/RayTracingFeatureProcessor.h | 2 +- .../Code/Source/RayTracing/RayTracingPass.cpp | 2 +- .../Code/Source/RayTracing/RayTracingPass.h | 2 +- .../Source/RayTracing/RayTracingPassData.h | 2 +- .../Source/ReflectionProbe/ReflectionProbe.cpp | 2 +- .../Source/ReflectionProbe/ReflectionProbe.h | 2 +- .../ReflectionProbeFeatureProcessor.cpp | 2 +- .../ReflectionCopyFrameBufferPass.cpp | 2 +- .../ReflectionCopyFrameBufferPass.h | 2 +- .../ReflectionScreenSpaceBlurChildPass.cpp | 2 +- .../ReflectionScreenSpaceBlurChildPass.h | 2 +- .../ReflectionScreenSpaceBlurPass.cpp | 2 +- .../ReflectionScreenSpaceBlurPass.h | 2 +- .../ReflectionScreenSpaceCompositePass.cpp | 2 +- .../ReflectionScreenSpaceCompositePass.h | 2 +- .../Feature/Common/Code/Source/RenderCommon.h | 2 +- .../Source/ScreenSpace/DeferredFogPass.cpp | 2 +- .../Code/Source/ScreenSpace/DeferredFogPass.h | 2 +- .../Source/ScreenSpace/DeferredFogSettings.cpp | 2 +- .../Source/ScreenSpace/DeferredFogSettings.h | 2 +- .../ProjectedShadowFeatureProcessor.cpp | 2 +- .../Shadows/ProjectedShadowFeatureProcessor.h | 2 +- .../SkinnedMesh/SkinnedMeshComputePass.cpp | 2 +- .../SkinnedMesh/SkinnedMeshComputePass.h | 2 +- .../SkinnedMesh/SkinnedMeshDispatchItem.cpp | 2 +- .../SkinnedMesh/SkinnedMeshDispatchItem.h | 2 +- .../SkinnedMeshFeatureProcessor.cpp | 2 +- .../SkinnedMesh/SkinnedMeshFeatureProcessor.h | 2 +- .../SkinnedMesh/SkinnedMeshInputBuffers.cpp | 2 +- .../Source/SkinnedMesh/SkinnedMeshInstance.cpp | 2 +- .../SkinnedMeshOutputStreamManager.cpp | 2 +- .../SkinnedMeshOutputStreamManager.h | 2 +- .../SkinnedMesh/SkinnedMeshRenderProxy.cpp | 2 +- .../SkinnedMesh/SkinnedMeshRenderProxy.h | 2 +- .../SkinnedMeshShaderOptionsCache.cpp | 2 +- .../SkinnedMeshShaderOptionsCache.h | 2 +- .../SkinnedMesh/SkinnedMeshStatsCollector.cpp | 2 +- .../SkinnedMesh/SkinnedMeshStatsCollector.h | 2 +- .../SkinnedMesh/SkinnedMeshSystemComponent.cpp | 2 +- .../SkinnedMesh/SkinnedMeshSystemComponent.h | 2 +- .../SkinnedMeshVertexStreamProperties.cpp | 2 +- .../SkinnedMeshVertexStreamProperties.h | 2 +- .../Source/SkyBox/SkyBoxFeatureProcessor.cpp | 2 +- .../Source/SkyBox/SkyBoxFeatureProcessor.h | 2 +- .../Code/Source/SkyBox/SkyBoxFogSettings.cpp | 2 +- .../Code/Source/SkyBox/SkyBoxFogSettings.h | 2 +- .../TransformServiceFeatureProcessor.cpp | 2 +- .../Code/Source/Utils/EditorLightingPreset.cpp | 2 +- .../Code/Source/Utils/EditorModelPreset.cpp | 2 +- .../Code/Source/Utils/GpuBufferHandler.cpp | 2 +- .../Code/Source/Utils/LightingPreset.cpp | 2 +- .../Common/Code/Source/Utils/ModelPreset.cpp | 2 +- .../Feature/Common/Code/Tests/CommonTest.cpp | 2 +- .../Tests/CoreLights/ShadowmapAtlasTest.cpp | 2 +- .../Tests/Decals/DecalTextureArrayTests.cpp | 2 +- .../Common/Code/Tests/IndexableListTests.cpp | 2 +- .../Code/Tests/IndexedDataVectorTests.cpp | 2 +- .../SkinnedMeshDispatchItemTests.cpp | 2 +- .../Common/Code/Tests/SparseVectorTests.cpp | 2 +- .../atom_feature_common_builders_files.cmake | 2 +- .../atom_feature_common_editor_files.cmake | 2 +- .../Code/atom_feature_common_files.cmake | 2 +- .../atom_feature_common_public_files.cmake | 2 +- .../atom_feature_common_shared_files.cmake | 2 +- ...om_feature_common_staticlibrary_files.cmake | 2 +- .../Code/atom_feature_common_tests_files.cmake | 2 +- Gems/Atom/RHI/CMakeLists.txt | 2 +- Gems/Atom/RHI/Code/CMakeLists.txt | 2 +- .../Atom/RHI.Edit/ShaderCompilerArguments.h | 2 +- .../Atom/RHI.Edit/ShaderPlatformInterface.h | 2 +- .../Atom/RHI.Edit/ShaderPlatformInterfaceBus.h | 2 +- .../RHI/Code/Include/Atom/RHI.Edit/Utils.h | 2 +- .../Atom/RHI.Reflect/AliasedHeapEnums.h | 2 +- .../Include/Atom/RHI.Reflect/AttachmentEnums.h | 2 +- .../Include/Atom/RHI.Reflect/AttachmentId.h | 2 +- .../RHI.Reflect/AttachmentLoadStoreAction.h | 2 +- .../RHI/Code/Include/Atom/RHI.Reflect/Base.h | 2 +- .../RHI/Code/Include/Atom/RHI.Reflect/Bits.h | 2 +- .../Atom/RHI.Reflect/BufferDescriptor.h | 2 +- .../Atom/RHI.Reflect/BufferPoolDescriptor.h | 2 +- .../BufferScopeAttachmentDescriptor.h | 2 +- .../Atom/RHI.Reflect/BufferViewDescriptor.h | 2 +- .../Code/Include/Atom/RHI.Reflect/ClearValue.h | 2 +- .../Include/Atom/RHI.Reflect/ConstantsLayout.h | 2 +- .../Atom/RHI.Reflect/CpuTimingStatistics.h | 2 +- .../Atom/RHI.Reflect/DeviceDescriptor.h | 2 +- .../Include/Atom/RHI.Reflect/DeviceFeatures.h | 2 +- .../Include/Atom/RHI.Reflect/DeviceLimits.h | 2 +- .../RHI/Code/Include/Atom/RHI.Reflect/Format.h | 2 +- .../Atom/RHI.Reflect/FrameSchedulerEnums.h | 2 +- .../RHI/Code/Include/Atom/RHI.Reflect/Handle.h | 2 +- .../Include/Atom/RHI.Reflect/ImageDescriptor.h | 2 +- .../Code/Include/Atom/RHI.Reflect/ImageEnums.h | 2 +- .../Atom/RHI.Reflect/ImagePoolDescriptor.h | 2 +- .../ImageScopeAttachmentDescriptor.h | 2 +- .../Atom/RHI.Reflect/ImageSubresource.h | 2 +- .../Atom/RHI.Reflect/ImageViewDescriptor.h | 2 +- .../Atom/RHI.Reflect/IndirectBufferLayout.h | 2 +- .../Atom/RHI.Reflect/InputStreamLayout.h | 2 +- .../RHI.Reflect/InputStreamLayoutBuilder.h | 2 +- .../Code/Include/Atom/RHI.Reflect/Interval.h | 2 +- .../RHI/Code/Include/Atom/RHI.Reflect/Limits.h | 2 +- .../Include/Atom/RHI.Reflect/MemoryEnums.h | 2 +- .../Atom/RHI.Reflect/MemoryStatistics.h | 2 +- .../Include/Atom/RHI.Reflect/MemoryUsage.h | 2 +- .../Atom/RHI.Reflect/MultisampleState.h | 2 +- .../Atom/RHI.Reflect/NameIdReflectionMap.h | 2 +- .../RHI/Code/Include/Atom/RHI.Reflect/Origin.h | 2 +- .../RHI.Reflect/PhysicalDeviceDescriptor.h | 2 +- .../PhysicalDeviceDriverInfoSerializer.h | 2 +- .../RHI.Reflect/PipelineLayoutDescriptor.h | 2 +- .../Atom/RHI.Reflect/PipelineLibraryData.h | 2 +- .../RHI.Reflect/PlatformLimitsDescriptor.h | 2 +- .../Atom/RHI.Reflect/QueryPoolDescriptor.h | 2 +- .../Atom/RHI.Reflect/RHISystemDescriptor.h | 2 +- .../Atom/RHI.Reflect/ReflectSystemComponent.h | 2 +- .../Atom/RHI.Reflect/RenderAttachmentLayout.h | 2 +- .../RenderAttachmentLayoutBuilder.h | 2 +- .../Include/Atom/RHI.Reflect/RenderStates.h | 2 +- .../ResolveScopeAttachmentDescriptor.h | 2 +- .../Atom/RHI.Reflect/ResourcePoolDescriptor.h | 2 +- .../Include/Atom/RHI.Reflect/SamplerState.h | 2 +- .../Code/Include/Atom/RHI.Reflect/Scissor.h | 2 +- .../RHI.Reflect/ScopeAttachmentDescriptor.h | 2 +- .../Code/Include/Atom/RHI.Reflect/ScopeEnums.h | 2 +- .../Code/Include/Atom/RHI.Reflect/ScopeId.h | 2 +- .../Atom/RHI.Reflect/ShaderDataMappings.h | 2 +- .../Atom/RHI.Reflect/ShaderInputNameIndex.h | 2 +- .../RHI.Reflect/ShaderResourceGroupLayout.h | 2 +- .../ShaderResourceGroupLayoutDescriptor.h | 2 +- .../ShaderResourceGroupPoolDescriptor.h | 2 +- .../Include/Atom/RHI.Reflect/ShaderSemantic.h | 2 +- .../Atom/RHI.Reflect/ShaderStageFunction.h | 2 +- .../Include/Atom/RHI.Reflect/ShaderStages.h | 2 +- .../RHI/Code/Include/Atom/RHI.Reflect/Size.h | 2 +- .../RHI.Reflect/StreamingImagePoolDescriptor.h | 2 +- .../Atom/RHI.Reflect/SwapChainDescriptor.h | 2 +- .../TransientAttachmentStatistics.h | 2 +- .../RHI.Reflect/TransientBufferDescriptor.h | 2 +- .../RHI.Reflect/TransientImageDescriptor.h | 2 +- .../RHI.Reflect/UnifiedAttachmentDescriptor.h | 2 +- .../UnifiedScopeAttachmentDescriptor.h | 2 +- .../Code/Include/Atom/RHI.Reflect/Viewport.h | 2 +- .../Atom/RHI/AliasedAttachmentAllocator.h | 2 +- .../RHI/Code/Include/Atom/RHI/AliasedHeap.h | 2 +- .../Include/Atom/RHI/AliasingBarrierTracker.h | 2 +- .../Atom/RHI/Code/Include/Atom/RHI/Allocator.h | 2 +- .../RHI/Code/Include/Atom/RHI/AsyncWorkQueue.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Buffer.h | 2 +- .../Include/Atom/RHI/BufferFrameAttachment.h | 2 +- .../RHI/Code/Include/Atom/RHI/BufferPool.h | 2 +- .../RHI/Code/Include/Atom/RHI/BufferPoolBase.h | 2 +- .../RHI/Code/Include/Atom/RHI/BufferProperty.h | 2 +- .../Include/Atom/RHI/BufferScopeAttachment.h | 2 +- .../RHI/Code/Include/Atom/RHI/BufferView.h | 2 +- .../RHI/Code/Include/Atom/RHI/CommandList.h | 2 +- .../Code/Include/Atom/RHI/CommandListStates.h | 2 +- .../Include/Atom/RHI/CommandListValidator.h | 2 +- .../RHI/Code/Include/Atom/RHI/CommandQueue.h | 2 +- .../RHI/Code/Include/Atom/RHI/ConstantsData.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/CopyItem.h | 2 +- .../RHI/Code/Include/Atom/RHI/CpuProfiler.h | 2 +- .../Code/Include/Atom/RHI/CpuProfilerImpl.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Device.h | 2 +- .../Code/Include/Atom/RHI/DeviceBusTraits.h | 2 +- .../RHI/Code/Include/Atom/RHI/DeviceObject.h | 2 +- .../RHI/Code/Include/Atom/RHI/DispatchItem.h | 2 +- .../Code/Include/Atom/RHI/DispatchRaysItem.h | 2 +- .../Include/Atom/RHI/DrawFilterTagRegistry.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/DrawItem.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/DrawList.h | 2 +- .../Code/Include/Atom/RHI/DrawListContext.h | 2 +- .../Include/Atom/RHI/DrawListTagRegistry.h | 2 +- .../RHI/Code/Include/Atom/RHI/DrawPacket.h | 2 +- .../Code/Include/Atom/RHI/DrawPacketBuilder.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h | 2 +- .../Code/Include/Atom/RHI/FactoryManagerBus.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Fence.h | 2 +- .../Code/Include/Atom/RHI/FrameAttachment.h | 2 +- .../RHI/Code/Include/Atom/RHI/FrameEventBus.h | 2 +- .../RHI/Code/Include/Atom/RHI/FrameGraph.h | 2 +- .../Atom/RHI/FrameGraphAttachmentDatabase.h | 2 +- .../Atom/RHI/FrameGraphAttachmentInterface.h | 2 +- .../Code/Include/Atom/RHI/FrameGraphBuilder.h | 2 +- .../Atom/RHI/FrameGraphCompileContext.h | 2 +- .../Code/Include/Atom/RHI/FrameGraphCompiler.h | 2 +- .../Atom/RHI/FrameGraphExecuteContext.h | 2 +- .../Include/Atom/RHI/FrameGraphExecuteGroup.h | 2 +- .../Code/Include/Atom/RHI/FrameGraphExecuter.h | 2 +- .../Include/Atom/RHI/FrameGraphInterface.h | 2 +- .../Code/Include/Atom/RHI/FrameGraphLogger.h | 2 +- .../RHI/Code/Include/Atom/RHI/FrameScheduler.h | 2 +- .../Code/Include/Atom/RHI/FreeListAllocator.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Image.h | 2 +- .../Include/Atom/RHI/ImageFrameAttachment.h | 2 +- .../Atom/RHI/Code/Include/Atom/RHI/ImagePool.h | 2 +- .../RHI/Code/Include/Atom/RHI/ImagePoolBase.h | 2 +- .../RHI/Code/Include/Atom/RHI/ImageProperty.h | 2 +- .../Include/Atom/RHI/ImageScopeAttachment.h | 2 +- .../Atom/RHI/Code/Include/Atom/RHI/ImageView.h | 2 +- .../Code/Include/Atom/RHI/IndexBufferView.h | 2 +- .../Code/Include/Atom/RHI/IndirectArguments.h | 2 +- .../Include/Atom/RHI/IndirectBufferSignature.h | 2 +- .../Code/Include/Atom/RHI/IndirectBufferView.h | 2 +- .../Include/Atom/RHI/IndirectBufferWriter.h | 2 +- .../Code/Include/Atom/RHI/LinearAllocator.h | 2 +- .../Code/Include/Atom/RHI/MemoryAllocation.h | 2 +- .../Atom/RHI/MemoryLinearSubAllocator.h | 2 +- .../Include/Atom/RHI/MemoryStatisticsBuilder.h | 2 +- .../Include/Atom/RHI/MemoryStatisticsBus.h | 2 +- .../Code/Include/Atom/RHI/MemorySubAllocator.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Object.h | 2 +- .../RHI/Code/Include/Atom/RHI/ObjectCache.h | 2 +- .../Code/Include/Atom/RHI/ObjectCollector.h | 2 +- .../RHI/Code/Include/Atom/RHI/ObjectPool.h | 2 +- .../RHI/Code/Include/Atom/RHI/PhysicalDevice.h | 2 +- .../Code/Include/Atom/RHI/PipelineLibrary.h | 2 +- .../RHI/Code/Include/Atom/RHI/PipelineState.h | 2 +- .../Code/Include/Atom/RHI/PipelineStateCache.h | 2 +- .../Include/Atom/RHI/PipelineStateDescriptor.h | 2 +- .../RHI/Code/Include/Atom/RHI/PoolAllocator.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Query.h | 2 +- .../Atom/RHI/Code/Include/Atom/RHI/QueryPool.h | 2 +- .../Include/Atom/RHI/QueryPoolSubAllocator.h | 2 +- .../Atom/RHI/Code/Include/Atom/RHI/RHISystem.h | 2 +- .../Code/Include/Atom/RHI/RHISystemInterface.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/RHIUtils.h | 2 +- .../Atom/RHI/RayTracingAccelerationStructure.h | 2 +- .../Include/Atom/RHI/RayTracingBufferPools.h | 2 +- .../Include/Atom/RHI/RayTracingPipelineState.h | 2 +- .../Include/Atom/RHI/RayTracingShaderTable.h | 2 +- .../Include/Atom/RHI/ResolveScopeAttachment.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Resource.h | 2 +- .../Include/Atom/RHI/ResourceInvalidateBus.h | 2 +- .../RHI/Code/Include/Atom/RHI/ResourcePool.h | 2 +- .../Include/Atom/RHI/ResourcePoolDatabase.h | 2 +- .../RHI/Code/Include/Atom/RHI/ResourceView.h | 2 +- Gems/Atom/RHI/Code/Include/Atom/RHI/Scope.h | 2 +- .../Code/Include/Atom/RHI/ScopeAttachment.h | 2 +- .../RHI/Code/Include/Atom/RHI/ScopeProducer.h | 2 +- .../Code/Include/Atom/RHI/ScopeProducerEmpty.h | 2 +- .../Include/Atom/RHI/ScopeProducerFunction.h | 2 +- .../Include/Atom/RHI/ShaderResourceGroup.h | 2 +- .../Include/Atom/RHI/ShaderResourceGroupData.h | 2 +- .../ShaderResourceGroupInvalidateRegistry.h | 2 +- .../Include/Atom/RHI/ShaderResourceGroupPool.h | 2 +- .../Code/Include/Atom/RHI/StreamBufferView.h | 2 +- .../Code/Include/Atom/RHI/StreamingImagePool.h | 2 +- .../Atom/RHI/Code/Include/Atom/RHI/SwapChain.h | 2 +- .../Atom/RHI/SwapChainFrameAttachment.h | 2 +- .../RHI/Code/Include/Atom/RHI/TagRegistry.h | 2 +- .../Code/Include/Atom/RHI/ThreadLocalContext.h | 2 +- .../Include/Atom/RHI/TransientAttachmentPool.h | 2 +- .../Code/Include/Atom/RHI/ValidationLayer.h | 2 +- .../RHI/Code/Include/Atom/RHI/interval_map.h | 2 +- .../Android/AtomRHITests_traits_android.cmake | 2 +- .../AppleTV/AtomRHITests_traits_appletv.cmake | 2 +- .../Linux/AtomRHITests_traits_linux.cmake | 2 +- .../Platform/Mac/AtomRHITests_traits_mac.cmake | 2 +- .../Windows/AtomRHITests_traits_windows.cmake | 2 +- .../Platform/iOS/AtomRHITests_traits_ios.cmake | 2 +- Gems/Atom/RHI/Code/Source/Module.cpp | 2 +- .../RHI.Edit/ShaderCompilerArguments.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp | 2 +- .../FactoryManagerSystemComponent.cpp | 2 +- .../FactoryManagerSystemComponent.h | 2 +- ...oryRegistrationFinalizerSystemComponent.cpp | 2 +- ...ctoryRegistrationFinalizerSystemComponent.h | 2 +- .../Source/RHI.Reflect/AliasedHeapEnums.cpp | 2 +- .../Source/RHI.Reflect/AttachmentEnums.cpp | 2 +- .../RHI.Reflect/AttachmentLoadStoreAction.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI.Reflect/Base.cpp | 2 +- .../Source/RHI.Reflect/BufferDescriptor.cpp | 2 +- .../RHI.Reflect/BufferPoolDescriptor.cpp | 2 +- .../BufferScopeAttachmentDescriptor.cpp | 2 +- .../RHI.Reflect/BufferViewDescriptor.cpp | 2 +- .../RHI/Code/Source/RHI.Reflect/ClearValue.cpp | 2 +- .../Source/RHI.Reflect/ConstantsLayout.cpp | 2 +- .../Source/RHI.Reflect/DeviceDescriptor.cpp | 2 +- .../RHI/Code/Source/RHI.Reflect/Format.cpp | 2 +- .../Source/RHI.Reflect/ImageDescriptor.cpp | 2 +- .../Source/RHI.Reflect/ImagePoolDescriptor.cpp | 2 +- .../ImageScopeAttachmentDescriptor.cpp | 2 +- .../Source/RHI.Reflect/ImageSubresource.cpp | 2 +- .../Source/RHI.Reflect/ImageViewDescriptor.cpp | 2 +- .../RHI.Reflect/IndirectBufferLayout.cpp | 2 +- .../Source/RHI.Reflect/InputStreamLayout.cpp | 2 +- .../RHI.Reflect/InputStreamLayoutBuilder.cpp | 2 +- .../RHI/Code/Source/RHI.Reflect/Interval.cpp | 2 +- .../Code/Source/RHI.Reflect/MemoryUsage.cpp | 2 +- .../Source/RHI.Reflect/MultisampleState.cpp | 2 +- .../RHI/Code/Source/RHI.Reflect/Origin.cpp | 2 +- .../RHI.Reflect/PhysicalDeviceDescriptor.cpp | 2 +- .../PhysicalDeviceDriverInfoSerializer.cpp | 2 +- .../RHI.Reflect/PipelineLayoutDescriptor.cpp | 2 +- .../Source/RHI.Reflect/PipelineLibraryData.cpp | 2 +- .../RHI.Reflect/PlatformLimitsDescriptor.cpp | 2 +- .../Source/RHI.Reflect/QueryPoolDescriptor.cpp | 2 +- .../Source/RHI.Reflect/RHISystemDescriptor.cpp | 2 +- .../RHI.Reflect/ReflectSystemComponent.cpp | 2 +- .../RHI.Reflect/RenderAttachmentLayout.cpp | 2 +- .../RenderAttachmentLayoutBuilder.cpp | 2 +- .../Code/Source/RHI.Reflect/RenderStates.cpp | 2 +- .../ResolveScopeAttachmentDescriptor.cpp | 2 +- .../RHI.Reflect/ResourcePoolDescriptor.cpp | 2 +- .../Code/Source/RHI.Reflect/SamplerState.cpp | 2 +- .../RHI/Code/Source/RHI.Reflect/Scissor.cpp | 2 +- .../RHI.Reflect/ScopeAttachmentDescriptor.cpp | 2 +- .../Source/RHI.Reflect/ShaderDataMappings.cpp | 2 +- .../RHI.Reflect/ShaderInputNameIndex.cpp | 2 +- .../RHI.Reflect/ShaderResourceGroupLayout.cpp | 2 +- .../ShaderResourceGroupLayoutDescriptor.cpp | 2 +- .../ShaderResourceGroupPoolDescriptor.cpp | 2 +- .../Code/Source/RHI.Reflect/ShaderSemantic.cpp | 2 +- .../Source/RHI.Reflect/ShaderStageFunction.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI.Reflect/Size.cpp | 2 +- .../StreamingImagePoolDescriptor.cpp | 2 +- .../Source/RHI.Reflect/SwapChainDescriptor.cpp | 2 +- .../RHI.Reflect/TransientBufferDescriptor.cpp | 2 +- .../RHI.Reflect/TransientImageDescriptor.cpp | 2 +- .../UnifiedAttachmentDescriptor.cpp | 2 +- .../UnifiedScopeAttachmentDescriptor.cpp | 2 +- .../RHI/Code/Source/RHI.Reflect/Viewport.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/AliasedHeap.cpp | 2 +- .../Code/Source/RHI/AliasingBarrierTracker.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Allocator.cpp | 2 +- .../RHI/Code/Source/RHI/AsyncWorkQueue.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Buffer.cpp | 2 +- .../Code/Source/RHI/BufferFrameAttachment.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp | 2 +- .../RHI/Code/Source/RHI/BufferPoolBase.cpp | 2 +- .../Code/Source/RHI/BufferScopeAttachment.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/BufferView.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/CommandList.cpp | 2 +- .../Code/Source/RHI/CommandListValidator.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp | 2 +- .../Atom/RHI/Code/Source/RHI/ConstantsData.cpp | 2 +- .../RHI/Code/Source/RHI/CpuProfilerImpl.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Device.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/DeviceObject.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/DrawList.cpp | 2 +- .../RHI/Code/Source/RHI/DrawListContext.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/DrawPacket.cpp | 2 +- .../RHI/Code/Source/RHI/DrawPacketBuilder.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Factory.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Fence.cpp | 2 +- .../RHI/Code/Source/RHI/FrameAttachment.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/FrameGraph.cpp | 2 +- .../RHI/FrameGraphAttachmentDatabase.cpp | 2 +- .../Source/RHI/FrameGraphCompileContext.cpp | 2 +- .../RHI/Code/Source/RHI/FrameGraphCompiler.cpp | 2 +- .../Source/RHI/FrameGraphExecuteContext.cpp | 2 +- .../Code/Source/RHI/FrameGraphExecuteGroup.cpp | 2 +- .../RHI/Code/Source/RHI/FrameGraphExecuter.cpp | 2 +- .../RHI/Code/Source/RHI/FrameGraphLogger.cpp | 2 +- .../RHI/Code/Source/RHI/FrameScheduler.cpp | 2 +- .../RHI/Code/Source/RHI/FreeListAllocator.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Image.cpp | 2 +- .../Code/Source/RHI/ImageFrameAttachment.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/ImagePool.cpp | 2 +- .../Atom/RHI/Code/Source/RHI/ImagePoolBase.cpp | 2 +- .../Code/Source/RHI/ImageScopeAttachment.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/ImageView.cpp | 2 +- .../RHI/Code/Source/RHI/IndexBufferView.cpp | 2 +- .../Source/RHI/IndirectBufferSignature.cpp | 2 +- .../RHI/Code/Source/RHI/IndirectBufferView.cpp | 2 +- .../Code/Source/RHI/IndirectBufferWriter.cpp | 2 +- .../RHI/Code/Source/RHI/LinearAllocator.cpp | 2 +- .../Source/RHI/MemoryStatisticsBuilder.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Object.cpp | 2 +- .../RHI/Code/Source/RHI/PhysicalDevice.cpp | 2 +- .../RHI/Code/Source/RHI/PipelineLibrary.cpp | 2 +- .../Atom/RHI/Code/Source/RHI/PipelineState.cpp | 2 +- .../RHI/Code/Source/RHI/PipelineStateCache.cpp | 2 +- .../Source/RHI/PipelineStateDescriptor.cpp | 2 +- .../Atom/RHI/Code/Source/RHI/PoolAllocator.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Query.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/QueryPool.cpp | 2 +- .../Code/Source/RHI/QueryPoolSubAllocator.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/RHIUtils.cpp | 2 +- .../RHI/RayTracingAccelerationStructure.cpp | 2 +- .../Code/Source/RHI/RayTracingBufferPools.cpp | 2 +- .../Source/RHI/RayTracingPipelineState.cpp | 2 +- .../Code/Source/RHI/RayTracingShaderTable.cpp | 2 +- .../Code/Source/RHI/ResolveScopeAttachment.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Resource.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/ResourcePool.cpp | 2 +- .../Code/Source/RHI/ResourcePoolDatabase.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/ResourceView.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/Scope.cpp | 2 +- .../RHI/Code/Source/RHI/ScopeAttachment.cpp | 2 +- .../Atom/RHI/Code/Source/RHI/ScopeProducer.cpp | 2 +- .../Code/Source/RHI/ShaderResourceGroup.cpp | 2 +- .../Source/RHI/ShaderResourceGroupData.cpp | 2 +- .../ShaderResourceGroupInvalidateRegistry.cpp | 2 +- .../Source/RHI/ShaderResourceGroupPool.cpp | 2 +- .../RHI/Code/Source/RHI/StreamBufferView.cpp | 2 +- .../RHI/Code/Source/RHI/StreamingImagePool.cpp | 2 +- Gems/Atom/RHI/Code/Source/RHI/SwapChain.cpp | 2 +- .../Source/RHI/SwapChainFrameAttachment.cpp | 2 +- .../Source/RHI/TransientAttachmentPool.cpp | 2 +- .../RHI/Code/Source/RHI/ValidationLayer.cpp | 2 +- Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Buffer.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Buffer.h | 2 +- .../RHI/Code/Tests/BufferPropertyTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/BufferTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/ContainerTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Device.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Device.h | 2 +- Gems/Atom/RHI/Code/Tests/DrawPacketTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Factory.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Factory.h | 2 +- Gems/Atom/RHI/Code/Tests/FrameGraph.cpp | 2 +- Gems/Atom/RHI/Code/Tests/FrameGraph.h | 2 +- Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp | 2 +- .../RHI/Code/Tests/FrameSchedulerTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/HashingTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Image.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Image.h | 2 +- .../Atom/RHI/Code/Tests/ImagePropertyTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/ImageTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/IndirectBuffer.cpp | 2 +- Gems/Atom/RHI/Code/Tests/IndirectBuffer.h | 2 +- .../RHI/Code/Tests/IndirectBufferTests.cpp | 2 +- .../Tests/InputStreamLayoutBuilderTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/IntervalMapTests.cpp | 2 +- .../Code/Tests/NameIdReflectionMapTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/PipelineState.cpp | 2 +- Gems/Atom/RHI/Code/Tests/PipelineState.h | 2 +- .../Atom/RHI/Code/Tests/PipelineStateTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Query.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Query.h | 2 +- Gems/Atom/RHI/Code/Tests/QueryTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/RHITestFixture.h | 2 +- .../RenderAttachmentLayoutBuilderTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Scope.cpp | 2 +- Gems/Atom/RHI/Code/Tests/Scope.h | 2 +- .../RHI/Code/Tests/ShaderResourceGroup.cpp | 2 +- Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.h | 2 +- .../Code/Tests/ShaderResourceGroupTests.cpp | 2 +- Gems/Atom/RHI/Code/Tests/ThreadTester.cpp | 2 +- Gems/Atom/RHI/Code/Tests/ThreadTester.h | 2 +- .../RHI/Code/Tests/TransientAttachmentPool.cpp | 2 +- .../RHI/Code/Tests/TransientAttachmentPool.h | 2 +- Gems/Atom/RHI/Code/Tests/UtilsTests.cpp | 2 +- Gems/Atom/RHI/Code/atom_rhi_edit_files.cmake | 2 +- .../Atom/RHI/Code/atom_rhi_private_files.cmake | 2 +- .../Code/atom_rhi_private_shared_files.cmake | 2 +- Gems/Atom/RHI/Code/atom_rhi_public_files.cmake | 2 +- .../Atom/RHI/Code/atom_rhi_reflect_files.cmake | 2 +- Gems/Atom/RHI/Code/atom_rhi_tests_files.cmake | 2 +- .../Atom/RHI/DX12/3rdParty/Findaftermath.cmake | 2 +- Gems/Atom/RHI/DX12/3rdParty/Findpix.cmake | 2 +- .../Platform/Windows/aftermath_windows.cmake | 2 +- .../Platform/Windows/pix_windows.cmake | 2 +- Gems/Atom/RHI/DX12/CMakeLists.txt | 2 +- Gems/Atom/RHI/DX12/Code/CMakeLists.txt | 2 +- .../Code/Include/Atom/RHI.Reflect/DX12/Base.h | 2 +- .../RHI.Reflect/DX12/BufferPoolDescriptor.h | 2 +- .../DX12/PipelineLayoutDescriptor.h | 2 +- .../DX12/PlatformLimitsDescriptor.h | 2 +- .../RHI.Reflect/DX12/ReflectSystemComponent.h | 2 +- .../RHI.Reflect/DX12/ShaderStageFunction.h | 2 +- .../platform_reflect_android_files.cmake | 2 +- .../Linux/platform_reflect_linux_files.cmake | 2 +- .../Mac/Atom/RHI.Reflect/DX12/Base_Platform.h | 2 +- .../Mac/platform_reflect_mac_files.cmake | 2 +- .../Atom/RHI.Reflect/DX12/Base_Platform.h | 2 +- .../Atom/RHI.Reflect/DX12/Base_Windows.h | 2 +- .../platform_reflect_windows_files.cmake | 2 +- .../iOS/platform_reflect_ios_files.cmake | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Unimplemented/Empty_Unimplemented.cpp | 2 +- .../Unimplemented/ModuleStub_Unimplemented.cpp | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Linux/platform_builders_linux_files.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Mac/RHI.Builders/BuilderModule_Mac.cpp | 2 +- .../Mac/platform_builders_mac_files.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Windows/RHI/Conversions_Platform.h | 2 +- .../Windows/RHI/Conversions_Windows.cpp | 2 +- .../Platform/Windows/RHI/Conversions_Windows.h | 2 +- .../Platform/Windows/RHI/DX12_Platform.h | 2 +- .../Platform/Windows/RHI/DX12_Windows.cpp | 2 +- .../Source/Platform/Windows/RHI/DX12_Windows.h | 2 +- .../Platform/Windows/RHI/Device_Platform.h | 2 +- .../Platform/Windows/RHI/Device_Windows.cpp | 2 +- .../Platform/Windows/RHI/Device_Windows.h | 2 +- .../NsightAftermathGpuCrashTracker_Windows.cpp | 2 +- .../NsightAftermathGpuCrashTracker_Windows.h | 2 +- .../Windows/RHI/NsightAftermathHelpers.h | 2 +- .../Windows/RHI/NsightAftermath_Windows.cpp | 2 +- .../Windows/RHI/PhysicalDevice_Platform.h | 2 +- .../Windows/RHI/PhysicalDevice_Windows.cpp | 2 +- .../Windows/RHI/PhysicalDevice_Windows.h | 2 +- .../Platform/Windows/RHI/SwapChain_Windows.cpp | 2 +- .../Windows/RHI/SystemComponent_Windows.cpp | 2 +- .../Windows/RHI/WindowsVersionQuery.cpp | 2 +- .../Platform/Windows/RHI/WindowsVersionQuery.h | 2 +- .../platform_builders_windows_files.cmake | 2 +- .../Windows/platform_private_windows.cmake | 2 +- .../platform_private_windows_files.cmake | 2 +- .../Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../Code/Source/RHI.Builders/BuilderModule.cpp | 2 +- .../RHI.Builders/ShaderPlatformInterface.cpp | 2 +- .../RHI.Builders/ShaderPlatformInterface.h | 2 +- .../ShaderPlatformInterfaceSystemComponent.cpp | 2 +- .../ShaderPlatformInterfaceSystemComponent.h | 2 +- .../RHI.Reflect/BufferPoolDescriptor.cpp | 2 +- .../RHI.Reflect/PipelineLayoutDescriptor.cpp | 2 +- .../RHI.Reflect/PlatformLimitsDescriptor.cpp | 2 +- .../RHI.Reflect/ReflectSystemComponent.cpp | 2 +- .../Source/RHI.Reflect/ShaderStageFunction.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/AliasedHeap.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/AliasedHeap.h | 2 +- .../Code/Source/RHI/AliasingBarrierTracker.cpp | 2 +- .../Code/Source/RHI/AliasingBarrierTracker.h | 2 +- .../DX12/Code/Source/RHI/AsyncUploadQueue.cpp | 2 +- .../DX12/Code/Source/RHI/AsyncUploadQueue.h | 2 +- .../Source/RHI/Atom_RHI_DX12_precompiled.h | 2 +- .../Code/Source/RHI/AttachmentImagePool.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.h | 2 +- .../Code/Source/RHI/BufferMemoryAllocator.cpp | 2 +- .../Code/Source/RHI/BufferMemoryAllocator.h | 2 +- .../DX12/Code/Source/RHI/BufferMemoryView.cpp | 2 +- .../DX12/Code/Source/RHI/BufferMemoryView.h | 2 +- .../RHI/DX12/Code/Source/RHI/BufferPool.cpp | 2 +- .../Atom/RHI/DX12/Code/Source/RHI/BufferPool.h | 2 +- .../RHI/DX12/Code/Source/RHI/BufferView.cpp | 2 +- .../Atom/RHI/DX12/Code/Source/RHI/BufferView.h | 2 +- .../RHI/DX12/Code/Source/RHI/CommandList.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/CommandList.h | 2 +- .../DX12/Code/Source/RHI/CommandListBase.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/CommandListBase.h | 2 +- .../DX12/Code/Source/RHI/CommandListPool.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/CommandListPool.h | 2 +- .../RHI/DX12/Code/Source/RHI/CommandQueue.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/CommandQueue.h | 2 +- .../Code/Source/RHI/CommandQueueContext.cpp | 2 +- .../DX12/Code/Source/RHI/CommandQueueContext.h | 2 +- .../RHI/DX12/Code/Source/RHI/Conversions.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/Conversions.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.h | 2 +- .../RHI/DX12/Code/Source/RHI/Descriptor.cpp | 2 +- .../Atom/RHI/DX12/Code/Source/RHI/Descriptor.h | 2 +- .../DX12/Code/Source/RHI/DescriptorContext.cpp | 2 +- .../DX12/Code/Source/RHI/DescriptorContext.h | 2 +- .../DX12/Code/Source/RHI/DescriptorPool.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/DescriptorPool.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Device.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h | 2 +- .../Code/Source/RHI/FrameGraphCompiler.cpp | 2 +- .../DX12/Code/Source/RHI/FrameGraphCompiler.h | 2 +- .../Code/Source/RHI/FrameGraphExecuteGroup.cpp | 2 +- .../Code/Source/RHI/FrameGraphExecuteGroup.h | 2 +- .../Source/RHI/FrameGraphExecuteGroupBase.cpp | 2 +- .../Source/RHI/FrameGraphExecuteGroupBase.h | 2 +- .../RHI/FrameGraphExecuteGroupMerged.cpp | 2 +- .../Source/RHI/FrameGraphExecuteGroupMerged.h | 2 +- .../Code/Source/RHI/FrameGraphExecuter.cpp | 2 +- .../DX12/Code/Source/RHI/FrameGraphExecuter.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Image.h | 2 +- .../RHI/DX12/Code/Source/RHI/ImagePool.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.h | 2 +- .../RHI/DX12/Code/Source/RHI/ImageView.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.h | 2 +- .../Source/RHI/IndirectBufferSignature.cpp | 2 +- .../Code/Source/RHI/IndirectBufferSignature.h | 2 +- .../Code/Source/RHI/IndirectBufferWriter.cpp | 2 +- .../Code/Source/RHI/IndirectBufferWriter.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Memory.h | 2 +- .../Code/Source/RHI/MemoryPageAllocator.cpp | 2 +- .../DX12/Code/Source/RHI/MemoryPageAllocator.h | 2 +- .../DX12/Code/Source/RHI/MemorySubAllocator.h | 2 +- .../RHI/DX12/Code/Source/RHI/MemoryView.cpp | 2 +- .../Atom/RHI/DX12/Code/Source/RHI/MemoryView.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/NsightAftermath.h | 2 +- .../RHI/DX12/Code/Source/RHI/PhysicalDevice.h | 2 +- .../DX12/Code/Source/RHI/PipelineLayout.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/PipelineLayout.h | 2 +- .../DX12/Code/Source/RHI/PipelineLibrary.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/PipelineLibrary.h | 2 +- .../RHI/DX12/Code/Source/RHI/PipelineState.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/PipelineState.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Query.h | 2 +- .../RHI/DX12/Code/Source/RHI/QueryPool.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h | 2 +- .../DX12/Code/Source/RHI/QueryPoolResolver.cpp | 2 +- .../DX12/Code/Source/RHI/QueryPoolResolver.h | 2 +- .../DX12/Code/Source/RHI/RayTracingBlas.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/RayTracingBlas.h | 2 +- .../Code/Source/RHI/RayTracingBufferPools.h | 2 +- .../Source/RHI/RayTracingPipelineState.cpp | 2 +- .../Code/Source/RHI/RayTracingPipelineState.h | 2 +- .../Code/Source/RHI/RayTracingShaderTable.cpp | 2 +- .../Code/Source/RHI/RayTracingShaderTable.h | 2 +- .../DX12/Code/Source/RHI/RayTracingTlas.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/RayTracingTlas.h | 2 +- .../RHI/DX12/Code/Source/RHI/ReleaseQueue.h | 2 +- .../Code/Source/RHI/ResourcePoolResolver.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.h | 2 +- .../Code/Source/RHI/ShaderResourceGroup.cpp | 2 +- .../DX12/Code/Source/RHI/ShaderResourceGroup.h | 2 +- .../Source/RHI/ShaderResourceGroupPool.cpp | 2 +- .../Code/Source/RHI/ShaderResourceGroupPool.h | 2 +- .../Code/Source/RHI/StagingMemoryAllocator.cpp | 2 +- .../Code/Source/RHI/StagingMemoryAllocator.h | 2 +- .../Code/Source/RHI/StreamingImagePool.cpp | 2 +- .../DX12/Code/Source/RHI/StreamingImagePool.h | 2 +- .../RHI/DX12/Code/Source/RHI/SwapChain.cpp | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h | 2 +- .../DX12/Code/Source/RHI/SystemComponent.cpp | 2 +- .../RHI/DX12/Code/Source/RHI/SystemComponent.h | 2 +- .../Source/RHI/TransientAttachmentPool.cpp | 2 +- .../Code/Source/RHI/TransientAttachmentPool.h | 2 +- Gems/Atom/RHI/DX12/Code/Source/RHI/resource.h | 2 +- ...rhi_dx12_builders_common_shared_files.cmake | 2 +- .../atom_rhi_dx12_private_common_files.cmake | 2 +- ..._rhi_dx12_private_common_shared_files.cmake | 2 +- .../atom_rhi_dx12_reflect_common_files.cmake | 2 +- .../DX12/Code/atom_rhi_dx12_stub_module.cmake | 2 +- Gems/Atom/RHI/DX12/Code/empty.cmake | 2 +- Gems/Atom/RHI/Metal/CMakeLists.txt | 2 +- Gems/Atom/RHI/Metal/Code/CMakeLists.txt | 2 +- .../Code/Include/Atom/RHI.Reflect/Metal/Base.h | 2 +- .../RHI.Reflect/Metal/BufferPoolDescriptor.h | 2 +- .../Metal/PipelineLayoutDescriptor.h | 2 +- .../Metal/PlatformLimitsDescriptor.h | 2 +- .../RHI.Reflect/Metal/ReflectSystemComponent.h | 2 +- .../RHI.Reflect/Metal/ShaderStageFunction.h | 2 +- .../Atom_RHI_Metal_precompiled_Platform.h | 2 +- .../Atom_RHI_Metal_precompiled_Platform.h | 2 +- .../Mac/Atom_RHI_Metal_precompiled_Mac.h | 2 +- .../Mac/Atom_RHI_Metal_precompiled_Platform.h | 2 +- .../Mac/platform_builders_mac_files.cmake | 2 +- .../Mac/platform_private_mac_files.cmake | 2 +- .../Atom_RHI_Metal_precompiled_Platform.h | 2 +- .../iOS/Atom_RHI_Metal_precompiled_Platform.h | 2 +- .../iOS/Atom_RHI_Metal_precompiled_iOS.h | 2 +- .../iOS/platform_private_ios_files.cmake | 2 +- .../Code/Source/Atom_RHI_Metal_precompiled.h | 2 +- .../Platform/Android/Metal_Traits_Android.h | 2 +- .../Platform/Android/Metal_Traits_Platform.h | 2 +- .../Source/Platform/Android/PAL2_android.cmake | 2 +- .../Unimplemented/Empty_Unimplemented.cpp | 2 +- .../Unimplemented/ModuleStub_Unimplemented.cpp | 2 +- .../Source/Platform/Linux/Metal_Traits_Linux.h | 2 +- .../Platform/Linux/Metal_Traits_Platform.h | 2 +- .../Source/Platform/Linux/PAL2_linux.cmake | 2 +- .../Linux/platform_builders_linux_files.cmake | 2 +- .../Source/Platform/Mac/Metal_Traits_Mac.h | 2 +- .../Platform/Mac/Metal_Traits_Platform.h | 2 +- .../Code/Source/Platform/Mac/PAL2_mac.cmake | 2 +- .../Platform/Mac/RHI/Conversions_Mac.cpp | 2 +- .../Source/Platform/Mac/RHI/Conversions_Mac.h | 2 +- .../Platform/Mac/RHI/Conversions_Platform.h | 2 +- .../Source/Platform/Mac/RHI/MetalView_Mac.h | 2 +- .../Source/Platform/Mac/RHI/MetalView_Mac.mm | 2 +- .../Platform/Mac/RHI/MetalView_Platform.h | 2 +- .../Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp | 2 +- .../Mac/platform_builders_mac_files.cmake | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Mac/platform_private_mac_files.cmake | 2 +- .../Platform/Mac/platform_shared_mac.cmake | 2 +- .../Platform/Windows/Metal_Traits_Platform.h | 2 +- .../Platform/Windows/Metal_Traits_Windows.h | 2 +- .../Source/Platform/Windows/PAL2_windows.cmake | 2 +- .../RHI.Builders/BuilderModule_Windows.cpp | 2 +- .../platform_builders_windows_files.cmake | 2 +- .../Platform/iOS/Metal_Traits_Platform.h | 2 +- .../Source/Platform/iOS/Metal_Traits_iOS.h | 2 +- .../Code/Source/Platform/iOS/PAL2_ios.cmake | 2 +- .../Platform/iOS/RHI/Conversions_Platform.h | 2 +- .../Platform/iOS/RHI/Conversions_iOS.cpp | 2 +- .../Source/Platform/iOS/RHI/Conversions_iOS.h | 2 +- .../Platform/iOS/RHI/MetalView_Platform.h | 2 +- .../Source/Platform/iOS/RHI/MetalView_iOS.h | 2 +- .../Source/Platform/iOS/RHI/MetalView_iOS.mm | 2 +- .../Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../iOS/platform_private_ios_files.cmake | 2 +- .../Platform/iOS/platform_shared_ios.cmake | 2 +- .../Code/Source/RHI.Builders/BuilderModule.cpp | 2 +- .../RHI.Builders/ShaderPlatformInterface.cpp | 2 +- .../RHI.Builders/ShaderPlatformInterface.h | 2 +- .../ShaderPlatformInterfaceSystemComponent.cpp | 2 +- .../ShaderPlatformInterfaceSystemComponent.h | 2 +- .../RHI.Reflect/BufferPoolDescriptor.cpp | 2 +- .../RHI.Reflect/PipelineLayoutDescriptor.cpp | 2 +- .../RHI.Reflect/PlatformLimitsDescriptor.cpp | 2 +- .../RHI.Reflect/ReflectSystemComponent.cpp | 2 +- .../Source/RHI.Reflect/ShaderStageFunction.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/AliasedHeap.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/AliasedHeap.h | 2 +- .../Code/Source/RHI/AliasingBarrierTracker.cpp | 2 +- .../Code/Source/RHI/AliasingBarrierTracker.h | 2 +- .../Metal/Code/Source/RHI/ArgumentBuffer.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/ArgumentBuffer.h | 2 +- .../Metal/Code/Source/RHI/AsyncUploadQueue.cpp | 2 +- .../Metal/Code/Source/RHI/AsyncUploadQueue.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h | 2 +- .../Code/Source/RHI/BufferMemoryAllocator.cpp | 2 +- .../Code/Source/RHI/BufferMemoryAllocator.h | 2 +- .../Metal/Code/Source/RHI/BufferMemoryView.cpp | 2 +- .../Metal/Code/Source/RHI/BufferMemoryView.h | 2 +- .../RHI/Metal/Code/Source/RHI/BufferPool.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/BufferPool.h | 2 +- .../Code/Source/RHI/BufferPoolResolver.cpp | 2 +- .../Metal/Code/Source/RHI/BufferPoolResolver.h | 2 +- .../RHI/Metal/Code/Source/RHI/BufferView.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/BufferView.h | 2 +- .../RHI/Metal/Code/Source/RHI/CommandList.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/CommandList.h | 2 +- .../Metal/Code/Source/RHI/CommandListBase.cpp | 2 +- .../Metal/Code/Source/RHI/CommandListBase.h | 2 +- .../Metal/Code/Source/RHI/CommandListPool.cpp | 2 +- .../Metal/Code/Source/RHI/CommandListPool.h | 2 +- .../RHI/Metal/Code/Source/RHI/CommandQueue.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/CommandQueue.h | 2 +- .../Source/RHI/CommandQueueCommandBuffer.cpp | 2 +- .../Source/RHI/CommandQueueCommandBuffer.h | 2 +- .../Code/Source/RHI/CommandQueueContext.cpp | 2 +- .../Code/Source/RHI/CommandQueueContext.h | 2 +- .../RHI/Metal/Code/Source/RHI/Conversions.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/Conversions.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Device.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.h | 2 +- .../Code/Source/RHI/FrameGraphCompiler.cpp | 2 +- .../Metal/Code/Source/RHI/FrameGraphCompiler.h | 2 +- .../Code/Source/RHI/FrameGraphExecuteGroup.cpp | 2 +- .../Code/Source/RHI/FrameGraphExecuteGroup.h | 2 +- .../Source/RHI/FrameGraphExecuteGroupBase.cpp | 2 +- .../Source/RHI/FrameGraphExecuteGroupBase.h | 2 +- .../RHI/FrameGraphExecuteGroupMerged.cpp | 2 +- .../Source/RHI/FrameGraphExecuteGroupMerged.h | 2 +- .../Code/Source/RHI/FrameGraphExecuter.cpp | 2 +- .../Metal/Code/Source/RHI/FrameGraphExecuter.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Image.h | 2 +- .../RHI/Metal/Code/Source/RHI/ImagePool.cpp | 2 +- .../Atom/RHI/Metal/Code/Source/RHI/ImagePool.h | 2 +- .../Code/Source/RHI/ImagePoolResolver.cpp | 2 +- .../Metal/Code/Source/RHI/ImagePoolResolver.h | 2 +- .../RHI/Metal/Code/Source/RHI/ImageView.cpp | 2 +- .../Atom/RHI/Metal/Code/Source/RHI/ImageView.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Memory.h | 2 +- .../Code/Source/RHI/MemoryPageAllocator.cpp | 2 +- .../Code/Source/RHI/MemoryPageAllocator.h | 2 +- .../Metal/Code/Source/RHI/MemorySubAllocator.h | 2 +- .../RHI/Metal/Code/Source/RHI/MemoryView.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/MemoryView.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.h | 2 +- .../Metal/Code/Source/RHI/MetalCopyShaders.h | 2 +- .../Atom/RHI/Metal/Code/Source/RHI/MetalView.h | 2 +- .../RHI/Metal/Code/Source/RHI/MetalView.mm | 2 +- .../Code/Source/RHI/MetalViewController.h | 2 +- .../Code/Source/RHI/MetalViewController.mm | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp | 2 +- .../Code/Source/RHI/NullDescriptorManager.cpp | 2 +- .../Code/Source/RHI/NullDescriptorManager.h | 2 +- .../Metal/Code/Source/RHI/PhysicalDevice.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/PhysicalDevice.h | 2 +- .../Metal/Code/Source/RHI/PipelineLayout.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/PipelineLayout.h | 2 +- .../Metal/Code/Source/RHI/PipelineLibrary.cpp | 2 +- .../Metal/Code/Source/RHI/PipelineLibrary.h | 2 +- .../Metal/Code/Source/RHI/PipelineState.cpp | 2 +- .../RHI/Metal/Code/Source/RHI/PipelineState.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Query.h | 2 +- .../RHI/Metal/Code/Source/RHI/QueryPool.cpp | 2 +- .../Atom/RHI/Metal/Code/Source/RHI/QueryPool.h | 2 +- .../RHI/Metal/Code/Source/RHI/ReleaseQueue.h | 2 +- .../Code/Source/RHI/ResourcePoolResolver.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.h | 2 +- .../Code/Source/RHI/ShaderResourceGroup.cpp | 2 +- .../Code/Source/RHI/ShaderResourceGroup.h | 2 +- .../Source/RHI/ShaderResourceGroupPool.cpp | 2 +- .../Code/Source/RHI/ShaderResourceGroupPool.h | 2 +- .../Code/Source/RHI/StreamingImagePool.cpp | 2 +- .../Metal/Code/Source/RHI/StreamingImagePool.h | 2 +- .../Source/RHI/StreamingImagePoolResolver.cpp | 2 +- .../Source/RHI/StreamingImagePoolResolver.h | 2 +- .../RHI/Metal/Code/Source/RHI/SwapChain.cpp | 2 +- .../Atom/RHI/Metal/Code/Source/RHI/SwapChain.h | 2 +- .../Metal/Code/Source/RHI/SystemComponent.cpp | 2 +- .../Metal/Code/Source/RHI/SystemComponent.h | 2 +- .../Source/RHI/TransientAttachmentPool.cpp | 2 +- .../Code/Source/RHI/TransientAttachmentPool.h | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Util.cpp | 2 +- Gems/Atom/RHI/Metal/Code/Source/RHI/Util.h | 2 +- .../RHI/Metal/Code/Tests/AtomRHIMetalTests.cpp | 2 +- .../atom_rhi_metal_builders_common_files.cmake | 2 +- .../atom_rhi_metal_builders_shared_files.cmake | 2 +- .../atom_rhi_metal_builders_tests_files.cmake | 2 +- .../Code/atom_rhi_metal_common_files.cmake | 2 +- .../atom_rhi_metal_private_common_files.cmake | 2 +- ...rhi_metal_private_common_shared_files.cmake | 2 +- .../atom_rhi_metal_private_tests_files.cmake | 2 +- .../atom_rhi_metal_reflect_common_files.cmake | 2 +- .../Code/atom_rhi_metal_stub_module.cmake | 2 +- Gems/Atom/RHI/Null/CMakeLists.txt | 2 +- Gems/Atom/RHI/Null/Code/CMakeLists.txt | 2 +- .../Code/Include/Atom/RHI.Reflect/Null/Base.h | 2 +- .../Null/PipelineLayoutDescriptor.h | 2 +- .../RHI.Reflect/Null/ReflectSystemComponent.h | 2 +- .../RHI.Reflect/Null/ShaderStageFunction.h | 2 +- .../Atom_RHI_Null_precompiled_Platform.h | 2 +- .../Linux/Atom_RHI_Null_precompiled_Platform.h | 2 +- .../Mac/Atom_RHI_Null_precompiled_Platform.h | 2 +- .../Atom_RHI_Null_precompiled_Platform.h | 2 +- .../iOS/Atom_RHI_Null_precompiled_Platform.h | 2 +- .../Code/Source/Atom_RHI_Null_precompiled.h | 2 +- .../Platform/Android/Null_Traits_Android.h | 2 +- .../Platform/Android/Null_Traits_Platform.h | 2 +- .../Unimplemented/Empty_Unimplemented.cpp | 2 +- .../Unimplemented/ModuleStub_Unimplemented.cpp | 2 +- .../Source/Platform/Linux/Null_Traits_Linux.h | 2 +- .../Platform/Linux/Null_Traits_Platform.h | 2 +- .../Code/Source/Platform/Mac/Null_Traits_Mac.h | 2 +- .../Source/Platform/Mac/Null_Traits_Platform.h | 2 +- .../Platform/Windows/Null_Traits_Platform.h | 2 +- .../Platform/Windows/Null_Traits_Windows.h | 2 +- .../Source/Platform/iOS/Null_Traits_Platform.h | 2 +- .../Code/Source/Platform/iOS/Null_Traits_iOS.h | 2 +- .../Code/Source/RHI.Builders/BuilderModule.cpp | 2 +- .../RHI.Builders/ShaderPlatformInterface.cpp | 2 +- .../RHI.Builders/ShaderPlatformInterface.h | 2 +- .../ShaderPlatformInterfaceSystemComponent.cpp | 2 +- .../ShaderPlatformInterfaceSystemComponent.h | 2 +- .../RHI.Reflect/PipelineLayoutDescriptor.cpp | 2 +- .../RHI.Reflect/ReflectSystemComponent.cpp | 2 +- .../Source/RHI.Reflect/ShaderStageFunction.cpp | 2 +- .../RHI/Null/Code/Source/RHI/AliasedHeap.cpp | 2 +- .../RHI/Null/Code/Source/RHI/AliasedHeap.h | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.h | 2 +- .../RHI/Null/Code/Source/RHI/BufferPool.cpp | 2 +- .../Atom/RHI/Null/Code/Source/RHI/BufferPool.h | 2 +- .../RHI/Null/Code/Source/RHI/BufferView.cpp | 2 +- .../Atom/RHI/Null/Code/Source/RHI/BufferView.h | 2 +- .../RHI/Null/Code/Source/RHI/CommandList.cpp | 2 +- .../RHI/Null/Code/Source/RHI/CommandList.h | 2 +- .../RHI/Null/Code/Source/RHI/CommandQueue.cpp | 2 +- .../RHI/Null/Code/Source/RHI/CommandQueue.h | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Device.h | 2 +- .../Code/Source/RHI/FrameGraphCompiler.cpp | 2 +- .../Null/Code/Source/RHI/FrameGraphCompiler.h | 2 +- .../Code/Source/RHI/FrameGraphExecuter.cpp | 2 +- .../Null/Code/Source/RHI/FrameGraphExecuter.h | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Image.h | 2 +- .../RHI/Null/Code/Source/RHI/ImagePool.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.h | 2 +- .../RHI/Null/Code/Source/RHI/ImageView.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.h | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp | 2 +- .../Null/Code/Source/RHI/PhysicalDevice.cpp | 2 +- .../RHI/Null/Code/Source/RHI/PhysicalDevice.h | 2 +- .../Null/Code/Source/RHI/PipelineLibrary.cpp | 2 +- .../RHI/Null/Code/Source/RHI/PipelineLibrary.h | 2 +- .../RHI/Null/Code/Source/RHI/PipelineState.cpp | 2 +- .../RHI/Null/Code/Source/RHI/PipelineState.h | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Query.h | 2 +- .../RHI/Null/Code/Source/RHI/QueryPool.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.h | 2 +- .../Null/Code/Source/RHI/RayTracingBlas.cpp | 2 +- .../RHI/Null/Code/Source/RHI/RayTracingBlas.h | 2 +- .../Code/Source/RHI/RayTracingBufferPools.h | 2 +- .../Source/RHI/RayTracingPipelineState.cpp | 2 +- .../Code/Source/RHI/RayTracingPipelineState.h | 2 +- .../Code/Source/RHI/RayTracingShaderTable.cpp | 2 +- .../Code/Source/RHI/RayTracingShaderTable.h | 2 +- .../Null/Code/Source/RHI/RayTracingTlas.cpp | 2 +- .../RHI/Null/Code/Source/RHI/RayTracingTlas.h | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/Scope.h | 2 +- .../Code/Source/RHI/ShaderResourceGroup.cpp | 2 +- .../Null/Code/Source/RHI/ShaderResourceGroup.h | 2 +- .../Source/RHI/ShaderResourceGroupPool.cpp | 2 +- .../Code/Source/RHI/ShaderResourceGroupPool.h | 2 +- .../Code/Source/RHI/StreamingImagePool.cpp | 2 +- .../Null/Code/Source/RHI/StreamingImagePool.h | 2 +- .../RHI/Null/Code/Source/RHI/SwapChain.cpp | 2 +- Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.h | 2 +- .../Null/Code/Source/RHI/SystemComponent.cpp | 2 +- .../RHI/Null/Code/Source/RHI/SystemComponent.h | 2 +- .../Source/RHI/TransientAttachmentPool.cpp | 2 +- .../Code/Source/RHI/TransientAttachmentPool.h | 2 +- .../atom_rhi_null_builders_common_files.cmake | 2 +- .../atom_rhi_null_builders_shared_files.cmake | 2 +- .../Null/Code/atom_rhi_null_common_files.cmake | 2 +- .../atom_rhi_null_private_common_files.cmake | 2 +- ..._rhi_null_private_common_shared_files.cmake | 2 +- .../atom_rhi_null_reflect_common_files.cmake | 2 +- .../Null/Code/atom_rhi_null_stub_module.cmake | 2 +- .../Registry/PhysicalDeviceDriverInfo.setreg | 2 +- .../RHI/Vulkan/3rdParty/Findglad_vulkan.cmake | 2 +- .../Platform/Android/glad_vulkan_android.cmake | 2 +- .../Platform/Linux/glad_vulkan_linux.cmake | 2 +- .../Platform/Mac/glad_vulkan_mac.cmake | 2 +- .../Platform/Windows/glad_vulkan_windows.cmake | 2 +- Gems/Atom/RHI/Vulkan/CMakeLists.txt | 2 +- Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt | 2 +- .../Include/Atom/RHI.Loader/FunctionLoader.h | 2 +- .../Atom/RHI.Loader/Glad/vulkan/vulkan.h | 2 +- .../Include/Atom/RHI.Reflect/Vulkan/Base.h | 2 +- .../RHI.Reflect/Vulkan/BufferPoolDescriptor.h | 2 +- .../RHI.Reflect/Vulkan/ImagePoolDescriptor.h | 2 +- .../Vulkan/PlatformLimitsDescriptor.h | 2 +- .../Vulkan/ReflectSystemComponent.h | 2 +- .../Atom/RHI.Reflect/Vulkan/ShaderDescriptor.h | 2 +- .../RHI.Reflect/Vulkan/ShaderStageFunction.h | 2 +- .../Atom/RHI.Loader/Glad/Vulkan_Platform.h | 2 +- .../Atom_RHI_Vulkan_precompiled_Android.h | 2 +- .../Atom_RHI_Vulkan_precompiled_Platform.h | 2 +- .../platform_builders_android_files.cmake | 2 +- .../platform_private_android_files.cmake | 2 +- .../Atom/RHI.Loader/Glad/Vulkan_Platform.h | 2 +- .../Atom/RHI.Loader/Glad/Vulkan_Platform.h | 2 +- .../Linux/Atom_RHI_Vulkan_precompiled_Linux.h | 2 +- .../Atom_RHI_Vulkan_precompiled_Platform.h | 2 +- .../Linux/platform_builders_linux_files.cmake | 2 +- .../Linux/platform_private_linux_files.cmake | 2 +- .../Mac/Atom/RHI.Loader/Glad/Vulkan_Platform.h | 2 +- .../Mac/Atom_RHI_Vulkan_precompiled_Mac.h | 2 +- .../Mac/Atom_RHI_Vulkan_precompiled_Platform.h | 2 +- .../Mac/platform_builders_mac_files.cmake | 2 +- .../Mac/platform_private_mac_files.cmake | 2 +- .../Atom/RHI.Loader/Glad/Vulkan_Platform.h | 2 +- .../Atom/RHI.Loader/Glad/Vulkan_Windows.h | 2 +- .../Atom_RHI_Vulkan_precompiled_Platform.h | 2 +- .../Atom_RHI_Vulkan_precompiled_Windows.h | 2 +- .../platform_builders_windows_files.cmake | 2 +- .../platform_private_windows_files.cmake | 2 +- .../iOS/Atom/RHI.Loader/Glad/Vulkan_Platform.h | 2 +- .../iOS/Atom_RHI_Vulkan_precompiled_Platform.h | 2 +- .../iOS/platform_builders_ios_files.cmake | 2 +- .../iOS/platform_private_ios_files.cmake | 2 +- .../Code/Source/Atom_RHI_Vulkan_precompiled.h | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Android/RHI/WSISurface_Android.cpp | 2 +- .../Platform/Android/Vulkan_Traits_Android.h | 2 +- .../Platform/Android/Vulkan_Traits_Platform.h | 2 +- .../platform_builders_android_files.cmake | 2 +- .../Android/platform_glad_android_files.cmake | 2 +- .../platform_private_android_files.cmake | 2 +- .../platform_private_static_android.cmake | 2 +- .../platform_reflect_android_files.cmake | 2 +- .../Unimplemented/Empty_Unimplemented.cpp | 2 +- .../Unimplemented/ModuleStub_Unimplemented.cpp | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Linux/RHI.Builders/BuilderModule_Linux.cpp | 2 +- .../Platform/Linux/RHI/WSISurface_Linux.cpp | 2 +- .../Platform/Linux/Vulkan_Traits_Linux.h | 2 +- .../Platform/Linux/Vulkan_Traits_Platform.h | 2 +- .../Linux/platform_builders_linux_files.cmake | 2 +- .../Linux/platform_glad_linux_files.cmake | 2 +- .../Linux/platform_private_linux_files.cmake | 2 +- .../Linux/platform_private_static_linux.cmake | 2 +- .../Linux/platform_reflect_linux_files.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Mac/RHI.Builders/BuilderModule_Mac.cpp | 2 +- .../Source/Platform/Mac/Vulkan_Traits_Mac.h | 2 +- .../Platform/Mac/Vulkan_Traits_Platform.h | 2 +- .../Mac/platform_builders_mac_files.cmake | 2 +- .../Platform/Mac/platform_glad_mac_files.cmake | 2 +- .../Mac/platform_private_mac_files.cmake | 2 +- .../Mac/platform_private_static_mac.cmake | 2 +- .../Mac/platform_reflect_mac_files.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../RHI.Builders/BuilderModule_Windows.cpp | 2 +- .../Windows/RHI/WSISurface_Windows.cpp | 2 +- .../Platform/Windows/Vulkan_Traits_Platform.h | 2 +- .../Platform/Windows/Vulkan_Traits_Windows.h | 2 +- .../platform_builders_windows_files.cmake | 2 +- .../Windows/platform_glad_windows_files.cmake | 2 +- .../platform_private_static_windows.cmake | 2 +- .../platform_private_windows_files.cmake | 2 +- .../platform_reflect_windows_files.cmake | 2 +- .../Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../Platform/iOS/Vulkan_Traits_Platform.h | 2 +- .../Source/Platform/iOS/Vulkan_Traits_iOS.h | 2 +- .../iOS/platform_builders_ios_files.cmake | 2 +- .../Platform/iOS/platform_glad_ios_files.cmake | 2 +- .../iOS/platform_private_ios_files.cmake | 2 +- .../iOS/platform_private_static_ios.cmake | 2 +- .../iOS/platform_reflect_ios_files.cmake | 2 +- .../RHI.Builders/ShaderPlatformInterface.cpp | 2 +- .../RHI.Builders/ShaderPlatformInterface.h | 2 +- .../ShaderPlatformInterfaceSystemComponent.cpp | 2 +- .../ShaderPlatformInterfaceSystemComponent.h | 2 +- .../Code/Source/RHI.Loader/FunctionLoader.cpp | 2 +- .../RHI.Loader/Glad/GladFunctionLoader.cpp | 2 +- .../RHI.Loader/Glad/GladFunctionLoader.h | 2 +- .../RHI.Reflect/BufferPoolDescriptor.cpp | 2 +- .../Source/RHI.Reflect/ImagePoolDescriptor.cpp | 2 +- .../RHI.Reflect/PlatformLimitsDescriptor.cpp | 2 +- .../RHI.Reflect/ReflectSystemComponent.cpp | 2 +- .../Source/RHI.Reflect/ShaderDescriptor.cpp | 2 +- .../Source/RHI.Reflect/ShaderStageFunction.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/AliasedHeap.h | 2 +- .../Code/Source/RHI/AliasingBarrierTracker.cpp | 2 +- .../Code/Source/RHI/AliasingBarrierTracker.h | 2 +- .../Code/Source/RHI/AsyncUploadQueue.cpp | 2 +- .../Vulkan/Code/Source/RHI/AsyncUploadQueue.h | 2 +- .../Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.h | 2 +- .../Vulkan/Code/Source/RHI/BufferMemory.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/BufferMemory.h | 2 +- .../Code/Source/RHI/BufferMemoryAllocator.h | 2 +- .../Source/RHI/BufferMemoryPageAllocator.cpp | 2 +- .../Source/RHI/BufferMemoryPageAllocator.h | 2 +- .../Vulkan/Code/Source/RHI/BufferMemoryView.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/BufferPool.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/BufferPool.h | 2 +- .../Code/Source/RHI/BufferPoolResolver.cpp | 2 +- .../Code/Source/RHI/BufferPoolResolver.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/BufferView.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/BufferView.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/CommandList.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/CommandList.h | 2 +- .../Code/Source/RHI/CommandListAllocator.cpp | 2 +- .../Code/Source/RHI/CommandListAllocator.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/CommandPool.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/CommandPool.h | 2 +- .../Vulkan/Code/Source/RHI/CommandQueue.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/CommandQueue.h | 2 +- .../Code/Source/RHI/CommandQueueContext.cpp | 2 +- .../Code/Source/RHI/CommandQueueContext.h | 2 +- .../Vulkan/Code/Source/RHI/ComputePipeline.cpp | 2 +- .../Vulkan/Code/Source/RHI/ComputePipeline.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/Conversion.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/Conversion.h | 2 +- .../Vulkan/Code/Source/RHI/DescriptorPool.cpp | 2 +- .../Vulkan/Code/Source/RHI/DescriptorPool.h | 2 +- .../Vulkan/Code/Source/RHI/DescriptorSet.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/DescriptorSet.h | 2 +- .../Code/Source/RHI/DescriptorSetAllocator.cpp | 2 +- .../Code/Source/RHI/DescriptorSetAllocator.h | 2 +- .../Code/Source/RHI/DescriptorSetLayout.cpp | 2 +- .../Code/Source/RHI/DescriptorSetLayout.h | 2 +- .../Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.h | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/Formats.inl | 2 +- .../Code/Source/RHI/FrameGraphCompiler.cpp | 2 +- .../Code/Source/RHI/FrameGraphCompiler.h | 2 +- .../Code/Source/RHI/FrameGraphExecuteGroup.cpp | 2 +- .../Code/Source/RHI/FrameGraphExecuteGroup.h | 2 +- .../Source/RHI/FrameGraphExecuteGroupBase.cpp | 2 +- .../Source/RHI/FrameGraphExecuteGroupBase.h | 2 +- .../RHI/FrameGraphExecuteGroupHandler.cpp | 2 +- .../Source/RHI/FrameGraphExecuteGroupHandler.h | 2 +- .../RHI/FrameGraphExecuteGroupHandlerBase.cpp | 2 +- .../RHI/FrameGraphExecuteGroupHandlerBase.h | 2 +- .../RHI/FrameGraphExecuteGroupMerged.cpp | 2 +- .../Source/RHI/FrameGraphExecuteGroupMerged.h | 2 +- .../FrameGraphExecuteGroupMergedHandler.cpp | 2 +- .../RHI/FrameGraphExecuteGroupMergedHandler.h | 2 +- .../Code/Source/RHI/FrameGraphExecuter.cpp | 2 +- .../Code/Source/RHI/FrameGraphExecuter.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/Framebuffer.h | 2 +- .../Code/Source/RHI/GraphicsPipeline.cpp | 2 +- .../Vulkan/Code/Source/RHI/GraphicsPipeline.h | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/ImagePool.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/ImagePool.h | 2 +- .../Code/Source/RHI/ImagePoolResolver.cpp | 2 +- .../Vulkan/Code/Source/RHI/ImagePoolResolver.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/ImageView.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/ImageView.h | 2 +- .../Source/RHI/IndirectBufferSignature.cpp | 2 +- .../Code/Source/RHI/IndirectBufferSignature.h | 2 +- .../Code/Source/RHI/IndirectBufferWriter.cpp | 2 +- .../Code/Source/RHI/IndirectBufferWriter.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/Instance.cpp | 2 +- .../Atom/RHI/Vulkan/Code/Source/RHI/Instance.h | 2 +- .../Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h | 2 +- .../Vulkan/Code/Source/RHI/MemoryAllocator.h | 2 +- .../Code/Source/RHI/MemoryPageAllocator.cpp | 2 +- .../Code/Source/RHI/MemoryPageAllocator.h | 2 +- .../Code/Source/RHI/MemoryTypeAllocator.h | 2 +- .../Vulkan/Code/Source/RHI/MemoryTypeView.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/MemoryView.h | 2 +- .../Source/RHI/MergedShaderResourceGroup.cpp | 2 +- .../Source/RHI/MergedShaderResourceGroup.h | 2 +- .../RHI/MergedShaderResourceGroupPool.cpp | 2 +- .../Source/RHI/MergedShaderResourceGroupPool.h | 2 +- .../Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp | 2 +- .../Code/Source/RHI/NullDescriptorManager.cpp | 2 +- .../Code/Source/RHI/NullDescriptorManager.h | 2 +- .../Vulkan/Code/Source/RHI/PhysicalDevice.cpp | 2 +- .../Vulkan/Code/Source/RHI/PhysicalDevice.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/Pipeline.cpp | 2 +- .../Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.h | 2 +- .../Vulkan/Code/Source/RHI/PipelineLayout.cpp | 2 +- .../Vulkan/Code/Source/RHI/PipelineLayout.h | 2 +- .../Vulkan/Code/Source/RHI/PipelineLibrary.cpp | 2 +- .../Vulkan/Code/Source/RHI/PipelineLibrary.h | 2 +- .../Vulkan/Code/Source/RHI/PipelineState.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/PipelineState.h | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/QueryPool.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/QueryPool.h | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h | 2 +- .../Vulkan/Code/Source/RHI/RayTracingBlas.cpp | 2 +- .../Vulkan/Code/Source/RHI/RayTracingBlas.h | 2 +- .../Code/Source/RHI/RayTracingBufferPools.h | 2 +- .../Code/Source/RHI/RayTracingPipeline.cpp | 2 +- .../Code/Source/RHI/RayTracingPipeline.h | 2 +- .../Source/RHI/RayTracingPipelineState.cpp | 2 +- .../Code/Source/RHI/RayTracingPipelineState.h | 2 +- .../Code/Source/RHI/RayTracingShaderTable.cpp | 2 +- .../Code/Source/RHI/RayTracingShaderTable.h | 2 +- .../Vulkan/Code/Source/RHI/RayTracingTlas.cpp | 2 +- .../Vulkan/Code/Source/RHI/RayTracingTlas.h | 2 +- .../Vulkan/Code/Source/RHI/ReleaseContainer.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/ReleaseQueue.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/RenderPass.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/RenderPass.h | 2 +- .../Code/Source/RHI/RenderPassBuilder.cpp | 2 +- .../Vulkan/Code/Source/RHI/RenderPassBuilder.h | 2 +- .../Code/Source/RHI/ResourcePoolResolver.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/Sampler.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/Semaphore.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/Semaphore.h | 2 +- .../Code/Source/RHI/SemaphoreAllocator.cpp | 2 +- .../Code/Source/RHI/SemaphoreAllocator.h | 2 +- .../Vulkan/Code/Source/RHI/ShaderModule.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/ShaderModule.h | 2 +- .../Code/Source/RHI/ShaderResourceGroup.cpp | 2 +- .../Code/Source/RHI/ShaderResourceGroup.h | 2 +- .../Source/RHI/ShaderResourceGroupPool.cpp | 2 +- .../Code/Source/RHI/ShaderResourceGroupPool.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/SignalEvent.h | 2 +- .../Code/Source/RHI/StreamingImagePool.cpp | 2 +- .../Code/Source/RHI/StreamingImagePool.h | 2 +- .../Source/RHI/StreamingImagePoolResolver.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/SwapChain.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/SwapChain.h | 2 +- .../Vulkan/Code/Source/RHI/SystemComponent.cpp | 2 +- .../Vulkan/Code/Source/RHI/SystemComponent.h | 2 +- .../Source/RHI/TransientAttachmentPool.cpp | 2 +- .../Code/Source/RHI/TransientAttachmentPool.h | 2 +- .../Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp | 2 +- Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.h | 2 +- .../RHI/Vulkan/Code/Source/RHI/WSISurface.cpp | 2 +- .../RHI/Vulkan/Code/Source/RHI/WSISurface.h | 2 +- ...atom_rhi_vulkan_builders_common_files.cmake | 2 +- .../Code/atom_rhi_vulkan_common_files.cmake | 2 +- .../Code/atom_rhi_vulkan_glad_files.cmake | 2 +- .../atom_rhi_vulkan_private_common_files.cmake | 2 +- ...hi_vulkan_private_common_shared_files.cmake | 2 +- .../atom_rhi_vulkan_reflect_common_files.cmake | 2 +- .../Code/atom_rhi_vulkan_stub_module.cmake | 2 +- .../RPI/Assets/Materials/DefaultMaterial.azsl | 2 +- .../Materials/DefaultMaterial_DepthPass.azsl | 2 +- .../RPI/Assets/Shader/DecomposeMsImage.azsl | 2 +- Gems/Atom/RPI/Assets/Shader/ImagePreview.azsl | 2 +- .../RPI/Assets/ShaderLib/Atom/RPI/Math.azsli | 2 +- .../ShaderResourceGroups/DefaultDrawSrg.azsli | 2 +- .../DefaultObjectSrg.azsli | 2 +- .../ShaderLib/Atom/RPI/TangentSpace.azsli | 2 +- .../Atom/RPI/Assets/atom_rpi_asset_files.cmake | 2 +- Gems/Atom/RPI/Assets/generate_asset_cmake.bat | 4 ++-- Gems/Atom/RPI/CMakeLists.txt | 2 +- Gems/Atom/RPI/Code/CMakeLists.txt | 2 +- .../RPI.Edit/Common/AssetAliasesSourceData.h | 2 +- .../Include/Atom/RPI.Edit/Common/AssetUtils.h | 2 +- .../Include/Atom/RPI.Edit/Common/ColorUtils.h | 2 +- .../Atom/RPI.Edit/Common/ConvertibleSource.h | 2 +- .../Atom/RPI.Edit/Common/JsonFileLoadContext.h | 2 +- .../Atom/RPI.Edit/Common/JsonReportingHelper.h | 2 +- .../Include/Atom/RPI.Edit/Common/JsonUtils.h | 2 +- .../Material/LuaMaterialFunctorSourceData.h | 2 +- .../RPI.Edit/Material/MaterialConverterBus.h | 2 +- .../Material/MaterialFunctorSourceData.h | 2 +- .../MaterialFunctorSourceDataRegistration.h | 2 +- .../MaterialFunctorSourceDataSerializer.h | 2 +- .../RPI.Edit/Material/MaterialPropertyId.h | 2 +- .../Material/MaterialPropertySerializer.h | 2 +- .../Material/MaterialPropertyValueSerializer.h | 2 +- .../Material/MaterialPropertyValueSourceData.h | 2 +- ...MaterialPropertyValueSourceDataSerializer.h | 2 +- .../RPI.Edit/Material/MaterialSourceData.h | 2 +- .../Material/MaterialSourceDataSerializer.h | 2 +- .../RPI.Edit/Material/MaterialTypeSourceData.h | 2 +- .../Atom/RPI.Edit/Material/MaterialUtils.h | 2 +- .../ResourcePool/ResourcePoolSourceData.h | 2 +- .../Atom/RPI.Edit/Shader/ShaderSourceData.h | 2 +- .../Shader/ShaderVariantAssetCreator.h | 2 +- .../Shader/ShaderVariantListSourceData.h | 2 +- .../Shader/ShaderVariantTreeAssetCreator.h | 2 +- .../Include/Atom/RPI.Public/AssetInitBus.h | 2 +- .../Atom/RPI.Public/AuxGeom/AuxGeomDraw.h | 2 +- .../AuxGeom/AuxGeomFeatureProcessorInterface.h | 2 +- .../RPI/Code/Include/Atom/RPI.Public/Base.h | 2 +- .../Include/Atom/RPI.Public/Buffer/Buffer.h | 2 +- .../Atom/RPI.Public/Buffer/BufferPool.h | 2 +- .../Atom/RPI.Public/Buffer/BufferSystem.h | 2 +- .../RPI.Public/Buffer/BufferSystemInterface.h | 2 +- .../ColorManagement/TransformColor.h | 2 +- .../RPI/Code/Include/Atom/RPI.Public/Culling.h | 2 +- .../RPI.Public/DynamicDraw/DynamicBuffer.h | 2 +- .../DynamicDraw/DynamicBufferAllocator.h | 2 +- .../DynamicDraw/DynamicDrawContext.h | 2 +- .../DynamicDraw/DynamicDrawInterface.h | 2 +- .../RPI.Public/DynamicDraw/DynamicDrawSystem.h | 2 +- .../Include/Atom/RPI.Public/FeatureProcessor.h | 2 +- .../Atom/RPI.Public/FeatureProcessorFactory.h | 2 +- .../Atom/RPI.Public/GpuQuery/GpuQuerySystem.h | 2 +- .../GpuQuery/GpuQuerySystemInterface.h | 2 +- .../Atom/RPI.Public/GpuQuery/GpuQueryTypes.h | 2 +- .../Include/Atom/RPI.Public/GpuQuery/Query.h | 2 +- .../Atom/RPI.Public/GpuQuery/QueryPool.h | 2 +- .../RPI.Public/GpuQuery/TimestampQueryPool.h | 2 +- .../Atom/RPI.Public/Image/AttachmentImage.h | 2 +- .../RPI.Public/Image/AttachmentImagePool.h | 2 +- .../Image/DefaultStreamingImageController.h | 2 +- .../Atom/RPI.Public/Image/ImageSystem.h | 2 +- .../RPI.Public/Image/ImageSystemInterface.h | 2 +- .../Atom/RPI.Public/Image/StreamingImage.h | 2 +- .../RPI.Public/Image/StreamingImageContext.h | 2 +- .../Image/StreamingImageController.h | 2 +- .../Atom/RPI.Public/Image/StreamingImagePool.h | 2 +- .../Atom/RPI.Public/Material/Material.h | 2 +- .../Material/MaterialReloadNotificationBus.h | 2 +- .../Atom/RPI.Public/Material/MaterialSystem.h | 2 +- .../Include/Atom/RPI.Public/MeshDrawPacket.h | 2 +- .../Code/Include/Atom/RPI.Public/Model/Model.h | 2 +- .../Include/Atom/RPI.Public/Model/ModelLod.h | 2 +- .../Atom/RPI.Public/Model/ModelLodUtils.h | 2 +- .../Atom/RPI.Public/Model/ModelSystem.h | 2 +- .../RPI.Public/Model/UvStreamTangentBitmask.h | 2 +- .../Atom/RPI.Public/Pass/AttachmentReadback.h | 2 +- .../Include/Atom/RPI.Public/Pass/ComputePass.h | 2 +- .../Include/Atom/RPI.Public/Pass/CopyPass.h | 2 +- .../RPI.Public/Pass/FullscreenTrianglePass.h | 2 +- .../Atom/RPI.Public/Pass/MSAAResolvePass.h | 2 +- .../Include/Atom/RPI.Public/Pass/ParentPass.h | 2 +- .../Code/Include/Atom/RPI.Public/Pass/Pass.h | 2 +- .../Atom/RPI.Public/Pass/PassAttachment.h | 2 +- .../Include/Atom/RPI.Public/Pass/PassDefines.h | 2 +- .../Include/Atom/RPI.Public/Pass/PassFactory.h | 2 +- .../Include/Atom/RPI.Public/Pass/PassFilter.h | 2 +- .../Include/Atom/RPI.Public/Pass/PassLibrary.h | 2 +- .../Include/Atom/RPI.Public/Pass/PassSystem.h | 2 +- .../Atom/RPI.Public/Pass/PassSystemInterface.h | 2 +- .../Include/Atom/RPI.Public/Pass/PassUtils.h | 2 +- .../Include/Atom/RPI.Public/Pass/RasterPass.h | 2 +- .../Include/Atom/RPI.Public/Pass/RenderPass.h | 2 +- .../Pass/Specific/DownsampleMipChainPass.h | 2 +- .../Pass/Specific/EnvironmentCubeMapPass.h | 2 +- .../Pass/Specific/ImageAttachmentPreviewPass.h | 2 +- .../Pass/Specific/RenderToTexturePass.h | 2 +- .../RPI.Public/Pass/Specific/SelectorPass.h | 2 +- .../RPI.Public/Pass/Specific/SwapChainPass.h | 2 +- .../Include/Atom/RPI.Public/PipelineState.h | 2 +- .../Code/Include/Atom/RPI.Public/RPISystem.h | 2 +- .../Atom/RPI.Public/RPISystemInterface.h | 2 +- .../Code/Include/Atom/RPI.Public/RPIUtils.h | 2 +- .../Include/Atom/RPI.Public/RenderPipeline.h | 2 +- .../RPI/Code/Include/Atom/RPI.Public/Scene.h | 2 +- .../Code/Include/Atom/RPI.Public/SceneBus.h | 2 +- .../RPI.Public/Shader/Metrics/ShaderMetrics.h | 2 +- .../Shader/Metrics/ShaderMetricsSystem.h | 2 +- .../Metrics/ShaderMetricsSystemInterface.h | 2 +- .../Include/Atom/RPI.Public/Shader/Shader.h | 2 +- .../Shader/ShaderReloadDebugTracker.h | 2 +- .../Shader/ShaderReloadNotificationBus.h | 2 +- .../RPI.Public/Shader/ShaderResourceGroup.h | 2 +- .../Shader/ShaderResourceGroupPool.h | 2 +- .../Atom/RPI.Public/Shader/ShaderSystem.h | 2 +- .../RPI.Public/Shader/ShaderSystemInterface.h | 2 +- .../Atom/RPI.Public/Shader/ShaderVariant.h | 2 +- .../Shader/ShaderVariantAsyncLoader.h | 2 +- .../RPI/Code/Include/Atom/RPI.Public/View.h | 2 +- .../Include/Atom/RPI.Public/ViewProviderBus.h | 2 +- .../Include/Atom/RPI.Public/ViewportContext.h | 2 +- .../Atom/RPI.Public/ViewportContextBus.h | 2 +- .../Atom/RPI.Public/ViewportContextManager.h | 2 +- .../Include/Atom/RPI.Public/WindowContext.h | 2 +- .../Include/Atom/RPI.Public/WindowContextBus.h | 2 +- .../Atom/RPI.Reflect/Asset/AssetHandler.h | 2 +- .../Atom/RPI.Reflect/Asset/AssetReference.h | 2 +- .../Atom/RPI.Reflect/Asset/AssetUtils.h | 2 +- .../Atom/RPI.Reflect/Asset/AssetUtils.inl | 2 +- .../RPI.Reflect/Asset/BuiltInAssetHandler.h | 2 +- .../Include/Atom/RPI.Reflect/AssetCreator.h | 2 +- .../RPI/Code/Include/Atom/RPI.Reflect/Base.h | 2 +- .../Atom/RPI.Reflect/Buffer/BufferAsset.h | 2 +- .../RPI.Reflect/Buffer/BufferAssetCreator.h | 2 +- .../Atom/RPI.Reflect/Buffer/BufferAssetView.h | 2 +- .../RPI.Reflect/FeatureProcessorDescriptor.h | 2 +- .../RPI.Reflect/GpuQuerySystemDescriptor.h | 2 +- .../RPI.Reflect/Image/AttachmentImageAsset.h | 2 +- .../Image/AttachmentImageAssetCreator.h | 2 +- .../DefaultStreamingImageControllerAsset.h | 2 +- .../Include/Atom/RPI.Reflect/Image/Image.h | 2 +- .../Atom/RPI.Reflect/Image/ImageAsset.h | 2 +- .../RPI.Reflect/Image/ImageMipChainAsset.h | 2 +- .../Image/ImageMipChainAssetCreator.h | 2 +- .../RPI.Reflect/Image/ImageSystemDescriptor.h | 2 +- .../RPI.Reflect/Image/StreamingImageAsset.h | 2 +- .../Image/StreamingImageAssetCreator.h | 2 +- .../Image/StreamingImageAssetHandler.h | 2 +- .../Image/StreamingImageControllerAsset.h | 2 +- .../Image/StreamingImagePoolAsset.h | 2 +- .../Image/StreamingImagePoolAssetCreator.h | 2 +- .../RPI/Code/Include/Atom/RPI.Reflect/Limits.h | 2 +- .../RPI.Reflect/Material/LuaMaterialFunctor.h | 2 +- .../Atom/RPI.Reflect/Material/MaterialAsset.h | 2 +- .../Material/MaterialAssetCreator.h | 2 +- .../Material/MaterialAssetCreatorCommon.h | 2 +- .../Material/MaterialDynamicMetadata.h | 2 +- .../RPI.Reflect/Material/MaterialFunctor.h | 2 +- .../Material/MaterialPropertiesLayout.h | 2 +- .../Material/MaterialPropertyDescriptor.h | 2 +- .../Material/MaterialPropertyValue.h | 2 +- .../RPI.Reflect/Material/MaterialTypeAsset.h | 2 +- .../Material/MaterialTypeAssetCreator.h | 2 +- .../RPI.Reflect/Material/ShaderCollection.h | 2 +- .../Atom/RPI.Reflect/Model/ModelAsset.h | 2 +- .../Atom/RPI.Reflect/Model/ModelAssetCreator.h | 2 +- .../Atom/RPI.Reflect/Model/ModelKdTree.h | 2 +- .../Atom/RPI.Reflect/Model/ModelLodAsset.h | 2 +- .../RPI.Reflect/Model/ModelLodAssetCreator.h | 2 +- .../Atom/RPI.Reflect/Model/ModelLodIndex.h | 2 +- .../Atom/RPI.Reflect/Model/MorphTargetDelta.h | 2 +- .../RPI.Reflect/Model/MorphTargetMetaAsset.h | 2 +- .../Model/MorphTargetMetaAssetCreator.h | 2 +- .../Atom/RPI.Reflect/Model/SkinMetaAsset.h | 2 +- .../RPI.Reflect/Model/SkinMetaAssetCreator.h | 2 +- .../Atom/RPI.Reflect/Pass/ComputePassData.h | 2 +- .../Atom/RPI.Reflect/Pass/CopyPassData.h | 2 +- .../Pass/DownsampleMipChainPassData.h | 2 +- .../Pass/EnvironmentCubeMapPassData.h | 2 +- .../Pass/FullscreenTrianglePassData.h | 2 +- .../Include/Atom/RPI.Reflect/Pass/PassAsset.h | 2 +- .../RPI.Reflect/Pass/PassAttachmentReflect.h | 2 +- .../Include/Atom/RPI.Reflect/Pass/PassData.h | 2 +- .../Atom/RPI.Reflect/Pass/PassDescriptor.h | 2 +- .../Include/Atom/RPI.Reflect/Pass/PassName.h | 2 +- .../Atom/RPI.Reflect/Pass/PassRequest.h | 2 +- .../Atom/RPI.Reflect/Pass/PassTemplate.h | 2 +- .../Atom/RPI.Reflect/Pass/RasterPassData.h | 2 +- .../Atom/RPI.Reflect/Pass/RenderPassData.h | 2 +- .../RPI.Reflect/Pass/RenderToTexturePassData.h | 2 +- .../Atom/RPI.Reflect/RPISystemDescriptor.h | 2 +- .../Atom/RPI.Reflect/ResourcePoolAsset.h | 2 +- .../RPI.Reflect/ResourcePoolAssetCreator.h | 2 +- .../RPI.Reflect/Shader/IShaderVariantFinder.h | 2 +- .../Shader/PrecompiledShaderAssetSourceData.h | 2 +- .../Atom/RPI.Reflect/Shader/ShaderAsset.h | 2 +- .../RPI.Reflect/Shader/ShaderAssetCreator.h | 2 +- .../RPI.Reflect/Shader/ShaderCommonTypes.h | 2 +- .../RPI.Reflect/Shader/ShaderInputContract.h | 2 +- .../RPI.Reflect/Shader/ShaderOptionGroup.h | 2 +- .../Shader/ShaderOptionGroupLayout.h | 2 +- .../RPI.Reflect/Shader/ShaderOptionTypes.h | 2 +- .../RPI.Reflect/Shader/ShaderOutputContract.h | 2 +- .../Shader/ShaderResourceGroupAsset.h | 2 +- .../Shader/ShaderResourceGroupAssetCreator.h | 2 +- .../RPI.Reflect/Shader/ShaderVariantAsset.h | 2 +- .../Atom/RPI.Reflect/Shader/ShaderVariantKey.h | 2 +- .../Shader/ShaderVariantTreeAsset.h | 2 +- .../Include/Atom/RPI.Reflect/System/AnyAsset.h | 2 +- .../Atom/RPI.Reflect/System/AssetAliases.h | 2 +- .../System/PipelineRenderSettings.h | 2 +- .../System/RenderPipelineDescriptor.h | 2 +- .../Atom/RPI.Reflect/System/SceneDescriptor.h | 2 +- .../Platform/Android/Atom_RPI_Traits_Android.h | 2 +- .../Android/Atom_RPI_Traits_Platform.h | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Unimplemented/BuilderModule_Stub.cpp | 2 +- .../Platform/Linux/Atom_RPI_Traits_Linux.h | 2 +- .../Platform/Linux/Atom_RPI_Traits_Platform.h | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Source/Platform/Mac/Atom_RPI_Traits_Mac.h | 2 +- .../Platform/Mac/Atom_RPI_Traits_Platform.h | 2 +- .../RPI/Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/Atom_RPI_Traits_Platform.h | 2 +- .../Platform/Windows/Atom_RPI_Traits_Windows.h | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/Atom_RPI_Traits_Platform.h | 2 +- .../Source/Platform/iOS/Atom_RPI_Traits_iOS.h | 2 +- .../RPI/Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Source/RPI.Builders/BuilderComponent.cpp | 2 +- .../Source/RPI.Builders/BuilderComponent.h | 2 +- .../Code/Source/RPI.Builders/BuilderModule.cpp | 2 +- .../RPI.Builders/Common/AnyAssetBuilder.cpp | 2 +- .../RPI.Builders/Common/AnyAssetBuilder.h | 2 +- .../RPI.Builders/Material/MaterialBuilder.cpp | 2 +- .../RPI.Builders/Material/MaterialBuilder.h | 2 +- .../Model/MaterialAssetBuilderComponent.cpp | 2 +- .../Model/MaterialAssetBuilderComponent.h | 2 +- .../Model/ModelAssetBuilderComponent.cpp | 2 +- .../Model/ModelAssetBuilderComponent.h | 2 +- .../Model/ModelExporterComponent.cpp | 2 +- .../Model/ModelExporterComponent.h | 2 +- .../Model/ModelExporterContexts.cpp | 2 +- .../RPI.Builders/Model/ModelExporterContexts.h | 2 +- .../RPI.Builders/Model/MorphTargetExporter.cpp | 2 +- .../RPI.Builders/Model/MorphTargetExporter.h | 2 +- .../Source/RPI.Builders/Pass/PassBuilder.cpp | 2 +- .../Source/RPI.Builders/Pass/PassBuilder.h | 2 +- .../ResourcePool/ResourcePoolBuilder.cpp | 2 +- .../ResourcePool/ResourcePoolBuilder.h | 2 +- .../RPI.Edit/Common/AssetAliasesSourceData.cpp | 2 +- .../Code/Source/RPI.Edit/Common/AssetUtils.cpp | 2 +- .../Code/Source/RPI.Edit/Common/ColorUtils.cpp | 2 +- .../RPI.Edit/Common/ConvertibleSource.cpp | 2 +- .../RPI.Edit/Common/JsonFileLoadContext.cpp | 2 +- .../RPI.Edit/Common/JsonReportingHelper.cpp | 2 +- .../Code/Source/RPI.Edit/Common/JsonUtils.cpp | 2 +- .../Material/LuaMaterialFunctorSourceData.cpp | 2 +- .../Material/MaterialFunctorSourceData.cpp | 2 +- .../MaterialFunctorSourceDataRegistration.cpp | 2 +- .../MaterialFunctorSourceDataSerializer.cpp | 2 +- .../RPI.Edit/Material/MaterialPropertyId.cpp | 2 +- .../Material/MaterialPropertySerializer.cpp | 2 +- .../MaterialPropertyValueSerializer.cpp | 2 +- .../MaterialPropertyValueSourceData.cpp | 2 +- ...terialPropertyValueSourceDataSerializer.cpp | 2 +- .../RPI.Edit/Material/MaterialSourceData.cpp | 2 +- .../Material/MaterialSourceDataSerializer.cpp | 2 +- .../Material/MaterialTypeSourceData.cpp | 2 +- .../Source/RPI.Edit/Material/MaterialUtils.cpp | 2 +- .../RPI.Edit/Shader/ShaderSourceData.cpp | 2 +- .../Shader/ShaderVariantAssetCreator.cpp | 2 +- .../Shader/ShaderVariantListSourceData.cpp | 2 +- .../Shader/ShaderVariantTreeAssetCreator.cpp | 2 +- .../Code/Source/RPI.Editor/EditorModule.cpp | 2 +- .../RPI/Code/Source/RPI.Private/Module.cpp | 2 +- Gems/Atom/RPI/Code/Source/RPI.Private/Module.h | 2 +- .../Source/RPI.Private/RPISystemComponent.cpp | 2 +- .../Source/RPI.Private/RPISystemComponent.h | 2 +- .../AuxGeomFeatureProcessorInterface.cpp | 2 +- .../Code/Source/RPI.Public/Buffer/Buffer.cpp | 2 +- .../Source/RPI.Public/Buffer/BufferPool.cpp | 2 +- .../Source/RPI.Public/Buffer/BufferSystem.cpp | 2 +- .../AcesCg_To_LinearSrgb.inl | 2 +- .../ColorConversionConstants.inl | 2 +- .../LinearSrgb_To_AcesCg.inl | 2 +- .../GeneratedTransforms/XYZ_To_AcesCg.inl | 2 +- .../ColorManagement/TransformColor.cpp | 2 +- .../RPI/Code/Source/RPI.Public/Culling.cpp | 2 +- .../RPI.Public/DynamicDraw/DynamicBuffer.cpp | 2 +- .../DynamicDraw/DynamicBufferAllocator.cpp | 2 +- .../DynamicDraw/DynamicDrawContext.cpp | 2 +- .../DynamicDraw/DynamicDrawSystem.cpp | 2 +- .../Source/RPI.Public/FeatureProcessor.cpp | 2 +- .../RPI.Public/FeatureProcessorFactory.cpp | 2 +- .../RPI.Public/GpuQuery/GpuQuerySystem.cpp | 2 +- .../RPI.Public/GpuQuery/GpuQueryTypes.cpp | 2 +- .../Code/Source/RPI.Public/GpuQuery/Query.cpp | 2 +- .../Source/RPI.Public/GpuQuery/QueryPool.cpp | 2 +- .../RPI.Public/GpuQuery/TimestampQueryPool.cpp | 2 +- .../RPI.Public/Image/AttachmentImage.cpp | 2 +- .../RPI.Public/Image/AttachmentImagePool.cpp | 2 +- .../Image/DefaultStreamingImageController.cpp | 2 +- .../Source/RPI.Public/Image/ImageSystem.cpp | 2 +- .../Source/RPI.Public/Image/StreamingImage.cpp | 2 +- .../RPI.Public/Image/StreamingImageContext.cpp | 2 +- .../Image/StreamingImageController.cpp | 2 +- .../RPI.Public/Image/StreamingImagePool.cpp | 2 +- .../Source/RPI.Public/Material/Material.cpp | 2 +- .../RPI.Public/Material/MaterialSystem.cpp | 2 +- .../Code/Source/RPI.Public/MeshDrawPacket.cpp | 2 +- .../RPI/Code/Source/RPI.Public/Model/Model.cpp | 2 +- .../Code/Source/RPI.Public/Model/ModelLod.cpp | 2 +- .../Source/RPI.Public/Model/ModelLodUtils.cpp | 2 +- .../Source/RPI.Public/Model/ModelSystem.cpp | 2 +- .../Model/UvStreamTangentBitmask.cpp | 2 +- .../RPI.Public/Pass/AttachmentReadback.cpp | 2 +- .../Source/RPI.Public/Pass/ComputePass.cpp | 2 +- .../Code/Source/RPI.Public/Pass/CopyPass.cpp | 2 +- .../RPI.Public/Pass/FullscreenTrianglePass.cpp | 2 +- .../Source/RPI.Public/Pass/MSAAResolvePass.cpp | 2 +- .../Code/Source/RPI.Public/Pass/ParentPass.cpp | 2 +- .../RPI/Code/Source/RPI.Public/Pass/Pass.cpp | 2 +- .../Source/RPI.Public/Pass/PassAttachment.cpp | 2 +- .../Source/RPI.Public/Pass/PassFactory.cpp | 2 +- .../Code/Source/RPI.Public/Pass/PassFilter.cpp | 2 +- .../Source/RPI.Public/Pass/PassLibrary.cpp | 2 +- .../Code/Source/RPI.Public/Pass/PassSystem.cpp | 2 +- .../Code/Source/RPI.Public/Pass/PassUtils.cpp | 2 +- .../Code/Source/RPI.Public/Pass/RasterPass.cpp | 2 +- .../Code/Source/RPI.Public/Pass/RenderPass.cpp | 2 +- .../Pass/Specific/DownsampleMipChainPass.cpp | 2 +- .../Pass/Specific/EnvironmentCubeMapPass.cpp | 2 +- .../Specific/ImageAttachmentPreviewPass.cpp | 2 +- .../Pass/Specific/RenderToTexturePass.cpp | 2 +- .../RPI.Public/Pass/Specific/SelectorPass.cpp | 2 +- .../RPI.Public/Pass/Specific/SwapChainPass.cpp | 2 +- .../Code/Source/RPI.Public/PipelineState.cpp | 2 +- .../RPI/Code/Source/RPI.Public/RPISystem.cpp | 2 +- .../RPI/Code/Source/RPI.Public/RPIUtils.cpp | 2 +- .../Code/Source/RPI.Public/RenderPipeline.cpp | 2 +- Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp | 2 +- .../Shader/Metrics/ShaderMetrics.cpp | 2 +- .../Shader/Metrics/ShaderMetricsSystem.cpp | 2 +- .../Code/Source/RPI.Public/Shader/Shader.cpp | 2 +- .../Shader/ShaderReloadDebugTracker.cpp | 2 +- .../RPI.Public/Shader/ShaderResourceGroup.cpp | 2 +- .../Shader/ShaderResourceGroupPool.cpp | 2 +- .../Source/RPI.Public/Shader/ShaderSystem.cpp | 2 +- .../Source/RPI.Public/Shader/ShaderVariant.cpp | 2 +- .../Shader/ShaderVariantAsyncLoader.cpp | 2 +- Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp | 2 +- .../Code/Source/RPI.Public/ViewportContext.cpp | 2 +- .../RPI.Public/ViewportContextManager.cpp | 2 +- .../Code/Source/RPI.Public/WindowContext.cpp | 2 +- .../RPI.Reflect/Asset/AssetReference.cpp | 2 +- .../Source/RPI.Reflect/Asset/AssetUtils.cpp | 2 +- .../RPI.Reflect/Asset/BuiltInAssetHandler.cpp | 2 +- Gems/Atom/RPI/Code/Source/RPI.Reflect/Base.cpp | 2 +- .../Source/RPI.Reflect/Buffer/BufferAsset.cpp | 2 +- .../RPI.Reflect/Buffer/BufferAssetCreator.cpp | 2 +- .../RPI.Reflect/Buffer/BufferAssetView.cpp | 2 +- .../RPI.Reflect/FeatureProcessorDescriptor.cpp | 2 +- .../RPI.Reflect/GpuQuerySystemDescriptor.cpp | 2 +- .../RPI.Reflect/Image/AttachmentImageAsset.cpp | 2 +- .../Image/AttachmentImageAssetCreator.cpp | 2 +- .../DefaultStreamingImageControllerAsset.cpp | 2 +- .../Code/Source/RPI.Reflect/Image/Image.cpp | 2 +- .../Source/RPI.Reflect/Image/ImageAsset.cpp | 2 +- .../RPI.Reflect/Image/ImageMipChainAsset.cpp | 2 +- .../Image/ImageMipChainAssetCreator.cpp | 2 +- .../Image/ImageSystemDescriptor.cpp | 2 +- .../RPI.Reflect/Image/StreamingImageAsset.cpp | 2 +- .../Image/StreamingImageAssetCreator.cpp | 2 +- .../Image/StreamingImageAssetHandler.cpp | 2 +- .../Image/StreamingImageControllerAsset.cpp | 2 +- .../Image/StreamingImagePoolAsset.cpp | 2 +- .../Image/StreamingImagePoolAssetCreator.cpp | 2 +- .../Material/LuaMaterialFunctor.cpp | 2 +- .../RPI.Reflect/Material/MaterialAsset.cpp | 2 +- .../Material/MaterialAssetCreator.cpp | 2 +- .../Material/MaterialAssetCreatorCommon.cpp | 2 +- .../Material/MaterialDynamicMetadata.cpp | 2 +- .../RPI.Reflect/Material/MaterialFunctor.cpp | 2 +- .../Material/MaterialPropertiesLayout.cpp | 2 +- .../Material/MaterialPropertyDescriptor.cpp | 2 +- .../Material/MaterialPropertyValue.cpp | 2 +- .../RPI.Reflect/Material/MaterialTypeAsset.cpp | 2 +- .../Material/MaterialTypeAssetCreator.cpp | 2 +- .../RPI.Reflect/Material/ShaderCollection.cpp | 2 +- .../Source/RPI.Reflect/Model/ModelAsset.cpp | 2 +- .../RPI.Reflect/Model/ModelAssetCreator.cpp | 2 +- .../Source/RPI.Reflect/Model/ModelKdTree.cpp | 2 +- .../Source/RPI.Reflect/Model/ModelLodAsset.cpp | 2 +- .../RPI.Reflect/Model/ModelLodAssetCreator.cpp | 2 +- .../RPI.Reflect/Model/MorphTargetDelta.cpp | 2 +- .../RPI.Reflect/Model/MorphTargetMetaAsset.cpp | 2 +- .../Model/MorphTargetMetaAssetCreator.cpp | 2 +- .../Source/RPI.Reflect/Model/SkinMetaAsset.cpp | 2 +- .../RPI.Reflect/Model/SkinMetaAssetCreator.cpp | 2 +- .../Code/Source/RPI.Reflect/Pass/PassAsset.cpp | 2 +- .../RPI.Reflect/Pass/PassAttachmentReflect.cpp | 2 +- .../Source/RPI.Reflect/Pass/PassRequest.cpp | 2 +- .../Source/RPI.Reflect/Pass/PassTemplate.cpp | 2 +- .../Source/RPI.Reflect/RPISystemDescriptor.cpp | 2 +- .../Source/RPI.Reflect/ResourcePoolAsset.cpp | 2 +- .../RPI.Reflect/ResourcePoolAssetCreator.cpp | 2 +- .../PrecompiledShaderAssetSourceData.cpp | 2 +- .../Source/RPI.Reflect/Shader/ShaderAsset.cpp | 2 +- .../RPI.Reflect/Shader/ShaderAssetCreator.cpp | 2 +- .../RPI.Reflect/Shader/ShaderAssetVariant.cpp | 2 +- .../Shader/ShaderAssetVariantCreator.cpp | 2 +- .../RPI.Reflect/Shader/ShaderInputContract.cpp | 2 +- .../RPI.Reflect/Shader/ShaderOptionGroup.cpp | 2 +- .../Shader/ShaderOptionGroupLayout.cpp | 2 +- .../Shader/ShaderOutputContract.cpp | 2 +- .../Shader/ShaderResourceGroupAsset.cpp | 2 +- .../Shader/ShaderResourceGroupAssetCreator.cpp | 2 +- .../RPI.Reflect/Shader/ShaderStageType.cpp | 2 +- .../RPI.Reflect/Shader/ShaderVariantAsset.cpp | 2 +- .../RPI.Reflect/Shader/ShaderVariantKey.cpp | 2 +- .../Shader/ShaderVariantTreeAsset.cpp | 2 +- .../Source/RPI.Reflect/System/AnyAsset.cpp | 2 +- .../Source/RPI.Reflect/System/AssetAliases.cpp | 2 +- .../System/RenderPipelineDescriptor.cpp | 2 +- .../RPI.Reflect/System/SceneDescriptor.cpp | 2 +- .../Tests.Builders/AnyAssetBuilderTest.cpp | 2 +- .../Tests.Builders/AtomRPIBuildersTests.cpp | 2 +- .../Code/Tests.Builders/BuilderTestFixture.cpp | 2 +- .../Code/Tests.Builders/BuilderTestFixture.h | 2 +- .../Code/Tests.Builders/PassBuilderTest.cpp | 2 +- .../Tests.Builders/ResourcePoolBuilderTest.cpp | 2 +- .../Code/Tests.Editor/AtomRPIEditorTests.cpp | 2 +- .../Atom/RPI/Code/Tests/Buffer/BufferTests.cpp | 2 +- .../Tests/Common/AssetManagerTestFixture.cpp | 2 +- .../Tests/Common/AssetManagerTestFixture.h | 2 +- .../RPI/Code/Tests/Common/AssetSystemStub.cpp | 2 +- .../RPI/Code/Tests/Common/AssetSystemStub.h | 2 +- .../Code/Tests/Common/ErrorMessageFinder.cpp | 2 +- .../RPI/Code/Tests/Common/ErrorMessageFinder.h | 2 +- .../Tests/Common/ErrorMessageFinderTests.cpp | 2 +- .../RPI/Code/Tests/Common/JsonTestUtils.cpp | 2 +- .../Atom/RPI/Code/Tests/Common/JsonTestUtils.h | 2 +- .../Atom/RPI/Code/Tests/Common/RHI/Factory.cpp | 2 +- Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.h | 2 +- Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.cpp | 2 +- Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.h | 2 +- .../RPI/Code/Tests/Common/RPITestFixture.cpp | 2 +- .../RPI/Code/Tests/Common/RPITestFixture.h | 2 +- .../RPI/Code/Tests/Common/SerializeTester.h | 2 +- .../Code/Tests/Common/TestFeatureProcessors.h | 2 +- Gems/Atom/RPI/Code/Tests/Common/TestUtils.h | 2 +- .../Code/Tests/Image/StreamingImageTests.cpp | 2 +- .../Tests/Material/LuaMaterialFunctorTests.cpp | 2 +- .../Tests/Material/MaterialAssetTestUtils.cpp | 2 +- .../Tests/Material/MaterialAssetTestUtils.h | 2 +- .../Code/Tests/Material/MaterialAssetTests.cpp | 2 +- ...aterialFunctorSourceDataSerializerTests.cpp | 2 +- .../Tests/Material/MaterialFunctorTests.cpp | 2 +- .../MaterialPropertySerializerTests.cpp | 2 +- .../MaterialPropertyValueSourceDataTests.cpp | 2 +- .../Tests/Material/MaterialSourceDataTests.cpp | 2 +- .../RPI/Code/Tests/Material/MaterialTests.cpp | 2 +- .../Tests/Material/MaterialTypeAssetTests.cpp | 2 +- .../Material/MaterialTypeSourceDataTests.cpp | 2 +- Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp | 2 +- Gems/Atom/RPI/Code/Tests/Pass/PassTests.cpp | 2 +- .../Atom/RPI/Code/Tests/Shader/ShaderTests.cpp | 2 +- .../ShaderResourceGroupAssetTests.cpp | 2 +- .../ShaderResourceGroupBufferTests.cpp | 2 +- .../ShaderResourceGroupConstantBufferTests.cpp | 2 +- .../ShaderResourceGroupGeneralTests.cpp | 2 +- .../ShaderResourceGroupImageTests.cpp | 2 +- .../System/FeatureProcessorFactoryTests.cpp | 2 +- .../RPI/Code/Tests/System/GpuQueryTests.cpp | 2 +- .../Code/Tests/System/RenderPipelineTests.cpp | 2 +- Gems/Atom/RPI/Code/Tests/System/SceneTests.cpp | 2 +- Gems/Atom/RPI/Code/Tests/System/ViewTests.cpp | 2 +- .../RPI/Code/atom_rpi_builders_files.cmake | 2 +- .../Code/atom_rpi_builders_shared_files.cmake | 2 +- .../Code/atom_rpi_builders_stub_files.cmake | 2 +- .../Code/atom_rpi_builders_tests_files.cmake | 2 +- Gems/Atom/RPI/Code/atom_rpi_edit_files.cmake | 2 +- Gems/Atom/RPI/Code/atom_rpi_editor_files.cmake | 2 +- .../RPI/Code/atom_rpi_editor_tests_files.cmake | 2 +- .../Code/atom_rpi_masked_occlusion_files.cmake | 2 +- .../Atom/RPI/Code/atom_rpi_private_files.cmake | 2 +- .../Code/atom_rpi_private_shared_files.cmake | 2 +- Gems/Atom/RPI/Code/atom_rpi_public_files.cmake | 2 +- .../Atom/RPI/Code/atom_rpi_reflect_files.cmake | 2 +- Gems/Atom/RPI/Code/atom_rpi_tests_files.cmake | 2 +- Gems/Atom/RPI/Code/rpi_shared_files.cmake | 2 +- Gems/Atom/RPI/Tools/CMakeLists.txt | 2 +- Gems/Atom/RPI/Tools/README.txt | 2 +- Gems/Atom/RPI/Tools/__init__.py | 2 +- .../Atom/RPI/Tools/atom_rpi_tools/pass_data.py | 2 +- .../RPI/Tools/atom_rpi_tools/tests/__init__.py | 2 +- .../atom_rpi_tools/tests/test_pass_template.py | 2 +- .../Tools/atom_rpi_tools/tests/test_utils.py | 2 +- Gems/Atom/RPI/Tools/atom_rpi_tools/utils.py | 2 +- Gems/Atom/RPI/Tools/setup.py | 2 +- .../Materials/Types/AutoBrick_Common.azsli | 2 +- .../Materials/Types/AutoBrick_ForwardPass.azsl | 2 +- .../Types/MinimalPBR_ForwardPass.azsl | 2 +- .../Tools/AtomToolsFramework/CMakeLists.txt | 2 +- .../AtomToolsFramework/Code/CMakeLists.txt | 2 +- .../Communication/LocalServer.h | 2 +- .../Communication/LocalSocket.h | 2 +- .../AtomToolsFramework/Debug/TraceRecorder.h | 2 +- .../DynamicProperty/DynamicProperty.h | 2 +- .../DynamicProperty/DynamicPropertyGroup.h | 2 +- .../Inspector/InspectorGroupHeaderWidget.h | 2 +- .../Inspector/InspectorGroupWidget.h | 2 +- .../Inspector/InspectorNotificationBus.h | 2 +- .../Inspector/InspectorPropertyGroupWidget.h | 2 +- .../Inspector/InspectorRequestBus.h | 2 +- .../Inspector/InspectorWidget.h | 2 +- .../Util/MaterialPropertyUtil.h | 2 +- .../Include/AtomToolsFramework/Util/Util.h | 2 +- .../Viewport/ModularViewportCameraController.h | 2 +- ...ModularViewportCameraControllerRequestBus.h | 2 +- .../Viewport/RenderViewportWidget.h | 2 +- .../Code/Source/AtomToolsFrameworkModule.cpp | 2 +- .../Code/Source/AtomToolsFrameworkModule.h | 2 +- .../AtomToolsFrameworkSystemComponent.cpp | 2 +- .../Source/AtomToolsFrameworkSystemComponent.h | 2 +- .../Code/Source/Communication/LocalServer.cpp | 2 +- .../Code/Source/Communication/LocalSocket.cpp | 2 +- .../Code/Source/Debug/TraceRecorder.cpp | 2 +- .../Source/DynamicProperty/DynamicProperty.cpp | 2 +- .../DynamicProperty/DynamicPropertyGroup.cpp | 2 +- .../Inspector/InspectorGroupHeaderWidget.cpp | 2 +- .../Source/Inspector/InspectorGroupWidget.cpp | 2 +- .../Inspector/InspectorPropertyGroupWidget.cpp | 2 +- .../Code/Source/Inspector/InspectorWidget.cpp | 2 +- .../Code/Source/Util/MaterialPropertyUtil.cpp | 2 +- .../Code/Source/Util/Util.cpp | 2 +- .../ModularViewportCameraController.cpp | 2 +- .../Source/Viewport/RenderViewportWidget.cpp | 2 +- .../Code/Tests/AtomToolsFrameworkTest.cpp | 2 +- .../Code/atomtoolsframework_files.cmake | 2 +- .../Code/atomtoolsframework_shared_files.cmake | 2 +- Gems/Atom/Tools/CMakeLists.txt | 2 +- Gems/Atom/Tools/MaterialEditor/CMakeLists.txt | 2 +- .../Tools/MaterialEditor/Code/CMakeLists.txt | 2 +- .../Core/MaterialDocumentFactoryRequestBus.h | 2 +- .../Atom/Document/MaterialDocumentModule.h | 2 +- .../Document/MaterialDocumentNotificationBus.h | 2 +- .../Atom/Document/MaterialDocumentRequestBus.h | 2 +- .../Atom/Document/MaterialDocumentSettings.h | 2 +- .../MaterialDocumentSystemRequestBus.h | 2 +- .../MaterialEditorViewportInputControllerBus.h | 2 +- .../Atom/Viewport/MaterialViewportModule.h | 2 +- .../Viewport/MaterialViewportNotificationBus.h | 2 +- .../Atom/Viewport/MaterialViewportRequestBus.h | 2 +- .../Atom/Viewport/MaterialViewportSettings.h | 2 +- .../Include/Atom/Viewport/PerformanceMetrics.h | 2 +- .../Viewport/PerformanceMonitorRequestBus.h | 2 +- .../MaterialEditorWindowFactoryRequestBus.h | 2 +- .../Atom/Window/MaterialEditorWindowModule.h | 2 +- .../MaterialEditorWindowNotificationBus.h | 2 +- .../Window/MaterialEditorWindowRequestBus.h | 2 +- .../Atom/Window/MaterialEditorWindowSettings.h | 2 +- .../Code/Source/Document/MaterialDocument.cpp | 2 +- .../Code/Source/Document/MaterialDocument.h | 2 +- .../Source/Document/MaterialDocumentModule.cpp | 2 +- .../Document/MaterialDocumentSettings.cpp | 2 +- .../MaterialDocumentSystemComponent.cpp | 2 +- .../Document/MaterialDocumentSystemComponent.h | 2 +- .../Code/Source/MaterialEditorApplication.cpp | 2 +- .../Code/Source/MaterialEditorApplication.h | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Platform/Linux/MaterialEditor_Linux.cpp | 2 +- .../Linux/MaterialEditor_Traits_Linux.h | 2 +- .../Linux/MaterialEditor_Traits_Platform.h | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Linux/tool_dependencies_linux.cmake | 2 +- .../Source/Platform/Mac/MaterialEditor_Mac.cpp | 2 +- .../Platform/Mac/MaterialEditor_Traits_Mac.h | 2 +- .../Mac/MaterialEditor_Traits_Platform.h | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Mac/tool_dependencies_mac.cmake | 2 +- .../Windows/MaterialEditor_Traits_Platform.h | 2 +- .../Windows/MaterialEditor_Traits_Windows.h | 2 +- .../Windows/MaterialEditor_Windows.cpp | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Windows/tool_dependencies_windows.cmake | 2 +- .../Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Viewport/InputController/Behavior.cpp | 2 +- .../Source/Viewport/InputController/Behavior.h | 2 +- .../InputController/DollyCameraBehavior.cpp | 2 +- .../InputController/DollyCameraBehavior.h | 2 +- .../Viewport/InputController/IdleBehavior.cpp | 2 +- .../Viewport/InputController/IdleBehavior.h | 2 +- .../MaterialEditorViewportInputController.cpp | 2 +- .../MaterialEditorViewportInputController.h | 2 +- .../InputController/MoveCameraBehavior.cpp | 2 +- .../InputController/MoveCameraBehavior.h | 2 +- .../InputController/OrbitCameraBehavior.cpp | 2 +- .../InputController/OrbitCameraBehavior.h | 2 +- .../InputController/PanCameraBehavior.cpp | 2 +- .../InputController/PanCameraBehavior.h | 2 +- .../RotateEnvironmentBehavior.cpp | 2 +- .../RotateEnvironmentBehavior.h | 2 +- .../InputController/RotateModelBehavior.cpp | 2 +- .../InputController/RotateModelBehavior.h | 2 +- .../Viewport/MaterialViewportComponent.cpp | 2 +- .../Viewport/MaterialViewportComponent.h | 2 +- .../Source/Viewport/MaterialViewportModule.cpp | 2 +- .../Viewport/MaterialViewportRenderer.cpp | 2 +- .../Source/Viewport/MaterialViewportRenderer.h | 2 +- .../Viewport/MaterialViewportSettings.cpp | 2 +- .../Source/Viewport/MaterialViewportWidget.cpp | 2 +- .../Source/Viewport/MaterialViewportWidget.h | 2 +- .../Viewport/PerformanceMonitorComponent.cpp | 2 +- .../Viewport/PerformanceMonitorComponent.h | 2 +- .../CreateMaterialDialog.cpp | 2 +- .../CreateMaterialDialog.h | 2 +- .../Source/Window/HelpDialog/HelpDialog.cpp | 2 +- .../Code/Source/Window/HelpDialog/HelpDialog.h | 2 +- .../Source/Window/MaterialBrowserWidget.cpp | 2 +- .../Code/Source/Window/MaterialBrowserWidget.h | 2 +- .../Code/Source/Window/MaterialEditor.qss | 2 +- .../MaterialEditorBrowserInteractions.cpp | 2 +- .../Window/MaterialEditorBrowserInteractions.h | 2 +- .../Source/Window/MaterialEditorWindow.cpp | 2 +- .../Code/Source/Window/MaterialEditorWindow.h | 2 +- .../Window/MaterialEditorWindowComponent.cpp | 2 +- .../Window/MaterialEditorWindowComponent.h | 2 +- .../Window/MaterialEditorWindowModule.cpp | 2 +- .../Window/MaterialEditorWindowSettings.cpp | 2 +- .../MaterialInspector/MaterialInspector.cpp | 2 +- .../MaterialInspector/MaterialInspector.h | 2 +- .../PerformanceMonitorWidget.cpp | 2 +- .../PerformanceMonitorWidget.h | 2 +- .../LightingPresetBrowserDialog.cpp | 2 +- .../LightingPresetBrowserDialog.h | 2 +- .../ModelPresetBrowserDialog.cpp | 2 +- .../ModelPresetBrowserDialog.h | 2 +- .../PresetBrowserDialog.cpp | 2 +- .../PresetBrowserDialogs/PresetBrowserDialog.h | 2 +- .../Window/SettingsDialog/SettingsDialog.cpp | 2 +- .../Window/SettingsDialog/SettingsDialog.h | 2 +- .../Window/SettingsDialog/SettingsWidget.cpp | 2 +- .../Window/SettingsDialog/SettingsWidget.h | 2 +- .../Window/StatusBar/StatusBarWidget.cpp | 2 +- .../Source/Window/StatusBar/StatusBarWidget.h | 2 +- .../Window/ToolBar/LightingPresetComboBox.cpp | 2 +- .../Window/ToolBar/LightingPresetComboBox.h | 2 +- .../Window/ToolBar/MaterialEditorToolBar.cpp | 2 +- .../Window/ToolBar/MaterialEditorToolBar.h | 2 +- .../Window/ToolBar/ModelPresetComboBox.cpp | 2 +- .../Window/ToolBar/ModelPresetComboBox.h | 2 +- .../ViewportSettingsInspector.cpp | 2 +- .../ViewportSettingsInspector.h | 2 +- .../Tools/MaterialEditor/Code/Source/main.cpp | 2 +- .../MaterialEditor/Code/Source/resource.h | 2 +- .../Code/materialeditor_files.cmake | 2 +- .../Code/materialeditor_win_files.cmake | 2 +- .../Code/materialeditordocument_files.cmake | 2 +- .../Code/materialeditorviewport_files.cmake | 2 +- .../Code/materialeditorwindow_files.cmake | 2 +- .../Code/tool_dependencies.cmake | 2 +- .../Scripts/GenerateAllMaterialScreenshots.py | 2 +- .../ShaderManagementConsole/CMakeLists.txt | 2 +- .../Code/CMakeLists.txt | 2 +- .../Core/ShaderManagementConsoleRequestBus.h | 2 +- .../ShaderManagementConsoleDocumentModule.h | 2 +- ...rManagementConsoleDocumentNotificationBus.h | 2 +- ...ShaderManagementConsoleDocumentRequestBus.h | 2 +- ...ManagementConsoleDocumentSystemRequestBus.h | 2 +- .../ShaderManagementConsoleWindowModule.h | 2 +- ...derManagementConsoleWindowNotificationBus.h | 2 +- .../ShaderManagementConsoleWindowRequestBus.h | 2 +- .../ShaderManagementConsoleDocument.cpp | 2 +- .../Document/ShaderManagementConsoleDocument.h | 2 +- .../ShaderManagementConsoleDocumentModule.cpp | 2 +- ...anagementConsoleDocumentSystemComponent.cpp | 2 +- ...rManagementConsoleDocumentSystemComponent.h | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Android/tool_dependencies_android.cmake | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Linux/tool_dependencies_linux.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Mac/ShaderManagementConsole_Mac.cpp | 2 +- .../Mac/ShaderManagementConsole_Traits_Mac.h | 2 +- .../ShaderManagementConsole_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Mac/tool_dependencies_mac.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../ShaderManagementConsole_Traits_Platform.h | 2 +- .../ShaderManagementConsole_Traits_Windows.h | 2 +- .../ShaderManagementConsole_Windows.cpp | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Windows/tool_dependencies_windows.cmake | 2 +- .../Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Platform/iOS/tool_dependencies_ios.cmake | 2 +- .../ShaderManagementConsoleApplication.cpp | 2 +- .../ShaderManagementConsoleApplication.h | 2 +- ...derManagementConsoleBrowserInteractions.cpp | 2 +- ...haderManagementConsoleBrowserInteractions.h | 2 +- .../ShaderManagementConsoleBrowserWidget.cpp | 2 +- .../ShaderManagementConsoleBrowserWidget.h | 2 +- .../Window/ShaderManagementConsoleWindow.cpp | 2 +- .../Window/ShaderManagementConsoleWindow.h | 2 +- .../ShaderManagementConsoleWindowComponent.cpp | 2 +- .../ShaderManagementConsoleWindowComponent.h | 2 +- .../ShaderManagementConsoleWindowModule.cpp | 2 +- .../ToolBar/ShaderManagementConsoleToolBar.cpp | 2 +- .../ToolBar/ShaderManagementConsoleToolBar.h | 2 +- .../Code/Source/main.cpp | 2 +- .../Code/Source/resource.h | 2 +- .../Code/shadermanagementconsole_files.cmake | 2 +- .../shadermanagementconsole_win_files.cmake | 2 +- ...shadermanagementconsoledocument_files.cmake | 2 +- .../shadermanagementconsolewindow_files.cmake | 2 +- .../Code/tool_dependencies.cmake | 2 +- .../GenerateShaderVariantListForMaterials.py | 2 +- Gems/Atom/Utils/CMakeLists.txt | 2 +- Gems/Atom/Utils/Code/CMakeLists.txt | 2 +- .../Atom/Utils/AssetCollectionAsyncLoader.h | 2 +- .../Utils/Code/Include/Atom/Utils/DdsFile.h | 2 +- .../Code/Include/Atom/Utils/ImGuiCpuProfiler.h | 2 +- .../Include/Atom/Utils/ImGuiCpuProfiler.inl | 2 +- .../Include/Atom/Utils/ImGuiCullingDebug.h | 2 +- .../Include/Atom/Utils/ImGuiCullingDebug.inl | 2 +- .../Include/Atom/Utils/ImGuiFrameVisualizer.h | 2 +- .../Atom/Utils/ImGuiFrameVisualizer.inl | 2 +- .../Code/Include/Atom/Utils/ImGuiGpuProfiler.h | 2 +- .../Include/Atom/Utils/ImGuiGpuProfiler.inl | 2 +- .../Code/Include/Atom/Utils/ImGuiPassTree.h | 2 +- .../Code/Include/Atom/Utils/ImGuiPassTree.inl | 2 +- .../Include/Atom/Utils/ImGuiShaderMetrics.h | 2 +- .../Include/Atom/Utils/ImGuiShaderMetrics.inl | 2 +- .../Utils/ImGuiTransientAttachmentProfiler.h | 2 +- .../Utils/ImGuiTransientAttachmentProfiler.inl | 2 +- .../Code/Include/Atom/Utils/ImageComparison.h | 2 +- .../Utils/Code/Include/Atom/Utils/PpmFile.h | 2 +- .../Include/Atom/Utils/StableDynamicArray.h | 2 +- .../Include/Atom/Utils/StableDynamicArray.inl | 2 +- .../Atom/Utils/Code/Include/Atom/Utils/Utils.h | 2 +- .../Utils/Code/Include/Atom/Utils/Utils.inl | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Code/Platform/Linux/platform_linux.cmake | 2 +- .../Utils/Code/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Utils/Code/Platform/iOS/platform_ios.cmake | 2 +- .../Code/Source/AssetCollectionAsyncLoader.cpp | 2 +- Gems/Atom/Utils/Code/Source/DdsFile.cpp | 2 +- .../Atom/Utils/Code/Source/ImageComparison.cpp | 2 +- Gems/Atom/Utils/Code/Source/PpmFile.cpp | 2 +- Gems/Atom/Utils/Code/Source/Utils.cpp | 2 +- .../Utils/Code/Tests/ImageComparisonTests.cpp | 2 +- .../Code/Tests/StableDynamicArrayTests.cpp | 2 +- Gems/Atom/Utils/Code/atom_utils_files.cmake | 2 +- .../Utils/Code/atom_utils_tests_files.cmake | 2 +- Gems/AtomContent/CMakeLists.txt | 2 +- .../ReferenceMaterials/CMakeLists.txt | 2 +- .../ReferenceMaterials/Launch_Cmd.bat | 2 +- .../ReferenceMaterials/Launch_Maya_2020.bat | 2 +- .../ReferenceMaterials/Launch_WingIDE-7-1.bat | 2 +- .../ReferenceMaterials/Project_Env.bat | 2 +- Gems/AtomContent/Sponza/CMakeLists.txt | 2 +- Gems/AtomContent/Sponza/Project_Env.bat | 2 +- Gems/AtomContent/Sponza/Tools/Launch_Cmd.bat | 2 +- .../Sponza/Tools/Maya/Launch_Maya_2020.bat | 2 +- .../AtomBridge/Assets/Shaders/LyShineUI.azsl | 2 +- .../Assets/Shaders/SimpleTextured.azsl | 2 +- .../AtomBridge/CMakeLists.txt | 2 +- .../AtomBridge/Code/CMakeLists.txt | 2 +- .../Code/Include/AtomBridge/AtomBridgeBus.h | 2 +- .../Include/AtomBridge/FlyCameraInputBus.h | 2 +- .../PerViewportDynamicDrawInterface.h | 2 +- .../Code/Source/AtomBridgeEditorModule.cpp | 2 +- .../Code/Source/AtomBridgeModule.cpp | 2 +- .../AtomBridge/Code/Source/AtomBridgeModule.h | 2 +- .../Code/Source/AtomBridgeSystemComponent.cpp | 2 +- .../Code/Source/AtomBridgeSystemComponent.h | 2 +- .../AtomDebugDisplayViewportInterface.cpp | 2 +- .../Source/AtomDebugDisplayViewportInterface.h | 2 +- ...AssetCollectionAsyncLoaderTestComponent.cpp | 2 +- .../AssetCollectionAsyncLoaderTestComponent.h | 2 +- .../Code/Source/FlyCameraInputComponent.cpp | 2 +- .../Code/Source/FlyCameraInputComponent.h | 2 +- .../Source/PerViewportDynamicDrawManager.cpp | 2 +- .../Source/PerViewportDynamicDrawManager.h | 2 +- .../additional_android_runtime_deps.cmake | 2 +- .../Android/additional_android_tool_deps.cmake | 2 +- .../Linux/additional_linux_runtime_deps.cmake | 2 +- .../Linux/additional_linux_tool_deps.cmake | 2 +- .../Mac/additional_mac_runtime_deps.cmake | 2 +- .../Mac/additional_mac_tool_deps.cmake | 2 +- .../additional_windows_runtime_deps.cmake | 2 +- .../Windows/additional_windows_tool_deps.cmake | 2 +- .../iOS/additional_ios_runtime_deps.cmake | 2 +- .../iOS/additional_ios_tool_deps.cmake | 2 +- .../Code/atombridge_editor_files.cmake | 2 +- .../AtomBridge/Code/atombridge_files.cmake | 2 +- .../Code/atombridge_shared_files.cmake | 2 +- Gems/AtomLyIntegration/AtomFont/CMakeLists.txt | 2 +- .../AtomFont/Code/CMakeLists.txt | 2 +- .../AtomLyIntegration/AtomFont/AtomFont.h | 2 +- .../AtomFont/AtomFont_precompiled.h | 2 +- .../AtomLyIntegration/AtomFont/AtomNullFont.h | 2 +- .../AtomLyIntegration/AtomFont/FBitmap.h | 2 +- .../Include/AtomLyIntegration/AtomFont/FFont.h | 2 +- .../AtomLyIntegration/AtomFont/FontCommon.h | 2 +- .../AtomLyIntegration/AtomFont/FontRenderer.h | 2 +- .../AtomLyIntegration/AtomFont/FontTexture.h | 2 +- .../AtomLyIntegration/AtomFont/GlyphBitmap.h | 2 +- .../AtomLyIntegration/AtomFont/GlyphCache.h | 2 +- .../AtomLyIntegration/AtomFont/resource.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Code/Platform/Common/FFontXML_Common.cpp | 2 +- .../Platform/Common/FontTexture_Common.cpp | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Platform/Mac/platform_mac_files.cmake | 2 +- .../Code/Platform/Windows/FFontXML_Windows.cpp | 2 +- .../Platform/Windows/FontTexture_Windows.cpp | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Code/Platform/iOS/platform_ios_files.cmake | 2 +- .../AtomFont/Code/Source/AtomFont.cpp | 2 +- .../Code/Source/AtomFontSystemComponent.cpp | 2 +- .../Code/Source/AtomFontSystemComponent.h | 2 +- .../AtomFont/Code/Source/AtomNullFont.cpp | 2 +- .../AtomFont/Code/Source/FFont.cpp | 2 +- .../AtomFont/Code/Source/FFontXML.cpp | 2 +- .../AtomFont/Code/Source/FFontXML_Internal.h | 2 +- .../AtomFont/Code/Source/FontRenderer.cpp | 2 +- .../AtomFont/Code/Source/FontTexture.cpp | 2 +- .../AtomFont/Code/Source/GlyphBitmap.cpp | 2 +- .../AtomFont/Code/Source/GlyphCache.cpp | 2 +- .../AtomFont/Code/Source/Module.cpp | 2 +- .../AtomFont/Code/Source/Tests/test_Main.cpp | 2 +- .../AtomFont/Code/atomfont_files.cmake | 2 +- .../AtomFont/Code/atomfont_test_files.cmake | 2 +- .../AtomImGuiTools/CMakeLists.txt | 2 +- .../AtomImGuiTools/Code/CMakeLists.txt | 2 +- .../Code/Source/AtomImGuiToolsModule.cpp | 2 +- .../Source/AtomImGuiToolsSystemComponent.cpp | 2 +- .../Source/AtomImGuiToolsSystemComponent.h | 2 +- .../Code/atomimguitools_files.cmake | 2 +- .../Code/atomimguitools_shared_files.cmake | 2 +- .../Assets/Shaders/TexturedIcon.azsl | 2 +- .../AtomViewportDisplayIcons/CMakeLists.txt | 2 +- .../Code/CMakeLists.txt | 2 +- ...AtomViewportDisplayIconsSystemComponent.cpp | 2 +- .../AtomViewportDisplayIconsSystemComponent.h | 2 +- .../Code/Source/Module.cpp | 2 +- .../Code/atomviewportdisplayicons_files.cmake | 2 +- .../AtomViewportDisplayInfo/CMakeLists.txt | 2 +- .../Code/CMakeLists.txt | 2 +- .../AtomViewportInfoDisplayBus.h | 2 +- .../AtomViewportDisplayInfoSystemComponent.cpp | 2 +- .../AtomViewportDisplayInfoSystemComponent.h | 2 +- .../Code/Source/Module.cpp | 2 +- .../Code/Source/Tests/test_Main.cpp | 2 +- .../Code/atomviewportdisplayinfo_files.cmake | 2 +- .../atomviewportdisplayinfo_test_files.cmake | 2 +- Gems/AtomLyIntegration/CMakeLists.txt | 2 +- .../LegacyActorComponentConverter.py | 2 +- .../LegacyComponentConverter.py | 2 +- .../LegacyConversionHelpers.py | 2 +- .../LegacyMaterialComponentConverter.py | 2 +- .../LegacyMeshComponentConverter.py | 2 +- .../LegacyPointLightComponentConverter.py | 2 +- .../CommonFeatures/CMakeLists.txt | 2 +- .../CommonFeatures/Code/CMakeLists.txt | 2 +- .../CommonFeatures/CoreLights/AreaLightBus.h | 2 +- .../CoreLights/AreaLightComponentConfig.h | 2 +- .../CoreLights/CoreLightsConstants.h | 2 +- .../CoreLights/DirectionalLightBus.h | 2 +- .../DirectionalLightComponentConfig.h | 2 +- .../CommonFeatures/Decals/DecalBus.h | 2 +- .../Decals/DecalComponentConfig.h | 2 +- .../CommonFeatures/Decals/DecalConstants.h | 2 +- .../CommonFeatures/Grid/GridComponentBus.h | 2 +- .../CommonFeatures/Grid/GridComponentConfig.h | 2 +- .../Grid/GridComponentConstants.h | 2 +- .../ImageBasedLightComponentBus.h | 2 +- .../ImageBasedLightComponentConfig.h | 2 +- .../ImageBasedLightComponentConstants.h | 2 +- .../EditorMaterialSystemComponentRequestBus.h | 2 +- .../Material/MaterialComponentBus.h | 2 +- .../Material/MaterialComponentConfig.h | 2 +- .../Material/MaterialComponentConstants.h | 2 +- .../CommonFeatures/Mesh/MeshComponentBus.h | 2 +- .../Mesh/MeshComponentConstants.h | 2 +- .../PostProcess/Bloom/BloomBus.h | 2 +- .../PostProcess/Bloom/BloomComponentConfig.h | 2 +- .../PostProcess/DepthOfField/DepthOfFieldBus.h | 2 +- .../DepthOfField/DepthOfFieldComponentConfig.h | 2 +- .../DisplayMapper/DisplayMapperComponentBus.h | 2 +- .../DisplayMapperComponentConfig.h | 2 +- .../DisplayMapperComponentConstants.h | 2 +- .../ExposureControl/ExposureControlBus.h | 2 +- .../ExposureControlComponentConfig.h | 2 +- .../ExposureControlComponentConstants.h | 2 +- .../GradientWeightModifierComponentConfig.h | 2 +- .../GradientWeightModifierComponentConstants.h | 2 +- .../LookModification/LookModificationBus.h | 2 +- .../LookModificationComponentConfig.h | 2 +- .../LookModificationComponentConstants.h | 2 +- .../PostProcess/PostFxLayerBus.h | 2 +- .../PostFxLayerCategoriesProviderRequestBus.h | 2 +- .../PostProcess/PostFxLayerComponentConfig.h | 2 +- .../PostFxLayerComponentConstants.h | 2 +- .../PostProcess/PostFxWeightRequestBus.h | 2 +- .../RadiusWeightModifierComponentConfig.h | 2 +- .../RadiusWeightModifierComponentConstants.h | 2 +- .../ShapeWeightModifierComponentConfig.h | 2 +- .../ShapeWeightModifierComponentConstants.h | 2 +- .../CommonFeatures/PostProcess/Ssao/SsaoBus.h | 2 +- .../Ssao/SsaoComponentConfiguration.h | 2 +- .../ReflectionProbe/EditorReflectionProbeBus.h | 2 +- .../ScreenSpace/DeferredFogBus.h | 2 +- .../ScreenSpace/DeferredFogComponentConfig.h | 2 +- .../Scripting/EntityReferenceComponentConfig.h | 2 +- .../Scripting/EntityReferenceConstants.h | 2 +- .../Scripting/EntityReferenceRequestBus.h | 2 +- .../CommonFeatures/SkyBox/HDRiSkyboxBus.h | 2 +- .../SkyBox/HDRiSkyboxComponentConfig.h | 2 +- .../CommonFeatures/SkyBox/PhysicalSkyBus.h | 2 +- .../SkyBox/PhysicalSkyComponentConfig.h | 2 +- .../ThumbnailFeatureProcessorProviderBus.h | 2 +- .../Source/Animation/AttachmentComponent.cpp | 2 +- .../Source/Animation/AttachmentComponent.h | 2 +- .../Animation/EditorAttachmentComponent.cpp | 2 +- .../Animation/EditorAttachmentComponent.h | 2 +- .../Source/CommonFeaturesSystemComponent.cpp | 2 +- .../Source/CommonFeaturesSystemComponent.h | 2 +- .../Source/CoreLights/AreaLightComponent.cpp | 2 +- .../Source/CoreLights/AreaLightComponent.h | 2 +- .../CoreLights/AreaLightComponentConfig.cpp | 2 +- .../AreaLightComponentController.cpp | 2 +- .../CoreLights/AreaLightComponentController.h | 2 +- .../Source/CoreLights/CapsuleLightDelegate.cpp | 2 +- .../Source/CoreLights/CapsuleLightDelegate.h | 2 +- .../CoreLights/DirectionalLightComponent.cpp | 2 +- .../CoreLights/DirectionalLightComponent.h | 2 +- .../DirectionalLightComponentConfig.cpp | 2 +- .../DirectionalLightComponentController.cpp | 2 +- .../DirectionalLightComponentController.h | 2 +- .../Source/CoreLights/DiskLightDelegate.cpp | 2 +- .../Code/Source/CoreLights/DiskLightDelegate.h | 2 +- .../CoreLights/EditorAreaLightComponent.cpp | 2 +- .../CoreLights/EditorAreaLightComponent.h | 2 +- .../EditorDirectionalLightComponent.cpp | 2 +- .../EditorDirectionalLightComponent.h | 2 +- .../Code/Source/CoreLights/LightDelegateBase.h | 2 +- .../Source/CoreLights/LightDelegateBase.inl | 2 +- .../Source/CoreLights/LightDelegateInterface.h | 2 +- .../Source/CoreLights/PolygonLightDelegate.cpp | 2 +- .../Source/CoreLights/PolygonLightDelegate.h | 2 +- .../Source/CoreLights/QuadLightDelegate.cpp | 2 +- .../Code/Source/CoreLights/QuadLightDelegate.h | 2 +- .../CoreLights/SimplePointLightDelegate.cpp | 2 +- .../CoreLights/SimplePointLightDelegate.h | 2 +- .../CoreLights/SimpleSpotLightDelegate.cpp | 2 +- .../CoreLights/SimpleSpotLightDelegate.h | 2 +- .../Source/CoreLights/SphereLightDelegate.cpp | 2 +- .../Source/CoreLights/SphereLightDelegate.h | 2 +- .../Code/Source/Decals/DecalComponent.cpp | 2 +- .../Code/Source/Decals/DecalComponent.h | 2 +- .../Source/Decals/DecalComponentController.cpp | 2 +- .../Source/Decals/DecalComponentController.h | 2 +- .../Source/Decals/EditorDecalComponent.cpp | 2 +- .../Code/Source/Decals/EditorDecalComponent.h | 2 +- .../DiffuseGlobalIlluminationComponent.cpp | 2 +- .../DiffuseGlobalIlluminationComponent.h | 2 +- ...iffuseGlobalIlluminationComponentConfig.cpp | 2 +- .../DiffuseGlobalIlluminationComponentConfig.h | 2 +- ...ffuseGlobalIlluminationComponentConstants.h | 2 +- ...seGlobalIlluminationComponentController.cpp | 2 +- ...fuseGlobalIlluminationComponentController.h | 2 +- .../DiffuseProbeGridComponent.cpp | 2 +- .../DiffuseProbeGridComponent.h | 2 +- .../DiffuseProbeGridComponentConstants.h | 2 +- .../DiffuseProbeGridComponentController.cpp | 2 +- .../DiffuseProbeGridComponentController.h | 2 +- ...ditorDiffuseGlobalIlluminationComponent.cpp | 2 +- .../EditorDiffuseGlobalIlluminationComponent.h | 2 +- .../EditorDiffuseProbeGridComponent.cpp | 2 +- .../EditorDiffuseProbeGridComponent.h | 2 +- .../EditorCommonFeaturesSystemComponent.cpp | 2 +- .../EditorCommonFeaturesSystemComponent.h | 2 +- .../Code/Source/Grid/EditorGridComponent.cpp | 2 +- .../Code/Source/Grid/EditorGridComponent.h | 2 +- .../Code/Source/Grid/GridComponent.cpp | 2 +- .../Code/Source/Grid/GridComponent.h | 2 +- .../Code/Source/Grid/GridComponentConfig.cpp | 2 +- .../Source/Grid/GridComponentController.cpp | 2 +- .../Code/Source/Grid/GridComponentController.h | 2 +- .../EditorImageBasedLightComponent.cpp | 2 +- .../EditorImageBasedLightComponent.h | 2 +- .../ImageBasedLightComponent.cpp | 2 +- .../ImageBasedLightComponent.h | 2 +- .../ImageBasedLightComponentConfig.cpp | 2 +- .../ImageBasedLightComponentController.cpp | 2 +- .../ImageBasedLightComponentController.h | 2 +- .../Material/EditorMaterialComponent.cpp | 2 +- .../Source/Material/EditorMaterialComponent.h | 2 +- .../EditorMaterialComponentExporter.cpp | 2 +- .../Material/EditorMaterialComponentExporter.h | 2 +- .../EditorMaterialComponentInspector.cpp | 2 +- .../EditorMaterialComponentInspector.h | 2 +- .../Material/EditorMaterialComponentSlot.cpp | 2 +- .../Material/EditorMaterialComponentSlot.h | 2 +- .../Material/EditorMaterialComponentUtil.cpp | 2 +- .../Material/EditorMaterialComponentUtil.h | 2 +- .../EditorMaterialModelUvNameMapInspector.cpp | 2 +- .../EditorMaterialModelUvNameMapInspector.h | 2 +- .../Material/EditorMaterialSystemComponent.cpp | 2 +- .../Material/EditorMaterialSystemComponent.h | 2 +- .../Material/MaterialBrowserInteractions.cpp | 2 +- .../Material/MaterialBrowserInteractions.h | 2 +- .../Code/Source/Material/MaterialComponent.cpp | 2 +- .../Code/Source/Material/MaterialComponent.h | 2 +- .../Material/MaterialComponentConfig.cpp | 2 +- .../Material/MaterialComponentController.cpp | 2 +- .../Material/MaterialComponentController.h | 2 +- .../Code/Source/Material/MaterialThumbnail.cpp | 2 +- .../Code/Source/Material/MaterialThumbnail.h | 2 +- .../Code/Source/Mesh/EditorMeshComponent.cpp | 2 +- .../Code/Source/Mesh/EditorMeshComponent.h | 2 +- .../Source/Mesh/EditorMeshSystemComponent.cpp | 2 +- .../Source/Mesh/EditorMeshSystemComponent.h | 2 +- .../Code/Source/Mesh/MeshComponent.cpp | 2 +- .../Code/Source/Mesh/MeshComponent.h | 2 +- .../Source/Mesh/MeshComponentController.cpp | 2 +- .../Code/Source/Mesh/MeshComponentController.h | 2 +- .../Code/Source/Mesh/MeshThumbnail.cpp | 2 +- .../Code/Source/Mesh/MeshThumbnail.h | 2 +- .../CommonFeatures/Code/Source/Module.cpp | 2 +- .../EditorOcclusionCullingPlaneComponent.cpp | 2 +- .../EditorOcclusionCullingPlaneComponent.h | 2 +- .../OcclusionCullingPlaneComponent.cpp | 2 +- .../OcclusionCullingPlaneComponent.h | 2 +- .../OcclusionCullingPlaneComponentConstants.h | 2 +- ...cclusionCullingPlaneComponentController.cpp | 2 +- .../OcclusionCullingPlaneComponentController.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../AppleTV/platform_appletv_files.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../PostProcess/Bloom/BloomComponent.cpp | 2 +- .../Source/PostProcess/Bloom/BloomComponent.h | 2 +- .../PostProcess/Bloom/BloomComponentConfig.cpp | 2 +- .../Bloom/BloomComponentController.cpp | 2 +- .../Bloom/BloomComponentController.h | 2 +- .../PostProcess/Bloom/EditorBloomComponent.cpp | 2 +- .../PostProcess/Bloom/EditorBloomComponent.h | 2 +- .../DepthOfField/DepthOfFieldComponent.cpp | 2 +- .../DepthOfField/DepthOfFieldComponent.h | 2 +- .../DepthOfFieldComponentConfig.cpp | 2 +- .../DepthOfFieldComponentController.cpp | 2 +- .../DepthOfFieldComponentController.h | 2 +- .../EditorDepthOfFieldComponent.cpp | 2 +- .../DepthOfField/EditorDepthOfFieldComponent.h | 2 +- .../DisplayMapper/DisplayMapperComponent.cpp | 2 +- .../DisplayMapper/DisplayMapperComponent.h | 2 +- .../DisplayMapperComponentConfig.cpp | 2 +- .../DisplayMapperComponentController.cpp | 2 +- .../DisplayMapperComponentController.h | 2 +- .../EditorDisplayMapperComponent.cpp | 2 +- .../EditorDisplayMapperComponent.h | 2 +- .../EditorPostFxLayerCategoriesAsset.cpp | 2 +- .../EditorPostFxLayerCategoriesAsset.h | 2 +- .../PostProcess/EditorPostFxLayerComponent.cpp | 2 +- .../PostProcess/EditorPostFxLayerComponent.h | 2 +- .../EditorPostFxSystemComponent.cpp | 2 +- .../PostProcess/EditorPostFxSystemComponent.h | 2 +- .../EditorExposureControlComponent.cpp | 2 +- .../EditorExposureControlComponent.h | 2 +- .../ExposureControlComponent.cpp | 2 +- .../ExposureControl/ExposureControlComponent.h | 2 +- .../ExposureControlComponentConfig.cpp | 2 +- .../ExposureControlComponentController.cpp | 2 +- .../ExposureControlComponentController.h | 2 +- .../EditorGradientWeightModifierComponent.cpp | 2 +- .../EditorGradientWeightModifierComponent.h | 2 +- .../GradientWeightModifierComponent.cpp | 2 +- .../GradientWeightModifierComponent.h | 2 +- .../GradientWeightModifierComponentConfig.cpp | 2 +- .../GradientWeightModifierController.cpp | 2 +- .../GradientWeightModifierController.h | 2 +- .../EditorLookModificationComponent.cpp | 2 +- .../EditorLookModificationComponent.h | 2 +- .../LookModificationComponent.cpp | 2 +- .../LookModificationComponent.h | 2 +- .../LookModificationComponentConfig.cpp | 2 +- .../LookModificationComponentController.cpp | 2 +- .../LookModificationComponentController.h | 2 +- .../PostProcess/PostFxLayerComponent.cpp | 2 +- .../Source/PostProcess/PostFxLayerComponent.h | 2 +- .../PostProcess/PostFxLayerComponentConfig.cpp | 2 +- .../PostFxLayerComponentController.cpp | 2 +- .../PostFxLayerComponentController.h | 2 +- .../EditorRadiusWeightModifierComponent.cpp | 2 +- .../EditorRadiusWeightModifierComponent.h | 2 +- .../RadiusWeightModifierComponent.cpp | 2 +- .../RadiusWeightModifierComponent.h | 2 +- .../RadiusWeightModifierComponentConfig.cpp | 2 +- ...RadiusWeightModifierComponentController.cpp | 2 +- .../RadiusWeightModifierComponentController.h | 2 +- .../EditorShapeWeightModifierComponent.cpp | 2 +- .../EditorShapeWeightModifierComponent.h | 2 +- .../ShapeWeightModifierComponent.cpp | 2 +- .../ShapeWeightModifierComponent.h | 2 +- .../ShapeWeightModifierComponentConfig.cpp | 2 +- .../ShapeWeightModifierComponentController.cpp | 2 +- .../ShapeWeightModifierComponentController.h | 2 +- .../PostProcess/Ssao/EditorSsaoComponent.cpp | 2 +- .../PostProcess/Ssao/EditorSsaoComponent.h | 2 +- .../Source/PostProcess/Ssao/SsaoComponent.cpp | 2 +- .../Source/PostProcess/Ssao/SsaoComponent.h | 2 +- .../PostProcess/Ssao/SsaoComponentConfig.cpp | 2 +- .../Ssao/SsaoComponentController.cpp | 2 +- .../PostProcess/Ssao/SsaoComponentController.h | 2 +- .../EditorReflectionProbeComponent.cpp | 2 +- .../EditorReflectionProbeComponent.h | 2 +- .../ReflectionProbeComponent.cpp | 2 +- .../ReflectionProbe/ReflectionProbeComponent.h | 2 +- .../ReflectionProbeComponentConstants.h | 2 +- .../ReflectionProbeComponentController.cpp | 2 +- .../ReflectionProbeComponentController.h | 2 +- .../ScreenSpace/DeferredFogComponent.cpp | 2 +- .../Source/ScreenSpace/DeferredFogComponent.h | 2 +- .../ScreenSpace/DeferredFogComponentConfig.cpp | 2 +- .../DeferredFogComponentController.cpp | 2 +- .../DeferredFogComponentController.h | 2 +- .../ScreenSpace/EditorDeferredFogComponent.cpp | 2 +- .../ScreenSpace/EditorDeferredFogComponent.h | 2 +- .../EditorEntityReferenceComponent.cpp | 2 +- .../Scripting/EditorEntityReferenceComponent.h | 2 +- .../Scripting/EntityReferenceComponent.cpp | 2 +- .../Scripting/EntityReferenceComponent.h | 2 +- .../EntityReferenceComponentConfig.cpp | 2 +- .../EntityReferenceComponentController.cpp | 2 +- .../EntityReferenceComponentController.h | 2 +- .../SkinnedMesh/SkinnedMeshDebugDisplay.cpp | 2 +- .../SkinnedMesh/SkinnedMeshDebugDisplay.h | 2 +- .../SkyBox/EditorHDRiSkyboxComponent.cpp | 2 +- .../Source/SkyBox/EditorHDRiSkyboxComponent.h | 2 +- .../SkyBox/EditorPhysicalSkyComponent.cpp | 2 +- .../Source/SkyBox/EditorPhysicalSkyComponent.h | 2 +- .../Code/Source/SkyBox/HDRiSkyboxComponent.cpp | 2 +- .../Code/Source/SkyBox/HDRiSkyboxComponent.h | 2 +- .../SkyBox/HDRiSkyboxComponentConfig.cpp | 2 +- .../SkyBox/HDRiSkyboxComponentController.cpp | 2 +- .../SkyBox/HDRiSkyboxComponentController.h | 2 +- .../Source/SkyBox/PhysicalSkyComponent.cpp | 2 +- .../Code/Source/SkyBox/PhysicalSkyComponent.h | 2 +- .../SkyBox/PhysicalSkyComponentConfig.cpp | 2 +- .../SkyBox/PhysicalSkyComponentController.cpp | 2 +- .../SkyBox/PhysicalSkyComponentController.h | 2 +- .../EditorSurfaceDataMeshComponent.cpp | 2 +- .../EditorSurfaceDataMeshComponent.h | 2 +- .../SurfaceData/SurfaceDataMeshComponent.cpp | 2 +- .../SurfaceData/SurfaceDataMeshComponent.h | 2 +- .../Thumbnails/Preview/CommonPreviewer.cpp | 2 +- .../Thumbnails/Preview/CommonPreviewer.h | 2 +- .../Preview/CommonPreviewerFactory.cpp | 2 +- .../Preview/CommonPreviewerFactory.h | 2 +- .../Rendering/CommonThumbnailRenderer.cpp | 2 +- .../Rendering/CommonThumbnailRenderer.h | 2 +- .../Rendering/ThumbnailRendererContext.h | 2 +- .../Rendering/ThumbnailRendererData.h | 2 +- .../ThumbnailRendererSteps/CaptureStep.cpp | 2 +- .../ThumbnailRendererSteps/CaptureStep.h | 2 +- .../FindThumbnailToRenderStep.cpp | 2 +- .../FindThumbnailToRenderStep.h | 2 +- .../ThumbnailRendererSteps/InitializeStep.cpp | 2 +- .../ThumbnailRendererSteps/InitializeStep.h | 2 +- .../ReleaseResourcesStep.cpp | 2 +- .../ReleaseResourcesStep.h | 2 +- .../ThumbnailRendererStep.h | 2 +- .../WaitForAssetsToLoadStep.cpp | 2 +- .../WaitForAssetsToLoadStep.h | 2 +- .../Code/Source/Thumbnails/ThumbnailUtils.cpp | 2 +- .../Code/Source/Thumbnails/ThumbnailUtils.h | 2 +- ...tegration_commonfeatures_editor_files.cmake | 2 +- ...tomlyintegration_commonfeatures_files.cmake | 2 +- ...tegration_commonfeatures_public_files.cmake | 2 +- ...tegration_commonfeatures_shared_files.cmake | 2 +- .../EMotionFXAtom/CMakeLists.txt | 2 +- .../EMotionFXAtom/Code/CMakeLists.txt | 2 +- .../EMotionFXAtom/Code/Source/ActorAsset.cpp | 2 +- .../EMotionFXAtom/Code/Source/ActorAsset.h | 2 +- .../EMotionFXAtom/Code/Source/ActorModule.cpp | 2 +- .../Code/Source/ActorSystemComponent.cpp | 2 +- .../Code/Source/ActorSystemComponent.h | 2 +- .../EMotionFXAtom/Code/Source/AtomActor.cpp | 2 +- .../EMotionFXAtom/Code/Source/AtomActor.h | 2 +- .../Code/Source/AtomActorInstance.cpp | 2 +- .../Code/Source/AtomActorInstance.h | 2 +- .../EMotionFXAtom/Code/Source/AtomBackend.cpp | 2 +- .../EMotionFXAtom/Code/Source/AtomBackend.h | 2 +- .../Code/emotionfx_atom_editor_files.cmake | 2 +- .../Code/emotionfx_atom_files.cmake | 2 +- .../Code/emotionfxatom_shared_files.cmake | 2 +- .../Assets/Shaders/ImGuiAtom/ImGuiAtom.azsl | 2 +- .../AtomLyIntegration/ImguiAtom/CMakeLists.txt | 2 +- .../ImguiAtom/Code/CMakeLists.txt | 2 +- .../ImguiAtom/Code/Source/DebugConsole.cpp | 2 +- .../ImguiAtom/Code/Source/DebugConsole.h | 2 +- .../ImguiAtom/Code/Source/ImguiAtomModule.cpp | 2 +- .../Code/Source/ImguiAtomSystemComponent.cpp | 2 +- .../Code/Source/ImguiAtomSystemComponent.h | 2 +- .../ImguiAtom/Code/imguiatom_files.cmake | 2 +- .../Code/imguiatom_shared_files.cmake | 2 +- .../TechnicalArt/CMakeLists.txt | 2 +- .../TechnicalArt/DccScriptingInterface/.env | 2 +- .../DccScriptingInterface/CMakeLists.txt | 2 +- .../DccScriptingInterface/Code/CMakeLists.txt | 2 +- .../DCCScriptingInterfaceBus.h | 2 +- .../Source/DCCScriptingInterfaceModule.cpp | 2 +- .../DCCScriptingInterfaceSystemComponent.cpp | 2 +- .../DCCScriptingInterfaceSystemComponent.h | 2 +- .../Code/dccscriptinginterface_files.cmake | 2 +- .../dccscriptinginterface_shared_files.cmake | 2 +- .../Editor/Scripts/bootstrap.py | 2 +- .../Launchers/Windows/Env_Core.bat | 2 +- .../Launchers/Windows/Env_Maya.bat | 2 +- .../Launchers/Windows/Env_PyCharm.bat | 2 +- .../Launchers/Windows/Env_Python.bat | 2 +- .../Launchers/Windows/Env_Qt.bat | 2 +- .../Launchers/Windows/Env_Substance.bat | 2 +- .../Launchers/Windows/Env_VScode.bat | 2 +- .../Launchers/Windows/Env_WingIDE.bat | 2 +- .../Launchers/Windows/Launch_Env_Cmd.bat | 2 +- .../Windows/Launch_MayaPy_PyCharmPro.bat | 2 +- .../Launchers/Windows/Launch_Maya_2020.bat | 2 +- .../Launchers/Windows/Launch_PyCharmPro.bat | 2 +- .../Launchers/Windows/Launch_PyMin_Cmd.bat | 2 +- .../Launchers/Windows/Launch_Qt_PyMin_Cmd.bat | 2 +- .../Launchers/Windows/Launch_VScode.bat | 2 +- .../Launchers/Windows/Launch_WingIDE-7-1.bat | 2 +- .../Launchers/Windows/Launch_mayaPy_2020.bat | 2 +- .../Windows/Launch_mayapy_WingIDE-7-1.bat | 2 +- .../Launchers/Windows/Launch_pyBASE.bat | 2 +- .../Launchers/Windows/Launch_pyBASE_Cmd.bat | 2 +- .../Launchers/Windows/Setuo_copy_oiio.bat | 2 +- .../Scripts/Python/DCC_Materials/__init__.py | 2 +- .../DCC_Materials/maya_materials_export.py | 2 +- .../SDK/Atom/Scripts/Python/minspect.py | 2 +- .../SDK/Lumberyard/Scripts/set_menu.py | 2 +- .../Scripts/Python/dcc_materials/__init__.py | 2 +- .../Python/dcc_materials/blender_materials.py | 2 +- .../dcc_materials/dcc_material_mapping.py | 2 +- .../Python/dcc_materials/drag_and_drop.py | 2 +- .../Maya/Scripts/Python/dcc_materials/main.py | 2 +- .../Python/dcc_materials/materials_export.py | 2 +- .../Python/dcc_materials/max_materials.py | 2 +- .../Python/dcc_materials/maya_materials.py | 2 +- .../Maya/Scripts/Python/dcc_materials/model.py | 2 +- .../Python/kitbash_converter/__init__.py | 2 +- .../Python/kitbash_converter/launcher.bat | 2 +- .../Scripts/Python/kitbash_converter/main.py | 2 +- .../kitbash_converter/process_fbx_file.py | 2 +- .../Python/kitbash_converter/standalone.py | 2 +- .../legacy_asset_converter/Launch_Cmd.bat | 2 +- .../Launch_Maya_2020.bat | 2 +- .../Launch_WingIDE-7-1.bat | 2 +- .../legacy_asset_converter/Project_Env.bat | 2 +- .../Python/legacy_asset_converter/__init__.py | 2 +- .../legacy_asset_converter/cli_control.py | 2 +- .../Python/legacy_asset_converter/constants.py | 2 +- .../create_maya_files.py | 2 +- .../legacy_asset_converter/image_conversion.py | 2 +- .../isolate_and_assign.py | 2 +- .../legacy_asset_converter/lumberyard_data.py | 2 +- .../Python/legacy_asset_converter/main.py | 2 +- .../test_command_port.py | 2 +- .../Python/legacy_asset_converter/utilities.py | 2 +- .../Python/maya_dcc_materials/__init__.py | 2 +- .../maya_materials_export.py | 2 +- .../Python/maya_dcc_materials/minspect.py | 2 +- .../Python/stingraypbs_converter/__init__.py | 2 +- .../Python/stingraypbs_converter/atom_mat.py | 2 +- .../stingraypbs_converter/fbx_to_atom.py | 2 +- .../stingrayPBS_converter.py | 2 +- .../stingrayPBS_converter_maya.py | 2 +- .../SDK/Maya/Scripts/constants.py | 2 +- .../SDK/Maya/Scripts/set_callbacks.py | 2 +- .../SDK/Maya/Scripts/set_defaults.py | 2 +- .../SDK/Maya/Scripts/set_menu.py | 2 +- .../SDK/Maya/Scripts/set_shelf.py | 2 +- .../SDK/Maya/Scripts/setupPaths.py | 2 +- .../SDK/Maya/Scripts/userSetup.py | 2 +- .../DccScriptingInterface/SDK/Maya/readme.txt | 2 +- .../SDK/Python/Tests/OpenImageIO/test_oiio.py | 2 +- .../blender_materials.py | 2 +- .../DCC_Material_Converter/cli_control.py | 2 +- .../dcc_material_mapping.py | 2 +- .../DCC_Material_Converter/drag_and_drop.py | 2 +- .../DCC_Material_Converter/launcher.bat | 2 +- .../PythonTools/DCC_Material_Converter/main.py | 2 +- .../DCC_Material_Converter/max_materials.py | 2 +- .../DCC_Material_Converter/maya_materials.py | 2 +- .../DCC_Material_Converter/model.py | 2 +- .../DCC_Material_Converter/standalone.py | 2 +- .../SDK/PythonTools/Launcher/main.py | 2 +- .../SDK/Substance/builder/__init__.py | 2 +- .../SDK/Substance/builder/atom_material.py | 2 +- .../SDK/Substance/builder/bootstrap.py | 2 +- .../SDK/Substance/builder/sb_gui_main.py | 2 +- .../SDK/Substance/builder/sbs_to_sbsar.py | 2 +- .../SDK/Substance/builder/sbsar_info.py | 2 +- .../SDK/Substance/builder/sbsar_render.py | 2 +- .../SDK/Substance/builder/sbsar_utils.py | 2 +- .../SDK/Substance/builder/substance_tools.py | 2 +- .../builder/ui/PyQt5_qtextedit_stdout.py | 2 +- .../builder/ui/PySide2_qtextedit_stdout.py | 2 +- .../SDK/Substance/builder/ui/main.py | 2 +- .../Substance/builder/ui/selection_dialog.py | 2 +- .../builder/ui/stylesheets/BaseStyleSheet.qss | 2 +- .../builder/ui/stylesheets/BreadCrumbs.qss | 2 +- .../builder/ui/stylesheets/BrowseEdit.qss | 2 +- .../Substance/builder/ui/stylesheets/Card.qss | 2 +- .../builder/ui/stylesheets/CheckBox.qss | 2 +- .../builder/ui/stylesheets/ColorPicker.qss | 2 +- .../builder/ui/stylesheets/ComboBox.qss | 2 +- .../builder/ui/stylesheets/LineEdit.qss | 2 +- .../Substance/builder/ui/stylesheets/Menu.qss | 2 +- .../builder/ui/stylesheets/ProgressBar.qss | 2 +- .../builder/ui/stylesheets/PushButton.qss | 2 +- .../builder/ui/stylesheets/RadioButton.qss | 2 +- .../builder/ui/stylesheets/ScrollBar.qss | 2 +- .../builder/ui/stylesheets/SegmentControl.qss | 2 +- .../builder/ui/stylesheets/Slider.qss | 2 +- .../builder/ui/stylesheets/SpinBox.qss | 2 +- .../Substance/builder/ui/stylesheets/Text.qss | 2 +- .../builder/ui/stylesheets/ToolTip.qss | 2 +- .../SDK/Substance/builder/watchdog/__init__.py | 2 +- .../Substance/scripts/sbs_builder_main_SD.py | 2 +- .../Solutions/.dev/readme.txt | 2 +- .../Solutions/.idea/main.py | 2 +- .../DccScriptingInterface/Solutions/readme.txt | 2 +- .../azpy/3dsmax/__init__.py | 2 +- .../DccScriptingInterface/azpy/__init__.py | 2 +- .../azpy/blender/__init__.py | 2 +- .../DccScriptingInterface/azpy/config_utils.py | 2 +- .../DccScriptingInterface/azpy/constants.py | 2 +- .../DccScriptingInterface/azpy/dev/__init__.py | 2 +- .../azpy/dev/ide/__init__.py | 2 +- .../dev/ide/examples/maya_command_script.py | 2 +- .../azpy/dev/ide/wing/__init__.py | 2 +- .../azpy/dev/ide/wing/hot_keys.py | 2 +- .../azpy/dev/ide/wing/test.py | 2 +- .../azpy/dev/utils/__init__.py | 2 +- .../azpy/dev/utils/check/__init__.py | 2 +- .../azpy/dev/utils/check/maya_app.py | 2 +- .../azpy/dev/utils/check/running_state.py | 2 +- .../DccScriptingInterface/azpy/env_base.py | 2 +- .../DccScriptingInterface/azpy/env_bool.py | 2 +- .../azpy/houdini/__init__.py | 2 +- .../azpy/lumberyard/__init__.py | 2 +- .../azpy/marmoset/__init__.py | 2 +- .../azpy/maya/__init__.py | 2 +- .../azpy/maya/callbacks/__init__.py | 2 +- .../maya/callbacks/event_callback_handler.py | 2 +- .../callbacks/node_message_callback_handler.py | 2 +- .../azpy/maya/callbacks/on_shader_rename.py | 2 +- .../azpy/maya/helpers/__init__.py | 2 +- .../azpy/maya/helpers/undo_context.py | 2 +- .../azpy/maya/helpers/utils.py | 2 +- .../azpy/maya/toolbits/__init__.py | 2 +- .../azpy/maya/toolbits/detach.py | 2 +- .../azpy/maya/utils/__init__.py | 2 +- .../azpy/maya/utils/execute_wing_code.py | 2 +- .../azpy/maya/utils/simple_command_port.py | 2 +- .../azpy/maya/utils/wing_to_maya.py | 2 +- .../azpy/render/__init__.py | 2 +- .../DccScriptingInterface/azpy/return_stub.py | 2 +- .../azpy/shared/__init__.py | 2 +- .../azpy/shared/common/__init__.py | 2 +- .../azpy/shared/common/core_utils.py | 2 +- .../azpy/shared/common/envar_utils.py | 2 +- .../azpy/shared/noodely/__init__.py | 2 +- .../azpy/shared/noodely/find_arg.py | 2 +- .../azpy/shared/noodely/helpers.py | 2 +- .../azpy/shared/noodely/node.py | 2 +- .../azpy/shared/noodely/pathnode.py | 2 +- .../azpy/shared/noodely/synth.py | 2 +- .../azpy/shared/noodely/synth_arg_kwarg.py | 2 +- .../azpy/shared/noodely/test_foo.py | 2 +- .../azpy/shared/ui/__init__.py | 2 +- .../azpy/shared/ui/base_widget.py | 2 +- .../azpy/shared/ui/custom_treemodel.py | 2 +- .../azpy/shared/ui/help_menu.py | 2 +- .../azpy/shared/ui/pyside2_qtextedit_stdout.py | 2 +- .../azpy/shared/ui/pyside2_ui_utils.py | 2 +- .../azpy/shared/ui/qt_settings.py | 2 +- .../resources/stylesheets/BaseStyleSheet.qss | 2 +- .../ui/resources/stylesheets/BreadCrumbs.qss | 2 +- .../ui/resources/stylesheets/BrowseEdit.qss | 2 +- .../shared/ui/resources/stylesheets/Card.qss | 2 +- .../ui/resources/stylesheets/CheckBox.qss | 2 +- .../ui/resources/stylesheets/ColorPicker.qss | 2 +- .../ui/resources/stylesheets/ComboBox.qss | 2 +- .../ui/resources/stylesheets/LineEdit.qss | 2 +- .../shared/ui/resources/stylesheets/Menu.qss | 2 +- .../ui/resources/stylesheets/ProgressBar.qss | 2 +- .../ui/resources/stylesheets/PushButton.qss | 2 +- .../ui/resources/stylesheets/RadioButton.qss | 2 +- .../ui/resources/stylesheets/ScrollBar.qss | 2 +- .../resources/stylesheets/SegmentControl.qss | 2 +- .../shared/ui/resources/stylesheets/Slider.qss | 2 +- .../ui/resources/stylesheets/SpinBox.qss | 2 +- .../shared/ui/resources/stylesheets/Text.qss | 2 +- .../ui/resources/stylesheets/ToolTip.qss | 2 +- .../azpy/shared/ui/templates.py | 2 +- .../azpy/substance/__init__.py | 2 +- .../azpy/synthetic_env.py | 2 +- .../azpy/test/__init__.py | 2 +- .../azpy/test/entry_test.py | 2 +- .../DccScriptingInterface/config.py | 2 +- .../DccScriptingInterface/setup.py | 2 +- Gems/AtomTressFX/CMakeLists.txt | 2 +- .../AtomTressFX/Tools/Maya/TressFX_Exporter.py | 2 +- Gems/AudioEngineWwise/CMakeLists.txt | 2 +- Gems/AudioEngineWwise/Code/CMakeLists.txt | 2 +- .../Android/AkPlatformFuncs_Platform.h | 2 +- .../Android/AudioEngineWwise_Traits_Android.h | 2 +- .../Android/AudioEngineWwise_Traits_Platform.h | 2 +- .../Android/AudioSystemImpl_wwise_Android.cpp | 2 +- .../Android/FileIOHandler_wwise_Platform.h | 2 +- .../Code/Platform/Android/PAL_android.cmake | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Common/Default/AkPlatformFuncs_Default.h | 2 +- .../Default/FileIOHandler_wwise_Default.cpp | 2 +- .../Default/FileIOHandler_wwise_Default.h | 2 +- .../Common/MSVC/AkPlatformFuncs_Default.h | 2 +- .../AudioEngineWwise_Unimplemented.cpp | 2 +- .../AudioSystemImpl_wwise_Unimplemented.cpp | 2 +- .../Platform/Linux/AkPlatformFuncs_Platform.h | 2 +- .../Linux/AudioEngineWwise_Traits_Linux.h | 2 +- .../Linux/AudioEngineWwise_Traits_Platform.h | 2 +- .../Linux/FileIOHandler_wwise_Platform.h | 2 +- .../Code/Platform/Linux/PAL_linux.cmake | 2 +- .../Code/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/AkPlatformFuncs_Platform.h | 2 +- .../Platform/Mac/AudioEngineWwise_Traits_Mac.h | 2 +- .../Mac/AudioEngineWwise_Traits_Platform.h | 2 +- .../Mac/FileIOHandler_wwise_Platform.h | 2 +- .../Code/Platform/Mac/PAL_mac.cmake | 2 +- .../Code/Platform/Mac/platform_mac.cmake | 2 +- .../Code/Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/AkPlatformFuncs_Platform.h | 2 +- .../Windows/AudioEngineWwise_Traits_Platform.h | 2 +- .../Windows/AudioEngineWwise_Traits_Windows.h | 2 +- .../Windows/AudioSystemImpl_wwise_Windows.cpp | 2 +- .../Windows/FileIOHandler_wwise_Platform.h | 2 +- .../Code/Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/AkPlatformFuncs_Platform.h | 2 +- .../iOS/AudioEngineWwise_Traits_Platform.h | 2 +- .../Platform/iOS/AudioEngineWwise_Traits_iOS.h | 2 +- .../iOS/FileIOHandler_wwise_Platform.h | 2 +- .../Code/Platform/iOS/PAL_ios.cmake | 2 +- .../Code/Platform/iOS/platform_ios.cmake | 2 +- .../Code/Platform/iOS/platform_ios_files.cmake | 2 +- .../AudioEngineWwiseGemSystemComponent.cpp | 2 +- .../AudioEngineWwiseGemSystemComponent.h | 2 +- .../Code/Source/AudioEngineWwiseModule.cpp | 2 +- .../Source/AudioEngineWwiseModule_Stub.cpp | 2 +- .../Builder/AudioControlBuilderComponent.cpp | 2 +- .../Builder/AudioControlBuilderComponent.h | 2 +- .../Builder/AudioControlBuilderWorker.cpp | 2 +- .../Source/Builder/AudioControlBuilderWorker.h | 2 +- .../Source/Builder/WwiseBuilderComponent.cpp | 2 +- .../Source/Builder/WwiseBuilderComponent.h | 2 +- .../Code/Source/Builder/WwiseBuilderWorker.cpp | 2 +- .../Code/Source/Builder/WwiseBuilderWorker.h | 2 +- .../Source/Editor/AudioSystemControl_wwise.cpp | 2 +- .../Source/Editor/AudioSystemControl_wwise.h | 2 +- .../Source/Editor/AudioSystemEditor_wwise.cpp | 2 +- .../Source/Editor/AudioSystemEditor_wwise.h | 2 +- .../Code/Source/Editor/AudioWwiseLoader.cpp | 2 +- .../Code/Source/Editor/AudioWwiseLoader.h | 2 +- .../Code/Source/Engine/ATLEntities_wwise.h | 2 +- .../Engine/AudioInput/AudioInputFile.cpp | 2 +- .../Source/Engine/AudioInput/AudioInputFile.h | 2 +- .../Engine/AudioInput/AudioInputMicrophone.cpp | 2 +- .../Engine/AudioInput/AudioInputMicrophone.h | 2 +- .../Engine/AudioInput/AudioInputStream.cpp | 2 +- .../Engine/AudioInput/AudioInputStream.h | 2 +- .../Source/Engine/AudioInput/WavParser.cpp | 2 +- .../Code/Source/Engine/AudioInput/WavParser.h | 2 +- .../Code/Source/Engine/AudioSourceManager.cpp | 2 +- .../Code/Source/Engine/AudioSourceManager.h | 2 +- .../Source/Engine/AudioSystemImplCVars.cpp | 2 +- .../Code/Source/Engine/AudioSystemImplCVars.h | 2 +- .../Source/Engine/AudioSystemImpl_wwise.cpp | 2 +- .../Code/Source/Engine/AudioSystemImpl_wwise.h | 2 +- .../Code/Source/Engine/Common_wwise.cpp | 2 +- .../Code/Source/Engine/Common_wwise.h | 2 +- .../Code/Source/Engine/Config_wwise.cpp | 2 +- .../Code/Source/Engine/Config_wwise.h | 2 +- .../Code/Source/Engine/FileIOHandler_wwise.cpp | 2 +- .../Code/Source/Engine/FileIOHandler_wwise.h | 2 +- .../Source/Engine/PluginRegistration_wwise.h | 2 +- .../Code/Tests/AudioControlBuilderTest.cpp | 2 +- .../Code/Tests/AudioEngineWwiseBuilderTest.cpp | 2 +- .../Code/Tests/AudioEngineWwiseEditorTest.cpp | 2 +- .../Code/Tests/AudioEngineWwiseTest.cpp | 2 +- .../Code/audioenginewwise_editor_files.cmake | 2 +- .../audioenginewwise_editor_shared_files.cmake | 2 +- .../audioenginewwise_editor_tests_files.cmake | 2 +- .../Code/audioenginewwise_files.cmake | 2 +- .../Code/audioenginewwise_shared_files.cmake | 2 +- .../Code/audioenginewwise_stub_files.cmake | 2 +- .../Code/audioenginewwise_tests_files.cmake | 2 +- .../Tools/WwiseATLGen/wwise_atl_gen_tool.py | 4 ++-- .../Tools/WwiseAuthoringScripts/__init__.py | 2 +- .../WwiseAuthoringScripts/bank_info_parser.py | 4 ++-- .../Tools/WwiseConfig/setup_wwise_config.py | 4 ++-- Gems/AudioSystem/CMakeLists.txt | 2 +- Gems/AudioSystem/Code/CMakeLists.txt | 2 +- .../AudioSystem/Code/Include/Editor/ACETypes.h | 2 +- .../Code/Include/Editor/IAudioConnection.h | 2 +- .../Code/Include/Editor/IAudioSystemControl.h | 2 +- .../Code/Include/Editor/IAudioSystemEditor.h | 2 +- .../Code/Include/Engine/ATLCommon.h | 2 +- .../Code/Include/Engine/ATLEntityData.h | 2 +- .../Code/Include/Engine/AudioAllocators.h | 2 +- .../Code/Include/Engine/AudioFileUtils.h | 2 +- .../Code/Include/Engine/AudioLogger.h | 2 +- .../Code/Include/Engine/AudioRingBuffer.h | 2 +- .../Engine/IAudioSystemImplementation.h | 2 +- .../Android/AudioSystem_Traits_Android.h | 2 +- .../Android/AudioSystem_Traits_Platform.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../AudioSystemGemSystemComponent_default.cpp | 2 +- .../Platform/Linux/AudioSystem_Traits_Linux.h | 2 +- .../Linux/AudioSystem_Traits_Platform.h | 2 +- .../Code/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Platform/Mac/AudioSystem_Traits_Mac.h | 2 +- .../Platform/Mac/AudioSystem_Traits_Platform.h | 2 +- .../Code/Platform/Mac/platform_mac.cmake | 2 +- .../Code/Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/AudioSystem_Traits_Platform.h | 2 +- .../Windows/AudioSystem_Traits_Windows.h | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/AudioSystem_Traits_Platform.h | 2 +- .../Code/Platform/iOS/AudioSystem_Traits_iOS.h | 2 +- .../Code/Platform/iOS/platform_ios.cmake | 2 +- .../Code/Platform/iOS/platform_ios_files.cmake | 2 +- .../Source/AudioSystemGemSystemComponent.cpp | 2 +- .../Source/AudioSystemGemSystemComponent.h | 2 +- .../Code/Source/AudioSystemModule.cpp | 2 +- .../Code/Source/AudioSystemModule_Stub.cpp | 2 +- Gems/AudioSystem/Code/Source/Editor/ACEEnums.h | 2 +- .../Code/Source/Editor/ATLControlsModel.cpp | 2 +- .../Code/Source/Editor/ATLControlsModel.h | 2 +- .../Code/Source/Editor/ATLControlsPanel.cpp | 2 +- .../Code/Source/Editor/ATLControlsPanel.h | 2 +- .../Editor/ATLControlsResourceDialog.cpp | 2 +- .../Source/Editor/ATLControlsResourceDialog.h | 2 +- .../Code/Source/Editor/AudioControl.cpp | 2 +- .../Code/Source/Editor/AudioControl.h | 2 +- .../Code/Source/Editor/AudioControlFilters.cpp | 2 +- .../Code/Source/Editor/AudioControlFilters.h | 2 +- .../Editor/AudioControlsEditorPlugin.cpp | 2 +- .../Source/Editor/AudioControlsEditorPlugin.h | 2 +- .../Source/Editor/AudioControlsEditorUndo.cpp | 2 +- .../Source/Editor/AudioControlsEditorUndo.h | 2 +- .../Editor/AudioControlsEditorWindow.cpp | 2 +- .../Source/Editor/AudioControlsEditorWindow.h | 2 +- .../Code/Source/Editor/AudioControlsLoader.cpp | 2 +- .../Code/Source/Editor/AudioControlsLoader.h | 2 +- .../Code/Source/Editor/AudioControlsWriter.cpp | 2 +- .../Code/Source/Editor/AudioControlsWriter.h | 2 +- .../Source/Editor/AudioResourceSelectors.cpp | 2 +- .../Code/Source/Editor/AudioSystemPanel.cpp | 2 +- .../Code/Source/Editor/AudioSystemPanel.h | 2 +- .../Source/Editor/ImplementationManager.cpp | 2 +- .../Code/Source/Editor/ImplementationManager.h | 2 +- .../Code/Source/Editor/InspectorPanel.cpp | 2 +- .../Code/Source/Editor/InspectorPanel.h | 2 +- .../Source/Editor/QATLControlsTreeModel.cpp | 2 +- .../Code/Source/Editor/QATLControlsTreeModel.h | 2 +- .../Source/Editor/QAudioControlEditorIcons.h | 2 +- .../Source/Editor/QAudioControlTreeWidget.cpp | 2 +- .../Source/Editor/QAudioControlTreeWidget.h | 2 +- .../Code/Source/Editor/QConnectionListWidget.h | 2 +- .../Code/Source/Editor/QConnectionsWidget.cpp | 2 +- .../Code/Source/Editor/QConnectionsWidget.h | 2 +- .../Editor/QSimpleAudioControlListWidget.cpp | 2 +- .../Editor/QSimpleAudioControlListWidget.h | 2 +- .../Code/Source/Editor/QTreeWidgetFilter.cpp | 2 +- .../Code/Source/Editor/QTreeWidgetFilter.h | 2 +- Gems/AudioSystem/Code/Source/Engine/ATL.cpp | 2 +- Gems/AudioSystem/Code/Source/Engine/ATL.h | 2 +- .../Code/Source/Engine/ATLAudioObject.cpp | 2 +- .../Code/Source/Engine/ATLAudioObject.h | 2 +- .../Code/Source/Engine/ATLComponents.cpp | 2 +- .../Code/Source/Engine/ATLComponents.h | 2 +- .../Code/Source/Engine/ATLEntities.cpp | 2 +- .../Code/Source/Engine/ATLEntities.h | 2 +- .../Code/Source/Engine/ATLUtils.cpp | 2 +- Gems/AudioSystem/Code/Source/Engine/ATLUtils.h | 2 +- .../Source/Engine/AudioInternalInterfaces.h | 2 +- .../Code/Source/Engine/AudioProxy.cpp | 2 +- .../Code/Source/Engine/AudioProxy.h | 2 +- .../Code/Source/Engine/AudioRequests.cpp | 2 +- .../Code/Source/Engine/AudioSystem.cpp | 2 +- .../Code/Source/Engine/AudioSystem.h | 2 +- .../Code/Source/Engine/FileCacheManager.cpp | 2 +- .../Code/Source/Engine/FileCacheManager.h | 2 +- .../Code/Source/Engine/SoundCVars.cpp | 2 +- .../Code/Source/Engine/SoundCVars.h | 2 +- .../Code/Tests/AudioSystemEditorTest.cpp | 2 +- .../AudioSystem/Code/Tests/AudioSystemTest.cpp | 2 +- .../Code/Tests/Mocks/ATLEntitiesMock.h | 2 +- .../Code/Tests/Mocks/FileCacheManagerMock.h | 2 +- .../Mocks/IAudioSystemImplementationMock.h | 2 +- .../Code/Tests/WaveTable48000Sine.h | 2 +- .../Code/audiosystem_editor_files.cmake | 2 +- .../Code/audiosystem_editor_shared_files.cmake | 2 +- .../Code/audiosystem_editor_tests_files.cmake | 2 +- Gems/AudioSystem/Code/audiosystem_files.cmake | 2 +- .../Code/audiosystem_shared_files.cmake | 2 +- .../Code/audiosystem_stub_files.cmake | 2 +- .../Code/audiosystem_tests_files.cmake | 2 +- Gems/AutomatedLauncherTesting/CMakeLists.txt | 2 +- .../Code/CMakeLists.txt | 2 +- .../AutomatedLauncherTestingBus.h | 2 +- .../Source/AutomatedLauncherTestingModule.cpp | 2 +- ...AutomatedLauncherTestingSystemComponent.cpp | 2 +- .../AutomatedLauncherTestingSystemComponent.h | 2 +- .../Code/Source/SpawnDynamicSlice.cpp | 2 +- .../Code/Source/SpawnDynamicSlice.h | 2 +- .../Code/automatedlaunchertesting_files.cmake | 2 +- ...automatedlaunchertesting_shared_files.cmake | 2 +- Gems/Blast/CMakeLists.txt | 2 +- Gems/Blast/Code/CMakeLists.txt | 2 +- Gems/Blast/Code/Editor/ConfigurationWidget.cpp | 2 +- Gems/Blast/Code/Editor/ConfigurationWidget.h | 2 +- Gems/Blast/Code/Editor/EditorWindow.cpp | 2 +- Gems/Blast/Code/Editor/EditorWindow.h | 2 +- Gems/Blast/Code/Editor/MaterialIdWidget.cpp | 2 +- Gems/Blast/Code/Editor/MaterialIdWidget.h | 2 +- Gems/Blast/Code/Editor/SettingsWidget.cpp | 2 +- Gems/Blast/Code/Editor/SettingsWidget.h | 2 +- Gems/Blast/Code/Include/Blast/BlastActor.h | 2 +- Gems/Blast/Code/Include/Blast/BlastActorData.h | 2 +- Gems/Blast/Code/Include/Blast/BlastDebug.h | 2 +- .../Include/Blast/BlastFamilyComponentBus.h | 2 +- Gems/Blast/Code/Include/Blast/BlastMaterial.h | 2 +- Gems/Blast/Code/Include/Blast/BlastSystemBus.h | 2 +- Gems/Blast/Code/Include/PxSmartPtr.h | 2 +- .../Code/Platform/Android/PAL_android.cmake | 2 +- Gems/Blast/Code/Platform/Linux/PAL_linux.cmake | 2 +- Gems/Blast/Code/Platform/Mac/PAL_mac.cmake | 2 +- .../Code/Platform/Windows/PAL_windows.cmake | 2 +- Gems/Blast/Code/Platform/iOS/PAL_ios.cmake | 2 +- Gems/Blast/Code/Source/Actor/BlastActorDesc.h | 2 +- .../Code/Source/Actor/BlastActorFactory.cpp | 2 +- .../Code/Source/Actor/BlastActorFactory.h | 2 +- .../Blast/Code/Source/Actor/BlastActorImpl.cpp | 2 +- Gems/Blast/Code/Source/Actor/BlastActorImpl.h | 2 +- .../Blast/Code/Source/Actor/EntityProvider.cpp | 2 +- Gems/Blast/Code/Source/Actor/EntityProvider.h | 2 +- .../Blast/Code/Source/Actor/ShapesProvider.cpp | 2 +- Gems/Blast/Code/Source/Actor/ShapesProvider.h | 2 +- Gems/Blast/Code/Source/Asset/BlastAsset.cpp | 2 +- Gems/Blast/Code/Source/Asset/BlastAsset.h | 2 +- .../Code/Source/Asset/BlastAssetHandler.cpp | 2 +- .../Code/Source/Asset/BlastAssetHandler.h | 2 +- .../Code/Source/Asset/BlastSliceAsset.cpp | 2 +- Gems/Blast/Code/Source/Asset/BlastSliceAsset.h | 2 +- Gems/Blast/Code/Source/BlastModule.cpp | 2 +- .../Code/Source/BlastModuleUnsupported.cpp | 2 +- .../Blast/Code/Source/Common/BlastInterfaces.h | 2 +- .../Blast/Code/Source/Common/BlastMaterial.cpp | 2 +- Gems/Blast/Code/Source/Common/Utils.h | 2 +- .../Source/Components/BlastFamilyComponent.cpp | 2 +- .../Source/Components/BlastFamilyComponent.h | 2 +- ...stFamilyComponentNotificationBusHandler.cpp | 2 +- ...lastFamilyComponentNotificationBusHandler.h | 2 +- .../Components/BlastMeshDataComponent.cpp | 2 +- .../Source/Components/BlastMeshDataComponent.h | 2 +- .../Source/Components/BlastSystemComponent.cpp | 2 +- .../Source/Components/BlastSystemComponent.h | 2 +- .../Editor/EditorBlastFamilyComponent.cpp | 2 +- .../Source/Editor/EditorBlastFamilyComponent.h | 2 +- .../Editor/EditorBlastMeshDataComponent.cpp | 2 +- .../Editor/EditorBlastMeshDataComponent.h | 2 +- .../Editor/EditorBlastSliceAssetHandler.cpp | 2 +- .../Editor/EditorBlastSliceAssetHandler.h | 2 +- .../Source/Editor/EditorSystemComponent.cpp | 2 +- .../Code/Source/Editor/EditorSystemComponent.h | 2 +- .../Code/Source/Family/ActorRenderManager.cpp | 2 +- .../Code/Source/Family/ActorRenderManager.h | 2 +- Gems/Blast/Code/Source/Family/ActorTracker.cpp | 2 +- Gems/Blast/Code/Source/Family/ActorTracker.h | 2 +- Gems/Blast/Code/Source/Family/BlastFamily.h | 2 +- .../Code/Source/Family/BlastFamilyImpl.cpp | 2 +- .../Blast/Code/Source/Family/BlastFamilyImpl.h | 2 +- .../Blast/Code/Source/Family/DamageManager.cpp | 2 +- Gems/Blast/Code/Source/Family/DamageManager.h | 2 +- Gems/Blast/Code/Source/StdAfx.cpp | 2 +- Gems/Blast/Code/Source/StdAfx.h | 2 +- .../Code/Tests/ActorRenderManagerTest.cpp | 2 +- Gems/Blast/Code/Tests/BlastActorTest.cpp | 2 +- Gems/Blast/Code/Tests/BlastFamilyTest.cpp | 2 +- Gems/Blast/Code/Tests/BlastTest.cpp | 2 +- Gems/Blast/Code/Tests/DamageManagerTest.cpp | 2 +- .../EditorBlastSliceAssetHandlerTest.cpp | 2 +- .../Blast/Code/Tests/Editor/EditorTestMain.cpp | 2 +- Gems/Blast/Code/Tests/Mocks/BlastMocks.h | 2 +- Gems/Blast/Code/blast_editor_files.cmake | 2 +- .../Blast/Code/blast_editor_shared_files.cmake | 2 +- Gems/Blast/Code/blast_editor_tests_files.cmake | 2 +- Gems/Blast/Code/blast_files.cmake | 2 +- Gems/Blast/Code/blast_shared_files.cmake | 2 +- Gems/Blast/Code/blast_stub_files.cmake | 2 +- Gems/Blast/Code/blast_tests_files.cmake | 2 +- Gems/Blast/Code/blast_unsupported.cmake | 2 +- .../Editor/Scripts/asset_builder_blast.py | 2 +- Gems/Blast/Editor/Scripts/bootstrap.py | 2 +- Gems/Camera/CMakeLists.txt | 2 +- Gems/Camera/Code/CMakeLists.txt | 2 +- Gems/Camera/Code/Source/CameraComponent.cpp | 2 +- Gems/Camera/Code/Source/CameraComponent.h | 2 +- .../Code/Source/CameraComponentController.cpp | 2 +- .../Code/Source/CameraComponentController.h | 2 +- .../Code/Source/CameraComponentConverter.cpp | 2 +- .../Source/CameraEditorSystemComponent.cpp | 2 +- .../Code/Source/CameraEditorSystemComponent.h | 2 +- Gems/Camera/Code/Source/CameraGem.cpp | 2 +- .../Code/Source/CameraViewRegistrationBus.h | 2 +- Gems/Camera/Code/Source/Camera_precompiled.h | 2 +- .../Code/Source/EditorCameraComponent.cpp | 2 +- .../Camera/Code/Source/EditorCameraComponent.h | 2 +- .../Source/ViewportCameraSelectorWindow.cpp | 2 +- .../Code/Source/ViewportCameraSelectorWindow.h | 2 +- .../ViewportCameraSelectorWindow_Internals.h | 2 +- Gems/Camera/Code/Tests/CameraEditorUITests.cpp | 2 +- Gems/Camera/Code/camera_editor_files.cmake | 2 +- Gems/Camera/Code/camera_files.cmake | 2 +- Gems/Camera/Code/camera_shared_files.cmake | 2 +- Gems/CameraFramework/CMakeLists.txt | 2 +- Gems/CameraFramework/Code/CMakeLists.txt | 2 +- .../CameraFramework/ICameraLookAtBehavior.h | 2 +- .../CameraFramework/ICameraSubComponent.h | 2 +- .../CameraFramework/ICameraTargetAcquirer.h | 2 +- .../CameraFramework/ICameraTransformBehavior.h | 2 +- .../Code/Source/CameraFrameworkGem.cpp | 2 +- .../Code/Source/CameraFramework_precompiled.h | 2 +- .../Code/Source/CameraRigComponent.cpp | 2 +- .../Code/Source/CameraRigComponent.h | 2 +- .../Code/cameraframework_files.cmake | 2 +- .../Code/cameraframework_shared_files.cmake | 2 +- Gems/CertificateManager/CMakeLists.txt | 2 +- Gems/CertificateManager/Code/CMakeLists.txt | 2 +- .../Code/CertificateManager_files.cmake | 2 +- .../DataSource/FileDataSourceBus.h | 2 +- .../DataSource/IDataSource.h | 2 +- .../ICertificateManagerGem.h | 2 +- .../Code/Source/CertificateManagerGem.cpp | 2 +- .../Code/Source/CertificateManagerGem.h | 2 +- .../Code/Source/DataSource/FileDataSource.cpp | 2 +- .../Code/Source/DataSource/FileDataSource.h | 2 +- .../Code/certificatemanager_shared_files.cmake | 2 +- Gems/CrashReporting/CMakeLists.txt | 2 +- Gems/CrashReporting/Code/CMakeLists.txt | 2 +- .../Include/CrashReporting/GameCrashHandler.h | 2 +- .../Include/CrashReporting/GameCrashUploader.h | 2 +- .../Code/Platform/Android/PAL_android.cmake | 2 +- .../UnixLike/GameCrashUploader_UnixLike.cpp | 2 +- .../Platform/Common/UnixLike/main_UnixLike.cpp | 2 +- .../Code/Platform/Linux/PAL_linux.cmake | 2 +- .../Code/Platform/Mac/PAL_mac.cmake | 2 +- .../Windows/GameCrashHandler_windows.cpp | 2 +- .../Windows/GameCrashUploader_windows.cpp | 2 +- .../Code/Platform/Windows/PAL_windows.cmake | 2 +- .../crashreporting_static_windows_files.cmake | 2 +- .../game_crash_uploader_windows_files.cmake | 2 +- .../Code/Platform/Windows/main_windows.cpp | 2 +- .../Code/Platform/iOS/PAL_ios.cmake | 2 +- .../Code/Source/GameCrashHandler.cpp | 2 +- .../Code/Source/GameCrashUploader.cpp | 2 +- .../Code/crashreporting_static_files.cmake | 2 +- .../Code/game_crash_uploader_files.cmake | 2 +- Gems/CustomAssetExample/CMakeLists.txt | 2 +- Gems/CustomAssetExample/Code/CMakeLists.txt | 2 +- .../CustomAssetExampleBuilderComponent.cpp | 2 +- .../CustomAssetExampleBuilderComponent.h | 2 +- .../CustomAssetExampleBuilderWorker.cpp | 2 +- .../Builder/CustomAssetExampleBuilderWorker.h | 2 +- .../CustomAssetExampleEditorModule.cpp | 2 +- .../CustomAssetExampleModule.cpp | 2 +- .../Code/customassetexample_editor_files.cmake | 2 +- .../Code/customassetexample_shared_files.cmake | 2 +- Gems/DebugDraw/CMakeLists.txt | 2 +- Gems/DebugDraw/Code/CMakeLists.txt | 2 +- .../Code/Include/DebugDraw/DebugDrawBus.h | 2 +- .../Code/Source/DebugDrawLineComponent.cpp | 2 +- .../Code/Source/DebugDrawLineComponent.h | 2 +- Gems/DebugDraw/Code/Source/DebugDrawModule.cpp | 2 +- .../Code/Source/DebugDrawObbComponent.cpp | 2 +- .../Code/Source/DebugDrawObbComponent.h | 2 +- .../Code/Source/DebugDrawRayComponent.cpp | 2 +- .../Code/Source/DebugDrawRayComponent.h | 2 +- .../Code/Source/DebugDrawSphereComponent.cpp | 2 +- .../Code/Source/DebugDrawSphereComponent.h | 2 +- .../Code/Source/DebugDrawSystemComponent.cpp | 2 +- .../Code/Source/DebugDrawSystemComponent.h | 2 +- .../Code/Source/DebugDrawTextComponent.cpp | 2 +- .../Code/Source/DebugDrawTextComponent.h | 2 +- .../Code/Source/DebugDraw_precompiled.h | 2 +- .../Source/EditorDebugDrawComponentCommon.cpp | 2 +- .../Source/EditorDebugDrawComponentCommon.h | 2 +- .../Source/EditorDebugDrawLineComponent.cpp | 2 +- .../Code/Source/EditorDebugDrawLineComponent.h | 2 +- .../Source/EditorDebugDrawObbComponent.cpp | 2 +- .../Code/Source/EditorDebugDrawObbComponent.h | 2 +- .../Source/EditorDebugDrawRayComponent.cpp | 2 +- .../Code/Source/EditorDebugDrawRayComponent.h | 2 +- .../Source/EditorDebugDrawSphereComponent.cpp | 2 +- .../Source/EditorDebugDrawSphereComponent.h | 2 +- .../Source/EditorDebugDrawTextComponent.cpp | 2 +- .../Code/Source/EditorDebugDrawTextComponent.h | 2 +- .../Code/debugdraw_editor_files.cmake | 2 +- Gems/DebugDraw/Code/debugdraw_files.cmake | 2 +- .../Code/debugdraw_shared_files.cmake | 2 +- Gems/DevTextures/CMakeLists.txt | 2 +- Gems/EMotionFX/CMakeLists.txt | 2 +- Gems/EMotionFX/Code/CMakeLists.txt | 2 +- .../CommandSystem/Source/ActorCommands.cpp | 2 +- .../CommandSystem/Source/ActorCommands.h | 2 +- .../Source/ActorInstanceCommands.cpp | 2 +- .../Source/ActorInstanceCommands.h | 2 +- .../CommandSystem/Source/AnimGraphCommands.cpp | 2 +- .../CommandSystem/Source/AnimGraphCommands.h | 2 +- .../Source/AnimGraphConditionCommands.cpp | 2 +- .../Source/AnimGraphConditionCommands.h | 2 +- .../Source/AnimGraphConnectionCommands.cpp | 2 +- .../Source/AnimGraphConnectionCommands.h | 2 +- .../Source/AnimGraphCopyPasteData.cpp | 2 +- .../Source/AnimGraphCopyPasteData.h | 2 +- .../Source/AnimGraphGroupParameterCommands.cpp | 2 +- .../Source/AnimGraphGroupParameterCommands.h | 2 +- .../Source/AnimGraphNodeCommands.cpp | 2 +- .../Source/AnimGraphNodeCommands.h | 2 +- .../Source/AnimGraphNodeGroupCommands.cpp | 2 +- .../Source/AnimGraphNodeGroupCommands.h | 2 +- .../Source/AnimGraphParameterCommands.cpp | 2 +- .../Source/AnimGraphParameterCommands.h | 2 +- .../Source/AnimGraphTriggerActionCommands.cpp | 2 +- .../Source/AnimGraphTriggerActionCommands.h | 2 +- .../Source/AttachmentCommands.cpp | 2 +- .../CommandSystem/Source/AttachmentCommands.h | 2 +- .../CommandSystem/Source/ColliderCommands.cpp | 2 +- .../CommandSystem/Source/ColliderCommands.h | 2 +- .../CommandSystem/Source/CommandManager.cpp | 2 +- .../CommandSystem/Source/CommandManager.h | 2 +- .../CommandSystem/Source/CommandSystemConfig.h | 2 +- .../CommandSystem/Source/ImporterCommands.cpp | 2 +- .../CommandSystem/Source/ImporterCommands.h | 2 +- .../CommandSystem/Source/MetaData.cpp | 2 +- .../EMotionFX/CommandSystem/Source/MetaData.h | 2 +- .../CommandSystem/Source/MiscCommands.cpp | 2 +- .../CommandSystem/Source/MiscCommands.h | 2 +- .../Source/MorphTargetCommands.cpp | 2 +- .../CommandSystem/Source/MorphTargetCommands.h | 2 +- .../CommandSystem/Source/MotionCommands.cpp | 2 +- .../CommandSystem/Source/MotionCommands.h | 2 +- .../Source/MotionEventCommands.cpp | 2 +- .../CommandSystem/Source/MotionEventCommands.h | 2 +- .../CommandSystem/Source/MotionSetCommands.cpp | 2 +- .../CommandSystem/Source/MotionSetCommands.h | 2 +- .../CommandSystem/Source/NodeGroupCommands.cpp | 2 +- .../CommandSystem/Source/NodeGroupCommands.h | 2 +- .../CommandSystem/Source/ParameterMixins.cpp | 2 +- .../CommandSystem/Source/ParameterMixins.h | 2 +- .../CommandSystem/Source/RagdollCommands.cpp | 2 +- .../CommandSystem/Source/RagdollCommands.h | 2 +- .../CommandSystem/Source/SelectionCommands.cpp | 2 +- .../CommandSystem/Source/SelectionCommands.h | 2 +- .../CommandSystem/Source/SelectionList.cpp | 2 +- .../CommandSystem/Source/SelectionList.h | 2 +- .../Source/SimulatedObjectCommands.cpp | 2 +- .../Source/SimulatedObjectCommands.h | 2 +- .../CommandSystem/commandsystem_files.cmake | 2 +- .../ExporterLib/Exporter/EndianConversion.cpp | 2 +- .../Exporters/ExporterLib/Exporter/Exporter.h | 2 +- .../ExporterLib/Exporter/ExporterActor.cpp | 2 +- .../Exporter/ExporterFileProcessor.cpp | 2 +- .../Exporter/ExporterFileProcessor.h | 2 +- .../ExporterLib/Exporter/FileHeaderExport.cpp | 2 +- .../ExporterLib/Exporter/MaterialExport.cpp | 2 +- .../ExporterLib/Exporter/MeshExport.cpp | 2 +- .../ExporterLib/Exporter/MorphTargetExport.cpp | 2 +- .../ExporterLib/Exporter/MotionEventExport.cpp | 2 +- .../ExporterLib/Exporter/NodeExport.cpp | 2 +- .../Exporter/SkeletalMotionExport.cpp | 2 +- .../ExporterLib/Exporter/SkinExport.cpp | 2 +- .../ExporterLib/Exporter/StringExport.cpp | 2 +- .../ExporterLib/exporterlib_files.cmake | 2 +- .../Code/EMotionFX/Pipeline/AzSceneDef.h | 2 +- .../AnimGraphBuilderWorker.cpp | 2 +- .../EMotionFXBuilder/AnimGraphBuilderWorker.h | 2 +- .../EMotionFXBuilderComponent.cpp | 2 +- .../EMotionFXBuilderComponent.h | 2 +- .../MotionSetBuilderWorker.cpp | 2 +- .../EMotionFXBuilder/MotionSetBuilderWorker.h | 2 +- .../emotionfxbuilder_files.cmake | 2 +- .../Pipeline/RCExt/Actor/ActorBuilder.cpp | 2 +- .../Pipeline/RCExt/Actor/ActorBuilder.h | 2 +- .../Pipeline/RCExt/Actor/ActorExporter.cpp | 2 +- .../Pipeline/RCExt/Actor/ActorExporter.h | 2 +- .../RCExt/Actor/ActorGroupExporter.cpp | 2 +- .../Pipeline/RCExt/Actor/ActorGroupExporter.h | 2 +- .../RCExt/Actor/MorphTargetExporter.cpp | 2 +- .../Pipeline/RCExt/Actor/MorphTargetExporter.h | 2 +- .../Pipeline/RCExt/ExportContexts.cpp | 2 +- .../EMotionFX/Pipeline/RCExt/ExportContexts.h | 2 +- .../RCExt/Motion/MotionDataBuilder.cpp | 2 +- .../Pipeline/RCExt/Motion/MotionDataBuilder.h | 2 +- .../Pipeline/RCExt/Motion/MotionExporter.cpp | 2 +- .../Pipeline/RCExt/Motion/MotionExporter.h | 2 +- .../RCExt/Motion/MotionGroupExporter.cpp | 2 +- .../RCExt/Motion/MotionGroupExporter.h | 2 +- .../Pipeline/RCExt/rc_ext_files.cmake | 2 +- .../Behaviors/ActorGroupBehavior.cpp | 2 +- .../SceneAPIExt/Behaviors/ActorGroupBehavior.h | 2 +- .../SceneAPIExt/Behaviors/LodRuleBehavior.cpp | 2 +- .../SceneAPIExt/Behaviors/LodRuleBehavior.h | 2 +- .../Behaviors/MorphTargetRuleBehavior.cpp | 2 +- .../Behaviors/MorphTargetRuleBehavior.h | 2 +- .../Behaviors/MotionGroupBehavior.cpp | 2 +- .../Behaviors/MotionGroupBehavior.h | 2 +- .../Behaviors/MotionRangeRuleBehavior.cpp | 2 +- .../Behaviors/MotionRangeRuleBehavior.h | 2 +- .../SkeletonOptimizationRuleBehavior.cpp | 2 +- .../SkeletonOptimizationRuleBehavior.h | 2 +- .../SceneAPIExt/Data/LodNodeSelectionList.cpp | 2 +- .../SceneAPIExt/Data/LodNodeSelectionList.h | 2 +- .../Pipeline/SceneAPIExt/Groups/ActorGroup.cpp | 2 +- .../Pipeline/SceneAPIExt/Groups/ActorGroup.h | 2 +- .../Pipeline/SceneAPIExt/Groups/IActorGroup.h | 2 +- .../Pipeline/SceneAPIExt/Groups/IMotionGroup.h | 2 +- .../SceneAPIExt/Groups/MotionGroup.cpp | 2 +- .../Pipeline/SceneAPIExt/Groups/MotionGroup.h | 2 +- .../Rules/ActorPhysicsSetupRule.cpp | 2 +- .../SceneAPIExt/Rules/ActorPhysicsSetupRule.h | 2 +- .../SceneAPIExt/Rules/ActorScaleRule.cpp | 2 +- .../SceneAPIExt/Rules/ActorScaleRule.h | 2 +- .../SceneAPIExt/Rules/ExternalToolRule.h | 2 +- .../SceneAPIExt/Rules/ExternalToolRule.inl | 2 +- .../SceneAPIExt/Rules/IActorScaleRule.h | 2 +- .../Rules/IMotionCompressionSettingsRule.h | 2 +- .../SceneAPIExt/Rules/IMotionScaleRule.h | 2 +- .../Pipeline/SceneAPIExt/Rules/LodRule.cpp | 2 +- .../Pipeline/SceneAPIExt/Rules/LodRule.h | 2 +- .../SceneAPIExt/Rules/MetaDataRule.cpp | 2 +- .../Pipeline/SceneAPIExt/Rules/MetaDataRule.h | 2 +- .../SceneAPIExt/Rules/MetaDataRule.inl | 2 +- .../SceneAPIExt/Rules/MorphTargetRule.cpp | 2 +- .../SceneAPIExt/Rules/MorphTargetRule.h | 2 +- .../SceneAPIExt/Rules/MotionAdditiveRule.cpp | 2 +- .../SceneAPIExt/Rules/MotionAdditiveRule.h | 2 +- .../Rules/MotionCompressionSettingsRule.cpp | 2 +- .../Rules/MotionCompressionSettingsRule.h | 2 +- .../SceneAPIExt/Rules/MotionMetaDataRule.cpp | 2 +- .../SceneAPIExt/Rules/MotionMetaDataRule.h | 2 +- .../SceneAPIExt/Rules/MotionRangeRule.cpp | 2 +- .../SceneAPIExt/Rules/MotionRangeRule.h | 2 +- .../SceneAPIExt/Rules/MotionSamplingRule.cpp | 2 +- .../SceneAPIExt/Rules/MotionSamplingRule.h | 2 +- .../SceneAPIExt/Rules/MotionScaleRule.cpp | 2 +- .../SceneAPIExt/Rules/MotionScaleRule.h | 2 +- .../Rules/SimulatedObjectSetupRule.cpp | 2 +- .../Rules/SimulatedObjectSetupRule.h | 2 +- .../Rules/SkeletonOptimizationRule.cpp | 2 +- .../Rules/SkeletonOptimizationRule.h | 2 +- .../SceneAPIExt/Utilities/LODSelector.cpp | 2 +- .../SceneAPIExt/Utilities/LODSelector.h | 2 +- .../SceneAPIExt/sceneapi_ext_files.cmake | 2 +- .../Code/EMotionFX/Rendering/Common/Camera.cpp | 2 +- .../Code/EMotionFX/Rendering/Common/Camera.h | 2 +- .../Code/EMotionFX/Rendering/Common/Camera.inl | 2 +- .../Rendering/Common/FirstPersonCamera.cpp | 2 +- .../Rendering/Common/FirstPersonCamera.h | 2 +- .../Rendering/Common/LookAtCamera.cpp | 2 +- .../EMotionFX/Rendering/Common/LookAtCamera.h | 2 +- .../EMotionFX/Rendering/Common/MCommonConfig.h | 2 +- .../EMotionFX/Rendering/Common/OrbitCamera.cpp | 2 +- .../EMotionFX/Rendering/Common/OrbitCamera.h | 2 +- .../Rendering/Common/OrthographicCamera.cpp | 2 +- .../Rendering/Common/OrthographicCamera.h | 2 +- .../EMotionFX/Rendering/Common/RenderUtil.cpp | 2 +- .../EMotionFX/Rendering/Common/RenderUtil.h | 2 +- .../Rendering/Common/RotateManipulator.cpp | 2 +- .../Rendering/Common/RotateManipulator.h | 2 +- .../Rendering/Common/ScaleManipulator.cpp | 2 +- .../Rendering/Common/ScaleManipulator.h | 2 +- .../Common/TransformationManipulator.h | 2 +- .../Rendering/Common/TranslateManipulator.cpp | 2 +- .../Rendering/Common/TranslateManipulator.h | 2 +- .../Rendering/OpenGL2/Source/GBuffer.cpp | 2 +- .../Rendering/OpenGL2/Source/GBuffer.h | 2 +- .../Rendering/OpenGL2/Source/GLActor.cpp | 2 +- .../Rendering/OpenGL2/Source/GLExtensions.cpp | 2 +- .../Rendering/OpenGL2/Source/GLExtensions.h | 2 +- .../Rendering/OpenGL2/Source/GLRenderUtil.cpp | 2 +- .../Rendering/OpenGL2/Source/GLRenderUtil.h | 2 +- .../Rendering/OpenGL2/Source/GLSLShader.cpp | 2 +- .../Rendering/OpenGL2/Source/GLSLShader.h | 2 +- .../OpenGL2/Source/GraphicsManager.cpp | 2 +- .../Rendering/OpenGL2/Source/GraphicsManager.h | 2 +- .../Rendering/OpenGL2/Source/IndexBuffer.cpp | 2 +- .../Rendering/OpenGL2/Source/IndexBuffer.h | 2 +- .../EMotionFX/Rendering/OpenGL2/Source/Light.h | 2 +- .../Rendering/OpenGL2/Source/Material.cpp | 2 +- .../Rendering/OpenGL2/Source/Material.h | 2 +- .../OpenGL2/Source/PostProcessShader.cpp | 2 +- .../OpenGL2/Source/PostProcessShader.h | 2 +- .../Rendering/OpenGL2/Source/RenderGLConfig.h | 2 +- .../Rendering/OpenGL2/Source/RenderTexture.cpp | 2 +- .../Rendering/OpenGL2/Source/RenderTexture.h | 2 +- .../Rendering/OpenGL2/Source/Shader.h | 2 +- .../Rendering/OpenGL2/Source/ShaderCache.cpp | 2 +- .../OpenGL2/Source/StandardMaterial.cpp | 2 +- .../OpenGL2/Source/StandardMaterial.h | 2 +- .../Rendering/OpenGL2/Source/TextureCache.cpp | 2 +- .../Rendering/OpenGL2/Source/TextureCache.h | 2 +- .../Rendering/OpenGL2/Source/VertexBuffer.cpp | 2 +- .../Rendering/OpenGL2/Source/VertexBuffer.h | 2 +- .../Rendering/OpenGL2/Source/glactor.h | 2 +- .../Rendering/OpenGL2/Source/shadercache.h | 2 +- .../EMotionFX/Rendering/rendering_files.cmake | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Actor.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Actor.h | 2 +- .../EMotionFX/Code/EMotionFX/Source/ActorBus.h | 2 +- .../Code/EMotionFX/Source/ActorInstance.cpp | 2 +- .../Code/EMotionFX/Source/ActorInstance.h | 2 +- .../Code/EMotionFX/Source/ActorInstanceBus.h | 2 +- .../Code/EMotionFX/Source/ActorManager.cpp | 2 +- .../Code/EMotionFX/Source/ActorManager.h | 2 +- .../EMotionFX/Source/ActorUpdateScheduler.h | 2 +- .../Code/EMotionFX/Source/Algorithms.h | 2 +- .../Code/EMotionFX/Source/Allocators.cpp | 2 +- .../Code/EMotionFX/Source/Allocators.h | 2 +- .../Code/EMotionFX/Source/AnimGraph.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraph.h | 2 +- .../Source/AnimGraphAttributeTypes.cpp | 2 +- .../EMotionFX/Source/AnimGraphAttributeTypes.h | 2 +- .../EMotionFX/Source/AnimGraphBindPoseNode.cpp | 2 +- .../EMotionFX/Source/AnimGraphBindPoseNode.h | 2 +- .../Code/EMotionFX/Source/AnimGraphBus.h | 2 +- .../EMotionFX/Source/AnimGraphEntryNode.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphEntryNode.h | 2 +- .../EMotionFX/Source/AnimGraphEventBuffer.cpp | 2 +- .../EMotionFX/Source/AnimGraphEventBuffer.h | 2 +- .../EMotionFX/Source/AnimGraphExitNode.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphExitNode.h | 2 +- .../AnimGraphFollowerParameterAction.cpp | 2 +- .../Source/AnimGraphFollowerParameterAction.h | 2 +- .../Source/AnimGraphGameControllerSettings.cpp | 2 +- .../Source/AnimGraphGameControllerSettings.h | 2 +- .../Code/EMotionFX/Source/AnimGraphHubNode.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphHubNode.h | 2 +- .../EMotionFX/Source/AnimGraphInstance.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphInstance.h | 2 +- .../Code/EMotionFX/Source/AnimGraphManager.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphManager.h | 2 +- .../Source/AnimGraphMotionCondition.cpp | 2 +- .../Source/AnimGraphMotionCondition.h | 2 +- .../EMotionFX/Source/AnimGraphMotionNode.cpp | 2 +- .../EMotionFX/Source/AnimGraphMotionNode.h | 2 +- .../Source/AnimGraphNetworkSerializer.cpp | 2 +- .../Source/AnimGraphNetworkSerializer.h | 2 +- .../Code/EMotionFX/Source/AnimGraphNode.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphNode.h | 2 +- .../EMotionFX/Source/AnimGraphNodeData.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphNodeData.h | 2 +- .../EMotionFX/Source/AnimGraphNodeGroup.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphNodeGroup.h | 2 +- .../Code/EMotionFX/Source/AnimGraphObject.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphObject.h | 2 +- .../EMotionFX/Source/AnimGraphObjectData.cpp | 2 +- .../EMotionFX/Source/AnimGraphObjectData.h | 2 +- .../Source/AnimGraphObjectFactory.cpp | 2 +- .../EMotionFX/Source/AnimGraphObjectFactory.h | 2 +- .../Code/EMotionFX/Source/AnimGraphObjectIds.h | 2 +- .../Source/AnimGraphParameterAction.cpp | 2 +- .../Source/AnimGraphParameterAction.h | 2 +- .../Source/AnimGraphParameterCondition.cpp | 2 +- .../Source/AnimGraphParameterCondition.h | 2 +- .../Source/AnimGraphPlayTimeCondition.cpp | 2 +- .../Source/AnimGraphPlayTimeCondition.h | 2 +- .../Code/EMotionFX/Source/AnimGraphPose.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphPose.h | 2 +- .../EMotionFX/Source/AnimGraphPosePool.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphPosePool.h | 2 +- .../EMotionFX/Source/AnimGraphRefCountedData.h | 2 +- .../Source/AnimGraphRefCountedDataPool.cpp | 2 +- .../Source/AnimGraphRefCountedDataPool.h | 2 +- .../Source/AnimGraphReferenceNode.cpp | 2 +- .../EMotionFX/Source/AnimGraphReferenceNode.h | 2 +- .../EMotionFX/Source/AnimGraphSnapshot.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphSnapshot.h | 2 +- .../Source/AnimGraphStateCondition.cpp | 2 +- .../EMotionFX/Source/AnimGraphStateCondition.h | 2 +- .../EMotionFX/Source/AnimGraphStateMachine.cpp | 2 +- .../EMotionFX/Source/AnimGraphStateMachine.h | 2 +- .../Source/AnimGraphStateTransition.cpp | 2 +- .../Source/AnimGraphStateTransition.h | 2 +- ...nimGraphSymbolicFollowerParameterAction.cpp | 2 +- .../AnimGraphSymbolicFollowerParameterAction.h | 2 +- .../EMotionFX/Source/AnimGraphSyncTrack.cpp | 2 +- .../Code/EMotionFX/Source/AnimGraphSyncTrack.h | 2 +- .../EMotionFX/Source/AnimGraphTagCondition.cpp | 2 +- .../EMotionFX/Source/AnimGraphTagCondition.h | 2 +- .../Source/AnimGraphTimeCondition.cpp | 2 +- .../EMotionFX/Source/AnimGraphTimeCondition.h | 2 +- .../Source/AnimGraphTransitionCondition.cpp | 2 +- .../Source/AnimGraphTransitionCondition.h | 2 +- .../Source/AnimGraphTriggerAction.cpp | 2 +- .../EMotionFX/Source/AnimGraphTriggerAction.h | 2 +- .../Source/AnimGraphVector2Condition.cpp | 2 +- .../Source/AnimGraphVector2Condition.h | 2 +- .../Code/EMotionFX/Source/Attachment.cpp | 2 +- .../Code/EMotionFX/Source/Attachment.h | 2 +- .../Code/EMotionFX/Source/AttachmentNode.cpp | 2 +- .../Code/EMotionFX/Source/AttachmentNode.h | 2 +- .../Code/EMotionFX/Source/AttachmentSkin.cpp | 2 +- .../Code/EMotionFX/Source/AttachmentSkin.h | 2 +- .../EMotionFX/Source/AutoRegisteredActor.h | 2 +- .../Code/EMotionFX/Source/BaseObject.cpp | 2 +- .../Code/EMotionFX/Source/BaseObject.h | 2 +- .../Code/EMotionFX/Source/BlendSpace1DNode.cpp | 2 +- .../Code/EMotionFX/Source/BlendSpace1DNode.h | 2 +- .../Code/EMotionFX/Source/BlendSpace2DNode.cpp | 2 +- .../Code/EMotionFX/Source/BlendSpace2DNode.h | 2 +- .../EMotionFX/Source/BlendSpaceManager.cpp | 2 +- .../Code/EMotionFX/Source/BlendSpaceManager.h | 2 +- .../Code/EMotionFX/Source/BlendSpaceNode.cpp | 2 +- .../Code/EMotionFX/Source/BlendSpaceNode.h | 2 +- .../Source/BlendSpaceParamEvaluator.cpp | 2 +- .../Source/BlendSpaceParamEvaluator.h | 2 +- .../Code/EMotionFX/Source/BlendTree.cpp | 2 +- .../Code/EMotionFX/Source/BlendTree.h | 2 +- .../Source/BlendTreeAccumTransformNode.cpp | 2 +- .../Source/BlendTreeAccumTransformNode.h | 2 +- .../Source/BlendTreeBlend2AdditiveNode.cpp | 2 +- .../Source/BlendTreeBlend2AdditiveNode.h | 2 +- .../Source/BlendTreeBlend2LegacyNode.cpp | 2 +- .../Source/BlendTreeBlend2LegacyNode.h | 2 +- .../EMotionFX/Source/BlendTreeBlend2Node.cpp | 2 +- .../EMotionFX/Source/BlendTreeBlend2Node.h | 2 +- .../Source/BlendTreeBlend2NodeBase.cpp | 2 +- .../EMotionFX/Source/BlendTreeBlend2NodeBase.h | 2 +- .../EMotionFX/Source/BlendTreeBlendNNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeBlendNNode.h | 2 +- .../Source/BlendTreeBoolLogicNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeBoolLogicNode.h | 2 +- .../EMotionFX/Source/BlendTreeConnection.cpp | 2 +- .../EMotionFX/Source/BlendTreeConnection.h | 2 +- .../Source/BlendTreeDirectionToWeightNode.cpp | 2 +- .../Source/BlendTreeDirectionToWeightNode.h | 2 +- .../EMotionFX/Source/BlendTreeFinalNode.cpp | 2 +- .../Code/EMotionFX/Source/BlendTreeFinalNode.h | 2 +- .../Source/BlendTreeFloatConditionNode.cpp | 2 +- .../Source/BlendTreeFloatConditionNode.h | 2 +- .../Source/BlendTreeFloatConstantNode.cpp | 2 +- .../Source/BlendTreeFloatConstantNode.h | 2 +- .../Source/BlendTreeFloatMath1Node.cpp | 2 +- .../EMotionFX/Source/BlendTreeFloatMath1Node.h | 2 +- .../Source/BlendTreeFloatMath2Node.cpp | 2 +- .../EMotionFX/Source/BlendTreeFloatMath2Node.h | 2 +- .../Source/BlendTreeFloatSwitchNode.cpp | 2 +- .../Source/BlendTreeFloatSwitchNode.h | 2 +- .../EMotionFX/Source/BlendTreeFootIKNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeFootIKNode.h | 2 +- .../Source/BlendTreeGetTransformNode.cpp | 2 +- .../Source/BlendTreeGetTransformNode.h | 2 +- .../EMotionFX/Source/BlendTreeLookAtNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeLookAtNode.h | 2 +- .../Source/BlendTreeMaskLegacyNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeMaskLegacyNode.h | 2 +- .../EMotionFX/Source/BlendTreeMaskNode.cpp | 2 +- .../Code/EMotionFX/Source/BlendTreeMaskNode.h | 2 +- .../Source/BlendTreeMirrorPoseNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeMirrorPoseNode.h | 2 +- .../Source/BlendTreeMorphTargetNode.cpp | 2 +- .../Source/BlendTreeMorphTargetNode.h | 2 +- .../Source/BlendTreeMotionFrameNode.cpp | 2 +- .../Source/BlendTreeMotionFrameNode.h | 2 +- .../Source/BlendTreeParameterNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeParameterNode.h | 2 +- .../Source/BlendTreePoseSubtractNode.cpp | 2 +- .../Source/BlendTreePoseSubtractNode.h | 2 +- .../Source/BlendTreePoseSwitchNode.cpp | 2 +- .../EMotionFX/Source/BlendTreePoseSwitchNode.h | 2 +- .../EMotionFX/Source/BlendTreeRagdollNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeRagdollNode.h | 2 +- .../BlendTreeRagdollStrengthModifierNode.cpp | 2 +- .../BlendTreeRagdollStrengthModifierNode.h | 2 +- .../Source/BlendTreeRangeRemapperNode.cpp | 2 +- .../Source/BlendTreeRangeRemapperNode.h | 2 +- .../EMotionFX/Source/BlendTreeRaycastNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeRaycastNode.h | 2 +- .../Source/BlendTreeRotationLimitNode.cpp | 2 +- .../Source/BlendTreeRotationLimitNode.h | 2 +- .../Source/BlendTreeRotationMath2Node.cpp | 2 +- .../Source/BlendTreeRotationMath2Node.h | 2 +- .../Source/BlendTreeSetTransformNode.cpp | 2 +- .../Source/BlendTreeSetTransformNode.h | 2 +- .../Source/BlendTreeSimulatedObjectNode.cpp | 2 +- .../Source/BlendTreeSimulatedObjectNode.h | 2 +- .../Source/BlendTreeSmoothingNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeSmoothingNode.h | 2 +- .../Source/BlendTreeTransformNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeTransformNode.h | 2 +- .../Source/BlendTreeTwoLinkIKNode.cpp | 2 +- .../EMotionFX/Source/BlendTreeTwoLinkIKNode.h | 2 +- .../Source/BlendTreeVector2ComposeNode.cpp | 2 +- .../Source/BlendTreeVector2ComposeNode.h | 2 +- .../Source/BlendTreeVector2DecomposeNode.cpp | 2 +- .../Source/BlendTreeVector2DecomposeNode.h | 2 +- .../Source/BlendTreeVector3ComposeNode.cpp | 2 +- .../Source/BlendTreeVector3ComposeNode.h | 2 +- .../Source/BlendTreeVector3DecomposeNode.cpp | 2 +- .../Source/BlendTreeVector3DecomposeNode.h | 2 +- .../Source/BlendTreeVector3Math1Node.cpp | 2 +- .../Source/BlendTreeVector3Math1Node.h | 2 +- .../Source/BlendTreeVector3Math2Node.cpp | 2 +- .../Source/BlendTreeVector3Math2Node.h | 2 +- .../Source/BlendTreeVector4ComposeNode.cpp | 2 +- .../Source/BlendTreeVector4ComposeNode.h | 2 +- .../Source/BlendTreeVector4DecomposeNode.cpp | 2 +- .../Source/BlendTreeVector4DecomposeNode.h | 2 +- .../EMotionFX/Source/CompressedKeyFrames.h | 2 +- .../Code/EMotionFX/Source/Constraint.h | 2 +- .../EMotionFX/Source/ConstraintTransform.h | 2 +- .../ConstraintTransformRotationAngles.cpp | 2 +- .../Source/ConstraintTransformRotationAngles.h | 2 +- .../Code/EMotionFX/Source/DebugDraw.cpp | 2 +- .../Code/EMotionFX/Source/DebugDraw.h | 2 +- .../EMotionFX/Source/DualQuatSkinDeformer.cpp | 2 +- .../EMotionFX/Source/DualQuatSkinDeformer.h | 2 +- .../Code/EMotionFX/Source/EMotionFX.h | 2 +- .../Source/EMotionFXAllocatorInitializer.cpp | 2 +- .../Source/EMotionFXAllocatorInitializer.h | 2 +- .../Code/EMotionFX/Source/EMotionFXConfig.h | 2 +- .../Code/EMotionFX/Source/EMotionFXManager.cpp | 2 +- .../Code/EMotionFX/Source/EMotionFXManager.h | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Event.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Event.h | 2 +- .../Code/EMotionFX/Source/EventData.cpp | 2 +- .../Code/EMotionFX/Source/EventData.h | 2 +- .../Code/EMotionFX/Source/EventDataFootIK.cpp | 2 +- .../Code/EMotionFX/Source/EventDataFootIK.h | 2 +- .../EMotionFX/Source/EventDataSyncable.cpp | 2 +- .../Code/EMotionFX/Source/EventDataSyncable.h | 2 +- .../Code/EMotionFX/Source/EventHandler.cpp | 2 +- .../Code/EMotionFX/Source/EventHandler.h | 2 +- .../Code/EMotionFX/Source/EventInfo.h | 2 +- .../Code/EMotionFX/Source/EventManager.cpp | 2 +- .../Code/EMotionFX/Source/EventManager.h | 2 +- .../Source/Importer/ActorFileFormat.h | 2 +- .../Source/Importer/AnimGraphFileFormat.cpp | 2 +- .../Source/Importer/AnimGraphFileFormat.h | 2 +- .../Source/Importer/ChunkProcessors.cpp | 2 +- .../Source/Importer/ChunkProcessors.h | 2 +- .../EMotionFX/Source/Importer/Importer.cpp | 2 +- .../Code/EMotionFX/Source/Importer/Importer.h | 2 +- .../Importer/LegacyAnimGraphNodeParser.cpp | 2 +- .../Importer/LegacyAnimGraphNodeParser.h | 2 +- .../Source/Importer/MotionFileFormat.h | 2 +- .../Source/Importer/MotionSetFileFormat.h | 2 +- .../Source/Importer/NodeMapFileFormat.h | 2 +- .../Source/Importer/SharedFileFormatStructs.h | 2 +- .../EMotionFX/Code/EMotionFX/Source/KeyFrame.h | 2 +- .../Code/EMotionFX/Source/KeyFrame.inl | 2 +- .../Code/EMotionFX/Source/KeyFrameFinder.h | 2 +- .../Code/EMotionFX/Source/KeyFrameFinder.inl | 2 +- .../EMotionFX/Source/KeyTrackLinearDynamic.h | 2 +- .../EMotionFX/Source/KeyTrackLinearDynamic.inl | 2 +- .../Code/EMotionFX/Source/LayerPass.h | 2 +- .../Code/EMotionFX/Source/Material.cpp | 2 +- .../EMotionFX/Code/EMotionFX/Source/Material.h | 2 +- .../Code/EMotionFX/Source/MemoryCategories.h | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Mesh.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Mesh.h | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Mesh.inl | 2 +- .../EMotionFX/Source/MeshBuilderInvalidIndex.h | 2 +- .../Code/EMotionFX/Source/MeshDeformer.cpp | 2 +- .../Code/EMotionFX/Source/MeshDeformer.h | 2 +- .../EMotionFX/Source/MeshDeformerStack.cpp | 2 +- .../Code/EMotionFX/Source/MeshDeformerStack.h | 2 +- .../EMotionFX/Source/MorphMeshDeformer.cpp | 2 +- .../Code/EMotionFX/Source/MorphMeshDeformer.h | 2 +- .../Code/EMotionFX/Source/MorphSetup.cpp | 2 +- .../Code/EMotionFX/Source/MorphSetup.h | 2 +- .../EMotionFX/Source/MorphSetupInstance.cpp | 2 +- .../Code/EMotionFX/Source/MorphSetupInstance.h | 2 +- .../Code/EMotionFX/Source/MorphTarget.cpp | 2 +- .../Code/EMotionFX/Source/MorphTarget.h | 2 +- .../EMotionFX/Source/MorphTargetStandard.cpp | 2 +- .../EMotionFX/Source/MorphTargetStandard.h | 2 +- .../EMotionFX/Code/EMotionFX/Source/Motion.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Motion.h | 2 +- .../EMotionFX/Source/MotionData/MotionData.cpp | 2 +- .../EMotionFX/Source/MotionData/MotionData.h | 2 +- .../Source/MotionData/MotionDataFactory.cpp | 2 +- .../Source/MotionData/MotionDataFactory.h | 2 +- .../Source/MotionData/NonUniformMotionData.cpp | 2 +- .../Source/MotionData/NonUniformMotionData.h | 2 +- .../Source/MotionData/UniformMotionData.cpp | 2 +- .../Source/MotionData/UniformMotionData.h | 2 +- .../Code/EMotionFX/Source/MotionEvent.cpp | 2 +- .../Code/EMotionFX/Source/MotionEvent.h | 2 +- .../Code/EMotionFX/Source/MotionEventTable.cpp | 2 +- .../Code/EMotionFX/Source/MotionEventTable.h | 2 +- .../Code/EMotionFX/Source/MotionEventTrack.cpp | 2 +- .../Code/EMotionFX/Source/MotionEventTrack.h | 2 +- .../Code/EMotionFX/Source/MotionGroup.cpp | 2 +- .../Code/EMotionFX/Source/MotionInstance.cpp | 2 +- .../Code/EMotionFX/Source/MotionInstance.h | 2 +- .../EMotionFX/Source/MotionInstancePool.cpp | 2 +- .../Code/EMotionFX/Source/MotionInstancePool.h | 2 +- .../EMotionFX/Source/MotionLayerSystem.cpp | 2 +- .../Code/EMotionFX/Source/MotionLayerSystem.h | 2 +- .../Code/EMotionFX/Source/MotionManager.cpp | 2 +- .../Code/EMotionFX/Source/MotionManager.h | 2 +- .../Code/EMotionFX/Source/MotionQueue.cpp | 2 +- .../Code/EMotionFX/Source/MotionQueue.h | 2 +- .../Code/EMotionFX/Source/MotionSet.cpp | 2 +- .../Code/EMotionFX/Source/MotionSet.h | 2 +- .../Code/EMotionFX/Source/MotionSystem.cpp | 2 +- .../Code/EMotionFX/Source/MotionSystem.h | 2 +- .../EMotionFX/Source/MultiThreadScheduler.cpp | 2 +- .../EMotionFX/Source/MultiThreadScheduler.h | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Node.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Node.h | 2 +- .../Code/EMotionFX/Source/NodeAttribute.h | 2 +- .../Code/EMotionFX/Source/NodeGroup.cpp | 2 +- .../Code/EMotionFX/Source/NodeGroup.h | 2 +- .../Code/EMotionFX/Source/NodeMap.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.h | 2 +- .../ObjectAffectedByParameterChanges.cpp | 2 +- .../Source/ObjectAffectedByParameterChanges.h | 2 +- .../Code/EMotionFX/Source/ObjectId.cpp | 2 +- .../EMotionFX/Code/EMotionFX/Source/ObjectId.h | 2 +- .../Source/Parameter/BoolParameter.cpp | 2 +- .../EMotionFX/Source/Parameter/BoolParameter.h | 2 +- .../Source/Parameter/ColorParameter.cpp | 2 +- .../Source/Parameter/ColorParameter.h | 2 +- .../Source/Parameter/DefaultValueParameter.h | 2 +- .../Source/Parameter/FloatParameter.cpp | 2 +- .../Source/Parameter/FloatParameter.h | 2 +- .../Source/Parameter/FloatSliderParameter.cpp | 2 +- .../Source/Parameter/FloatSliderParameter.h | 2 +- .../Source/Parameter/FloatSpinnerParameter.cpp | 2 +- .../Source/Parameter/FloatSpinnerParameter.h | 2 +- .../Source/Parameter/GroupParameter.cpp | 2 +- .../Source/Parameter/GroupParameter.h | 2 +- .../Source/Parameter/IntParameter.cpp | 2 +- .../EMotionFX/Source/Parameter/IntParameter.h | 2 +- .../Source/Parameter/IntSliderParameter.cpp | 2 +- .../Source/Parameter/IntSliderParameter.h | 2 +- .../Source/Parameter/IntSpinnerParameter.cpp | 2 +- .../Source/Parameter/IntSpinnerParameter.h | 2 +- .../EMotionFX/Source/Parameter/Parameter.cpp | 2 +- .../EMotionFX/Source/Parameter/Parameter.h | 2 +- .../Source/Parameter/ParameterFactory.cpp | 2 +- .../Source/Parameter/ParameterFactory.h | 2 +- .../Source/Parameter/RangedValueParameter.h | 2 +- .../Source/Parameter/RotationParameter.cpp | 2 +- .../Source/Parameter/RotationParameter.h | 2 +- .../Source/Parameter/StringParameter.cpp | 2 +- .../Source/Parameter/StringParameter.h | 2 +- .../Source/Parameter/TagParameter.cpp | 2 +- .../EMotionFX/Source/Parameter/TagParameter.h | 2 +- .../Source/Parameter/ValueParameter.cpp | 2 +- .../Source/Parameter/ValueParameter.h | 2 +- .../Source/Parameter/Vector2Parameter.cpp | 2 +- .../Source/Parameter/Vector2Parameter.h | 2 +- .../Source/Parameter/Vector3GizmoParameter.cpp | 2 +- .../Source/Parameter/Vector3GizmoParameter.h | 2 +- .../Source/Parameter/Vector3Parameter.cpp | 2 +- .../Source/Parameter/Vector3Parameter.h | 2 +- .../Source/Parameter/Vector4Parameter.cpp | 2 +- .../Source/Parameter/Vector4Parameter.h | 2 +- .../Code/EMotionFX/Source/PhysicsSetup.cpp | 2 +- .../Code/EMotionFX/Source/PhysicsSetup.h | 2 +- .../Code/EMotionFX/Source/PlayBackInfo.h | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/Pose.h | 2 +- .../Code/EMotionFX/Source/PoseData.cpp | 2 +- .../EMotionFX/Code/EMotionFX/Source/PoseData.h | 2 +- .../Code/EMotionFX/Source/PoseDataFactory.cpp | 2 +- .../Code/EMotionFX/Source/PoseDataFactory.h | 2 +- .../Code/EMotionFX/Source/PoseDataRagdoll.cpp | 2 +- .../Code/EMotionFX/Source/PoseDataRagdoll.h | 2 +- .../Code/EMotionFX/Source/RagdollInstance.cpp | 2 +- .../Code/EMotionFX/Source/RagdollInstance.h | 2 +- .../Source/RagdollVelocityEvaluators.cpp | 2 +- .../Source/RagdollVelocityEvaluators.h | 2 +- .../Code/EMotionFX/Source/Recorder.cpp | 2 +- .../EMotionFX/Code/EMotionFX/Source/Recorder.h | 2 +- .../Code/EMotionFX/Source/RecorderBus.h | 2 +- .../Source/RepositioningLayerPass.cpp | 2 +- .../EMotionFX/Source/RepositioningLayerPass.h | 2 +- .../Code/EMotionFX/Source/SimulatedObjectBus.h | 2 +- .../EMotionFX/Source/SimulatedObjectSetup.cpp | 2 +- .../EMotionFX/Source/SimulatedObjectSetup.h | 2 +- .../EMotionFX/Source/SingleThreadScheduler.cpp | 2 +- .../EMotionFX/Source/SingleThreadScheduler.h | 2 +- .../Code/EMotionFX/Source/Skeleton.cpp | 2 +- .../EMotionFX/Code/EMotionFX/Source/Skeleton.h | 2 +- .../SkinningInfoVertexAttributeLayer.cpp | 2 +- .../Source/SkinningInfoVertexAttributeLayer.h | 2 +- .../Code/EMotionFX/Source/SoftSkinDeformer.cpp | 2 +- .../Code/EMotionFX/Source/SoftSkinDeformer.h | 2 +- .../Code/EMotionFX/Source/SoftSkinManager.cpp | 2 +- .../Code/EMotionFX/Source/SoftSkinManager.h | 2 +- .../Code/EMotionFX/Source/SpringSolver.cpp | 2 +- .../Code/EMotionFX/Source/SpringSolver.h | 2 +- .../Code/EMotionFX/Source/StandardMaterial.cpp | 2 +- .../Code/EMotionFX/Source/StandardMaterial.h | 2 +- .../Code/EMotionFX/Source/SubMesh.cpp | 2 +- Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.h | 2 +- .../Code/EMotionFX/Source/ThreadData.cpp | 2 +- .../Code/EMotionFX/Source/ThreadData.h | 2 +- .../Code/EMotionFX/Source/Transform.cpp | 2 +- .../Code/EMotionFX/Source/Transform.h | 2 +- .../Code/EMotionFX/Source/TransformData.cpp | 2 +- .../Code/EMotionFX/Source/TransformData.h | 2 +- .../Code/EMotionFX/Source/TransformSpace.cpp | 2 +- .../Code/EMotionFX/Source/TransformSpace.h | 2 +- .../EMotionFX/Source/TriggerActionSetup.cpp | 2 +- .../Code/EMotionFX/Source/TriggerActionSetup.h | 2 +- .../EMotionFX/Source/TwoStringEventData.cpp | 2 +- .../Code/EMotionFX/Source/TwoStringEventData.h | 2 +- .../EMotionFX/Source/VertexAttributeLayer.cpp | 2 +- .../EMotionFX/Source/VertexAttributeLayer.h | 2 +- .../VertexAttributeLayerAbstractData.cpp | 2 +- .../Source/VertexAttributeLayerAbstractData.h | 2 +- .../EMStudioSDK/Source/Allocators.cpp | 2 +- .../EMStudioSDK/Source/Allocators.h | 2 +- .../EMStudioSDK/Source/Commands.cpp | 2 +- .../EMStudioSDK/Source/Commands.h | 2 +- .../EMStudioSDK/Source/DockWidgetPlugin.cpp | 2 +- .../EMStudioSDK/Source/DockWidgetPlugin.h | 2 +- .../EMStudioSDK/Source/EMStudioConfig.h | 2 +- .../EMStudioSDK/Source/EMStudioCore.h | 2 +- .../EMStudioSDK/Source/EMStudioManager.cpp | 2 +- .../EMStudioSDK/Source/EMStudioManager.h | 2 +- .../EMStudioSDK/Source/EMStudioPlugin.cpp | 2 +- .../EMStudioSDK/Source/EMStudioPlugin.h | 2 +- .../EMStudioSDK/Source/FileManager.cpp | 2 +- .../EMStudioSDK/Source/FileManager.h | 2 +- .../EMStudioSDK/Source/GUIOptions.cpp | 2 +- .../EMStudioSDK/Source/GUIOptions.h | 2 +- .../EMStudioSDK/Source/InvisiblePlugin.cpp | 2 +- .../EMStudioSDK/Source/InvisiblePlugin.h | 2 +- .../Source/KeyboardShortcutsWindow.cpp | 2 +- .../Source/KeyboardShortcutsWindow.h | 2 +- .../EMStudioSDK/Source/LayoutManager.cpp | 2 +- .../EMStudioSDK/Source/LayoutManager.h | 2 +- .../Source/LoadActorSettingsWindow.cpp | 2 +- .../Source/LoadActorSettingsWindow.h | 2 +- .../EMStudioSDK/Source/MainWindow.cpp | 2 +- .../EMStudioSDK/Source/MainWindow.h | 2 +- .../EMStudioSDK/Source/MainWindowEventFilter.h | 2 +- .../Source/MorphTargetSelectionWindow.cpp | 2 +- .../Source/MorphTargetSelectionWindow.h | 2 +- .../Source/MotionEventPresetManager.cpp | 2 +- .../Source/MotionEventPresetManager.h | 2 +- .../Source/MotionSetHierarchyWidget.cpp | 2 +- .../Source/MotionSetHierarchyWidget.h | 2 +- .../Source/MotionSetSelectionWindow.cpp | 2 +- .../Source/MotionSetSelectionWindow.h | 2 +- .../EMStudioSDK/Source/NodeHierarchyWidget.cpp | 2 +- .../EMStudioSDK/Source/NodeHierarchyWidget.h | 2 +- .../EMStudioSDK/Source/NodeSelectionWindow.cpp | 2 +- .../EMStudioSDK/Source/NodeSelectionWindow.h | 2 +- .../EMStudioSDK/Source/NotificationWindow.cpp | 2 +- .../EMStudioSDK/Source/NotificationWindow.h | 2 +- .../Source/NotificationWindowManager.cpp | 2 +- .../Source/NotificationWindowManager.h | 2 +- .../EMStudioSDK/Source/PluginManager.cpp | 2 +- .../EMStudioSDK/Source/PluginManager.h | 2 +- .../EMStudioSDK/Source/PluginOptions.cpp | 2 +- .../EMStudioSDK/Source/PluginOptions.h | 2 +- .../EMStudioSDK/Source/PluginOptionsBus.h | 2 +- .../EMStudioSDK/Source/PreferencesWindow.cpp | 2 +- .../EMStudioSDK/Source/PreferencesWindow.h | 2 +- .../EMStudioSDK/Source/RecoverFilesWindow.cpp | 2 +- .../EMStudioSDK/Source/RecoverFilesWindow.h | 2 +- .../Source/RemovePluginOnCloseDockWidget.cpp | 2 +- .../Source/RemovePluginOnCloseDockWidget.h | 2 +- .../Source/RenderPlugin/CommandCallbacks.cpp | 2 +- .../RenderPlugin/ManipulatorCallbacks.cpp | 2 +- .../Source/RenderPlugin/ManipulatorCallbacks.h | 2 +- .../Source/RenderPlugin/RenderLayouts.h | 2 +- .../Source/RenderPlugin/RenderOptions.cpp | 2 +- .../Source/RenderPlugin/RenderOptions.h | 2 +- .../Source/RenderPlugin/RenderPlugin.cpp | 2 +- .../Source/RenderPlugin/RenderPlugin.h | 2 +- .../RenderPlugin/RenderUpdateCallback.cpp | 2 +- .../Source/RenderPlugin/RenderUpdateCallback.h | 2 +- .../RenderPlugin/RenderViewContextMenu.cpp | 2 +- .../Source/RenderPlugin/RenderViewWidget.cpp | 2 +- .../Source/RenderPlugin/RenderViewWidget.h | 2 +- .../Source/RenderPlugin/RenderWidget.cpp | 2 +- .../Source/RenderPlugin/RenderWidget.h | 2 +- .../EMStudioSDK/Source/ResetSettingsDialog.cpp | 2 +- .../EMStudioSDK/Source/ResetSettingsDialog.h | 2 +- .../Source/SaveChangedFilesManager.cpp | 2 +- .../Source/SaveChangedFilesManager.h | 2 +- .../EMStudioSDK/Source/ToolBarPlugin.cpp | 2 +- .../EMStudioSDK/Source/ToolBarPlugin.h | 2 +- .../EMStudioSDK/Source/UnitScaleWindow.cpp | 2 +- .../EMStudioSDK/Source/UnitScaleWindow.h | 2 +- .../EMStudioSDK/Source/Workspace.cpp | 2 +- .../EMStudioSDK/Source/Workspace.h | 2 +- .../EMStudioSDK/emstudiosdk_files.cmake | 2 +- .../Source/OpenGLRender/GLWidget.cpp | 2 +- .../Source/OpenGLRender/GLWidget.h | 2 +- .../Source/OpenGLRender/OpenGLRenderPlugin.cpp | 2 +- .../Source/OpenGLRender/OpenGLRenderPlugin.h | 2 +- .../RenderPlugins/Source/RegisterPlugins.cpp | 2 +- .../RenderPlugins/Source/RenderPluginsConfig.h | 2 +- .../RenderPlugins/renderplugins_files.cmake | 2 +- .../ActionHistory/ActionHistoryCallback.cpp | 2 +- .../ActionHistory/ActionHistoryCallback.h | 2 +- .../ActionHistory/ActionHistoryPlugin.cpp | 2 +- .../Source/ActionHistory/ActionHistoryPlugin.h | 2 +- .../AnimGraph/AnimGraphActionManager.cpp | 2 +- .../Source/AnimGraph/AnimGraphActionManager.h | 2 +- .../Source/AnimGraph/AnimGraphEditor.cpp | 2 +- .../Source/AnimGraph/AnimGraphEditor.h | 2 +- .../AnimGraph/AnimGraphHierarchyWidget.cpp | 2 +- .../AnimGraph/AnimGraphHierarchyWidget.h | 2 +- .../Source/AnimGraph/AnimGraphItemDelegate.cpp | 2 +- .../Source/AnimGraph/AnimGraphItemDelegate.h | 2 +- .../Source/AnimGraph/AnimGraphModel.cpp | 2 +- .../Source/AnimGraph/AnimGraphModel.h | 2 +- .../AnimGraph/AnimGraphModelCallbacks.cpp | 2 +- .../Source/AnimGraph/AnimGraphNodeWidget.cpp | 2 +- .../Source/AnimGraph/AnimGraphNodeWidget.h | 2 +- .../Source/AnimGraph/AnimGraphOptions.cpp | 2 +- .../Source/AnimGraph/AnimGraphOptions.h | 2 +- .../Source/AnimGraph/AnimGraphPlugin.cpp | 2 +- .../Source/AnimGraph/AnimGraphPlugin.h | 2 +- .../AnimGraph/AnimGraphPluginCallbacks.cpp | 2 +- .../AnimGraph/AnimGraphSelectionProxyModel.cpp | 2 +- .../AnimGraphSortFilterProxyModel.cpp | 2 +- .../AnimGraph/AnimGraphSortFilterProxyModel.h | 2 +- .../Source/AnimGraph/AnimGraphVisualNode.cpp | 2 +- .../Source/AnimGraph/AnimGraphVisualNode.h | 2 +- .../Source/AnimGraph/AttributesWindow.cpp | 2 +- .../Source/AnimGraph/AttributesWindow.h | 2 +- .../Source/AnimGraph/BlendGraphViewWidget.cpp | 2 +- .../Source/AnimGraph/BlendGraphViewWidget.h | 2 +- .../Source/AnimGraph/BlendGraphWidget.cpp | 2 +- .../Source/AnimGraph/BlendGraphWidget.h | 2 +- .../AnimGraph/BlendGraphWidgetCallback.cpp | 2 +- .../AnimGraph/BlendGraphWidgetCallback.h | 2 +- .../AnimGraph/BlendNodeSelectionWindow.cpp | 2 +- .../AnimGraph/BlendNodeSelectionWindow.h | 2 +- .../AnimGraph/BlendSpace1DNodeWidget.cpp | 2 +- .../Source/AnimGraph/BlendSpace1DNodeWidget.h | 2 +- .../AnimGraph/BlendSpace2DNodeWidget.cpp | 2 +- .../Source/AnimGraph/BlendSpace2DNodeWidget.h | 2 +- .../Source/AnimGraph/BlendSpaceNodeWidget.cpp | 2 +- .../Source/AnimGraph/BlendSpaceNodeWidget.h | 2 +- .../Source/AnimGraph/BlendTreeVisualNode.cpp | 2 +- .../Source/AnimGraph/BlendTreeVisualNode.h | 2 +- .../Source/AnimGraph/ContextMenu.cpp | 2 +- .../Source/AnimGraph/DebugEventHandler.cpp | 2 +- .../Source/AnimGraph/DebugEventHandler.h | 2 +- .../Source/AnimGraph/GameController.cpp | 2 +- .../Source/AnimGraph/GameController.h | 2 +- .../Source/AnimGraph/GameControllerWindow.cpp | 2 +- .../Source/AnimGraph/GameControllerWindow.h | 2 +- .../Source/AnimGraph/GraphNode.cpp | 2 +- .../Source/AnimGraph/GraphNode.h | 2 +- .../Source/AnimGraph/GraphNodeFactory.cpp | 2 +- .../Source/AnimGraph/GraphNodeFactory.h | 2 +- .../Source/AnimGraph/GraphWidgetCallback.h | 2 +- .../Source/AnimGraph/NavigateWidget.cpp | 2 +- .../Source/AnimGraph/NavigateWidget.h | 2 +- .../Source/AnimGraph/NavigationHistory.cpp | 2 +- .../Source/AnimGraph/NavigationHistory.h | 2 +- .../Source/AnimGraph/NavigationLinkWidget.cpp | 2 +- .../Source/AnimGraph/NavigationLinkWidget.h | 2 +- .../Source/AnimGraph/NodeConnection.cpp | 2 +- .../Source/AnimGraph/NodeConnection.h | 2 +- .../Source/AnimGraph/NodeGraph.cpp | 2 +- .../Source/AnimGraph/NodeGraph.h | 2 +- .../Source/AnimGraph/NodeGraphWidget.cpp | 2 +- .../Source/AnimGraph/NodeGraphWidget.h | 2 +- .../Source/AnimGraph/NodeGroupWindow.cpp | 2 +- .../Source/AnimGraph/NodeGroupWindow.h | 2 +- .../Source/AnimGraph/NodePaletteWidget.cpp | 2 +- .../Source/AnimGraph/NodePaletteWidget.h | 2 +- .../AnimGraph/ParameterCreateEditDialog.cpp | 2 +- .../AnimGraph/ParameterCreateEditDialog.h | 2 +- .../ParameterEditor/BoolParameterEditor.cpp | 2 +- .../ParameterEditor/BoolParameterEditor.h | 2 +- .../ParameterEditor/ColorParameterEditor.cpp | 2 +- .../ParameterEditor/ColorParameterEditor.h | 2 +- .../FloatSliderParameterEditor.cpp | 2 +- .../FloatSliderParameterEditor.h | 2 +- .../FloatSpinnerParameterEditor.cpp | 2 +- .../FloatSpinnerParameterEditor.h | 2 +- .../IntSliderParameterEditor.cpp | 2 +- .../ParameterEditor/IntSliderParameterEditor.h | 2 +- .../IntSpinnerParameterEditor.cpp | 2 +- .../IntSpinnerParameterEditor.h | 2 +- .../ParameterEditor/ParameterEditorFactory.cpp | 2 +- .../ParameterEditor/ParameterEditorFactory.h | 2 +- .../RotationParameterEditor.cpp | 2 +- .../ParameterEditor/RotationParameterEditor.h | 2 +- .../ParameterEditor/StringParameterEditor.cpp | 2 +- .../ParameterEditor/StringParameterEditor.h | 2 +- .../ParameterEditor/TagParameterEditor.cpp | 2 +- .../ParameterEditor/TagParameterEditor.h | 2 +- .../ParameterEditor/ValueParameterEditor.cpp | 2 +- .../ParameterEditor/ValueParameterEditor.h | 2 +- .../ParameterEditor/Vector2ParameterEditor.cpp | 2 +- .../ParameterEditor/Vector2ParameterEditor.h | 2 +- .../Vector3GizmoParameterEditor.cpp | 2 +- .../Vector3GizmoParameterEditor.h | 2 +- .../ParameterEditor/Vector3ParameterEditor.cpp | 2 +- .../ParameterEditor/Vector3ParameterEditor.h | 2 +- .../ParameterEditor/Vector4ParameterEditor.cpp | 2 +- .../ParameterEditor/Vector4ParameterEditor.h | 2 +- .../AnimGraph/ParameterSelectionWindow.cpp | 2 +- .../AnimGraph/ParameterSelectionWindow.h | 2 +- .../Source/AnimGraph/ParameterWidget.cpp | 2 +- .../Source/AnimGraph/ParameterWidget.h | 2 +- .../Source/AnimGraph/ParameterWindow.cpp | 2 +- .../Source/AnimGraph/ParameterWindow.h | 2 +- .../Source/AnimGraph/RoleFilterProxyModel.cpp | 2 +- .../Source/AnimGraph/RoleFilterProxyModel.h | 2 +- .../Source/AnimGraph/SelectionProxyModel.h | 2 +- .../AnimGraph/StateFilterSelectionWindow.cpp | 2 +- .../AnimGraph/StateFilterSelectionWindow.h | 2 +- .../Source/AnimGraph/StateGraphNode.cpp | 2 +- .../Source/AnimGraph/StateGraphNode.h | 2 +- .../Attachments/AttachmentNodesWindow.cpp | 2 +- .../Source/Attachments/AttachmentNodesWindow.h | 2 +- .../Attachments/AttachmentsHierarchyWindow.cpp | 2 +- .../Attachments/AttachmentsHierarchyWindow.h | 2 +- .../Source/Attachments/AttachmentsPlugin.cpp | 2 +- .../Source/Attachments/AttachmentsPlugin.h | 2 +- .../Source/Attachments/AttachmentsWindow.cpp | 2 +- .../Source/Attachments/AttachmentsWindow.h | 2 +- .../Source/CommandBar/CommandBarPlugin.cpp | 2 +- .../Source/CommandBar/CommandBarPlugin.h | 2 +- .../CommandBrowser/CommandBrowserPlugin.cpp | 2 +- .../CommandBrowser/CommandBrowserPlugin.h | 2 +- .../Source/LogWindow/LogWindowCallback.cpp | 2 +- .../Source/LogWindow/LogWindowCallback.h | 2 +- .../Source/LogWindow/LogWindowPlugin.cpp | 2 +- .../Source/LogWindow/LogWindowPlugin.h | 2 +- .../MorphTargetEditWindow.cpp | 2 +- .../MorphTargetsWindow/MorphTargetEditWindow.h | 2 +- .../MorphTargetGroupWidget.cpp | 2 +- .../MorphTargetGroupWidget.h | 2 +- .../MorphTargetsWindowPlugin.cpp | 2 +- .../MorphTargetsWindowPlugin.h | 2 +- .../PhonemeSelectionWindow.cpp | 2 +- .../PhonemeSelectionWindow.h | 2 +- .../Source/MotionEvents/EventDataEditor.cpp | 2 +- .../Source/MotionEvents/EventDataEditor.h | 2 +- .../Source/MotionEvents/MotionEventEditor.cpp | 2 +- .../Source/MotionEvents/MotionEventEditor.h | 2 +- .../MotionEventPresetCreateDialog.cpp | 2 +- .../MotionEventPresetCreateDialog.h | 2 +- .../MotionEvents/MotionEventPresetsWidget.cpp | 2 +- .../MotionEvents/MotionEventPresetsWidget.h | 2 +- .../Source/MotionEvents/MotionEventWidget.cpp | 2 +- .../Source/MotionEvents/MotionEventWidget.h | 2 +- .../Source/MotionEvents/MotionEventsPlugin.cpp | 2 +- .../Source/MotionEvents/MotionEventsPlugin.h | 2 +- .../MotionSetManagementWindow.cpp | 2 +- .../MotionSetManagementWindow.h | 2 +- .../MotionSetsWindow/MotionSetWindow.cpp | 2 +- .../Source/MotionSetsWindow/MotionSetWindow.h | 2 +- .../MotionSetsWindowPlugin.cpp | 2 +- .../MotionSetsWindow/MotionSetsWindowPlugin.h | 2 +- .../MotionWindow/MotionExtractionWindow.cpp | 2 +- .../MotionWindow/MotionExtractionWindow.h | 2 +- .../Source/MotionWindow/MotionListWindow.cpp | 2 +- .../Source/MotionWindow/MotionListWindow.h | 2 +- .../MotionWindow/MotionPropertiesWindow.cpp | 2 +- .../MotionWindow/MotionPropertiesWindow.h | 2 +- .../MotionWindow/MotionRetargetingWindow.cpp | 2 +- .../MotionWindow/MotionRetargetingWindow.h | 2 +- .../Source/MotionWindow/MotionWindowPlugin.cpp | 2 +- .../Source/MotionWindow/MotionWindowPlugin.h | 2 +- .../NodeGroups/NodeGroupManagementWidget.cpp | 2 +- .../NodeGroups/NodeGroupManagementWidget.h | 2 +- .../Source/NodeGroups/NodeGroupWidget.cpp | 2 +- .../Source/NodeGroups/NodeGroupWidget.h | 2 +- .../Source/NodeGroups/NodeGroupsPlugin.cpp | 2 +- .../Source/NodeGroups/NodeGroupsPlugin.h | 2 +- .../Source/NodeWindow/ActorInfo.cpp | 2 +- .../Source/NodeWindow/ActorInfo.h | 2 +- .../Source/NodeWindow/MeshInfo.cpp | 2 +- .../Source/NodeWindow/MeshInfo.h | 2 +- .../NodeWindow/NamedPropertyStringValue.cpp | 2 +- .../NodeWindow/NamedPropertyStringValue.h | 2 +- .../Source/NodeWindow/NodeGroupInfo.cpp | 2 +- .../Source/NodeWindow/NodeGroupInfo.h | 2 +- .../Source/NodeWindow/NodeInfo.cpp | 2 +- .../Source/NodeWindow/NodeInfo.h | 2 +- .../Source/NodeWindow/NodeWindowPlugin.cpp | 2 +- .../Source/NodeWindow/NodeWindowPlugin.h | 2 +- .../Source/NodeWindow/SubMeshInfo.cpp | 2 +- .../Source/NodeWindow/SubMeshInfo.h | 2 +- .../SceneManager/ActorPropertiesWindow.cpp | 2 +- .../SceneManager/ActorPropertiesWindow.h | 2 +- .../Source/SceneManager/ActorsWindow.cpp | 2 +- .../Source/SceneManager/ActorsWindow.h | 2 +- .../Source/SceneManager/MirrorSetupWindow.cpp | 2 +- .../Source/SceneManager/MirrorSetupWindow.h | 2 +- .../Source/SceneManager/SceneManagerPlugin.cpp | 2 +- .../Source/SceneManager/SceneManagerPlugin.h | 2 +- .../Source/StandardPluginsConfig.h | 2 +- .../Source/TimeView/PlaybackControlsGroup.cpp | 2 +- .../Source/TimeView/PlaybackControlsGroup.h | 2 +- .../Source/TimeView/PlaybackOptionsGroup.cpp | 2 +- .../Source/TimeView/PlaybackOptionsGroup.h | 2 +- .../Source/TimeView/RecorderGroup.cpp | 2 +- .../Source/TimeView/RecorderGroup.h | 2 +- .../Source/TimeView/TimeInfoWidget.cpp | 2 +- .../Source/TimeView/TimeInfoWidget.h | 2 +- .../Source/TimeView/TimeTrack.cpp | 2 +- .../Source/TimeView/TimeTrack.h | 2 +- .../Source/TimeView/TimeTrackElement.cpp | 2 +- .../Source/TimeView/TimeTrackElement.h | 2 +- .../Source/TimeView/TimeViewPlugin.cpp | 2 +- .../Source/TimeView/TimeViewPlugin.h | 2 +- .../Source/TimeView/TimeViewShared.h | 2 +- .../Source/TimeView/TimeViewToolBar.cpp | 2 +- .../Source/TimeView/TimeViewToolBar.h | 2 +- .../Source/TimeView/TrackDataHeaderWidget.cpp | 2 +- .../Source/TimeView/TrackDataHeaderWidget.h | 2 +- .../Source/TimeView/TrackDataWidget.cpp | 2 +- .../Source/TimeView/TrackDataWidget.h | 2 +- .../Source/TimeView/TrackHeaderWidget.cpp | 2 +- .../Source/TimeView/TrackHeaderWidget.h | 2 +- .../standardplugins_files.cmake | 2 +- .../Code/EMotionFX/emotionfx_files.cmake | 2 +- .../Android/EMotionFX_Traits_Android.h | 2 +- .../Android/EMotionFX_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Source/MainWindowEventFilter_Default.cpp | 2 +- .../Platform/Linux/EMotionFX_Traits_Linux.h | 2 +- .../Platform/Linux/EMotionFX_Traits_Platform.h | 2 +- .../Editor/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Editor/Platform/Mac/EMotionFX_Traits_Mac.h | 2 +- .../Platform/Mac/EMotionFX_Traits_Platform.h | 2 +- .../Editor/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Source/MainWindowEventFilter_Windows.cpp | 2 +- .../Windows/EMotionFX_Traits_Platform.h | 2 +- .../Windows/EMotionFX_Traits_Windows.h | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/EMotionFX_Traits_Platform.h | 2 +- .../Editor/Platform/iOS/EMotionFX_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Include/Integration/ActorComponentBus.h | 2 +- .../Integration/AnimAudioComponentBus.h | 2 +- .../Integration/AnimGraphComponentBus.h | 2 +- .../Integration/AnimGraphNetworkingBus.h | 2 +- .../Code/Include/Integration/AnimationBus.h | 2 +- .../Code/Include/Integration/EMotionFXBus.h | 2 +- .../EditorSimpleMotionComponentBus.h | 2 +- .../Include/Integration/MotionExtractionBus.h | 2 +- .../Integration/SimpleMotionComponentBus.h | 2 +- Gems/EMotionFX/Code/MCore/Source/AABB.h | 2 +- .../EMotionFX/Code/MCore/Source/AbstractData.h | 2 +- .../EMotionFX/Code/MCore/Source/Algorithms.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Algorithms.h | 2 +- .../EMotionFX/Code/MCore/Source/Algorithms.inl | 2 +- .../EMotionFX/Code/MCore/Source/AlignedArray.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Array.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Array2D.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Array2D.inl | 2 +- Gems/EMotionFX/Code/MCore/Source/Attribute.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Attribute.h | 2 +- .../Code/MCore/Source/AttributeAllocator.cpp | 2 +- .../Code/MCore/Source/AttributeAllocator.h | 2 +- .../Code/MCore/Source/AttributeBool.cpp | 2 +- .../Code/MCore/Source/AttributeBool.h | 2 +- .../Code/MCore/Source/AttributeColor.h | 2 +- .../MCore/Source/AttributeCreateFunctions.cpp | 2 +- .../Code/MCore/Source/AttributeFactory.cpp | 2 +- .../Code/MCore/Source/AttributeFactory.h | 2 +- .../Code/MCore/Source/AttributeFloat.cpp | 2 +- .../Code/MCore/Source/AttributeFloat.h | 2 +- .../Code/MCore/Source/AttributeInt32.cpp | 2 +- .../Code/MCore/Source/AttributeInt32.h | 2 +- .../Code/MCore/Source/AttributePointer.h | 2 +- .../Code/MCore/Source/AttributeQuaternion.h | 2 +- .../Code/MCore/Source/AttributeString.h | 2 +- .../Code/MCore/Source/AttributeVector2.h | 2 +- .../Code/MCore/Source/AttributeVector3.h | 2 +- .../Code/MCore/Source/AttributeVector4.h | 2 +- .../Code/MCore/Source/AzCoreConversions.h | 2 +- .../Code/MCore/Source/BoundingSphere.cpp | 2 +- .../Code/MCore/Source/BoundingSphere.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Color.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Color.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Command.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Command.h | 2 +- .../Code/MCore/Source/CommandGroup.cpp | 2 +- .../EMotionFX/Code/MCore/Source/CommandGroup.h | 2 +- .../Code/MCore/Source/CommandLine.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/CommandLine.h | 2 +- .../Code/MCore/Source/CommandManagerCallback.h | 2 +- .../Code/MCore/Source/CommandSyntax.cpp | 2 +- .../Code/MCore/Source/CommandSyntax.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Compare.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Compare.inl | 2 +- .../Code/MCore/Source/CompressedFloat.h | 2 +- .../Code/MCore/Source/CompressedFloat.inl | 2 +- .../Code/MCore/Source/CompressedQuaternion.h | 2 +- .../Code/MCore/Source/CompressedQuaternion.inl | 2 +- .../Code/MCore/Source/CompressedVector.h | 2 +- .../Code/MCore/Source/CompressedVector.inl | 2 +- Gems/EMotionFX/Code/MCore/Source/Config.h | 2 +- .../Code/MCore/Source/DelaunayTriangulator.cpp | 2 +- .../Code/MCore/Source/DelaunayTriangulator.h | 2 +- Gems/EMotionFX/Code/MCore/Source/DiskFile.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/DiskFile.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Distance.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Distance.h | 2 +- .../Code/MCore/Source/DualQuaternion.cpp | 2 +- .../Code/MCore/Source/DualQuaternion.h | 2 +- .../Code/MCore/Source/DualQuaternion.inl | 2 +- Gems/EMotionFX/Code/MCore/Source/Endian.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Endian.inl | 2 +- Gems/EMotionFX/Code/MCore/Source/FastMath.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/FastMath.h | 2 +- Gems/EMotionFX/Code/MCore/Source/FastMath.inl | 2 +- Gems/EMotionFX/Code/MCore/Source/File.h | 2 +- .../EMotionFX/Code/MCore/Source/FileSystem.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/FileSystem.h | 2 +- .../Code/MCore/Source/HashFunctions.h | 2 +- Gems/EMotionFX/Code/MCore/Source/HashTable.h | 2 +- Gems/EMotionFX/Code/MCore/Source/HashTable.inl | 2 +- .../Code/MCore/Source/IDGenerator.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/IDGenerator.h | 2 +- .../EMotionFX/Code/MCore/Source/LogManager.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/LogManager.h | 2 +- .../Code/MCore/Source/MCoreCommandManager.cpp | 2 +- .../Code/MCore/Source/MCoreCommandManager.h | 2 +- .../Code/MCore/Source/MCoreSystem.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/MCoreSystem.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Macros.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Matrix4.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Matrix4.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Matrix4.inl | 2 +- .../Code/MCore/Source/MemoryCategoriesCore.h | 2 +- .../EMotionFX/Code/MCore/Source/MemoryFile.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/MemoryFile.h | 2 +- .../Code/MCore/Source/MemoryManager.cpp | 2 +- .../Code/MCore/Source/MemoryManager.h | 2 +- .../Code/MCore/Source/MemoryObject.cpp | 2 +- .../EMotionFX/Code/MCore/Source/MemoryObject.h | 2 +- .../Code/MCore/Source/MemoryTracker.cpp | 2 +- .../Code/MCore/Source/MemoryTracker.h | 2 +- .../Code/MCore/Source/MultiThreadManager.h | 2 +- Gems/EMotionFX/Code/MCore/Source/OBB.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/OBB.h | 2 +- Gems/EMotionFX/Code/MCore/Source/OBB.inl | 2 +- Gems/EMotionFX/Code/MCore/Source/PlaneEq.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/PlaneEq.h | 2 +- Gems/EMotionFX/Code/MCore/Source/PlaneEq.inl | 2 +- .../EMotionFX/Code/MCore/Source/Quaternion.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Quaternion.h | 2 +- .../EMotionFX/Code/MCore/Source/Quaternion.inl | 2 +- Gems/EMotionFX/Code/MCore/Source/Random.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Random.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Ray.cpp | 2 +- Gems/EMotionFX/Code/MCore/Source/Ray.h | 2 +- .../Code/MCore/Source/ReflectionSerializer.cpp | 2 +- .../Code/MCore/Source/ReflectionSerializer.h | 2 +- Gems/EMotionFX/Code/MCore/Source/SmallArray.h | 2 +- .../Code/MCore/Source/StandardHeaders.h | 2 +- .../Code/MCore/Source/StaticAllocator.cpp | 2 +- .../Code/MCore/Source/StaticAllocator.h | 2 +- .../EMotionFX/Code/MCore/Source/StaticString.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Stream.h | 2 +- .../Code/MCore/Source/StringConversions.cpp | 2 +- .../Code/MCore/Source/StringConversions.h | 2 +- .../Code/MCore/Source/StringIdPool.cpp | 2 +- .../EMotionFX/Code/MCore/Source/StringIdPool.h | 2 +- .../Code/MCore/Source/TriangleListOptimizer.h | 2 +- Gems/EMotionFX/Code/MCore/Source/Vector.h | 2 +- Gems/EMotionFX/Code/MCore/mcore_files.cmake | 2 +- .../Code/MysticQt/Source/DialogStack.cpp | 2 +- .../Code/MysticQt/Source/DialogStack.h | 2 +- .../Source/KeyboardShortcutManager.cpp | 2 +- .../MysticQt/Source/KeyboardShortcutManager.h | 2 +- .../Code/MysticQt/Source/MysticQtConfig.h | 2 +- .../Code/MysticQt/Source/MysticQtManager.cpp | 2 +- .../Code/MysticQt/Source/MysticQtManager.h | 2 +- .../Code/MysticQt/Source/RecentFiles.cpp | 2 +- .../Code/MysticQt/Source/RecentFiles.h | 2 +- .../Code/MysticQt/mysticqt_files.cmake | 2 +- .../Android/EMotionFX_Traits_Android.h | 2 +- .../Android/EMotionFX_Traits_Platform.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../MCore/Source/DiskFile_FileOffsetType.cpp | 2 +- .../WinAPI/MCore/Source/DiskFile_WinAPI.cpp | 2 +- .../Platform/Linux/EMotionFX_Traits_Linux.h | 2 +- .../Platform/Linux/EMotionFX_Traits_Platform.h | 2 +- .../Code/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Platform/Mac/EMotionFX_Traits_Mac.h | 2 +- .../Platform/Mac/EMotionFX_Traits_Platform.h | 2 +- .../Code/Platform/Mac/platform_mac.cmake | 2 +- .../Code/Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/EMotionFX_Traits_Platform.h | 2 +- .../Windows/EMotionFX_Traits_Windows.h | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/EMotionFX_Traits_Platform.h | 2 +- .../Code/Platform/iOS/EMotionFX_Traits_iOS.h | 2 +- .../Code/Platform/iOS/platform_ios.cmake | 2 +- .../Code/Platform/iOS/platform_ios_files.cmake | 2 +- .../Code/Source/EMotionFX_precompiled.h | 2 +- .../Code/Source/Editor/ActorEditorBus.h | 2 +- .../Source/Editor/ActorJointBrowseEdit.cpp | 2 +- .../Code/Source/Editor/ActorJointBrowseEdit.h | 2 +- .../Code/Source/Editor/AnimGraphEditorBus.h | 2 +- .../Source/Editor/ColliderContainerWidget.cpp | 2 +- .../Source/Editor/ColliderContainerWidget.h | 2 +- .../Code/Source/Editor/ColliderHelpers.cpp | 2 +- .../Code/Source/Editor/ColliderHelpers.h | 2 +- .../Source/Editor/InputDialogValidatable.cpp | 2 +- .../Source/Editor/InputDialogValidatable.h | 2 +- .../Source/Editor/JointSelectionDialog.cpp | 2 +- .../Code/Source/Editor/JointSelectionDialog.h | 2 +- .../Source/Editor/JointSelectionWidget.cpp | 2 +- .../Code/Source/Editor/JointSelectionWidget.h | 2 +- .../Code/Source/Editor/LineEditValidatable.cpp | 2 +- .../Code/Source/Editor/LineEditValidatable.h | 2 +- .../Code/Source/Editor/NotificationWidget.cpp | 2 +- .../Code/Source/Editor/NotificationWidget.h | 2 +- .../Code/Source/Editor/ObjectEditor.cpp | 2 +- .../Code/Source/Editor/ObjectEditor.h | 2 +- .../Cloth/ClothJointInspectorPlugin.cpp | 2 +- .../Plugins/Cloth/ClothJointInspectorPlugin.h | 2 +- .../Editor/Plugins/Cloth/ClothJointWidget.cpp | 2 +- .../Editor/Plugins/Cloth/ClothJointWidget.h | 2 +- .../HitDetectionJointInspectorPlugin.cpp | 2 +- .../HitDetectionJointInspectorPlugin.h | 2 +- .../HitDetection/HitDetectionJointWidget.cpp | 2 +- .../HitDetection/HitDetectionJointWidget.h | 2 +- .../Ragdoll/RagdollJointLimitWidget.cpp | 2 +- .../Plugins/Ragdoll/RagdollJointLimitWidget.h | 2 +- .../Ragdoll/RagdollNodeInspectorPlugin.cpp | 2 +- .../Ragdoll/RagdollNodeInspectorPlugin.h | 2 +- .../Plugins/Ragdoll/RagdollNodeWidget.cpp | 2 +- .../Editor/Plugins/Ragdoll/RagdollNodeWidget.h | 2 +- .../SimulatedObject/SimulatedJointWidget.cpp | 2 +- .../SimulatedObject/SimulatedJointWidget.h | 2 +- .../SimulatedObjectActionManager.cpp | 2 +- .../SimulatedObjectActionManager.h | 2 +- .../SimulatedObjectColliderWidget.cpp | 2 +- .../SimulatedObjectColliderWidget.h | 2 +- .../SimulatedObjectSelectionWidget.cpp | 2 +- .../SimulatedObjectSelectionWidget.h | 2 +- .../SimulatedObjectSelectionWindow.cpp | 2 +- .../SimulatedObjectSelectionWindow.h | 2 +- .../SimulatedObject/SimulatedObjectWidget.cpp | 2 +- .../SimulatedObject/SimulatedObjectWidget.h | 2 +- .../SkeletonOutliner/SkeletonOutlinerBus.h | 2 +- .../SkeletonOutlinerPlugin.cpp | 2 +- .../SkeletonOutliner/SkeletonOutlinerPlugin.h | 2 +- .../PropertyWidgets/ActorGoalNodeHandler.cpp | 2 +- .../PropertyWidgets/ActorGoalNodeHandler.h | 2 +- .../PropertyWidgets/ActorJointHandler.cpp | 2 +- .../Editor/PropertyWidgets/ActorJointHandler.h | 2 +- .../ActorMorphTargetHandler.cpp | 2 +- .../PropertyWidgets/ActorMorphTargetHandler.h | 2 +- .../PropertyWidgets/AnimGraphNodeHandler.cpp | 2 +- .../PropertyWidgets/AnimGraphNodeHandler.h | 2 +- .../AnimGraphNodeNameHandler.cpp | 2 +- .../PropertyWidgets/AnimGraphNodeNameHandler.h | 2 +- .../AnimGraphParameterHandler.cpp | 2 +- .../AnimGraphParameterHandler.h | 2 +- .../AnimGraphParameterMaskHandler.cpp | 2 +- .../AnimGraphParameterMaskHandler.h | 2 +- .../PropertyWidgets/AnimGraphTagHandler.cpp | 2 +- .../PropertyWidgets/AnimGraphTagHandler.h | 2 +- .../AnimGraphTransitionHandler.cpp | 2 +- .../AnimGraphTransitionHandler.h | 2 +- .../BlendNParamWeightsHandler.cpp | 2 +- .../BlendNParamWeightsHandler.h | 2 +- .../BlendSpaceEvaluatorHandler.cpp | 2 +- .../BlendSpaceEvaluatorHandler.h | 2 +- .../BlendSpaceMotionContainerHandler.cpp | 2 +- .../BlendSpaceMotionContainerHandler.h | 2 +- .../BlendSpaceMotionHandler.cpp | 2 +- .../PropertyWidgets/BlendSpaceMotionHandler.h | 2 +- .../BlendTreeRotationLimitHandler.cpp | 2 +- .../BlendTreeRotationLimitHandler.h | 2 +- .../PropertyWidgets/EventDataHandler.cpp | 2 +- .../Editor/PropertyWidgets/EventDataHandler.h | 2 +- .../PropertyWidgets/LODSceneGraphWidget.cpp | 2 +- .../PropertyWidgets/LODSceneGraphWidget.h | 2 +- .../LODTreeSelectionHandler.cpp | 2 +- .../PropertyWidgets/LODTreeSelectionHandler.h | 2 +- .../PropertyWidgets/LODTreeSelectionWidget.cpp | 2 +- .../PropertyWidgets/LODTreeSelectionWidget.h | 2 +- .../PropertyWidgets/MotionDataHandler.cpp | 2 +- .../Editor/PropertyWidgets/MotionDataHandler.h | 2 +- .../MotionSetMotionIdHandler.cpp | 2 +- .../PropertyWidgets/MotionSetMotionIdHandler.h | 2 +- .../PropertyWidgets/MotionSetNameHandler.cpp | 2 +- .../PropertyWidgets/MotionSetNameHandler.h | 2 +- .../Editor/PropertyWidgets/PropertyTypes.cpp | 2 +- .../Editor/PropertyWidgets/PropertyTypes.h | 2 +- .../PropertyWidgets/PropertyWidgetAllocator.h | 2 +- .../PropertyWidgets/RagdollJointHandler.cpp | 2 +- .../PropertyWidgets/RagdollJointHandler.h | 2 +- .../SimulatedObjectColliderTagHandler.cpp | 2 +- .../SimulatedObjectColliderTagHandler.h | 2 +- .../SimulatedObjectNameHandler.cpp | 2 +- .../SimulatedObjectNameHandler.h | 2 +- .../SimulatedObjectSelectionHandler.cpp | 2 +- .../SimulatedObjectSelectionHandler.h | 2 +- .../TransitionStateFilterLocalHandler.cpp | 2 +- .../TransitionStateFilterLocalHandler.h | 2 +- .../EMotionFX/Code/Source/Editor/QtMetaTypes.h | 2 +- .../Code/Source/Editor/ReselectingTreeView.cpp | 2 +- .../Code/Source/Editor/ReselectingTreeView.h | 2 +- .../Code/Source/Editor/SelectionProxyModel.cpp | 2 +- .../Code/Source/Editor/SelectionProxyModel.h | 2 +- .../Code/Source/Editor/SimulatedObjectBus.h | 2 +- .../Source/Editor/SimulatedObjectHelpers.cpp | 2 +- .../Source/Editor/SimulatedObjectHelpers.h | 2 +- .../Source/Editor/SimulatedObjectModel.cpp | 2 +- .../Code/Source/Editor/SimulatedObjectModel.h | 2 +- .../Editor/SimulatedObjectModelCallbacks.cpp | 2 +- .../Code/Source/Editor/SkeletonModel.cpp | 2 +- .../Code/Source/Editor/SkeletonModel.h | 2 +- .../Source/Editor/SkeletonModelJointWidget.cpp | 2 +- .../Source/Editor/SkeletonModelJointWidget.h | 2 +- .../Editor/SkeletonSortFilterProxyModel.cpp | 2 +- .../Editor/SkeletonSortFilterProxyModel.h | 2 +- .../Code/Source/Editor/TagSelector.cpp | 2 +- .../EMotionFX/Code/Source/Editor/TagSelector.h | 2 +- .../Code/Source/Editor/TypeChoiceButton.cpp | 2 +- .../Code/Source/Editor/TypeChoiceButton.h | 2 +- .../Source/Integration/Assets/ActorAsset.cpp | 2 +- .../Source/Integration/Assets/ActorAsset.h | 2 +- .../Integration/Assets/AnimGraphAsset.cpp | 2 +- .../Source/Integration/Assets/AnimGraphAsset.h | 2 +- .../Source/Integration/Assets/AssetCommon.h | 2 +- .../Source/Integration/Assets/MotionAsset.cpp | 2 +- .../Source/Integration/Assets/MotionAsset.h | 2 +- .../Integration/Assets/MotionSetAsset.cpp | 2 +- .../Source/Integration/Assets/MotionSetAsset.h | 2 +- .../Integration/Components/ActorComponent.cpp | 2 +- .../Integration/Components/ActorComponent.h | 2 +- .../Components/AnimAudioComponent.cpp | 2 +- .../Components/AnimAudioComponent.h | 2 +- .../Components/AnimGraphComponent.cpp | 2 +- .../Components/AnimGraphComponent.h | 2 +- .../Components/SimpleLODComponent.cpp | 2 +- .../Components/SimpleLODComponent.h | 2 +- .../Components/SimpleMotionComponent.cpp | 2 +- .../Components/SimpleMotionComponent.h | 2 +- .../Editor/Components/EditorActorComponent.cpp | 2 +- .../Editor/Components/EditorActorComponent.h | 2 +- .../Components/EditorAnimAudioComponent.cpp | 2 +- .../Components/EditorAnimAudioComponent.h | 2 +- .../Components/EditorAnimGraphComponent.cpp | 2 +- .../Components/EditorAnimGraphComponent.h | 2 +- .../Components/EditorSimpleLODComponent.cpp | 2 +- .../Components/EditorSimpleLODComponent.h | 2 +- .../Components/EditorSimpleMotionComponent.cpp | 2 +- .../Components/EditorSimpleMotionComponent.h | 2 +- .../Integration/Rendering/RenderActor.cpp | 2 +- .../Source/Integration/Rendering/RenderActor.h | 2 +- .../Rendering/RenderActorInstance.cpp | 2 +- .../Rendering/RenderActorInstance.h | 2 +- .../Integration/Rendering/RenderBackend.cpp | 2 +- .../Integration/Rendering/RenderBackend.h | 2 +- .../Rendering/RenderBackendManager.cpp | 2 +- .../Rendering/RenderBackendManager.h | 2 +- .../Integration/System/AnimationModule.cpp | 2 +- .../Code/Source/Integration/System/CVars.h | 2 +- .../Integration/System/PipelineComponent.cpp | 2 +- .../Integration/System/PipelineComponent.h | 2 +- .../Source/Integration/System/SystemCommon.h | 2 +- .../Integration/System/SystemComponent.cpp | 2 +- .../Integration/System/SystemComponent.h | 2 +- .../System/emotionfx_module_files.cmake | 2 +- .../EMotionFX/Code/Tests/ActorBuilderTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/ActorBusTests.cpp | 2 +- .../Code/Tests/ActorComponentBusTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/ActorFixture.cpp | 2 +- Gems/EMotionFX/Code/Tests/ActorFixture.h | 2 +- .../Code/Tests/ActorInstanceCommandTests.cpp | 2 +- .../Code/Tests/AdditiveMotionSamplingTests.cpp | 2 +- .../Code/Tests/AnimAudioComponentTests.cpp | 2 +- .../Code/Tests/AnimGraphActionCommandTests.cpp | 2 +- .../Code/Tests/AnimGraphActionTests.cpp | 2 +- .../Code/Tests/AnimGraphCommandTests.cpp | 2 +- .../Code/Tests/AnimGraphComponentBusTests.cpp | 2 +- .../Code/Tests/AnimGraphCopyPasteTests.cpp | 2 +- .../Code/Tests/AnimGraphDeferredInitTests.cpp | 2 +- .../Tests/AnimGraphEventHandlerCounter.cpp | 2 +- .../Code/Tests/AnimGraphEventHandlerCounter.h | 2 +- .../Code/Tests/AnimGraphEventTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/AnimGraphFixture.cpp | 2 +- Gems/EMotionFX/Code/Tests/AnimGraphFixture.h | 2 +- .../Code/Tests/AnimGraphFuzzTests.cpp | 2 +- .../Code/Tests/AnimGraphHubNodeTests.cpp | 2 +- .../Code/Tests/AnimGraphLoadingTests.cpp | 2 +- .../Tests/AnimGraphMotionConditionTests.cpp | 2 +- .../Code/Tests/AnimGraphMotionNodeTests.cpp | 2 +- .../Code/Tests/AnimGraphNetworkingBusTests.cpp | 2 +- .../Tests/AnimGraphNodeEventFilterTests.cpp | 2 +- .../Code/Tests/AnimGraphNodeGroupTests.cpp | 2 +- .../Tests/AnimGraphNodeProcessingTests.cpp | 2 +- .../Tests/AnimGraphParameterActionTests.cpp | 2 +- .../Tests/AnimGraphParameterCommandsTests.cpp | 2 +- ...AnimGraphParameterConditionCommandTests.cpp | 2 +- .../Tests/AnimGraphParameterConditionTests.cpp | 2 +- .../Code/Tests/AnimGraphRefCountTests.cpp | 2 +- .../Code/Tests/AnimGraphReferenceNodeTests.cpp | 2 +- .../AnimGraphStateMachineInterruptionTests.cpp | 2 +- .../Tests/AnimGraphStateMachineSyncTests.cpp | 2 +- .../Code/Tests/AnimGraphStateMachineTests.cpp | 2 +- .../Code/Tests/AnimGraphSyncTrackTests.cpp | 2 +- .../Code/Tests/AnimGraphTagConditionTests.cpp | 2 +- .../Tests/AnimGraphTransitionCommandTests.cpp | 2 +- ...nimGraphTransitionConditionCommandTests.cpp | 2 +- .../AnimGraphTransitionConditionFixture.cpp | 2 +- .../AnimGraphTransitionConditionFixture.h | 2 +- .../AnimGraphTransitionConditionTests.cpp | 2 +- .../Code/Tests/AnimGraphTransitionFixture.cpp | 2 +- .../Code/Tests/AnimGraphTransitionFixture.h | 2 +- .../Code/Tests/AnimGraphTransitionTests.cpp | 2 +- .../Tests/AnimGraphVector2ConditionTests.cpp | 2 +- .../Code/Tests/AutoSkeletonLODTests.cpp | 2 +- .../EMotionFX/Code/Tests/BlendSpaceFixture.cpp | 2 +- Gems/EMotionFX/Code/Tests/BlendSpaceFixture.h | 2 +- Gems/EMotionFX/Code/Tests/BlendSpaceTests.cpp | 2 +- .../Code/Tests/BlendTreeBlendNNodeTests.cpp | 2 +- .../Tests/BlendTreeFloatConditionNodeTests.cpp | 2 +- .../Tests/BlendTreeFloatConstantNodeTests.cpp | 2 +- .../Tests/BlendTreeFloatMath1NodeTests.cpp | 2 +- .../Code/Tests/BlendTreeFootIKNodeTests.cpp | 2 +- .../Code/Tests/BlendTreeMaskNodeTests.cpp | 2 +- .../Tests/BlendTreeMirrorPoseNodeTests.cpp | 2 +- .../Tests/BlendTreeMotionFrameNodeTests.cpp | 2 +- .../Code/Tests/BlendTreeParameterNodeTests.cpp | 2 +- .../Code/Tests/BlendTreeRagdollNodeTests.cpp | 2 +- .../Tests/BlendTreeRangeRemapperNodeTests.cpp | 2 +- .../Tests/BlendTreeRotationLimitNodeTests.cpp | 2 +- .../Tests/BlendTreeRotationMath2NodeTests.cpp | 2 +- .../BlendTreeSimulatedObjectNodeTests.cpp | 2 +- .../Code/Tests/BlendTreeTransformNodeTests.cpp | 2 +- .../Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp | 2 +- .../Code/Tests/BoolLogicNodeTests.cpp | 2 +- .../CanDeleteExitNodeAfterItHasBeenActive.cpp | 2 +- ...eMotionSetWhenSameMotionInTwoMotionSets.cpp | 2 +- ...CanDeleteMotionWhenMotionIsBeingBlended.cpp | 2 +- ...rDeletionAndRestoreBlendTreeConnections.cpp | 2 +- .../Code/Tests/ColliderCommandTests.cpp | 2 +- .../CommandAdjustSimulatedObjectTests.cpp | 2 +- .../Code/Tests/CommandRemoveMotionTests.cpp | 2 +- .../Tests/CoordinateSystemConverterTests.cpp | 2 +- .../Code/Tests/D6JointLimitConfiguration.cpp | 2 +- .../Code/Tests/D6JointLimitConfiguration.h | 2 +- .../Code/Tests/EMotionFXBuilderFixture.cpp | 2 +- .../Code/Tests/EMotionFXBuilderFixture.h | 2 +- .../Code/Tests/EMotionFXBuilderTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/EMotionFXTest.cpp | 2 +- .../Code/Tests/Editor/FileManagerTests.cpp | 2 +- .../Tests/Editor/MotionSetLoadEscalation.cpp | 2 +- .../Editor/ParametersGroupDefaultValues.cpp | 2 +- .../Code/Tests/EmotionFXMathLibTests.cpp | 2 +- .../EMotionFX/Code/Tests/EventManagerTests.cpp | 2 +- .../Code/Tests/Game/SampleGameFixture.h | 2 +- .../Code/Tests/Game/SamplePerformanceTests.cpp | 2 +- .../EMotionFX/Code/Tests/InitSceneAPIFixture.h | 2 +- .../ActorComponentAttachmentTest.cpp | 2 +- .../Integration/ActorComponentRagdollTests.cpp | 2 +- .../Code/Tests/Integration/CanAddActor.cpp | 2 +- .../CanAddSimpleMotionComponent.cpp | 2 +- .../Tests/Integration/CanDeleteJackEntity.cpp | 2 +- .../CanApplyDefaultParameterValues.cpp | 2 +- .../Integration/EntityComponentFixture.cpp | 2 +- .../Tests/Integration/EntityComponentFixture.h | 2 +- .../Tests/Integration/PoseComparisonFixture.h | 2 +- .../Tests/Integration/PoseComparisonTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/JackGraphFixture.cpp | 2 +- Gems/EMotionFX/Code/Tests/JackGraphFixture.h | 2 +- .../Code/Tests/KeyTrackLinearTests.cpp | 2 +- .../Code/Tests/LeaderFollowerVersionTests.cpp | 2 +- .../Code/Tests/MCore/Array2DTests.cpp | 2 +- .../Code/Tests/MCore/CommandLineTests.cpp | 2 +- .../Code/Tests/MCore/CommandManagerTests.cpp | 2 +- .../Code/Tests/MCore/DualQuaternionTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/MCore/OBBTests.cpp | 2 +- .../Code/Tests/MCoreSystemFixture.cpp | 2 +- Gems/EMotionFX/Code/Tests/MCoreSystemFixture.h | 2 +- Gems/EMotionFX/Code/Tests/Matchers.h | 2 +- .../EMotionFX/Code/Tests/MetaDataRuleTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/Mocks/Actor.h | 2 +- Gems/EMotionFX/Code/Tests/Mocks/ActorManager.h | 2 +- Gems/EMotionFX/Code/Tests/Mocks/AnimGraph.h | 2 +- .../Code/Tests/Mocks/AnimGraphInstance.h | 2 +- .../Code/Tests/Mocks/AnimGraphManager.h | 2 +- .../EMotionFX/Code/Tests/Mocks/AnimGraphNode.h | 2 +- .../Code/Tests/Mocks/AnimGraphObject.h | 2 +- .../Code/Tests/Mocks/AnimGraphObjectData.h | 2 +- .../Tests/Mocks/AnimGraphStateTransition.h | 2 +- .../Tests/Mocks/AnimGraphTransitionCondition.h | 2 +- .../Code/Tests/Mocks/BlendTreeParameterNode.h | 2 +- Gems/EMotionFX/Code/Tests/Mocks/Command.h | 2 +- .../Code/Tests/Mocks/CommandManager.h | 2 +- .../Code/Tests/Mocks/CommandManagerCallback.h | 2 +- .../Tests/Mocks/CommandSystemCommandManager.h | 2 +- .../Code/Tests/Mocks/EMotionFXManager.h | 2 +- Gems/EMotionFX/Code/Tests/Mocks/EventHandler.h | 2 +- .../Code/Tests/Mocks/GroupParameter.h | 2 +- Gems/EMotionFX/Code/Tests/Mocks/Node.h | 2 +- .../Mocks/ObjectAffectedByParameterChanges.h | 2 +- Gems/EMotionFX/Code/Tests/Mocks/Parameter.h | 2 +- .../Code/Tests/Mocks/ParameterFactory.h | 2 +- .../Code/Tests/Mocks/PhysicsRagdoll.h | 2 +- .../EMotionFX/Code/Tests/Mocks/PhysicsSystem.h | 2 +- .../Code/Tests/Mocks/SimulatedJoint.h | 2 +- .../Code/Tests/Mocks/SimulatedObject.h | 2 +- .../Code/Tests/Mocks/SimulatedObjectSetup.h | 2 +- Gems/EMotionFX/Code/Tests/Mocks/Skeleton.h | 2 +- .../Code/Tests/Mocks/ValueParameter.h | 2 +- .../Code/Tests/MorphSkinAttachmentTests.cpp | 2 +- .../Code/Tests/MorphTargetPipelineTests.cpp | 2 +- .../Code/Tests/MorphTargetRuntimeTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/MotionDataTests.cpp | 2 +- .../Code/Tests/MotionEventCommandTests.cpp | 2 +- .../Code/Tests/MotionEventTrackTests.cpp | 2 +- .../Code/Tests/MotionExtractionBusTests.cpp | 2 +- .../Code/Tests/MotionExtractionTests.cpp | 2 +- .../Code/Tests/MotionInstanceTests.cpp | 2 +- .../Code/Tests/MotionLayerSystemTests.cpp | 2 +- .../Code/Tests/MultiThreadSchedulerTests.cpp | 2 +- .../Code/Tests/NonUniformMotionDataTests.cpp | 2 +- .../EMotionFX/Code/Tests/PhysicsSetupUtils.cpp | 2 +- Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.h | 2 +- Gems/EMotionFX/Code/Tests/PoseTests.cpp | 2 +- .../Code/Tests/Prefabs/LeftArmSkeleton.h | 2 +- Gems/EMotionFX/Code/Tests/Printers.cpp | 2 +- Gems/EMotionFX/Code/Tests/Printers.h | 2 +- .../AnimGraph/AnimGraphActivateTests.cpp | 2 +- .../AnimGraph/AnimGraphModelTests.cpp | 2 +- .../AnimGraph/AnimGraphNodeTests.cpp | 2 +- .../AnimGraph/AnimGraphPreviewMotionTests.cpp | 2 +- .../AnimGraph/CanDeleteAnimGraphNode.cpp | 2 +- .../AnimGraph/CanEditAnimGraphNode.cpp | 2 +- .../AnimGraph/ParameterWindowTests.cpp | 2 +- .../AnimGraph/Parameters/AddGroup.cpp | 2 +- .../AnimGraph/Parameters/AddParameter.cpp | 2 +- .../CannotAssignGroupsParentAsChild.cpp | 2 +- .../Parameters/ParameterGroupEdit.cpp | 2 +- .../AnimGraph/Parameters/RemoveGroup.cpp | 2 +- .../AnimGraph/Parameters/RemoveParameter.cpp | 2 +- .../AnimGraph/ParametersGroupDefaultValues.cpp | 2 +- .../AnimGraph/PreviewMotionFixture.cpp | 2 +- .../AnimGraph/PreviewMotionFixture.h | 2 +- .../AnimGraph/SimpleAnimGraphUIFixture.cpp | 2 +- .../AnimGraph/SimpleAnimGraphUIFixture.h | 2 +- .../AnimGraph/StateMachine/EntryStateTests.cpp | 2 +- .../AnimGraph/Transitions/AddTransition.cpp | 2 +- .../Transitions/AddTransitionCondition.cpp | 2 +- .../AnimGraph/Transitions/EditTransition.cpp | 2 +- .../AnimGraph/Transitions/RemoveTransition.cpp | 2 +- .../Transitions/RemoveTransitionCondition.cpp | 2 +- .../ProvidesUI/Menus/FileMenu/CanReset.cpp | 2 +- .../MotionSet/CanCreateMotionSet.cpp | 2 +- .../MotionSet/CanRemoveMotionSet.cpp | 2 +- .../Tests/ProvidesUI/Motions/CanAddMotions.cpp | 2 +- .../ProvidesUI/Motions/CanRemoveMotions.cpp | 2 +- .../Motions/MotionPlaybacksTests.cpp | 2 +- .../Ragdoll/CanCopyPasteColliders.cpp | 2 +- .../Ragdoll/CanCopyPasteJointLimits.cpp | 2 +- .../Code/Tests/QuaternionParameterTests.cpp | 2 +- .../Code/Tests/RagdollCommandTests.cpp | 2 +- .../Code/Tests/RandomMotionSelectionTests.cpp | 2 +- .../Code/Tests/RenderBackendManagerTests.cpp | 2 +- .../Code/Tests/SelectionListTests.cpp | 2 +- .../Tests/SimpleMotionComponentBusTests.cpp | 2 +- .../Code/Tests/SimulatedObjectCommandTests.cpp | 2 +- .../Code/Tests/SimulatedObjectModelTests.cpp | 2 +- .../Tests/SimulatedObjectPipelineTests.cpp | 2 +- .../Tests/SimulatedObjectSerializeTests.cpp | 2 +- .../Code/Tests/SimulatedObjectSetupTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/SkeletalLODTests.cpp | 2 +- .../Code/Tests/SkeletonNodeSearchTests.cpp | 2 +- .../Code/Tests/SyncingSystemTests.cpp | 2 +- .../Code/Tests/SystemComponentFixture.h | 2 +- .../Code/Tests/SystemComponentTests.cpp | 2 +- .../Tests/TestAssetCode/ActorAssetFactory.h | 2 +- .../Code/Tests/TestAssetCode/ActorFactory.h | 2 +- .../TestAssetCode/AnimGraphAssetFactory.h | 2 +- .../Tests/TestAssetCode/AnimGraphFactory.cpp | 2 +- .../Tests/TestAssetCode/AnimGraphFactory.h | 2 +- .../Code/Tests/TestAssetCode/JackActor.cpp | 2 +- .../Code/Tests/TestAssetCode/JackActor.h | 2 +- .../Code/Tests/TestAssetCode/MeshFactory.cpp | 2 +- .../Code/Tests/TestAssetCode/MeshFactory.h | 2 +- .../Code/Tests/TestAssetCode/MotionEvent.cpp | 2 +- .../Code/Tests/TestAssetCode/MotionEvent.h | 2 +- .../TestAssetCode/MotionSetAssetFactory.h | 2 +- .../Code/Tests/TestAssetCode/SimpleActors.cpp | 2 +- .../Code/Tests/TestAssetCode/SimpleActors.h | 2 +- .../Tests/TestAssetCode/TestActorAssets.cpp | 2 +- .../Code/Tests/TestAssetCode/TestActorAssets.h | 2 +- .../Tests/TestAssetCode/TestMotionAssets.cpp | 2 +- .../Tests/TestAssetCode/TestMotionAssets.h | 2 +- .../Code/Tests/TransformUnitTests.cpp | 2 +- .../Code/Tests/UI/AnimGraphUIFixture.cpp | 2 +- .../Code/Tests/UI/AnimGraphUIFixture.h | 2 +- .../Code/Tests/UI/CanAddAnimGraph.cpp | 2 +- .../Code/Tests/UI/CanAddJointAndChildren.cpp | 2 +- .../Tests/UI/CanAddMotionToAnimGraphNode.cpp | 2 +- .../Code/Tests/UI/CanAddMotionToMotionSet.cpp | 2 +- .../Code/Tests/UI/CanAddReferenceNode.cpp | 2 +- .../Code/Tests/UI/CanAddSimulatedObject.cpp | 2 +- .../Code/Tests/UI/CanAddToSimulatedObject.cpp | 2 +- .../Code/Tests/UI/CanAdjustGroupParameter.cpp | 2 +- .../Code/Tests/UI/CanAutoSaveFile.cpp | 2 +- .../CanChangeParametersInSimulatedObject.cpp | 2 +- ...leteAnimGraphNode_AnimGraphModelUpdates.cpp | 2 +- .../Code/Tests/UI/CanEditParameters.cpp | 2 +- .../Code/Tests/UI/CanMorphManyShapes.cpp | 2 +- .../Code/Tests/UI/CanOpenWorkspace.cpp | 2 +- .../Tests/UI/CanRemoveMotionFromMotionSet.cpp | 2 +- ...CanRenameParameter_ParameterNodeUpdates.cpp | 2 +- Gems/EMotionFX/Code/Tests/UI/CanSeeJoints.cpp | 2 +- .../EMotionFX/Code/Tests/UI/CanUseEditMenu.cpp | 2 +- .../EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp | 2 +- .../EMotionFX/Code/Tests/UI/CanUseHelpMenu.cpp | 2 +- .../Code/Tests/UI/CanUseLayoutMenu.cpp | 2 +- .../EMotionFX/Code/Tests/UI/CanUseViewMenu.cpp | 2 +- .../Code/Tests/UI/ClothColliderTests.cpp | 2 +- .../Code/Tests/UI/CommandRunnerFixture.cpp | 2 +- .../Code/Tests/UI/CommandRunnerFixture.h | 2 +- .../Code/Tests/UI/LODSkinnedMeshTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.cpp | 2 +- Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.h | 2 +- .../Code/Tests/UI/ModalPopupHandler.cpp | 2 +- .../Code/Tests/UI/ModalPopupHandler.h | 2 +- .../Code/Tests/UI/RagdollEditTests.cpp | 2 +- Gems/EMotionFX/Code/Tests/UI/UIFixture.cpp | 2 +- Gems/EMotionFX/Code/Tests/UI/UIFixture.h | 2 +- .../Code/Tests/UniformMotionDataTests.cpp | 2 +- .../Vector2ToVector3CompatibilityTests.cpp | 2 +- .../Code/Tests/Vector3ParameterTests.cpp | 2 +- .../Code/Tests/run_EMotionFX_tests.py | 2 +- .../Code/emotionfx_editor_files.cmake | 2 +- .../Code/emotionfx_editor_tests_files.cmake | 2 +- Gems/EMotionFX/Code/emotionfx_files.cmake | 2 +- .../Code/emotionfx_shared_files.cmake | 2 +- .../Code/emotionfx_shared_tests_files.cmake | 2 +- .../EMotionFX/Code/emotionfx_tests_files.cmake | 2 +- Gems/EditorPythonBindings/CMakeLists.txt | 2 +- Gems/EditorPythonBindings/Code/CMakeLists.txt | 2 +- .../CustomTypeBindingBus.h | 2 +- .../EditorPythonBindingsBus.h | 2 +- .../EditorPythonBindingsSymbols.h | 2 +- .../Code/Source/EditorPythonBindingsModule.cpp | 2 +- .../editorpythonbindings_static_clang.cmake | 2 +- .../editorpythonbindings_tests_clang.cmake | 2 +- .../editorpythonbindings_static_msvc.cmake | 2 +- .../MSVC/editorpythonbindings_tests_msvc.cmake | 2 +- .../Linux/PythonSystemComponent_linux.cpp | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/PythonSystemComponent_mac.cpp | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/PythonSystemComponent_windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Code/Source/PythonCommon.h | 2 +- .../Code/Source/PythonLogSymbolsComponent.cpp | 2 +- .../Code/Source/PythonLogSymbolsComponent.h | 2 +- .../Code/Source/PythonMarshalComponent.cpp | 2 +- .../Code/Source/PythonMarshalComponent.h | 2 +- .../Code/Source/PythonProxyBus.cpp | 2 +- .../Code/Source/PythonProxyBus.h | 2 +- .../Code/Source/PythonProxyObject.cpp | 2 +- .../Code/Source/PythonProxyObject.h | 2 +- .../Code/Source/PythonReflectionComponent.cpp | 2 +- .../Code/Source/PythonReflectionComponent.h | 2 +- .../Code/Source/PythonSymbolsBus.h | 2 +- .../Code/Source/PythonSystemComponent.cpp | 2 +- .../Code/Source/PythonSystemComponent.h | 2 +- .../Code/Source/PythonTypeCasters.h | 2 +- .../Code/Source/PythonUtility.cpp | 2 +- .../Code/Source/PythonUtility.h | 2 +- .../Code/Tests/CustomTypeBindingBusTests.cpp | 2 +- .../Code/Tests/EditorPythonBindingsTest.cpp | 2 +- .../Code/Tests/EditorPythonBindingsTest.py | 2 +- .../Tests/EditorPythonBindingsTestWithArgs.py | 2 +- .../Code/Tests/PythonAssetTypesTests.cpp | 2 +- .../Code/Tests/PythonAssociativeTests.cpp | 2 +- .../Code/Tests/PythonBindingLibTests.cpp | 2 +- .../Code/Tests/PythonContainerAnyTests.cpp | 2 +- .../Code/Tests/PythonDictionaryTests.cpp | 2 +- .../Code/Tests/PythonGlobalsTests.cpp | 2 +- .../Tests/PythonLogSymbolsComponentTests.cpp | 2 +- .../Code/Tests/PythonPairTests.cpp | 2 +- .../Code/Tests/PythonPairTests.h | 2 +- .../Code/Tests/PythonProxyBusTests.cpp | 2 +- .../Code/Tests/PythonProxyObjectTests.cpp | 2 +- .../Tests/PythonReflectionComponentTests.cpp | 2 +- .../Code/Tests/PythonTestingUtility.h | 2 +- .../Code/Tests/PythonThreadingTests.cpp | 2 +- .../Code/Tests/PythonTraceMessageSink.h | 2 +- .../Code/Tests/__init__.py | 2 +- .../Code/Tests/test_package/__init__.py | 2 +- .../Code/Tests/test_package/do_work.py | 2 +- .../Code/Tests/test_package/import_many.py | 2 +- .../Code/Tests/test_package/import_test.py | 2 +- .../editorpythonbindings_common_files.cmake | 2 +- ...ditorpythonbindings_common_stub_files.cmake | 2 +- .../editorpythonbindings_editor_files.cmake | 2 +- .../editorpythonbindings_tests_files.cmake | 2 +- Gems/ExpressionEvaluation/CMakeLists.txt | 2 +- Gems/ExpressionEvaluation/Code/CMakeLists.txt | 2 +- .../ExpressionEvaluation/ExpressionEngine.h | 2 +- .../ExpressionEngine/ExpressionTree.h | 2 +- .../ExpressionEngine/ExpressionTypes.h | 2 +- .../ExpressionEvaluationBus.h | 2 +- .../ExpressionEngine/ExpressionElementParser.h | 2 +- .../ExpressionEngine/ExpressionPrimitive.cpp | 2 +- .../ExpressionEngine/ExpressionPrimitive.h | 2 +- .../ExpressionEngine/ExpressionVariable.cpp | 2 +- .../ExpressionEngine/ExpressionVariable.h | 2 +- .../Source/ExpressionEngine/InternalTypes.h | 2 +- .../MathOperators/MathExpressionOperators.cpp | 2 +- .../MathOperators/MathExpressionOperators.h | 2 +- .../Code/Source/ExpressionEngine/Utils.h | 2 +- .../Code/Source/ExpressionEvaluationModule.cpp | 2 +- .../ExpressionEvaluationSystemComponent.cpp | 2 +- .../ExpressionEvaluationSystemComponent.h | 2 +- .../Code/Tests/ExpressionEngineTestFixture.h | 2 +- .../Code/Tests/ExpressionEngineTests.cpp | 2 +- .../Code/Tests/ExpressionEvaluationGemTest.cpp | 2 +- .../Code/Tests/MathExpressionTests.cpp | 2 +- .../Code/expressionevaluation_files.cmake | 2 +- .../expressionevaluation_shared_files.cmake | 2 +- .../expressionevaluation_tests_files.cmake | 2 +- Gems/FastNoise/CMakeLists.txt | 2 +- Gems/FastNoise/Code/CMakeLists.txt | 2 +- .../Include/FastNoise/Ebuses/FastNoiseBus.h | 2 +- .../Ebuses/FastNoiseGradientRequestBus.h | 2 +- .../EditorFastNoiseGradientComponent.cpp | 2 +- .../Source/EditorFastNoiseGradientComponent.h | 2 +- .../Code/Source/FastNoiseEditorModule.cpp | 2 +- .../Code/Source/FastNoiseEditorModule.h | 2 +- .../Code/Source/FastNoiseGradientComponent.cpp | 2 +- .../Code/Source/FastNoiseGradientComponent.h | 2 +- Gems/FastNoise/Code/Source/FastNoiseModule.cpp | 2 +- Gems/FastNoise/Code/Source/FastNoiseModule.h | 2 +- .../Code/Source/FastNoiseSystemComponent.cpp | 2 +- .../Code/Source/FastNoiseSystemComponent.h | 2 +- .../Code/Source/FastNoise_precompiled.h | 2 +- Gems/FastNoise/Code/Tests/FastNoiseTest.cpp | 2 +- .../Code/fastnoise_editor_files.cmake | 2 +- .../Code/fastnoise_editor_shared_files.cmake | 2 +- Gems/FastNoise/Code/fastnoise_files.cmake | 2 +- .../Code/fastnoise_shared_files.cmake | 2 +- .../FastNoise/Code/fastnoise_tests_files.cmake | 2 +- Gems/GameState/CMakeLists.txt | 2 +- Gems/GameState/Code/CMakeLists.txt | 2 +- .../Code/Include/GameState/GameState.h | 2 +- .../GameState/GameStateNotificationBus.h | 2 +- .../Include/GameState/GameStateRequestBus.h | 2 +- Gems/GameState/Code/Source/GameStateModule.cpp | 2 +- .../Code/Source/GameStateSystemComponent.cpp | 2 +- .../Code/Source/GameStateSystemComponent.h | 2 +- Gems/GameState/Code/Tests/GameStateTest.cpp | 2 +- Gems/GameState/Code/gamestate_files.cmake | 2 +- .../Code/gamestate_shared_files.cmake | 2 +- .../GameState/Code/gamestate_tests_files.cmake | 2 +- Gems/GameStateSamples/CMakeLists.txt | 2 +- Gems/GameStateSamples/Code/CMakeLists.txt | 2 +- .../GameStateSamples/GameOptionRequestBus.h | 2 +- .../GameStateSamples/GameStateLevelLoading.h | 2 +- .../GameStateSamples/GameStateLevelLoading.inl | 2 +- .../GameStateSamples/GameStateLevelPaused.h | 2 +- .../GameStateSamples/GameStateLevelPaused.inl | 2 +- .../GameStateSamples/GameStateLevelRunning.h | 2 +- .../GameStateSamples/GameStateLevelRunning.inl | 2 +- .../GameStateSamples/GameStateLocalUserLobby.h | 2 +- .../GameStateLocalUserLobby.inl | 2 +- .../GameStateSamples/GameStateMainMenu.h | 2 +- .../GameStateSamples/GameStateMainMenu.inl | 2 +- .../GameStateSamples/GameStateOptionsMenu.h | 2 +- .../GameStateSamples/GameStateOptionsMenu.inl | 2 +- .../GameStatePrimaryControllerDisconnected.h | 2 +- .../GameStatePrimaryControllerDisconnected.inl | 2 +- .../GameStatePrimaryUserMonitor.h | 2 +- .../GameStatePrimaryUserMonitor.inl | 2 +- .../GameStatePrimaryUserSelection.h | 2 +- .../GameStatePrimaryUserSelection.inl | 2 +- .../GameStatePrimaryUserSignedOut.h | 2 +- .../GameStatePrimaryUserSignedOut.inl | 2 +- .../GameStateSamples_Traits_Android.h | 2 +- .../GameStateSamples_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../GameStateSamples_Traits_Linux.h | 2 +- .../GameStateSamples_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../GameStateSamples_Traits_Mac.h | 2 +- .../GameStateSamples_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../GameStateSamples_Traits_Platform.h | 2 +- .../GameStateSamples_Traits_Windows.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../GameStateSamples_Traits_Platform.h | 2 +- .../GameStateSamples_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Code/Source/GameStateSamplesModule.cpp | 2 +- .../Code/gamestatesamples_headers_files.cmake | 2 +- .../Code/gamestatesamples_shared_files.cmake | 2 +- Gems/Gestures/CMakeLists.txt | 2 +- Gems/Gestures/Code/CMakeLists.txt | 2 +- .../Gestures/GestureRecognizerClickOrTap.h | 2 +- .../Gestures/GestureRecognizerClickOrTap.inl | 2 +- .../Include/Gestures/GestureRecognizerDrag.h | 2 +- .../Include/Gestures/GestureRecognizerDrag.inl | 2 +- .../Include/Gestures/GestureRecognizerHold.h | 2 +- .../Include/Gestures/GestureRecognizerHold.inl | 2 +- .../Include/Gestures/GestureRecognizerPinch.h | 2 +- .../Gestures/GestureRecognizerPinch.inl | 2 +- .../Include/Gestures/GestureRecognizerRotate.h | 2 +- .../Gestures/GestureRecognizerRotate.inl | 2 +- .../Include/Gestures/GestureRecognizerSwipe.h | 2 +- .../Gestures/GestureRecognizerSwipe.inl | 2 +- .../Code/Include/Gestures/IGestureRecognizer.h | 2 +- Gems/Gestures/Code/Mocks/IRecognizerMock.h | 2 +- Gems/Gestures/Code/Source/GesturesModule.cpp | 2 +- .../Code/Source/GesturesSystemComponent.cpp | 2 +- .../Code/Source/GesturesSystemComponent.h | 2 +- .../Code/Source/Gestures_precompiled.h | 2 +- .../Code/Source/InputChannelGesture.cpp | 2 +- .../Gestures/Code/Source/InputChannelGesture.h | 2 +- .../Source/InputChannelGestureClickOrTap.cpp | 2 +- .../Source/InputChannelGestureClickOrTap.h | 2 +- .../Code/Source/InputChannelGestureDrag.cpp | 2 +- .../Code/Source/InputChannelGestureDrag.h | 2 +- .../Code/Source/InputChannelGestureHold.cpp | 2 +- .../Code/Source/InputChannelGestureHold.h | 2 +- .../Code/Source/InputChannelGesturePinch.cpp | 2 +- .../Code/Source/InputChannelGesturePinch.h | 2 +- .../Code/Source/InputChannelGestureRotate.cpp | 2 +- .../Code/Source/InputChannelGestureRotate.h | 2 +- .../Code/Source/InputChannelGestureSwipe.cpp | 2 +- .../Code/Source/InputChannelGestureSwipe.h | 2 +- .../Code/Source/InputDeviceGestures.cpp | 2 +- .../Gestures/Code/Source/InputDeviceGestures.h | 2 +- Gems/Gestures/Code/Tests/BaseGestureTest.h | 2 +- .../Tests/GestureRecognizerClickOrTapTests.cpp | 2 +- .../Code/Tests/GestureRecognizerPinchTests.cpp | 2 +- Gems/Gestures/Code/Tests/GesturesTest.cpp | 2 +- Gems/Gestures/Code/gestures_files.cmake | 2 +- Gems/Gestures/Code/gestures_shared_files.cmake | 2 +- Gems/Gestures/Code/gestures_test_files.cmake | 2 +- Gems/GradientSignal/CMakeLists.txt | 2 +- Gems/GradientSignal/Code/CMakeLists.txt | 2 +- .../Ebuses/ConstantGradientRequestBus.h | 2 +- .../Ebuses/DitherGradientRequestBus.h | 2 +- .../Ebuses/GradientPreviewContextRequestBus.h | 2 +- .../Ebuses/GradientPreviewRequestBus.h | 2 +- .../GradientSignal/Ebuses/GradientRequestBus.h | 2 +- .../Ebuses/GradientSurfaceDataRequestBus.h | 2 +- .../GradientTransformModifierRequestBus.h | 2 +- .../Ebuses/GradientTransformRequestBus.h | 2 +- .../Ebuses/ImageGradientRequestBus.h | 2 +- .../Ebuses/InvertGradientRequestBus.h | 2 +- .../Ebuses/LevelsGradientRequestBus.h | 2 +- .../Ebuses/MixedGradientRequestBus.h | 2 +- .../Ebuses/PerlinGradientRequestBus.h | 2 +- .../Ebuses/PosterizeGradientRequestBus.h | 2 +- .../Ebuses/RandomGradientRequestBus.h | 2 +- .../Ebuses/ReferenceGradientRequestBus.h | 2 +- .../Ebuses/SectorDataRequestBus.h | 2 +- .../ShapeAreaFalloffGradientRequestBus.h | 2 +- .../Ebuses/SmoothStepGradientRequestBus.h | 2 +- .../Ebuses/SmoothStepRequestBus.h | 2 +- .../Ebuses/SurfaceAltitudeGradientRequestBus.h | 2 +- .../Ebuses/SurfaceMaskGradientRequestBus.h | 2 +- .../Ebuses/SurfaceSlopeGradientRequestBus.h | 2 +- .../Ebuses/ThresholdGradientRequestBus.h | 2 +- .../Editor/EditorGradientComponentBase.h | 2 +- .../Editor/EditorGradientComponentBase.inl | 2 +- .../Editor/EditorGradientPreviewRenderer.h | 2 +- .../Editor/EditorGradientTypeIds.h | 2 +- .../GradientSignal/GradientImageConversion.h | 2 +- .../Include/GradientSignal/GradientSampler.h | 2 +- .../Code/Include/GradientSignal/ImageAsset.h | 2 +- .../Include/GradientSignal/ImageSettings.h | 2 +- .../GradientSignal/PerlinImprovedNoise.h | 2 +- .../Code/Include/GradientSignal/SmoothStep.h | 2 +- .../Code/Include/GradientSignal/Util.h | 2 +- .../Components/ConstantGradientComponent.cpp | 2 +- .../Components/ConstantGradientComponent.h | 2 +- .../Components/DitherGradientComponent.cpp | 2 +- .../Components/DitherGradientComponent.h | 2 +- .../GradientSurfaceDataComponent.cpp | 2 +- .../Components/GradientSurfaceDataComponent.h | 2 +- .../Components/GradientTransformComponent.cpp | 2 +- .../Components/GradientTransformComponent.h | 2 +- .../Components/ImageGradientComponent.cpp | 2 +- .../Source/Components/ImageGradientComponent.h | 2 +- .../Components/InvertGradientComponent.cpp | 2 +- .../Components/InvertGradientComponent.h | 2 +- .../Components/LevelsGradientComponent.cpp | 2 +- .../Components/LevelsGradientComponent.h | 2 +- .../Components/MixedGradientComponent.cpp | 2 +- .../Source/Components/MixedGradientComponent.h | 2 +- .../Components/PerlinGradientComponent.cpp | 2 +- .../Components/PerlinGradientComponent.h | 2 +- .../Components/PosterizeGradientComponent.cpp | 2 +- .../Components/PosterizeGradientComponent.h | 2 +- .../Components/RandomGradientComponent.cpp | 2 +- .../Components/RandomGradientComponent.h | 2 +- .../Components/ReferenceGradientComponent.cpp | 2 +- .../Components/ReferenceGradientComponent.h | 2 +- .../ShapeAreaFalloffGradientComponent.cpp | 2 +- .../ShapeAreaFalloffGradientComponent.h | 2 +- .../Components/SmoothStepGradientComponent.cpp | 2 +- .../Components/SmoothStepGradientComponent.h | 2 +- .../SurfaceAltitudeGradientComponent.cpp | 2 +- .../SurfaceAltitudeGradientComponent.h | 2 +- .../SurfaceMaskGradientComponent.cpp | 2 +- .../Components/SurfaceMaskGradientComponent.h | 2 +- .../SurfaceSlopeGradientComponent.cpp | 2 +- .../Components/SurfaceSlopeGradientComponent.h | 2 +- .../Components/ThresholdGradientComponent.cpp | 2 +- .../Components/ThresholdGradientComponent.h | 2 +- .../Editor/EditorConstantGradientComponent.cpp | 2 +- .../Editor/EditorConstantGradientComponent.h | 2 +- .../Editor/EditorDitherGradientComponent.cpp | 2 +- .../Editor/EditorDitherGradientComponent.h | 2 +- .../Editor/EditorGradientComponentBase.cpp | 2 +- .../EditorGradientSurfaceDataComponent.cpp | 2 +- .../EditorGradientSurfaceDataComponent.h | 2 +- .../EditorGradientTransformComponent.cpp | 2 +- .../Editor/EditorGradientTransformComponent.h | 2 +- .../Editor/EditorImageBuilderComponent.cpp | 2 +- .../Editor/EditorImageBuilderComponent.h | 2 +- .../Editor/EditorImageGradientComponent.cpp | 2 +- .../Editor/EditorImageGradientComponent.h | 2 +- .../EditorImageProcessingSystemComponent.cpp | 2 +- .../EditorImageProcessingSystemComponent.h | 2 +- .../Editor/EditorInvertGradientComponent.cpp | 2 +- .../Editor/EditorInvertGradientComponent.h | 2 +- .../Editor/EditorLevelsGradientComponent.cpp | 2 +- .../Editor/EditorLevelsGradientComponent.h | 2 +- .../Editor/EditorMixedGradientComponent.cpp | 2 +- .../Editor/EditorMixedGradientComponent.h | 2 +- .../Editor/EditorPerlinGradientComponent.cpp | 2 +- .../Editor/EditorPerlinGradientComponent.h | 2 +- .../EditorPosterizeGradientComponent.cpp | 2 +- .../Editor/EditorPosterizeGradientComponent.h | 2 +- .../Editor/EditorRandomGradientComponent.cpp | 2 +- .../Editor/EditorRandomGradientComponent.h | 2 +- .../EditorReferenceGradientComponent.cpp | 2 +- .../Editor/EditorReferenceGradientComponent.h | 2 +- ...EditorShapeAreaFalloffGradientComponent.cpp | 2 +- .../EditorShapeAreaFalloffGradientComponent.h | 2 +- .../EditorSmoothStepGradientComponent.cpp | 2 +- .../Editor/EditorSmoothStepGradientComponent.h | 2 +- .../EditorSurfaceAltitudeGradientComponent.cpp | 2 +- .../EditorSurfaceAltitudeGradientComponent.h | 2 +- .../EditorSurfaceMaskGradientComponent.cpp | 2 +- .../EditorSurfaceMaskGradientComponent.h | 2 +- .../EditorSurfaceSlopeGradientComponent.cpp | 2 +- .../EditorSurfaceSlopeGradientComponent.h | 2 +- .../EditorThresholdGradientComponent.cpp | 2 +- .../Editor/EditorThresholdGradientComponent.h | 2 +- .../Code/Source/GradientImageConversion.cpp | 2 +- .../Code/Source/GradientSampler.cpp | 2 +- .../Code/Source/GradientSignalEditorModule.cpp | 2 +- .../Code/Source/GradientSignalEditorModule.h | 2 +- .../Code/Source/GradientSignalModule.cpp | 2 +- .../Code/Source/GradientSignalModule.h | 2 +- .../Source/GradientSignalSystemComponent.cpp | 2 +- .../Source/GradientSignalSystemComponent.h | 2 +- .../Code/Source/GradientSignal_precompiled.h | 2 +- Gems/GradientSignal/Code/Source/ImageAsset.cpp | 2 +- .../Code/Source/ImageSettings.cpp | 2 +- .../Code/Source/PerlinImprovedNoise.cpp | 2 +- Gems/GradientSignal/Code/Source/SmoothStep.cpp | 2 +- .../Source/UI/GradientPreviewDataWidget.cpp | 2 +- .../Code/Source/UI/GradientPreviewDataWidget.h | 2 +- .../Code/Source/UI/GradientPreviewWidget.cpp | 2 +- .../Code/Source/UI/GradientPreviewWidget.h | 2 +- Gems/GradientSignal/Code/Source/Util.cpp | 2 +- .../Tests/EditorGradientSignalPreviewTests.cpp | 2 +- .../Code/Tests/GradientSignalImageTests.cpp | 2 +- .../Tests/GradientSignalReferencesTests.cpp | 2 +- .../Code/Tests/GradientSignalServicesTests.cpp | 2 +- .../Code/Tests/GradientSignalSurfaceTests.cpp | 2 +- .../Code/Tests/GradientSignalTest.cpp | 2 +- .../Code/Tests/GradientSignalTestMocks.h | 2 +- .../Code/Tests/ImageAssetTests.cpp | 2 +- .../Code/gradientsignal_editor_files.cmake | 2 +- .../gradientsignal_editor_shared_files.cmake | 2 +- .../gradientsignal_editor_tests_files.cmake | 2 +- .../Code/gradientsignal_files.cmake | 2 +- .../Code/gradientsignal_shared_files.cmake | 2 +- .../Code/gradientsignal_tests_files.cmake | 2 +- Gems/GraphCanvas/CMakeLists.txt | 2 +- Gems/GraphCanvas/Code/CMakeLists.txt | 2 +- .../Code/GraphCanvas_game_files.cmake | 2 +- .../ConnectionFilters/ConnectionFilterBus.h | 2 +- .../ConnectionFilters/ConnectionFilters.h | 2 +- .../ConnectionFilters/DataConnectionFilters.h | 2 +- .../GraphCanvas/Widgets/RootGraphicsItem.h | 2 +- .../Code/Include/GraphCanvas/tools.h | 2 +- .../BookmarkAnchor/BookmarkAnchorComponent.cpp | 2 +- .../BookmarkAnchor/BookmarkAnchorComponent.h | 2 +- .../BookmarkAnchorLayerControllerComponent.h | 2 +- .../BookmarkAnchorVisualComponent.cpp | 2 +- .../BookmarkAnchorVisualComponent.h | 2 +- .../Components/BookmarkManagerComponent.cpp | 2 +- .../Components/BookmarkManagerComponent.h | 2 +- .../Connections/ConnectionComponent.cpp | 2 +- .../Connections/ConnectionComponent.h | 2 +- .../ConnectionLayerControllerComponent.cpp | 2 +- .../ConnectionLayerControllerComponent.h | 2 +- .../Connections/ConnectionVisualComponent.cpp | 2 +- .../Connections/ConnectionVisualComponent.h | 2 +- .../DataConnectionComponent.cpp | 2 +- .../DataConnections/DataConnectionComponent.h | 2 +- .../DataConnectionGraphicsItem.cpp | 2 +- .../DataConnectionGraphicsItem.h | 2 +- .../DataConnectionVisualComponent.cpp | 2 +- .../DataConnectionVisualComponent.h | 2 +- .../Source/Components/GeometryComponent.cpp | 2 +- .../Code/Source/Components/GeometryComponent.h | 2 +- .../Code/Source/Components/GridComponent.cpp | 2 +- .../Code/Source/Components/GridComponent.h | 2 +- .../Source/Components/GridVisualComponent.cpp | 2 +- .../Source/Components/GridVisualComponent.h | 2 +- .../Components/LayerControllerComponent.cpp | 2 +- .../Components/LayerControllerComponent.h | 2 +- .../AssetIdNodePropertyDisplay.cpp | 2 +- .../AssetIdNodePropertyDisplay.h | 2 +- .../BooleanNodePropertyDisplay.cpp | 2 +- .../BooleanNodePropertyDisplay.h | 2 +- .../ComboBoxNodePropertyDisplay.cpp | 2 +- .../ComboBoxNodePropertyDisplay.h | 2 +- .../EntityIdNodePropertyDisplay.cpp | 2 +- .../EntityIdNodePropertyDisplay.h | 2 +- .../NumericNodePropertyDisplay.cpp | 2 +- .../NumericNodePropertyDisplay.h | 2 +- .../ReadOnlyNodePropertyDisplay.cpp | 2 +- .../ReadOnlyNodePropertyDisplay.h | 2 +- .../StringNodePropertyDisplay.cpp | 2 +- .../StringNodePropertyDisplay.h | 2 +- .../VariableReferenceNodePropertyDisplay.cpp | 2 +- .../VariableReferenceNodePropertyDisplay.h | 2 +- .../VectorNodePropertyDisplay.cpp | 2 +- .../VectorNodePropertyDisplay.h | 2 +- .../CommentLayerControllerComponent.cpp | 2 +- .../Comment/CommentLayerControllerComponent.h | 2 +- .../Comment/CommentNodeFrameComponent.cpp | 2 +- .../Nodes/Comment/CommentNodeFrameComponent.h | 2 +- .../Comment/CommentNodeLayoutComponent.cpp | 2 +- .../Nodes/Comment/CommentNodeLayoutComponent.h | 2 +- .../Nodes/Comment/CommentNodeTextComponent.cpp | 2 +- .../Nodes/Comment/CommentNodeTextComponent.h | 2 +- .../Comment/CommentTextGraphicsWidget.cpp | 2 +- .../Nodes/Comment/CommentTextGraphicsWidget.h | 2 +- .../General/GeneralNodeFrameComponent.cpp | 2 +- .../Nodes/General/GeneralNodeFrameComponent.h | 2 +- .../General/GeneralNodeLayoutComponent.cpp | 2 +- .../Nodes/General/GeneralNodeLayoutComponent.h | 2 +- .../General/GeneralNodeTitleComponent.cpp | 2 +- .../Nodes/General/GeneralNodeTitleComponent.h | 2 +- .../General/GeneralSlotLayoutComponent.cpp | 2 +- .../Nodes/General/GeneralSlotLayoutComponent.h | 2 +- .../Group/CollapsedNodeGroupComponent.cpp | 2 +- .../Nodes/Group/CollapsedNodeGroupComponent.h | 2 +- .../Nodes/Group/NodeGroupFrameComponent.cpp | 2 +- .../Nodes/Group/NodeGroupFrameComponent.h | 2 +- .../Group/NodeGroupLayerControllerComponent.h | 2 +- .../Nodes/Group/NodeGroupLayoutComponent.cpp | 2 +- .../Nodes/Group/NodeGroupLayoutComponent.h | 2 +- .../Source/Components/Nodes/NodeComponent.cpp | 2 +- .../Source/Components/Nodes/NodeComponent.h | 2 +- .../Nodes/NodeFrameGraphicsWidget.cpp | 2 +- .../Components/Nodes/NodeFrameGraphicsWidget.h | 2 +- .../Nodes/NodeLayerControllerComponent.h | 2 +- .../Components/Nodes/NodeLayoutComponent.h | 2 +- .../Wrapper/WrapperNodeLayoutComponent.cpp | 2 +- .../Nodes/Wrapper/WrapperNodeLayoutComponent.h | 2 +- .../Components/PersistentIdComponent.cpp | 2 +- .../Source/Components/PersistentIdComponent.h | 2 +- .../Code/Source/Components/SceneComponent.cpp | 2 +- .../Code/Source/Components/SceneComponent.h | 2 +- .../Source/Components/SceneMemberComponent.cpp | 2 +- .../Source/Components/SceneMemberComponent.h | 2 +- .../Slots/Data/DataSlotComponent.cpp | 2 +- .../Components/Slots/Data/DataSlotComponent.h | 2 +- .../Slots/Data/DataSlotConnectionPin.cpp | 2 +- .../Slots/Data/DataSlotConnectionPin.h | 2 +- .../Slots/Data/DataSlotLayoutComponent.cpp | 2 +- .../Slots/Data/DataSlotLayoutComponent.h | 2 +- .../Default/DefaultSlotLayoutComponent.cpp | 2 +- .../Slots/Default/DefaultSlotLayoutComponent.h | 2 +- .../Slots/Execution/ExecutionSlotComponent.cpp | 2 +- .../Slots/Execution/ExecutionSlotComponent.h | 2 +- .../Execution/ExecutionSlotConnectionPin.cpp | 2 +- .../Execution/ExecutionSlotConnectionPin.h | 2 +- .../Execution/ExecutionSlotLayoutComponent.cpp | 2 +- .../Execution/ExecutionSlotLayoutComponent.h | 2 +- .../Slots/Extender/ExtenderSlotComponent.cpp | 2 +- .../Slots/Extender/ExtenderSlotComponent.h | 2 +- .../Extender/ExtenderSlotConnectionPin.cpp | 2 +- .../Slots/Extender/ExtenderSlotConnectionPin.h | 2 +- .../Extender/ExtenderSlotLayoutComponent.cpp | 2 +- .../Extender/ExtenderSlotLayoutComponent.h | 2 +- .../Slots/Property/PropertySlotComponent.cpp | 2 +- .../Slots/Property/PropertySlotComponent.h | 2 +- .../Property/PropertySlotLayoutComponent.cpp | 2 +- .../Property/PropertySlotLayoutComponent.h | 2 +- .../Source/Components/Slots/SlotComponent.cpp | 2 +- .../Source/Components/Slots/SlotComponent.h | 2 +- .../Slots/SlotConnectionFilterComponent.cpp | 2 +- .../Slots/SlotConnectionFilterComponent.h | 2 +- .../Components/Slots/SlotConnectionPin.cpp | 2 +- .../Components/Slots/SlotConnectionPin.h | 2 +- .../Components/Slots/SlotLayoutComponent.cpp | 2 +- .../Components/Slots/SlotLayoutComponent.h | 2 +- .../Source/Components/Slots/SlotLayoutItem.h | 2 +- .../Source/Components/StylingComponent.cpp | 2 +- .../Code/Source/Components/StylingComponent.h | 2 +- Gems/GraphCanvas/Code/Source/GraphCanvas.cpp | 2 +- Gems/GraphCanvas/Code/Source/GraphCanvas.h | 2 +- .../Code/Source/GraphCanvasEditorModule.cpp | 2 +- .../Code/Source/GraphCanvasGameModule.cpp | 2 +- .../Code/Source/GraphCanvasModule.h | 2 +- .../Code/Source/Tests/GraphCanvasTest.cpp | 2 +- .../Source/Translation/TranslationAsset.cpp | 2 +- .../Code/Source/Translation/TranslationAsset.h | 2 +- .../Source/Translation/TranslationBuilder.cpp | 2 +- .../Source/Translation/TranslationBuilder.h | 2 +- .../Code/Source/Translation/TranslationBus.h | 2 +- .../Source/Translation/TranslationDatabase.cpp | 2 +- .../Source/Translation/TranslationDatabase.h | 2 +- .../Translation/TranslationSerializer.cpp | 2 +- .../Source/Translation/TranslationSerializer.h | 2 +- .../Source/Widgets/GraphCanvasCheckBox.cpp | 2 +- .../Code/Source/Widgets/GraphCanvasCheckBox.h | 2 +- .../Source/Widgets/GraphCanvasComboBox.cpp | 2 +- .../Code/Source/Widgets/GraphCanvasComboBox.h | 2 +- .../Code/Source/Widgets/GraphCanvasLabel.cpp | 2 +- .../Code/Source/Widgets/GraphCanvasLabel.h | 2 +- .../Widgets/NodePropertyDisplayWidget.cpp | 2 +- .../Source/Widgets/NodePropertyDisplayWidget.h | 2 +- Gems/GraphCanvas/Code/Source/tools.cpp | 2 +- .../Components/Bookmarks/BookmarkBus.h | 2 +- .../ColorPaletteManagerComponent.cpp | 2 +- .../ColorPaletteManagerComponent.h | 2 +- .../Components/Connections/ConnectionBus.h | 2 +- .../GraphCanvas/Components/EntitySaveDataBus.h | 2 +- .../GraphCanvas/Components/GeometryBus.h | 2 +- .../Components/GraphCanvasPropertyBus.h | 2 +- .../StaticLib/GraphCanvas/Components/GridBus.h | 2 +- .../GraphCanvas/Components/LayerBus.h | 2 +- .../Components/MimeDataHandlerBus.h | 2 +- .../NodePropertyDisplay/AssetIdDataInterface.h | 2 +- .../NodePropertyDisplay/BooleanDataInterface.h | 2 +- .../ComboBoxDataInterface.h | 2 +- .../NodePropertyDisplay/DataInterface.h | 2 +- .../NodePropertyDisplay/DoubleDataInterface.h | 2 +- .../EntityIdDataInterface.h | 2 +- .../NodePropertyDisplay.cpp | 2 +- .../NodePropertyDisplay/NodePropertyDisplay.h | 2 +- .../NodePropertyDisplay/NumericDataInterface.h | 2 +- .../ReadOnlyDataInterface.h | 2 +- .../NodePropertyDisplay/StringDataInterface.h | 2 +- .../VariableDataInterface.h | 2 +- .../NodePropertyDisplay/VectorDataInterface.h | 2 +- .../Components/Nodes/Comment/CommentBus.h | 2 +- .../Components/Nodes/Group/NodeGroupBus.h | 2 +- .../GraphCanvas/Components/Nodes/NodeBus.h | 2 +- .../Components/Nodes/NodeConfiguration.h | 2 +- .../Components/Nodes/NodeLayoutBus.h | 2 +- .../Components/Nodes/NodeTitleBus.h | 2 +- .../GraphCanvas/Components/Nodes/NodeUIBus.h | 2 +- .../Nodes/Variable/VariableNodeBus.h | 2 +- .../Components/Nodes/Wrapper/WrapperNodeBus.h | 2 +- .../GraphCanvas/Components/PersistentIdBus.h | 2 +- .../GraphCanvas/Components/SceneBus.h | 2 +- .../Components/Slots/Data/DataSlotBus.h | 2 +- .../Slots/Extender/ExtenderSlotBus.h | 2 +- .../Slots/Property/PropertySlotBus.h | 2 +- .../GraphCanvas/Components/Slots/SlotBus.h | 2 +- .../GraphCanvas/Components/StyleBus.h | 2 +- .../GraphCanvas/Components/ToastBus.h | 2 +- .../StaticLib/GraphCanvas/Components/ViewBus.h | 2 +- .../GraphCanvas/Components/VisualBus.h | 2 +- .../GraphCanvas/Editor/AssetEditorBus.h | 2 +- .../Editor/Automation/AutomationIds.h | 2 +- .../Editor/Automation/AutomationUtils.h | 2 +- .../GraphCanvas/Editor/EditorDockWidgetBus.h | 2 +- .../StaticLib/GraphCanvas/Editor/EditorTypes.h | 2 +- .../GraphCanvas/Editor/GraphCanvasProfiler.h | 2 +- .../GraphCanvas/Editor/GraphModelBus.h | 2 +- .../StaticLib/GraphCanvas/GraphCanvasBus.h | 2 +- .../GraphicsItems/AnimatedPulse.cpp | 2 +- .../GraphCanvas/GraphicsItems/AnimatedPulse.h | 2 +- .../GraphicsItems/GlowOutlineGraphicsItem.cpp | 2 +- .../GraphicsItems/GlowOutlineGraphicsItem.h | 2 +- .../GraphCanvasSceneEventFilter.h | 2 +- .../GraphCanvas/GraphicsItems/GraphicsEffect.h | 2 +- .../GraphicsItems/GraphicsEffectBus.h | 2 +- .../GraphCanvas/GraphicsItems/Occluder.cpp | 2 +- .../GraphCanvas/GraphicsItems/Occluder.h | 2 +- .../GraphicsItems/ParticleGraphicsItem.cpp | 2 +- .../GraphicsItems/ParticleGraphicsItem.h | 2 +- .../GraphCanvas/GraphicsItems/PulseBus.h | 2 +- .../StaticLib/GraphCanvas/Styling/Parser.cpp | 2 +- .../StaticLib/GraphCanvas/Styling/Parser.h | 2 +- .../GraphCanvas/Styling/PseudoElement.cpp | 2 +- .../GraphCanvas/Styling/PseudoElement.h | 2 +- .../StaticLib/GraphCanvas/Styling/Selector.cpp | 2 +- .../StaticLib/GraphCanvas/Styling/Selector.h | 2 +- .../Styling/SelectorImplementations.cpp | 2 +- .../Styling/SelectorImplementations.h | 2 +- .../StaticLib/GraphCanvas/Styling/Style.cpp | 2 +- .../Code/StaticLib/GraphCanvas/Styling/Style.h | 2 +- .../GraphCanvas/Styling/StyleHelper.h | 2 +- .../GraphCanvas/Styling/StyleManager.cpp | 2 +- .../GraphCanvas/Styling/StyleManager.h | 2 +- .../GraphCanvas/Styling/definitions.cpp | 2 +- .../GraphCanvas/Styling/definitions.h | 2 +- .../Types/ComponentSaveDataInterface.h | 2 +- .../GraphCanvas/Types/ConstructPresets.cpp | 2 +- .../GraphCanvas/Types/ConstructPresets.h | 2 +- .../StaticLib/GraphCanvas/Types/Endpoint.h | 2 +- .../GraphCanvas/Types/EntitySaveData.h | 2 +- .../GraphCanvas/Types/GraphCanvasGraphData.cpp | 2 +- .../GraphCanvas/Types/GraphCanvasGraphData.h | 2 +- .../Types/GraphCanvasGraphSerialization.cpp | 2 +- .../Types/GraphCanvasGraphSerialization.h | 2 +- .../StaticLib/GraphCanvas/Types/QtMetaTypes.h | 2 +- .../Types/SceneMemberComponentSaveData.h | 2 +- .../GraphCanvas/Types/TranslationTypes.h | 2 +- .../Code/StaticLib/GraphCanvas/Types/Types.h | 2 +- .../StaticLib/GraphCanvas/Utils/ColorUtils.h | 2 +- .../GraphCanvas/Utils/ConversionUtils.h | 2 +- .../StaticLib/GraphCanvas/Utils/GraphUtils.cpp | 2 +- .../StaticLib/GraphCanvas/Utils/GraphUtils.h | 2 +- .../Utils/NodeNudgingController.cpp | 2 +- .../GraphCanvas/Utils/NodeNudgingController.h | 2 +- .../GraphCanvas/Utils/QtDrawingUtils.cpp | 2 +- .../GraphCanvas/Utils/QtDrawingUtils.h | 2 +- .../StaticLib/GraphCanvas/Utils/QtMimeUtils.h | 2 +- .../StaticLib/GraphCanvas/Utils/QtVectorMath.h | 2 +- .../PrioritizedStateController.h | 2 +- .../StateControllers/StackStateController.h | 2 +- .../Utils/StateControllers/StateController.h | 2 +- .../AssetEditorToolbar/AssetEditorToolbar.cpp | 2 +- .../AssetEditorToolbar/AssetEditorToolbar.h | 2 +- .../Widgets/Bookmarks/BookmarkDockWidget.cpp | 2 +- .../Widgets/Bookmarks/BookmarkDockWidget.h | 2 +- .../Widgets/Bookmarks/BookmarkTableModel.cpp | 2 +- .../Widgets/Bookmarks/BookmarkTableModel.h | 2 +- .../ComboBox/ComboBoxItemModelInterface.h | 2 +- .../Widgets/ComboBox/ComboBoxItemModels.h | 2 +- .../ConstructPresetDialog.cpp | 2 +- .../ConstructPresetDialog.h | 2 +- .../AlignmentActionsMenuGroup.cpp | 2 +- .../AlignmentActionsMenuGroup.h | 2 +- .../AlignmentContextMenuAction.h | 2 +- .../AlignmentContextMenuActions.cpp | 2 +- .../AlignmentContextMenuActions.h | 2 +- .../CommentActionsMenuGroup.cpp | 2 +- .../CommentActionsMenuGroup.h | 2 +- .../CommentContextMenuAction.h | 2 +- .../CommentContextMenuActions.cpp | 2 +- .../CommentContextMenuActions.h | 2 +- .../BookmarkConstructMenuActions.cpp | 2 +- .../BookmarkConstructMenuActions.h | 2 +- .../CommentConstructMenuActions.cpp | 2 +- .../CommentConstructMenuActions.h | 2 +- .../ConstructContextMenuAction.h | 2 +- .../ConstructPresetMenuActions.cpp | 2 +- .../ConstructPresetMenuActions.h | 2 +- .../GraphCanvasConstructActionsMenuGroup.cpp | 2 +- .../GraphCanvasConstructActionsMenuGroup.h | 2 +- .../ContextMenuActions/ContextMenuAction.cpp | 2 +- .../ContextMenuActions/ContextMenuAction.h | 2 +- .../DisableActionsMenuGroup.cpp | 2 +- .../DisableActionsMenuGroup.h | 2 +- .../DisableMenuActions/DisableMenuAction.h | 2 +- .../DisableMenuActions/DisableMenuActions.cpp | 2 +- .../DisableMenuActions/DisableMenuActions.h | 2 +- .../EditMenuActions/EditActionsMenuGroup.cpp | 2 +- .../EditMenuActions/EditActionsMenuGroup.h | 2 +- .../EditMenuActions/EditContextMenuAction.h | 2 +- .../EditMenuActions/EditContextMenuActions.cpp | 2 +- .../EditMenuActions/EditContextMenuActions.h | 2 +- .../GeneralMenuActions/GeneralMenuActions.cpp | 2 +- .../GeneralMenuActions/GeneralMenuActions.h | 2 +- .../NodeGroupActionsMenuGroup.cpp | 2 +- .../NodeGroupActionsMenuGroup.h | 2 +- .../NodeGroupContextMenuAction.h | 2 +- .../NodeGroupContextMenuActions.cpp | 2 +- .../NodeGroupContextMenuActions.h | 2 +- .../NodeMenuActions/NodeContextMenuAction.h | 2 +- .../NodeMenuActions/NodeContextMenuActions.cpp | 2 +- .../NodeMenuActions/NodeContextMenuActions.h | 2 +- .../SceneMenuActions/SceneActionsMenuGroup.cpp | 2 +- .../SceneMenuActions/SceneActionsMenuGroup.h | 2 +- .../SceneMenuActions/SceneContextMenuAction.h | 2 +- .../SceneContextMenuActions.cpp | 2 +- .../SceneMenuActions/SceneContextMenuActions.h | 2 +- .../SlotMenuActions/SlotContextMenuAction.h | 2 +- .../SlotMenuActions/SlotContextMenuActions.cpp | 2 +- .../SlotMenuActions/SlotContextMenuActions.h | 2 +- .../ContextMenus/BookmarkContextMenu.cpp | 2 +- .../ContextMenus/BookmarkContextMenu.h | 2 +- .../CollapsedNodeGroupContextMenu.cpp | 2 +- .../CollapsedNodeGroupContextMenu.h | 2 +- .../ContextMenus/CommentContextMenu.cpp | 2 +- .../ContextMenus/CommentContextMenu.h | 2 +- .../ContextMenus/ConnectionContextMenu.cpp | 2 +- .../ContextMenus/ConnectionContextMenu.h | 2 +- .../ContextMenus/NodeContextMenu.cpp | 2 +- .../ContextMenus/NodeContextMenu.h | 2 +- .../ContextMenus/NodeGroupContextMenu.cpp | 2 +- .../ContextMenus/NodeGroupContextMenu.h | 2 +- .../ContextMenus/SceneContextMenu.cpp | 2 +- .../ContextMenus/SceneContextMenu.h | 2 +- .../ContextMenus/SlotContextMenu.cpp | 2 +- .../ContextMenus/SlotContextMenu.h | 2 +- .../EditorContextMenu/EditorContextMenu.cpp | 2 +- .../EditorContextMenu/EditorContextMenu.h | 2 +- .../GraphCanvasAssetEditorMainWindow.cpp | 2 +- .../GraphCanvasAssetEditorMainWindow.h | 2 +- .../GraphCanvasEditorCentralWidget.cpp | 2 +- .../GraphCanvasEditorCentralWidget.h | 2 +- .../GraphCanvasEditorDockWidget.cpp | 2 +- .../GraphCanvasEditorDockWidget.h | 2 +- .../GraphCanvasGraphicsView.cpp | 2 +- .../GraphCanvasGraphicsView.h | 2 +- .../Widgets/GraphCanvasMimeContainer.cpp | 2 +- .../Widgets/GraphCanvasMimeContainer.h | 2 +- .../Widgets/GraphCanvasMimeEvent.cpp | 2 +- .../GraphCanvas/Widgets/GraphCanvasMimeEvent.h | 2 +- .../Widgets/GraphCanvasTreeCategorizer.cpp | 2 +- .../Widgets/GraphCanvasTreeCategorizer.h | 2 +- .../Widgets/GraphCanvasTreeItem.cpp | 2 +- .../GraphCanvas/Widgets/GraphCanvasTreeItem.h | 2 +- .../Widgets/GraphCanvasTreeModel.cpp | 2 +- .../GraphCanvas/Widgets/GraphCanvasTreeModel.h | 2 +- .../MimeEvents/CreateSplicingNodeMimeEvent.cpp | 2 +- .../MimeEvents/CreateSplicingNodeMimeEvent.h | 2 +- .../MiniMapGraphicsView.cpp | 2 +- .../MiniMapGraphicsView/MiniMapGraphicsView.h | 2 +- .../Model/NodePaletteSortFilterProxyModel.cpp | 2 +- .../Model/NodePaletteSortFilterProxyModel.h | 2 +- .../NodePalette/NodePaletteDockWidget.cpp | 2 +- .../NodePalette/NodePaletteDockWidget.h | 2 +- .../NodePalette/NodePaletteTreeView.cpp | 2 +- .../Widgets/NodePalette/NodePaletteTreeView.h | 2 +- .../Widgets/NodePalette/NodePaletteWidget.cpp | 2 +- .../Widgets/NodePalette/NodePaletteWidget.h | 2 +- .../TreeItems/DraggableNodePaletteTreeItem.cpp | 2 +- .../TreeItems/DraggableNodePaletteTreeItem.h | 2 +- .../IconDecoratedNodePaletteTreeItem.cpp | 2 +- .../IconDecoratedNodePaletteTreeItem.h | 2 +- .../TreeItems/NodePaletteTreeItem.cpp | 2 +- .../TreeItems/NodePaletteTreeItem.h | 2 +- .../GraphCanvas/Widgets/NodePropertyBus.h | 2 +- .../GraphCanvas/Widgets/Resources/Resources.h | 2 +- .../GenericComboBoxDelegate.cpp | 2 +- .../GenericComboBoxDelegate.h | 2 +- .../IconDecoratedNameDelegate.cpp | 2 +- .../IconDecoratedNameDelegate.h | 2 +- .../ToastNotification/ToastNotification.cpp | 2 +- .../ToastNotification/ToastNotification.h | 2 +- Gems/GraphCanvas/Code/graphcanvas_files.cmake | 2 +- .../Code/graphcanvas_staticlib_files.cmake | 2 +- Gems/GraphCanvas/Code/precompiled.h | 2 +- Gems/GraphModel/CMakeLists.txt | 2 +- Gems/GraphModel/Code/CMakeLists.txt | 2 +- .../Code/Include/GraphModel/GraphModelBus.h | 2 +- .../Integration/BooleanDataInterface.h | 2 +- .../GraphModel/Integration/EditorMainWindow.h | 2 +- .../Integration/FloatDataInterface.h | 2 +- .../Integration/GraphCanvasMetadata.h | 2 +- .../GraphModel/Integration/GraphController.h | 2 +- .../Integration/GraphControllerManager.h | 2 +- .../Include/GraphModel/Integration/Helpers.h | 2 +- .../Integration/IntegerDataInterface.h | 2 +- .../GraphModel/Integration/IntegrationBus.h | 2 +- .../NodePalette/GraphCanvasNodePaletteItems.h | 2 +- .../NodePalette/InputOutputNodePaletteItem.h | 2 +- .../NodePalette/ModuleNodePaletteItem.h | 2 +- .../NodePalette/StandardNodePaletteItem.h | 2 +- .../Integration/ReadOnlyDataInterface.h | 2 +- .../Integration/StringDataInterface.h | 2 +- .../Integration/ThumbnailImageItem.h | 2 +- .../GraphModel/Integration/ThumbnailItem.h | 2 +- .../Integration/VectorDataInterface.inl | 2 +- .../Code/Include/GraphModel/Model/Common.h | 2 +- .../Code/Include/GraphModel/Model/Connection.h | 2 +- .../Code/Include/GraphModel/Model/DataType.h | 2 +- .../Code/Include/GraphModel/Model/Graph.h | 2 +- .../Include/GraphModel/Model/GraphElement.h | 2 +- .../Include/GraphModel/Model/IGraphContext.h | 2 +- .../GraphModel/Model/Module/InputOutputNodes.h | 2 +- .../Model/Module/ModuleGraphManager.h | 2 +- .../GraphModel/Model/Module/ModuleNode.h | 2 +- .../Code/Include/GraphModel/Model/Node.h | 2 +- .../Code/Include/GraphModel/Model/Slot.h | 2 +- .../Code/Source/GraphModelModule.cpp | 2 +- .../Code/Source/GraphModelSystemComponent.cpp | 2 +- .../Code/Source/GraphModelSystemComponent.h | 2 +- .../Integration/BooleanDataInterface.cpp | 2 +- .../Source/Integration/EditorMainWindow.cpp | 2 +- .../Source/Integration/FloatDataInterface.cpp | 2 +- .../Source/Integration/GraphCanvasMetadata.cpp | 2 +- .../Source/Integration/GraphController.cpp | 2 +- .../Integration/GraphControllerManager.cpp | 2 +- .../Integration/IntegerDataInterface.cpp | 2 +- .../GraphCanvasNodePaletteItems.cpp | 2 +- .../Integration/ReadOnlyDataInterface.cpp | 2 +- .../Source/Integration/StringDataInterface.cpp | 2 +- .../Source/Integration/ThumbnailImageItem.cpp | 2 +- .../Code/Source/Integration/ThumbnailItem.cpp | 2 +- .../Code/Source/Model/Connection.cpp | 2 +- Gems/GraphModel/Code/Source/Model/DataType.cpp | 2 +- Gems/GraphModel/Code/Source/Model/Graph.cpp | 2 +- .../Code/Source/Model/GraphElement.cpp | 2 +- .../Source/Model/Module/InputOutputNodes.cpp | 2 +- .../Source/Model/Module/ModuleGraphManager.cpp | 2 +- .../Code/Source/Model/Module/ModuleNode.cpp | 2 +- Gems/GraphModel/Code/Source/Model/Node.cpp | 2 +- Gems/GraphModel/Code/Source/Model/Slot.cpp | 2 +- .../Code/Tests/GraphModelIntegrationTest.cpp | 2 +- .../Tests/GraphModelPythonBindingsTest.cpp | 2 +- Gems/GraphModel/Code/Tests/MockGraphCanvas.cpp | 2 +- Gems/GraphModel/Code/Tests/MockGraphCanvas.h | 2 +- Gems/GraphModel/Code/Tests/TestEnvironment.cpp | 2 +- Gems/GraphModel/Code/Tests/TestEnvironment.h | 2 +- .../Code/graphmodel_editor_files.cmake | 2 +- .../Code/graphmodel_editor_static_files.cmake | 2 +- .../Code/graphmodel_tests_editor_files.cmake | 2 +- Gems/HttpRequestor/CMakeLists.txt | 2 +- Gems/HttpRequestor/Code/CMakeLists.txt | 2 +- .../HttpRequestor/HttpRequestParameters.h | 2 +- .../Include/HttpRequestor/HttpRequestorBus.h | 2 +- .../HttpRequestor/HttpTextRequestParameters.h | 2 +- .../Code/Include/HttpRequestor/HttpTypes.h | 2 +- .../Code/Source/ComponentStub.cpp | 2 +- .../Code/Source/HttpRequestManager.cpp | 2 +- .../Code/Source/HttpRequestManager.h | 2 +- .../Code/Source/HttpRequestorModule.cpp | 2 +- .../Source/HttpRequestorSystemComponent.cpp | 2 +- .../Code/Source/HttpRequestorSystemComponent.h | 2 +- .../Code/Source/HttpRequestor_precompiled.h | 2 +- .../Android/httprequestor_android.cmake | 2 +- .../Platform/Linux/httprequestor_linux.cmake | 2 +- .../Platform/Mac/httprequestor_mac.cmake | 2 +- .../Windows/httprequestor_windows.cmake | 2 +- .../Platform/iOS/httprequestor_ios.cmake | 2 +- .../Code/Tests/HttpRequestorTest.cpp | 2 +- .../Code/httprequestor_files.cmake | 2 +- .../Code/httprequestor_shared_files.cmake | 2 +- .../Code/httprequestor_tests_files.cmake | 2 +- .../Code/lmbraws_unsupported_files.cmake | 2 +- Gems/ImGui/CMakeLists.txt | 2 +- Gems/ImGui/Code/CMakeLists.txt | 2 +- .../Code/Editor/ImGuiEditorWindowModule.cpp | 2 +- Gems/ImGui/Code/Include/ImGuiBus.h | 2 +- Gems/ImGui/Code/Include/ImGuiContextScope.h | 2 +- .../ImGui/Code/Include/ImGuiLYCurveEditorBus.h | 2 +- .../Include/LYImGuiUtils/HistogramContainer.h | 2 +- .../Include/LYImGuiUtils/ImGuiDrawHelpers.h | 2 +- Gems/ImGui/Code/Include/OtherActiveImGuiBus.h | 2 +- Gems/ImGui/Code/Source/ImGuiColorDefines.h | 2 +- Gems/ImGui/Code/Source/ImGuiGem.cpp | 2 +- Gems/ImGui/Code/Source/ImGuiGem.h | 2 +- Gems/ImGui/Code/Source/ImGuiManager.cpp | 2 +- Gems/ImGui/Code/Source/ImGuiManager.h | 2 +- Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp | 2 +- Gems/ImGui/Code/Source/ImGui_precompiled.h | 2 +- .../LYCommonMenu/ImGuiLYAssetExplorer.cpp | 2 +- .../Source/LYCommonMenu/ImGuiLYAssetExplorer.h | 2 +- .../LYCommonMenu/ImGuiLYCameraMonitor.cpp | 2 +- .../Source/LYCommonMenu/ImGuiLYCameraMonitor.h | 2 +- .../Source/LYCommonMenu/ImGuiLYCommonMenu.cpp | 2 +- .../Source/LYCommonMenu/ImGuiLYCommonMenu.h | 2 +- .../Source/LYCommonMenu/ImGuiLYCurveEditor.cpp | 2 +- .../Source/LYCommonMenu/ImGuiLYCurveEditor.h | 2 +- .../LYCommonMenu/ImGuiLYEntityOutliner.cpp | 2 +- .../LYCommonMenu/ImGuiLYEntityOutliner.h | 2 +- .../Source/LYImGuiUtils/HistogramContainer.cpp | 2 +- .../Source/LYImGuiUtils/ImGuiDrawHelpers.cpp | 2 +- .../Platform/Android/imgui_android.cmake | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Source/Platform/Linux/imgui_linux.cmake | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Source/Platform/Mac/imgui_mac.cmake | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/imgui_windows.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Code/Source/Platform/iOS/imgui_ios.cmake | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Gems/ImGui/Code/imgui_common_files.cmake | 2 +- Gems/ImGui/Code/imgui_editor_files.cmake | 2 +- Gems/ImGui/Code/imgui_game_files.cmake | 2 +- Gems/ImGui/Code/imgui_game_no-op_files.cmake | 2 +- Gems/ImGui/Code/imgui_lib_files.cmake | 2 +- .../Code/imgui_lyutils_static_files.cmake | 2 +- Gems/ImGui/Code/imgui_shared_files.cmake | 2 +- .../External/ImGui/v1.82/imgui/imgui_user.h | 2 +- .../External/ImGui/v1.82/imgui/imgui_user.inl | 2 +- Gems/InAppPurchases/CMakeLists.txt | 2 +- Gems/InAppPurchases/Code/CMakeLists.txt | 2 +- .../Include/InAppPurchases/InAppPurchasesBus.h | 2 +- .../InAppPurchases/InAppPurchasesInterface.h | 2 +- .../InAppPurchases/InAppPurchasesResponseBus.h | 2 +- .../Code/Source/InAppPurchasesInterface.cpp | 2 +- .../Code/Source/InAppPurchasesModule.cpp | 2 +- .../Code/Source/InAppPurchasesModule.h | 2 +- .../Source/InAppPurchasesSystemComponent.cpp | 2 +- .../Source/InAppPurchasesSystemComponent.h | 2 +- .../Code/Source/InAppPurchases_precompiled.h | 2 +- .../Platform/Android/InAppPurchasesAndroid.cpp | 2 +- .../Platform/Android/InAppPurchasesAndroid.h | 2 +- .../lumberyard/iap/LumberyardInAppBilling.java | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Common/Apple/InAppPurchasesApple.h | 2 +- .../Common/Apple/InAppPurchasesApple.mm | 2 +- .../Common/Apple/InAppPurchasesDelegate.h | 2 +- .../Common/Apple/InAppPurchasesDelegate.mm | 2 +- .../InAppPurchases_Unimplemented.cpp | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Code/inapppurchases_files.cmake | 2 +- .../Code/inapppurchases_shared_files.cmake | 2 +- Gems/LandscapeCanvas/CMakeLists.txt | 2 +- Gems/LandscapeCanvas/Code/CMakeLists.txt | 2 +- .../LandscapeCanvas/LandscapeCanvasBus.h | 2 +- .../Code/Source/Editor/Core/Core.h | 2 +- .../Code/Source/Editor/Core/DataTypes.cpp | 2 +- .../Code/Source/Editor/Core/DataTypes.h | 2 +- .../Code/Source/Editor/Core/GraphContext.cpp | 2 +- .../Code/Source/Editor/Core/GraphContext.h | 2 +- .../Code/Source/Editor/MainWindow.cpp | 2 +- .../Code/Source/Editor/MainWindow.h | 2 +- .../Editor/Menus/LayerExtenderContextMenu.cpp | 2 +- .../Editor/Menus/LayerExtenderContextMenu.h | 2 +- .../Source/Editor/Menus/NodeContextMenu.cpp | 2 +- .../Code/Source/Editor/Menus/NodeContextMenu.h | 2 +- .../Editor/Menus/SceneContextMenuActions.cpp | 2 +- .../Editor/Menus/SceneContextMenuActions.h | 2 +- .../Nodes/AreaFilters/AltitudeFilterNode.cpp | 2 +- .../Nodes/AreaFilters/AltitudeFilterNode.h | 2 +- .../Nodes/AreaFilters/BaseAreaFilterNode.cpp | 2 +- .../Nodes/AreaFilters/BaseAreaFilterNode.h | 2 +- .../AreaFilters/DistanceBetweenFilterNode.cpp | 2 +- .../AreaFilters/DistanceBetweenFilterNode.h | 2 +- .../AreaFilters/DistributionFilterNode.cpp | 2 +- .../Nodes/AreaFilters/DistributionFilterNode.h | 2 +- .../ShapeIntersectionFilterNode.cpp | 2 +- .../AreaFilters/ShapeIntersectionFilterNode.h | 2 +- .../Nodes/AreaFilters/SlopeFilterNode.cpp | 2 +- .../Editor/Nodes/AreaFilters/SlopeFilterNode.h | 2 +- .../AreaFilters/SurfaceMaskDepthFilterNode.cpp | 2 +- .../AreaFilters/SurfaceMaskDepthFilterNode.h | 2 +- .../AreaFilters/SurfaceMaskFilterNode.cpp | 2 +- .../Nodes/AreaFilters/SurfaceMaskFilterNode.h | 2 +- .../AreaModifiers/BaseAreaModifierNode.cpp | 2 +- .../Nodes/AreaModifiers/BaseAreaModifierNode.h | 2 +- .../AreaModifiers/PositionModifierNode.cpp | 2 +- .../Nodes/AreaModifiers/PositionModifierNode.h | 2 +- .../AreaModifiers/RotationModifierNode.cpp | 2 +- .../Nodes/AreaModifiers/RotationModifierNode.h | 2 +- .../Nodes/AreaModifiers/ScaleModifierNode.cpp | 2 +- .../Nodes/AreaModifiers/ScaleModifierNode.h | 2 +- .../SlopeAlignmentModifierNode.cpp | 2 +- .../AreaModifiers/SlopeAlignmentModifierNode.h | 2 +- .../AreaSelectors/AssetWeightSelectorNode.cpp | 2 +- .../AreaSelectors/AssetWeightSelectorNode.h | 2 +- .../Editor/Nodes/Areas/AreaBlenderNode.cpp | 2 +- .../Editor/Nodes/Areas/AreaBlenderNode.h | 2 +- .../Source/Editor/Nodes/Areas/BaseAreaNode.cpp | 2 +- .../Source/Editor/Nodes/Areas/BaseAreaNode.h | 2 +- .../Editor/Nodes/Areas/BlockerAreaNode.cpp | 2 +- .../Editor/Nodes/Areas/BlockerAreaNode.h | 2 +- .../Editor/Nodes/Areas/MeshBlockerAreaNode.cpp | 2 +- .../Editor/Nodes/Areas/MeshBlockerAreaNode.h | 2 +- .../Editor/Nodes/Areas/SpawnerAreaNode.cpp | 2 +- .../Editor/Nodes/Areas/SpawnerAreaNode.h | 2 +- .../Code/Source/Editor/Nodes/BaseNode.cpp | 2 +- .../Code/Source/Editor/Nodes/BaseNode.h | 2 +- .../BaseGradientModifierNode.cpp | 2 +- .../BaseGradientModifierNode.h | 2 +- .../DitherGradientModifierNode.cpp | 2 +- .../DitherGradientModifierNode.h | 2 +- .../GradientModifiers/GradientMixerNode.cpp | 2 +- .../GradientModifiers/GradientMixerNode.h | 2 +- .../InvertGradientModifierNode.cpp | 2 +- .../InvertGradientModifierNode.h | 2 +- .../LevelsGradientModifierNode.cpp | 2 +- .../LevelsGradientModifierNode.h | 2 +- .../PosterizeGradientModifierNode.cpp | 2 +- .../PosterizeGradientModifierNode.h | 2 +- .../SmoothStepGradientModifierNode.cpp | 2 +- .../SmoothStepGradientModifierNode.h | 2 +- .../ThresholdGradientModifierNode.cpp | 2 +- .../ThresholdGradientModifierNode.h | 2 +- .../Nodes/Gradients/AltitudeGradientNode.cpp | 2 +- .../Nodes/Gradients/AltitudeGradientNode.h | 2 +- .../Nodes/Gradients/BaseGradientNode.cpp | 2 +- .../Editor/Nodes/Gradients/BaseGradientNode.h | 2 +- .../Nodes/Gradients/ConstantGradientNode.cpp | 2 +- .../Nodes/Gradients/ConstantGradientNode.h | 2 +- .../Nodes/Gradients/FastNoiseGradientNode.cpp | 2 +- .../Nodes/Gradients/FastNoiseGradientNode.h | 2 +- .../Nodes/Gradients/ImageGradientNode.cpp | 2 +- .../Editor/Nodes/Gradients/ImageGradientNode.h | 2 +- .../Gradients/PerlinNoiseGradientNode.cpp | 2 +- .../Nodes/Gradients/PerlinNoiseGradientNode.h | 2 +- .../Gradients/RandomNoiseGradientNode.cpp | 2 +- .../Nodes/Gradients/RandomNoiseGradientNode.h | 2 +- .../Gradients/ShapeAreaFalloffGradientNode.cpp | 2 +- .../Gradients/ShapeAreaFalloffGradientNode.h | 2 +- .../Nodes/Gradients/SlopeGradientNode.cpp | 2 +- .../Editor/Nodes/Gradients/SlopeGradientNode.h | 2 +- .../Gradients/SurfaceMaskGradientNode.cpp | 2 +- .../Nodes/Gradients/SurfaceMaskGradientNode.h | 2 +- .../Editor/Nodes/Shapes/BaseShapeNode.cpp | 2 +- .../Source/Editor/Nodes/Shapes/BaseShapeNode.h | 2 +- .../Editor/Nodes/Shapes/BoxShapeNode.cpp | 2 +- .../Source/Editor/Nodes/Shapes/BoxShapeNode.h | 2 +- .../Editor/Nodes/Shapes/CapsuleShapeNode.cpp | 2 +- .../Editor/Nodes/Shapes/CapsuleShapeNode.h | 2 +- .../Editor/Nodes/Shapes/CompoundShapeNode.cpp | 2 +- .../Editor/Nodes/Shapes/CompoundShapeNode.h | 2 +- .../Editor/Nodes/Shapes/CylinderShapeNode.cpp | 2 +- .../Editor/Nodes/Shapes/CylinderShapeNode.h | 2 +- .../Editor/Nodes/Shapes/DiskShapeNode.cpp | 2 +- .../Source/Editor/Nodes/Shapes/DiskShapeNode.h | 2 +- .../Nodes/Shapes/PolygonPrismShapeNode.cpp | 2 +- .../Nodes/Shapes/PolygonPrismShapeNode.h | 2 +- .../Editor/Nodes/Shapes/SphereShapeNode.cpp | 2 +- .../Editor/Nodes/Shapes/SphereShapeNode.h | 2 +- .../Editor/Nodes/Shapes/TubeShapeNode.cpp | 2 +- .../Source/Editor/Nodes/Shapes/TubeShapeNode.h | 2 +- .../Nodes/UI/GradientPreviewThumbnailItem.cpp | 2 +- .../Nodes/UI/GradientPreviewThumbnailItem.h | 2 +- .../Source/EditorLandscapeCanvasComponent.cpp | 2 +- .../Source/EditorLandscapeCanvasComponent.h | 2 +- .../Source/LandscapeCanvasEditorModule.cpp | 2 +- .../Code/Source/LandscapeCanvasEditorModule.h | 2 +- .../Source/LandscapeCanvasSystemComponent.cpp | 2 +- .../Source/LandscapeCanvasSystemComponent.h | 2 +- .../LandscapeCanvasPythonBindingsTest.cpp | 2 +- .../Code/Tests/LandscapeCanvasTest.cpp | 2 +- .../Code/landscapecanvas_editor_files.cmake | 2 +- .../landscapecanvas_editor_static_files.cmake | 2 +- .../landscapecanvas_tests_editor_files.cmake | 2 +- Gems/LmbrCentral/CMakeLists.txt | 2 +- Gems/LmbrCentral/Code/CMakeLists.txt | 2 +- .../Android/LmbrCentral_Traits_Android.h | 2 +- .../Android/LmbrCentral_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Platform/Linux/LmbrCentral_Traits_Linux.h | 2 +- .../Linux/LmbrCentral_Traits_Platform.h | 2 +- .../Code/Platform/Linux/lrelease_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Platform/Mac/LmbrCentral_Traits_Mac.h | 2 +- .../Platform/Mac/LmbrCentral_Traits_Platform.h | 2 +- .../Code/Platform/Mac/lrelease_mac.cmake | 2 +- .../Code/Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/LmbrCentral_Traits_Platform.h | 2 +- .../Windows/LmbrCentral_Traits_Windows.h | 2 +- .../Platform/Windows/lrelease_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/LmbrCentral_Traits_Platform.h | 2 +- .../Code/Platform/iOS/LmbrCentral_Traits_iOS.h | 2 +- .../Code/Platform/iOS/platform_ios_files.cmake | 2 +- .../Ai/EditorNavigationAreaComponent.cpp | 2 +- .../Source/Ai/EditorNavigationAreaComponent.h | 2 +- .../Ai/EditorNavigationSeedComponent.cpp | 2 +- .../Source/Ai/EditorNavigationSeedComponent.h | 2 +- .../Code/Source/Ai/EditorNavigationUtil.cpp | 2 +- .../Code/Source/Ai/EditorNavigationUtil.h | 2 +- .../Code/Source/Ai/NavigationComponent.cpp | 2 +- .../Code/Source/Ai/NavigationComponent.h | 2 +- .../Source/Ai/NavigationSystemComponent.cpp | 2 +- .../Code/Source/Ai/NavigationSystemComponent.h | 2 +- .../Source/Asset/AssetSystemDebugComponent.cpp | 2 +- .../Source/Asset/AssetSystemDebugComponent.h | 2 +- .../Audio/AudioAreaEnvironmentComponent.cpp | 2 +- .../Audio/AudioAreaEnvironmentComponent.h | 2 +- .../Source/Audio/AudioEnvironmentComponent.cpp | 2 +- .../Source/Audio/AudioEnvironmentComponent.h | 2 +- .../Source/Audio/AudioListenerComponent.cpp | 2 +- .../Code/Source/Audio/AudioListenerComponent.h | 2 +- .../Audio/AudioMultiPositionComponent.cpp | 2 +- .../Source/Audio/AudioMultiPositionComponent.h | 2 +- .../Source/Audio/AudioPreloadComponent.cpp | 2 +- .../Code/Source/Audio/AudioPreloadComponent.h | 2 +- .../Code/Source/Audio/AudioProxyComponent.cpp | 2 +- .../Code/Source/Audio/AudioProxyComponent.h | 2 +- .../Code/Source/Audio/AudioRtpcComponent.cpp | 2 +- .../Code/Source/Audio/AudioRtpcComponent.h | 2 +- .../Code/Source/Audio/AudioSwitchComponent.cpp | 2 +- .../Code/Source/Audio/AudioSwitchComponent.h | 2 +- .../Code/Source/Audio/AudioSystemComponent.cpp | 2 +- .../Code/Source/Audio/AudioSystemComponent.h | 2 +- .../Source/Audio/AudioTriggerComponent.cpp | 2 +- .../Code/Source/Audio/AudioTriggerComponent.h | 2 +- .../EditorAudioAreaEnvironmentComponent.cpp | 2 +- .../EditorAudioAreaEnvironmentComponent.h | 2 +- .../Audio/EditorAudioEnvironmentComponent.cpp | 2 +- .../Audio/EditorAudioEnvironmentComponent.h | 2 +- .../Audio/EditorAudioListenerComponent.cpp | 2 +- .../Audio/EditorAudioListenerComponent.h | 2 +- .../EditorAudioMultiPositionComponent.cpp | 2 +- .../Audio/EditorAudioMultiPositionComponent.h | 2 +- .../Audio/EditorAudioPreloadComponent.cpp | 2 +- .../Source/Audio/EditorAudioPreloadComponent.h | 2 +- .../Source/Audio/EditorAudioRtpcComponent.cpp | 2 +- .../Source/Audio/EditorAudioRtpcComponent.h | 2 +- .../Audio/EditorAudioSwitchComponent.cpp | 2 +- .../Source/Audio/EditorAudioSwitchComponent.h | 2 +- .../Audio/EditorAudioTriggerComponent.cpp | 2 +- .../Source/Audio/EditorAudioTriggerComponent.h | 2 +- .../BenchmarkAssetBuilderComponent.cpp | 2 +- .../BenchmarkAssetBuilderComponent.h | 2 +- .../BenchmarkAssetBuilderWorker.cpp | 2 +- .../BenchmarkAssetBuilderWorker.h | 2 +- .../CfgBuilderWorker/CfgBuilderWorker.cpp | 2 +- .../CfgBuilderWorker/CfgBuilderWorker.h | 2 +- .../CopyDependencyBuilderComponent.cpp | 2 +- .../CopyDependencyBuilderComponent.h | 2 +- .../CopyDependencyBuilderWorker.cpp | 2 +- .../CopyDependencyBuilderWorker.h | 2 +- .../EmfxWorkspaceBuilderWorker.cpp | 2 +- .../EmfxWorkspaceBuilderWorker.h | 2 +- .../FontBuilderWorker/FontBuilderWorker.cpp | 2 +- .../FontBuilderWorker/FontBuilderWorker.h | 2 +- .../SchemaBuilderWorker.cpp | 2 +- .../SchemaBuilderWorker/SchemaBuilderWorker.h | 2 +- .../SchemaBuilderWorker/SchemaUtils.cpp | 2 +- .../SchemaBuilderWorker/SchemaUtils.h | 2 +- .../XmlBuilderWorker/XmlBuilderWorker.cpp | 2 +- .../XmlBuilderWorker/XmlBuilderWorker.h | 2 +- .../XmlFormattedAssetBuilderWorker.cpp | 2 +- .../XmlFormattedAssetBuilderWorker.h | 2 +- .../DependencyBuilderComponent.cpp | 2 +- .../DependencyBuilderComponent.h | 2 +- .../DependencyBuilderWorker.cpp | 2 +- .../DependencyBuilderWorker.h | 2 +- .../SeedBuilderWorker/SeedBuilderWorker.cpp | 2 +- .../SeedBuilderWorker/SeedBuilderWorker.h | 2 +- .../LevelBuilder/LevelBuilderComponent.cpp | 2 +- .../LevelBuilder/LevelBuilderComponent.h | 2 +- .../LevelBuilder/LevelBuilderWorker.cpp | 2 +- .../Builders/LevelBuilder/LevelBuilderWorker.h | 2 +- .../LuaBuilder/LuaBuilderComponent.cpp | 2 +- .../Builders/LuaBuilder/LuaBuilderComponent.h | 2 +- .../Builders/LuaBuilder/LuaBuilderWorker.cpp | 2 +- .../Builders/LuaBuilder/LuaBuilderWorker.h | 2 +- .../Source/Builders/LuaBuilder/LuaHelpers.cpp | 2 +- .../Source/Builders/LuaBuilder/LuaHelpers.h | 2 +- .../MaterialBuilderComponent.cpp | 2 +- .../MaterialBuilder/MaterialBuilderComponent.h | 2 +- .../SliceBuilder/SliceBuilderComponent.cpp | 2 +- .../SliceBuilder/SliceBuilderComponent.h | 2 +- .../SliceBuilder/SliceBuilderWorker.cpp | 2 +- .../Builders/SliceBuilder/SliceBuilderWorker.h | 2 +- .../TranslationBuilderComponent.cpp | 2 +- .../TranslationBuilderComponent.h | 2 +- .../Bundling/BundlingSystemComponent.cpp | 2 +- .../Source/Bundling/BundlingSystemComponent.h | 2 +- .../Source/Editor/EditorCommentComponent.cpp | 2 +- .../Source/Editor/EditorCommentComponent.h | 2 +- .../Source/Events/ReflectScriptableEvents.cpp | 2 +- .../Source/Events/ReflectScriptableEvents.h | 2 +- .../Geometry/GeometrySystemComponent.cpp | 2 +- .../Source/Geometry/GeometrySystemComponent.h | 2 +- Gems/LmbrCentral/Code/Source/LmbrCentral.cpp | 2 +- Gems/LmbrCentral/Code/Source/LmbrCentral.h | 2 +- .../Code/Source/LmbrCentralEditor.cpp | 2 +- .../Code/Source/LmbrCentralEditor.h | 2 +- .../Code/Source/LmbrCentral_precompiled.h | 2 +- .../Rendering/EntityDebugDisplayComponent.cpp | 2 +- .../Rendering/EntityDebugDisplayComponent.h | 2 +- .../Source/Scripting/EditorLookAtComponent.cpp | 2 +- .../Source/Scripting/EditorLookAtComponent.h | 2 +- .../EditorRandomTimedSpawnerComponent.cpp | 2 +- .../EditorRandomTimedSpawnerComponent.h | 2 +- .../Scripting/EditorSpawnerComponent.cpp | 2 +- .../Source/Scripting/EditorSpawnerComponent.h | 2 +- .../Source/Scripting/EditorTagComponent.cpp | 2 +- .../Code/Source/Scripting/EditorTagComponent.h | 2 +- .../Code/Source/Scripting/LookAtComponent.cpp | 2 +- .../Code/Source/Scripting/LookAtComponent.h | 2 +- .../Scripting/RandomTimedSpawnerComponent.cpp | 2 +- .../Scripting/RandomTimedSpawnerComponent.h | 2 +- .../Source/Scripting/SimpleStateComponent.cpp | 2 +- .../Source/Scripting/SimpleStateComponent.h | 2 +- .../Code/Source/Scripting/SpawnerComponent.cpp | 2 +- .../Code/Source/Scripting/SpawnerComponent.h | 2 +- .../Code/Source/Scripting/TagComponent.cpp | 2 +- .../Code/Source/Scripting/TagComponent.h | 2 +- .../LmbrCentral/Code/Source/Shape/BoxShape.cpp | 2 +- Gems/LmbrCentral/Code/Source/Shape/BoxShape.h | 2 +- .../Code/Source/Shape/BoxShapeComponent.cpp | 2 +- .../Code/Source/Shape/BoxShapeComponent.h | 2 +- .../Code/Source/Shape/CapsuleShape.cpp | 2 +- .../Code/Source/Shape/CapsuleShape.h | 2 +- .../Source/Shape/CapsuleShapeComponent.cpp | 2 +- .../Code/Source/Shape/CapsuleShapeComponent.h | 2 +- .../Source/Shape/CompoundShapeComponent.cpp | 2 +- .../Code/Source/Shape/CompoundShapeComponent.h | 2 +- .../Code/Source/Shape/CylinderShape.cpp | 2 +- .../Code/Source/Shape/CylinderShape.h | 2 +- .../Source/Shape/CylinderShapeComponent.cpp | 2 +- .../Code/Source/Shape/CylinderShapeComponent.h | 2 +- .../Code/Source/Shape/DiskShape.cpp | 2 +- Gems/LmbrCentral/Code/Source/Shape/DiskShape.h | 2 +- .../Code/Source/Shape/DiskShapeComponent.cpp | 2 +- .../Code/Source/Shape/DiskShapeComponent.h | 2 +- .../Source/Shape/EditorBaseShapeComponent.cpp | 2 +- .../Source/Shape/EditorBaseShapeComponent.h | 2 +- .../Source/Shape/EditorBoxShapeComponent.cpp | 2 +- .../Source/Shape/EditorBoxShapeComponent.h | 2 +- .../Shape/EditorCapsuleShapeComponent.cpp | 2 +- .../Source/Shape/EditorCapsuleShapeComponent.h | 2 +- .../Shape/EditorCompoundShapeComponent.cpp | 2 +- .../Shape/EditorCompoundShapeComponent.h | 2 +- .../Shape/EditorCylinderShapeComponent.cpp | 2 +- .../Shape/EditorCylinderShapeComponent.h | 2 +- .../Source/Shape/EditorDiskShapeComponent.cpp | 2 +- .../Source/Shape/EditorDiskShapeComponent.h | 2 +- .../Shape/EditorPolygonPrismShapeComponent.cpp | 2 +- .../Shape/EditorPolygonPrismShapeComponent.h | 2 +- .../EditorPolygonPrismShapeComponentMode.cpp | 2 +- .../EditorPolygonPrismShapeComponentMode.h | 2 +- .../Source/Shape/EditorQuadShapeComponent.cpp | 2 +- .../Source/Shape/EditorQuadShapeComponent.h | 2 +- .../Shape/EditorShapeComponentConverters.cpp | 2 +- .../Shape/EditorShapeComponentConverters.h | 2 +- .../Shape/EditorSphereShapeComponent.cpp | 2 +- .../Source/Shape/EditorSphereShapeComponent.h | 2 +- .../Source/Shape/EditorSplineComponent.cpp | 2 +- .../Code/Source/Shape/EditorSplineComponent.h | 2 +- .../Source/Shape/EditorSplineComponentMode.cpp | 2 +- .../Source/Shape/EditorSplineComponentMode.h | 2 +- .../Source/Shape/EditorTubeShapeComponent.cpp | 2 +- .../Source/Shape/EditorTubeShapeComponent.h | 2 +- .../Shape/EditorTubeShapeComponentMode.cpp | 2 +- .../Shape/EditorTubeShapeComponentMode.h | 2 +- .../Code/Source/Shape/PolygonPrismShape.cpp | 2 +- .../Code/Source/Shape/PolygonPrismShape.h | 2 +- .../Shape/PolygonPrismShapeComponent.cpp | 2 +- .../Source/Shape/PolygonPrismShapeComponent.h | 2 +- .../Code/Source/Shape/QuadShape.cpp | 2 +- Gems/LmbrCentral/Code/Source/Shape/QuadShape.h | 2 +- .../Code/Source/Shape/QuadShapeComponent.cpp | 2 +- .../Code/Source/Shape/QuadShapeComponent.h | 2 +- .../Code/Source/Shape/ShapeComponent.cpp | 2 +- .../Source/Shape/ShapeComponentConverters.cpp | 2 +- .../Source/Shape/ShapeComponentConverters.h | 2 +- .../Source/Shape/ShapeComponentConverters.inl | 2 +- .../Code/Source/Shape/ShapeDisplay.h | 2 +- .../Code/Source/Shape/ShapeGeometryUtil.cpp | 2 +- .../Code/Source/Shape/ShapeGeometryUtil.h | 2 +- .../Code/Source/Shape/SphereShape.cpp | 2 +- .../Code/Source/Shape/SphereShape.h | 2 +- .../Code/Source/Shape/SphereShapeComponent.cpp | 2 +- .../Code/Source/Shape/SphereShapeComponent.h | 2 +- .../Code/Source/Shape/SplineComponent.cpp | 2 +- .../Code/Source/Shape/SplineComponent.h | 2 +- .../Code/Source/Shape/TubeShape.cpp | 2 +- Gems/LmbrCentral/Code/Source/Shape/TubeShape.h | 2 +- .../Code/Source/Shape/TubeShapeComponent.cpp | 2 +- .../Code/Source/Shape/TubeShapeComponent.h | 2 +- .../Hidden/TextureMipmapAssetTypeInfo.cpp | 2 +- .../Hidden/TextureMipmapAssetTypeInfo.h | 2 +- .../Material/MaterialAssetTypeInfo.cpp | 2 +- .../Unhandled/Material/MaterialAssetTypeInfo.h | 2 +- .../Unhandled/Other/AudioAssetTypeInfo.cpp | 2 +- .../Unhandled/Other/AudioAssetTypeInfo.h | 2 +- .../Other/CharacterPhysicsAssetTypeInfo.cpp | 2 +- .../Other/CharacterPhysicsAssetTypeInfo.h | 2 +- .../EntityPrototypeLibraryAssetTypeInfo.cpp | 2 +- .../EntityPrototypeLibraryAssetTypeInfo.h | 2 +- .../Unhandled/Other/GameTokenAssetTypeInfo.cpp | 2 +- .../Unhandled/Other/GameTokenAssetTypeInfo.h | 2 +- .../Unhandled/Other/GroupAssetTypeInfo.cpp | 2 +- .../Unhandled/Other/GroupAssetTypeInfo.h | 2 +- .../Other/PrefabsLibraryAssetTypeInfo.cpp | 2 +- .../Other/PrefabsLibraryAssetTypeInfo.h | 2 +- .../Texture/SubstanceAssetTypeInfo.cpp | 2 +- .../Unhandled/Texture/SubstanceAssetTypeInfo.h | 2 +- .../Unhandled/Texture/TextureAssetTypeInfo.cpp | 2 +- .../Unhandled/Texture/TextureAssetTypeInfo.h | 2 +- .../Unhandled/UI/EntityIconAssetTypeInfo.cpp | 2 +- .../Unhandled/UI/EntityIconAssetTypeInfo.h | 2 +- .../Source/Unhandled/UI/FontAssetTypeInfo.cpp | 2 +- .../Source/Unhandled/UI/FontAssetTypeInfo.h | 2 +- .../Unhandled/UI/UICanvasAssetTypeInfo.cpp | 2 +- .../Unhandled/UI/UICanvasAssetTypeInfo.h | 2 +- .../Code/Tests/AudioComponentTests.cpp | 2 +- Gems/LmbrCentral/Code/Tests/BoxShapeTest.cpp | 2 +- .../Builders/CopyDependencyBuilderTest.cpp | 2 +- .../Code/Tests/Builders/LevelBuilderTest.cpp | 2 +- .../Code/Tests/Builders/LuaBuilderTests.cpp | 2 +- .../Tests/Builders/MaterialBuilderTests.cpp | 2 +- .../Code/Tests/Builders/SeedBuilderTests.cpp | 2 +- .../Code/Tests/Builders/SliceBuilderTests.cpp | 2 +- .../Tests/BundlingSystemComponentTests.cpp | 2 +- .../Code/Tests/CapsuleShapeTest.cpp | 2 +- .../Code/Tests/CylinderShapeTest.cpp | 2 +- Gems/LmbrCentral/Code/Tests/DiskShapeTest.cpp | 2 +- .../Tests/EditorBoxShapeComponentTests.cpp | 2 +- .../Tests/EditorCapsuleShapeComponentTests.cpp | 2 +- .../EditorCompoundShapeComponentTests.cpp | 2 +- .../EditorCylinderShapeComponentTests.cpp | 2 +- .../EditorPolygonPrismShapeComponentTests.cpp | 2 +- .../Tests/EditorSphereShapeComponentTests.cpp | 2 +- .../Code/Tests/LmbrCentralEditorTest.cpp | 2 +- .../Code/Tests/LmbrCentralReflectionTest.cpp | 2 +- .../Code/Tests/LmbrCentralReflectionTest.h | 2 +- .../LmbrCentral/Code/Tests/LmbrCentralTest.cpp | 2 +- Gems/LmbrCentral/Code/Tests/Lua/test1.lua | 2 +- Gems/LmbrCentral/Code/Tests/Lua/test2.lua | 2 +- .../Tests/Lua/test3_general_dependencies.lua | 2 +- .../Code/Tests/Lua/test4_console_command.lua | 2 +- .../Tests/Lua/test5_whole_line_comment.lua | 2 +- .../Tests/Lua/test6_partial_line_comment.lua | 2 +- .../Code/Tests/Lua/test7_block_comment.lua | 2 +- .../Tests/Lua/test8_negated_block_comment.lua | 2 +- .../Code/Tests/PolygonPrismShapeTest.cpp | 2 +- Gems/LmbrCentral/Code/Tests/QuadShapeTest.cpp | 2 +- .../Code/Tests/ShapeGeometryUtilTest.cpp | 2 +- .../Code/Tests/SpawnerComponentTest.cpp | 2 +- .../LmbrCentral/Code/Tests/SphereShapeTest.cpp | 2 +- .../Code/Tests/SplineComponentTests.cpp | 2 +- Gems/LmbrCentral/Code/Tests/TubeShapeTest.cpp | 2 +- .../include/LmbrCentral/Ai/NavigationAreaBus.h | 2 +- .../LmbrCentral/Ai/NavigationComponentBus.h | 2 +- .../include/LmbrCentral/Ai/NavigationSeedBus.h | 2 +- .../LmbrCentral/Ai/NavigationSystemBus.h | 2 +- .../Animation/AttachmentComponentBus.h | 2 +- .../Animation/SkeletalHierarchyRequestBus.h | 2 +- .../Audio/AudioEnvironmentComponentBus.h | 2 +- .../Audio/AudioListenerComponentBus.h | 2 +- .../Audio/AudioMultiPositionComponentBus.h | 2 +- .../Audio/AudioPreloadComponentBus.h | 2 +- .../LmbrCentral/Audio/AudioProxyComponentBus.h | 2 +- .../LmbrCentral/Audio/AudioRtpcComponentBus.h | 2 +- .../Audio/AudioSwitchComponentBus.h | 2 +- .../Audio/AudioSystemComponentBus.h | 2 +- .../Audio/AudioTriggerComponentBus.h | 2 +- .../Bundling/BundlingSystemComponentBus.h | 2 +- .../Component/EditorWrappedComponentBase.h | 2 +- .../Component/EditorWrappedComponentBase.inl | 2 +- .../LmbrCentral/Dependency/DependencyMonitor.h | 2 +- .../Dependency/DependencyMonitor.inl | 2 +- .../Dependency/DependencyNotificationBus.h | 2 +- .../Geometry/GeometrySystemComponentBus.h | 2 +- .../Physics/ForceVolumeRequestBus.h | 2 +- .../LmbrCentral/Physics/WaterNotificationBus.h | 2 +- .../LmbrCentral/Physics/WindVolumeRequestBus.h | 2 +- .../LmbrCentral/Rendering/DecalComponentBus.h | 2 +- .../Rendering/EditorCameraCorrectionBus.h | 2 +- .../Rendering/EditorLightComponentBus.h | 2 +- .../LmbrCentral/Rendering/GiRegistrationBus.h | 2 +- .../LmbrCentral/Rendering/LensFlareAsset.h | 2 +- .../LmbrCentral/Rendering/LightComponentBus.h | 2 +- .../LmbrCentral/Rendering/MaterialAsset.h | 2 +- .../LmbrCentral/Rendering/MaterialHandle.h | 2 +- .../LmbrCentral/Rendering/MaterialOwnerBus.h | 2 +- .../include/LmbrCentral/Rendering/MeshAsset.h | 2 +- .../Rendering/MeshModificationBus.h | 2 +- .../LmbrCentral/Rendering/RenderBoundsBus.h | 2 +- .../LmbrCentral/Rendering/RenderNodeBus.h | 2 +- .../Scripting/EditorTagComponentBus.h | 2 +- .../Scripting/GameplayNotificationBus.h | 2 +- .../Scripting/RandomTimedSpawnerComponentBus.h | 2 +- .../Scripting/SimpleStateComponentBus.h | 2 +- .../Scripting/SpawnerComponentBus.h | 2 +- .../LmbrCentral/Scripting/TagComponentBus.h | 2 +- .../LmbrCentral/Shape/BoxShapeComponentBus.h | 2 +- .../Shape/CapsuleShapeComponentBus.h | 2 +- .../Shape/CompoundShapeComponentBus.h | 2 +- .../Shape/CylinderShapeComponentBus.h | 2 +- .../LmbrCentral/Shape/DiskShapeComponentBus.h | 2 +- .../EditorPolygonPrismShapeComponentBus.h | 2 +- .../Shape/EditorShapeComponentBus.h | 2 +- .../Shape/EditorSplineComponentBus.h | 2 +- .../Shape/EditorTubeShapeComponentBus.h | 2 +- .../Shape/PolygonPrismShapeComponentBus.h | 2 +- .../LmbrCentral/Shape/QuadShapeComponentBus.h | 2 +- .../LmbrCentral/Shape/ShapeComponentBus.h | 2 +- .../Shape/SphereShapeComponentBus.h | 2 +- .../LmbrCentral/Shape/SplineAttribute.h | 2 +- .../LmbrCentral/Shape/SplineAttribute.inl | 2 +- .../LmbrCentral/Shape/SplineComponentBus.h | 2 +- .../LmbrCentral/Shape/TubeShapeComponentBus.h | 2 +- .../Terrain/TerrainSystemRequestBus.h | 2 +- .../Code/lmbrcentral_editor_files.cmake | 2 +- .../Code/lmbrcentral_editor_shared_files.cmake | 2 +- .../Code/lmbrcentral_editor_tests_files.cmake | 2 +- Gems/LmbrCentral/Code/lmbrcentral_files.cmake | 2 +- .../Code/lmbrcentral_shared_files.cmake | 2 +- .../Code/lmbrcentral_tests_files.cmake | 2 +- Gems/LocalUser/CMakeLists.txt | 2 +- Gems/LocalUser/Code/CMakeLists.txt | 2 +- .../Code/Include/LocalUser/LocalPlayerSlot.h | 2 +- .../LocalUser/LocalUserNotificationBus.h | 2 +- .../Code/Include/LocalUser/LocalUserProfile.h | 2 +- .../Include/LocalUser/LocalUserRequestBus.h | 2 +- Gems/LocalUser/Code/Source/LocalUserModule.cpp | 2 +- .../Code/Source/LocalUserSystemComponent.cpp | 2 +- .../Code/Source/LocalUserSystemComponent.h | 2 +- .../Android/platform_android_files.cmake | 2 +- ...LocalUser_SystemComponent_Unimplemented.cpp | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Gems/LocalUser/Code/Tests/LocalUserTest.cpp | 2 +- Gems/LocalUser/Code/localuser_files.cmake | 2 +- .../Code/localuser_shared_files.cmake | 2 +- .../LocalUser/Code/localuser_tests_files.cmake | 2 +- Gems/LyShine/CMakeLists.txt | 2 +- Gems/LyShine/Code/CMakeLists.txt | 2 +- .../Code/Editor/AlignToolbarSection.cpp | 2 +- Gems/LyShine/Code/Editor/AlignToolbarSection.h | 2 +- Gems/LyShine/Code/Editor/AnchorPresets.cpp | 2 +- Gems/LyShine/Code/Editor/AnchorPresets.h | 2 +- .../Code/Editor/AnchorPresetsWidget.cpp | 2 +- Gems/LyShine/Code/Editor/AnchorPresetsWidget.h | 2 +- .../Code/Editor/Animation/AnimationContext.cpp | 2 +- .../Code/Editor/Animation/AnimationContext.h | 2 +- .../Animation/Controls/UiSplineCtrlEx.cpp | 2 +- .../Editor/Animation/Controls/UiSplineCtrlEx.h | 2 +- .../Animation/Controls/UiTimelineCtrl.cpp | 2 +- .../Editor/Animation/Controls/UiTimelineCtrl.h | 2 +- .../Animation/UiAVCustomizeTrackColorsDlg.cpp | 2 +- .../Animation/UiAVCustomizeTrackColorsDlg.h | 2 +- .../Code/Editor/Animation/UiAVEventsDialog.cpp | 2 +- .../Code/Editor/Animation/UiAVEventsDialog.h | 2 +- .../Editor/Animation/UiAVSequenceProps.cpp | 2 +- .../Code/Editor/Animation/UiAVSequenceProps.h | 2 +- .../Animation/UiAVTrackEventKeyUIControls.cpp | 2 +- .../Animation/UiAVTrackEventKeyUIControls.h | 2 +- .../Code/Editor/Animation/UiAnimUndo.cpp | 2 +- .../LyShine/Code/Editor/Animation/UiAnimUndo.h | 2 +- .../Editor/Animation/UiAnimUndoManager.cpp | 2 +- .../Code/Editor/Animation/UiAnimUndoManager.h | 2 +- .../Code/Editor/Animation/UiAnimUndoObject.h | 2 +- .../Editor/Animation/UiAnimViewAnimNode.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewAnimNode.h | 2 +- .../Editor/Animation/UiAnimViewCurveEditor.cpp | 2 +- .../Editor/Animation/UiAnimViewCurveEditor.h | 2 +- .../Code/Editor/Animation/UiAnimViewDialog.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewDialog.h | 2 +- .../Animation/UiAnimViewDopeSheetBase.cpp | 2 +- .../Editor/Animation/UiAnimViewDopeSheetBase.h | 2 +- .../Editor/Animation/UiAnimViewEventNode.cpp | 2 +- .../Editor/Animation/UiAnimViewEventNode.h | 2 +- .../Editor/Animation/UiAnimViewFindDlg.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewFindDlg.h | 2 +- .../Animation/UiAnimViewKeyPropertiesDlg.cpp | 2 +- .../Animation/UiAnimViewKeyPropertiesDlg.h | 2 +- .../Animation/UiAnimViewNewSequenceDialog.cpp | 2 +- .../Animation/UiAnimViewNewSequenceDialog.h | 2 +- .../Code/Editor/Animation/UiAnimViewNode.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewNode.h | 2 +- .../Animation/UiAnimViewNodeFactories.cpp | 2 +- .../Editor/Animation/UiAnimViewNodeFactories.h | 2 +- .../Code/Editor/Animation/UiAnimViewNodes.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewNodes.h | 2 +- .../Editor/Animation/UiAnimViewSequence.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewSequence.h | 2 +- .../Animation/UiAnimViewSequenceManager.cpp | 2 +- .../Animation/UiAnimViewSequenceManager.h | 2 +- .../Editor/Animation/UiAnimViewSplineCtrl.cpp | 2 +- .../Editor/Animation/UiAnimViewSplineCtrl.h | 2 +- .../Editor/Animation/UiAnimViewSplitter.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewSplitter.h | 2 +- .../Code/Editor/Animation/UiAnimViewTrack.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewTrack.h | 2 +- .../Code/Editor/Animation/UiAnimViewUndo.cpp | 2 +- .../Code/Editor/Animation/UiAnimViewUndo.h | 2 +- .../Editor/Animation/UiEditorAnimationBus.h | 2 +- .../Editor/Animation/Util/UiEditorUtils.cpp | 2 +- Gems/LyShine/Code/Editor/AssetDropHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/AssetDropHelpers.h | 2 +- Gems/LyShine/Code/Editor/AssetTreeEntry.cpp | 2 +- Gems/LyShine/Code/Editor/AssetTreeEntry.h | 2 +- Gems/LyShine/Code/Editor/CanvasHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/CanvasHelpers.h | 2 +- .../Code/Editor/CanvasSizeToolbarSection.cpp | 2 +- .../Code/Editor/CanvasSizeToolbarSection.h | 2 +- .../Editor/CommandCanvasPropertiesChange.cpp | 2 +- .../Editor/CommandCanvasPropertiesChange.h | 2 +- Gems/LyShine/Code/Editor/CommandCanvasSize.cpp | 2 +- Gems/LyShine/Code/Editor/CommandCanvasSize.h | 2 +- .../Editor/CommandCanvasSizeToolbarIndex.cpp | 2 +- .../Editor/CommandCanvasSizeToolbarIndex.h | 2 +- .../Code/Editor/CommandHierarchyItemCreate.cpp | 2 +- .../Code/Editor/CommandHierarchyItemCreate.h | 2 +- .../CommandHierarchyItemCreateFromData.cpp | 2 +- .../CommandHierarchyItemCreateFromData.h | 2 +- .../Code/Editor/CommandHierarchyItemDelete.cpp | 2 +- .../Code/Editor/CommandHierarchyItemDelete.h | 2 +- .../Code/Editor/CommandHierarchyItemRename.cpp | 2 +- .../Code/Editor/CommandHierarchyItemRename.h | 2 +- .../Editor/CommandHierarchyItemReparent.cpp | 2 +- .../Code/Editor/CommandHierarchyItemReparent.h | 2 +- .../CommandHierarchyItemToggleIsExpanded.cpp | 2 +- .../CommandHierarchyItemToggleIsExpanded.h | 2 +- .../CommandHierarchyItemToggleIsSelectable.cpp | 2 +- .../CommandHierarchyItemToggleIsSelectable.h | 2 +- .../CommandHierarchyItemToggleIsSelected.cpp | 2 +- .../CommandHierarchyItemToggleIsSelected.h | 2 +- .../CommandHierarchyItemToggleIsVisible.cpp | 2 +- .../CommandHierarchyItemToggleIsVisible.h | 2 +- .../Code/Editor/CommandPropertiesChange.cpp | 2 +- .../Code/Editor/CommandPropertiesChange.h | 2 +- .../Editor/CommandViewportInteractionMode.cpp | 2 +- .../Editor/CommandViewportInteractionMode.h | 2 +- .../Code/Editor/ComponentAssetHelpers.h | 2 +- Gems/LyShine/Code/Editor/ComponentButton.cpp | 2 +- Gems/LyShine/Code/Editor/ComponentButton.h | 2 +- Gems/LyShine/Code/Editor/ComponentHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/ComponentHelpers.h | 2 +- .../Editor/CoordinateSystemToolbarSection.cpp | 2 +- .../Editor/CoordinateSystemToolbarSection.h | 2 +- Gems/LyShine/Code/Editor/EditorCommon.cpp | 2 +- Gems/LyShine/Code/Editor/EditorCommon.h | 2 +- Gems/LyShine/Code/Editor/EditorMenu.cpp | 2 +- Gems/LyShine/Code/Editor/EditorWindow.cpp | 2 +- Gems/LyShine/Code/Editor/EditorWindow.h | 2 +- .../Code/Editor/EnterPreviewToolbar.cpp | 2 +- Gems/LyShine/Code/Editor/EnterPreviewToolbar.h | 2 +- Gems/LyShine/Code/Editor/EntityHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/EntityHelpers.h | 2 +- Gems/LyShine/Code/Editor/FeedbackDialog.cpp | 2 +- Gems/LyShine/Code/Editor/FeedbackDialog.h | 2 +- Gems/LyShine/Code/Editor/FileHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/FileHelpers.h | 2 +- .../Code/Editor/FindEntityItemModel.cpp | 2 +- Gems/LyShine/Code/Editor/FindEntityItemModel.h | 2 +- .../Editor/FindEntitySortFilterProxyModel.cpp | 2 +- .../Editor/FindEntitySortFilterProxyModel.h | 2 +- Gems/LyShine/Code/Editor/FindEntityWidget.cpp | 2 +- Gems/LyShine/Code/Editor/FindEntityWidget.h | 2 +- Gems/LyShine/Code/Editor/GuideHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/GuideHelpers.h | 2 +- .../LyShine/Code/Editor/HierarchyClipboard.cpp | 2 +- Gems/LyShine/Code/Editor/HierarchyClipboard.h | 2 +- Gems/LyShine/Code/Editor/HierarchyHeader.cpp | 2 +- Gems/LyShine/Code/Editor/HierarchyHeader.h | 2 +- Gems/LyShine/Code/Editor/HierarchyHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/HierarchyHelpers.h | 2 +- Gems/LyShine/Code/Editor/HierarchyItem.cpp | 2 +- Gems/LyShine/Code/Editor/HierarchyItem.h | 2 +- Gems/LyShine/Code/Editor/HierarchyMenu.cpp | 2 +- Gems/LyShine/Code/Editor/HierarchyMenu.h | 2 +- Gems/LyShine/Code/Editor/HierarchyWidget.cpp | 2 +- Gems/LyShine/Code/Editor/HierarchyWidget.h | 2 +- .../Editor/LyShineEditorSystemComponent.cpp | 2 +- .../Code/Editor/LyShineEditorSystemComponent.h | 2 +- Gems/LyShine/Code/Editor/MainToolbar.cpp | 2 +- Gems/LyShine/Code/Editor/MainToolbar.h | 2 +- Gems/LyShine/Code/Editor/ModeToolbar.cpp | 2 +- Gems/LyShine/Code/Editor/ModeToolbar.h | 2 +- .../Code/Editor/NewElementToolbarSection.cpp | 2 +- .../Code/Editor/NewElementToolbarSection.h | 2 +- Gems/LyShine/Code/Editor/PivotPresets.cpp | 2 +- Gems/LyShine/Code/Editor/PivotPresets.h | 2 +- .../LyShine/Code/Editor/PivotPresetsWidget.cpp | 2 +- Gems/LyShine/Code/Editor/PivotPresetsWidget.h | 2 +- .../Code/Editor/Platform/Linux/PAL_linux.cmake | 2 +- .../Code/Editor/Platform/Mac/PAL_mac.cmake | 2 +- .../Editor/Platform/Windows/PAL_windows.cmake | 2 +- Gems/LyShine/Code/Editor/PrefabHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/PrefabHelpers.h | 2 +- Gems/LyShine/Code/Editor/PresetButton.cpp | 2 +- Gems/LyShine/Code/Editor/PresetButton.h | 2 +- Gems/LyShine/Code/Editor/PreviewActionLog.cpp | 2 +- Gems/LyShine/Code/Editor/PreviewActionLog.h | 2 +- .../Code/Editor/PreviewAnimationList.cpp | 2 +- .../LyShine/Code/Editor/PreviewAnimationList.h | 2 +- Gems/LyShine/Code/Editor/PreviewToolbar.cpp | 2 +- Gems/LyShine/Code/Editor/PreviewToolbar.h | 2 +- .../Code/Editor/PropertiesContainer.cpp | 2 +- Gems/LyShine/Code/Editor/PropertiesContainer.h | 2 +- Gems/LyShine/Code/Editor/PropertiesWidget.cpp | 2 +- Gems/LyShine/Code/Editor/PropertiesWidget.h | 2 +- Gems/LyShine/Code/Editor/PropertiesWrapper.cpp | 2 +- Gems/LyShine/Code/Editor/PropertiesWrapper.h | 2 +- .../Code/Editor/PropertyHandlerAnchor.cpp | 2 +- .../Code/Editor/PropertyHandlerAnchor.h | 2 +- .../Code/Editor/PropertyHandlerChar.cpp | 2 +- Gems/LyShine/Code/Editor/PropertyHandlerChar.h | 2 +- .../Code/Editor/PropertyHandlerDirectory.cpp | 2 +- .../Code/Editor/PropertyHandlerDirectory.h | 2 +- .../Editor/PropertyHandlerEntityIdComboBox.cpp | 2 +- .../Editor/PropertyHandlerEntityIdComboBox.h | 2 +- .../Editor/PropertyHandlerLayoutPadding.cpp | 2 +- .../Code/Editor/PropertyHandlerLayoutPadding.h | 2 +- .../Code/Editor/PropertyHandlerOffset.cpp | 2 +- .../Code/Editor/PropertyHandlerOffset.h | 2 +- .../Code/Editor/PropertyHandlerPivot.cpp | 2 +- .../LyShine/Code/Editor/PropertyHandlerPivot.h | 2 +- .../Code/Editor/PropertyHandlerSprite.cpp | 2 +- .../Code/Editor/PropertyHandlerSprite.h | 2 +- .../PropertyHandlerUiParticleColorKeyframe.cpp | 2 +- .../PropertyHandlerUiParticleColorKeyframe.h | 2 +- .../PropertyHandlerUiParticleFloatKeyframe.cpp | 2 +- .../PropertyHandlerUiParticleFloatKeyframe.h | 2 +- .../LyShine/Code/Editor/PropertyHandlerVec.cpp | 2 +- Gems/LyShine/Code/Editor/PropertyHandlerVec.h | 2 +- Gems/LyShine/Code/Editor/PropertyHandlers.cpp | 2 +- Gems/LyShine/Code/Editor/PropertyHandlers.h | 2 +- Gems/LyShine/Code/Editor/QtHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/QtHelpers.h | 2 +- Gems/LyShine/Code/Editor/RecentFiles.cpp | 2 +- Gems/LyShine/Code/Editor/RecentFiles.h | 2 +- Gems/LyShine/Code/Editor/RulerWidget.cpp | 2 +- Gems/LyShine/Code/Editor/RulerWidget.h | 2 +- Gems/LyShine/Code/Editor/SelectionHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/SelectionHelpers.h | 2 +- Gems/LyShine/Code/Editor/SerializeHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/SerializeHelpers.h | 2 +- Gems/LyShine/Code/Editor/SliceMenuHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/SliceMenuHelpers.h | 2 +- Gems/LyShine/Code/Editor/SlicerEdit.cpp | 2 +- Gems/LyShine/Code/Editor/SlicerEdit.h | 2 +- Gems/LyShine/Code/Editor/SlicerManipulator.cpp | 2 +- Gems/LyShine/Code/Editor/SlicerManipulator.h | 2 +- Gems/LyShine/Code/Editor/SlicerView.cpp | 2 +- Gems/LyShine/Code/Editor/SlicerView.h | 2 +- .../LyShine/Code/Editor/SpriteBorderEditor.cpp | 2 +- Gems/LyShine/Code/Editor/SpriteBorderEditor.h | 2 +- .../Code/Editor/SpriteBorderEditorCommon.cpp | 2 +- .../Code/Editor/SpriteBorderEditorCommon.h | 2 +- .../Code/Editor/UIVectorPropertyHandlerBase.h | 2 +- .../Code/Editor/UiCanvasEditor_precompiled.h | 2 +- .../Code/Editor/UiEditorEntityContext.cpp | 2 +- .../Code/Editor/UiEditorEntityContext.h | 2 +- .../Code/Editor/UiEditorEntityContextBus.h | 2 +- Gems/LyShine/Code/Editor/UiEditorInternalBus.h | 2 +- Gems/LyShine/Code/Editor/UiSliceManager.cpp | 2 +- Gems/LyShine/Code/Editor/UiSliceManager.h | 2 +- Gems/LyShine/Code/Editor/UndoStack.cpp | 2 +- Gems/LyShine/Code/Editor/UndoStack.h | 2 +- .../Code/Editor/UndoStackExecutionScope.cpp | 2 +- .../Code/Editor/UndoStackExecutionScope.h | 2 +- .../Editor/ViewportAddGuideInteraction.cpp | 2 +- .../Code/Editor/ViewportAddGuideInteraction.h | 2 +- Gems/LyShine/Code/Editor/ViewportAlign.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportAlign.h | 2 +- Gems/LyShine/Code/Editor/ViewportAnchor.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportAnchor.h | 2 +- .../Code/Editor/ViewportCanvasBackground.cpp | 2 +- .../Code/Editor/ViewportCanvasBackground.h | 2 +- .../Code/Editor/ViewportDragInteraction.cpp | 2 +- .../Code/Editor/ViewportDragInteraction.h | 2 +- Gems/LyShine/Code/Editor/ViewportElement.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportElement.h | 2 +- Gems/LyShine/Code/Editor/ViewportHelpers.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportHelpers.h | 2 +- Gems/LyShine/Code/Editor/ViewportHighlight.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportHighlight.h | 2 +- Gems/LyShine/Code/Editor/ViewportIcon.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportIcon.h | 2 +- .../Code/Editor/ViewportInteraction.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportInteraction.h | 2 +- .../Editor/ViewportMoveGuideInteraction.cpp | 2 +- .../Code/Editor/ViewportMoveGuideInteraction.h | 2 +- .../Code/Editor/ViewportMoveInteraction.cpp | 2 +- .../Code/Editor/ViewportMoveInteraction.h | 2 +- Gems/LyShine/Code/Editor/ViewportNudge.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportNudge.h | 2 +- Gems/LyShine/Code/Editor/ViewportPivot.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportPivot.h | 2 +- Gems/LyShine/Code/Editor/ViewportSnap.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportSnap.h | 2 +- Gems/LyShine/Code/Editor/ViewportWidget.cpp | 2 +- Gems/LyShine/Code/Editor/ViewportWidget.h | 2 +- Gems/LyShine/Code/Include/LyShine/Draw2d.h | 2 +- Gems/LyShine/Code/Include/LyShine/LyShineBus.h | 2 +- .../LyShineBuilder/LyShineBuilderComponent.cpp | 2 +- .../LyShineBuilder/LyShineBuilderComponent.h | 2 +- .../LyShineBuilder/UiCanvasBuilderWorker.cpp | 2 +- .../LyShineBuilder/UiCanvasBuilderWorker.h | 2 +- Gems/LyShine/Code/Source/Animation/2DSpline.h | 2 +- .../LyShine/Code/Source/Animation/AnimNode.cpp | 2 +- Gems/LyShine/Code/Source/Animation/AnimNode.h | 2 +- .../Code/Source/Animation/AnimSequence.cpp | 2 +- .../Code/Source/Animation/AnimSequence.h | 2 +- .../Code/Source/Animation/AnimSplineTrack.cpp | 2 +- .../Code/Source/Animation/AnimSplineTrack.h | 2 +- .../AnimSplineTrack_Vec2Specialization.h | 2 +- .../Code/Source/Animation/AnimTrack.cpp | 2 +- Gems/LyShine/Code/Source/Animation/AnimTrack.h | 2 +- .../Code/Source/Animation/AzEntityNode.cpp | 2 +- .../Code/Source/Animation/AzEntityNode.h | 2 +- .../Code/Source/Animation/BoolTrack.cpp | 2 +- Gems/LyShine/Code/Source/Animation/BoolTrack.h | 2 +- .../Source/Animation/CompoundSplineTrack.cpp | 2 +- .../Source/Animation/CompoundSplineTrack.h | 2 +- .../Code/Source/Animation/EventNode.cpp | 2 +- Gems/LyShine/Code/Source/Animation/EventNode.h | 2 +- .../Source/Animation/LyShine_precompiled.h | 2 +- .../Code/Source/Animation/TrackEventTrack.cpp | 2 +- .../Code/Source/Animation/TrackEventTrack.h | 2 +- .../Code/Source/Animation/UiAnimSerialize.cpp | 2 +- .../Code/Source/Animation/UiAnimSerialize.h | 2 +- .../Source/Animation/UiAnimationSystem.cpp | 2 +- .../Code/Source/Animation/UiAnimationSystem.h | 2 +- Gems/LyShine/Code/Source/Draw2d.cpp | 2 +- .../Code/Source/EditorPropertyTypes.cpp | 2 +- Gems/LyShine/Code/Source/EditorPropertyTypes.h | 2 +- Gems/LyShine/Code/Source/LyShine.cpp | 2 +- Gems/LyShine/Code/Source/LyShine.h | 2 +- Gems/LyShine/Code/Source/LyShineDebug.cpp | 2 +- Gems/LyShine/Code/Source/LyShineDebug.h | 2 +- Gems/LyShine/Code/Source/LyShineLoadScreen.cpp | 2 +- Gems/LyShine/Code/Source/LyShineLoadScreen.h | 2 +- Gems/LyShine/Code/Source/LyShineModule.cpp | 2 +- Gems/LyShine/Code/Source/LyShineModule.h | 2 +- .../Code/Source/LyShineSystemComponent.cpp | 2 +- .../Code/Source/LyShineSystemComponent.h | 2 +- Gems/LyShine/Code/Source/LyShine_precompiled.h | 2 +- .../Code/Source/Particle/UiParticle.cpp | 2 +- Gems/LyShine/Code/Source/Particle/UiParticle.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../UiClipboard_Unimplemented.cpp | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/UiClipboard_Windows.cpp | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Gems/LyShine/Code/Source/RenderGraph.cpp | 2 +- Gems/LyShine/Code/Source/RenderGraph.h | 2 +- .../Code/Source/Script/UiCanvasLuaBus.cpp | 2 +- .../Code/Source/Script/UiCanvasLuaBus.h | 2 +- .../Script/UiCanvasNotificationLuaBus.cpp | 2 +- .../Source/Script/UiCanvasNotificationLuaBus.h | 2 +- .../Code/Source/Script/UiElementLuaBus.cpp | 2 +- .../Code/Source/Script/UiElementLuaBus.h | 2 +- Gems/LyShine/Code/Source/Sprite.cpp | 2 +- Gems/LyShine/Code/Source/Sprite.h | 2 +- Gems/LyShine/Code/Source/StringUtfUtils.h | 2 +- .../Source/Tests/internal/test_TextMarkup.cpp | 2 +- .../internal/test_UiMarkupButtonComponent.cpp | 2 +- .../Tests/internal/test_UiTextComponent.cpp | 2 +- .../internal/test_UiTransform2dComponent.cpp | 2 +- Gems/LyShine/Code/Source/Tests/test_Main.cpp | 2 +- Gems/LyShine/Code/Source/TextMarkup.cpp | 2 +- Gems/LyShine/Code/Source/TextMarkup.h | 2 +- Gems/LyShine/Code/Source/UiButtonComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiButtonComponent.h | 2 +- Gems/LyShine/Code/Source/UiCanvasComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiCanvasComponent.h | 2 +- .../LyShine/Code/Source/UiCanvasFileObject.cpp | 2 +- Gems/LyShine/Code/Source/UiCanvasFileObject.h | 2 +- Gems/LyShine/Code/Source/UiCanvasManager.cpp | 2 +- Gems/LyShine/Code/Source/UiCanvasManager.h | 2 +- .../Code/Source/UiCheckboxComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiCheckboxComponent.h | 2 +- Gems/LyShine/Code/Source/UiClipboard.h | 2 +- .../Code/Source/UiDraggableComponent.cpp | 2 +- .../LyShine/Code/Source/UiDraggableComponent.h | 2 +- .../Code/Source/UiDropTargetComponent.cpp | 2 +- .../Code/Source/UiDropTargetComponent.h | 2 +- .../Code/Source/UiDropdownComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiDropdownComponent.h | 2 +- .../Code/Source/UiDropdownOptionComponent.cpp | 2 +- .../Code/Source/UiDropdownOptionComponent.h | 2 +- .../Code/Source/UiDynamicLayoutComponent.cpp | 2 +- .../Code/Source/UiDynamicLayoutComponent.h | 2 +- .../Source/UiDynamicScrollBoxComponent.cpp | 2 +- .../Code/Source/UiDynamicScrollBoxComponent.h | 2 +- .../LyShine/Code/Source/UiElementComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiElementComponent.h | 2 +- Gems/LyShine/Code/Source/UiEntityContext.cpp | 2 +- Gems/LyShine/Code/Source/UiFaderComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiFaderComponent.h | 2 +- .../Source/UiFlipbookAnimationComponent.cpp | 2 +- .../Code/Source/UiFlipbookAnimationComponent.h | 2 +- .../Code/Source/UiGameEntityContext.cpp | 2 +- Gems/LyShine/Code/Source/UiGameEntityContext.h | 2 +- Gems/LyShine/Code/Source/UiImageComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiImageComponent.h | 2 +- .../Code/Source/UiImageSequenceComponent.cpp | 2 +- .../Code/Source/UiImageSequenceComponent.h | 2 +- .../Code/Source/UiInteractableComponent.cpp | 2 +- .../Code/Source/UiInteractableComponent.h | 2 +- .../Code/Source/UiInteractableState.cpp | 2 +- Gems/LyShine/Code/Source/UiInteractableState.h | 2 +- .../Code/Source/UiLayoutCellComponent.cpp | 2 +- .../Code/Source/UiLayoutCellComponent.h | 2 +- .../Code/Source/UiLayoutColumnComponent.cpp | 2 +- .../Code/Source/UiLayoutColumnComponent.h | 2 +- .../Code/Source/UiLayoutFitterComponent.cpp | 2 +- .../Code/Source/UiLayoutFitterComponent.h | 2 +- .../Code/Source/UiLayoutGridComponent.cpp | 2 +- .../Code/Source/UiLayoutGridComponent.h | 2 +- Gems/LyShine/Code/Source/UiLayoutHelpers.cpp | 2 +- Gems/LyShine/Code/Source/UiLayoutHelpers.h | 2 +- Gems/LyShine/Code/Source/UiLayoutManager.cpp | 2 +- Gems/LyShine/Code/Source/UiLayoutManager.h | 2 +- .../Code/Source/UiLayoutRowComponent.cpp | 2 +- .../LyShine/Code/Source/UiLayoutRowComponent.h | 2 +- .../Code/Source/UiMarkupButtonComponent.cpp | 2 +- .../Code/Source/UiMarkupButtonComponent.h | 2 +- Gems/LyShine/Code/Source/UiMaskComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiMaskComponent.h | 2 +- .../Code/Source/UiNavigationHelpers.cpp | 2 +- Gems/LyShine/Code/Source/UiNavigationHelpers.h | 2 +- .../Code/Source/UiNavigationSettings.cpp | 2 +- .../LyShine/Code/Source/UiNavigationSettings.h | 2 +- .../Code/Source/UiParticleEmitterComponent.cpp | 2 +- .../Code/Source/UiParticleEmitterComponent.h | 2 +- .../Code/Source/UiRadioButtonComponent.cpp | 2 +- .../Code/Source/UiRadioButtonComponent.h | 2 +- .../Source/UiRadioButtonGroupComponent.cpp | 2 +- .../Code/Source/UiRadioButtonGroupComponent.h | 2 +- Gems/LyShine/Code/Source/UiRenderer.cpp | 2 +- Gems/LyShine/Code/Source/UiRenderer.h | 2 +- .../Code/Source/UiScrollBarComponent.cpp | 2 +- .../LyShine/Code/Source/UiScrollBarComponent.h | 2 +- .../Code/Source/UiScrollBoxComponent.cpp | 2 +- .../LyShine/Code/Source/UiScrollBoxComponent.h | 2 +- Gems/LyShine/Code/Source/UiSerialize.cpp | 2 +- Gems/LyShine/Code/Source/UiSerialize.h | 2 +- Gems/LyShine/Code/Source/UiSliderComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiSliderComponent.h | 2 +- .../LyShine/Code/Source/UiSpawnerComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiSpawnerComponent.h | 2 +- .../Code/Source/UiStateActionManager.cpp | 2 +- .../LyShine/Code/Source/UiStateActionManager.h | 2 +- Gems/LyShine/Code/Source/UiTextComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiTextComponent.h | 2 +- .../Source/UiTextComponentOffsetsSelector.cpp | 2 +- .../Source/UiTextComponentOffsetsSelector.h | 2 +- .../Code/Source/UiTextInputComponent.cpp | 2 +- .../LyShine/Code/Source/UiTextInputComponent.h | 2 +- .../LyShine/Code/Source/UiTooltipComponent.cpp | 2 +- Gems/LyShine/Code/Source/UiTooltipComponent.h | 2 +- .../Code/Source/UiTooltipDisplayComponent.cpp | 2 +- .../Code/Source/UiTooltipDisplayComponent.h | 2 +- .../Code/Source/UiTransform2dComponent.cpp | 2 +- .../Code/Source/UiTransform2dComponent.h | 2 +- .../Source/World/UiCanvasAssetRefComponent.cpp | 2 +- .../Source/World/UiCanvasAssetRefComponent.h | 2 +- .../Source/World/UiCanvasOnMeshComponent.cpp | 2 +- .../Source/World/UiCanvasOnMeshComponent.h | 2 +- .../Source/World/UiCanvasProxyRefComponent.cpp | 2 +- .../Source/World/UiCanvasProxyRefComponent.h | 2 +- Gems/LyShine/Code/Source/resource.h | 2 +- Gems/LyShine/Code/Tests/AnimationTest.cpp | 2 +- Gems/LyShine/Code/Tests/LyShineEditorTest.cpp | 2 +- Gems/LyShine/Code/Tests/LyShineTest.h | 2 +- .../UiDynamicScrollBoxDataBusHandlerMock.h | 2 +- Gems/LyShine/Code/Tests/SerializationTest.cpp | 2 +- Gems/LyShine/Code/Tests/SpriteTest.cpp | 2 +- .../Code/Tests/TextInputComponentTest.cpp | 2 +- .../Tests/UiDynamicScrollBoxComponentTest.cpp | 2 +- .../Code/Tests/UiScrollBarComponentTest.cpp | 2 +- .../Code/Tests/UiTooltipComponentTest.cpp | 2 +- .../Code/lyshine_common_module_files.cmake | 2 +- .../Code/lyshine_editor_builder_files.cmake | 2 +- .../Code/lyshine_editor_tests_files.cmake | 2 +- Gems/LyShine/Code/lyshine_static_files.cmake | 2 +- Gems/LyShine/Code/lyshine_tests_files.cmake | 2 +- .../Code/lyshine_uicanvaseditor_files.cmake | 2 +- .../Animation/ButtonAnimation.lua | 2 +- .../Animation/MultipleSequences.lua | 2 +- .../Animation/SequenceStates.lua | 2 +- .../CppExample/LoadCppCanvas.lua | 2 +- .../LyShineExamples/DisplayMouseCursor.lua | 2 +- .../ChildDropTargets_ChildDropTarget.lua | 2 +- .../ChildDropTargets_Draggable.lua | 2 +- .../ChildDropTargets_EndDropTarget.lua | 2 +- .../ChildDropTargets_LayoutDropTarget.lua | 2 +- .../DraggableCrossCanvasElement.lua | 2 +- .../DragAndDrop/DraggableElement.lua | 2 +- .../DragAndDrop/DraggableStackingElement.lua | 2 +- .../LyShineExamples/DragAndDrop/DropTarget.lua | 2 +- .../DragAndDrop/DropTargetCrossCanvas.lua | 2 +- .../DragAndDrop/DropTargetStacking.lua | 2 +- .../FunctionalityDropdown/ColorBall.lua | 2 +- .../FunctionalityDropdown/CreateBall.lua | 2 +- .../FunctionalityDropdown/DestroyBall.lua | 2 +- .../FunctionalityDropdown/MoveBallDown.lua | 2 +- .../FunctionalityDropdown/MoveBallUp.lua | 2 +- .../FunctionalityDropdown/ResetBall.lua | 2 +- .../Dropdown/MultiSelectionDropdown.lua | 2 +- .../Dropdown/SelectionDropdownOption.lua | 2 +- .../SelectionDropdownSelectedOption.lua | 2 +- .../Dynamic/DynamicLayoutColumn.lua | 2 +- .../Dynamic/DynamicLayoutGrid.lua | 2 +- .../Dynamic/DynamicSBVariableSize.lua | 2 +- .../DynamicSBVariableSizeWithSections.lua | 2 +- .../Dynamic/DynamicScrollBox.lua | 2 +- .../LyShineExamples/Fader/FadeButton.lua | 2 +- .../LyShineExamples/Fader/FadeSlider.lua | 2 +- .../LyShineExamples/Flipbook/Flipbook.lua | 2 +- .../LyShineExamples/HideThisElementButton.lua | 2 +- .../LyShineExamples/Image/ImageFillTypes.lua | 2 +- .../LyShineExamples/Image/ImageTypes.lua | 2 +- .../LyShineExamples/Image/Spritesheet.lua | 2 +- .../LyShineExamples/Layout/ResetSizes.lua | 2 +- .../LyShineExamples/Layout/ScaleToTarget.lua | 2 +- .../Layout/ToggleHorizontalFitRecursive.lua | 2 +- .../Layout/ToggleVerticalFitRecursive.lua | 2 +- .../LyShineExamples/LoadCanvasButton.lua | 2 +- .../LyShineExamples/LoadUnloadCanvasButton.lua | 2 +- .../Localization/ScrollingScrollBox.lua | 2 +- .../LyShineExamples/Mask/ChildMaskElement.lua | 2 +- .../Mask/SetElementEnabledCheckbox.lua | 2 +- .../Mask/SetUseAlphaGradientCheckbox.lua | 2 +- .../LyShineExamples/NextCanvasButton.lua | 2 +- .../ParticleEmitter/ParticleTrailButton.lua | 2 +- .../LyShineExamples/Performance/DrawCalls.lua | 2 +- .../RadioButton/SwitchGroup.lua | 2 +- .../LyShineExamples/ScrollBar/ChangeValues.lua | 2 +- .../LyShineExamples/ScrollBar/ZoomSlider.lua | 2 +- .../LyShineExamples/SetTextFromInput.lua | 2 +- .../ShowAndInputEnableElementButton.lua | 2 +- .../LyShineExamples/SliderWithButtons.lua | 2 +- .../LyShineExamples/Spawner/DeleteElements.lua | 2 +- .../Spawner/RadioButtonSpawner.lua | 2 +- .../LyShineExamples/Spawner/Spawn3Elements.lua | 2 +- .../LyShineExamples/Spawner/SpawnElements.lua | 2 +- .../LyShineExamples/Text/FontSizeSlider.lua | 2 +- .../LyShineExamples/Text/ImageMarkup.lua | 2 +- .../LyShineExamples/Text/MarkupCheckBox.lua | 2 +- .../Text/OverflowModeDropdown.lua | 2 +- .../Text/OverflowTextAnimate.lua | 2 +- .../Text/PlayAnimationOnStart.lua | 2 +- .../Text/ShrinkToFitDropdown.lua | 2 +- .../Text/StylingMarkupLinkText.lua | 2 +- .../LyShineExamples/Text/WrapTextDropdown.lua | 2 +- .../ToggleInputEnabledOnElementChildren.lua | 2 +- ...ggleInteractionMaskingOnElementChildren.lua | 2 +- .../ToggleMaskingOnElementChildren.lua | 2 +- .../LyShineExamples/Tooltips/Styles.lua | 2 +- .../LyShineExamples/Tooltips/TextOptions.lua | 2 +- .../LyShineExamples/UnloadThisCanvasButton.lua | 2 +- Gems/LyShineExamples/CMakeLists.txt | 2 +- Gems/LyShineExamples/Code/CMakeLists.txt | 2 +- .../LyShineExamples/LyShineExamplesBus.h | 2 +- .../LyShineExamplesCppExampleBus.h | 2 +- .../Include/LyShineExamples/UiCustomImageBus.h | 2 +- .../UiDynamicContentDatabaseBus.h | 2 +- .../Code/Source/LyShineExamplesCppExample.cpp | 2 +- .../Code/Source/LyShineExamplesCppExample.h | 2 +- .../Code/Source/LyShineExamplesInternalBus.h | 2 +- .../Code/Source/LyShineExamplesModule.cpp | 2 +- .../Code/Source/LyShineExamplesSerialize.cpp | 2 +- .../Code/Source/LyShineExamplesSerialize.h | 2 +- .../Source/LyShineExamplesSystemComponent.cpp | 2 +- .../Source/LyShineExamplesSystemComponent.h | 2 +- .../Code/Source/LyShineExamples_precompiled.h | 2 +- .../Code/Source/UiCustomImageComponent.cpp | 2 +- .../Code/Source/UiCustomImageComponent.h | 2 +- .../Code/Source/UiDynamicContentDatabase.cpp | 2 +- .../Code/Source/UiDynamicContentDatabase.h | 2 +- .../UiTestScrollBoxDataProviderComponent.cpp | 2 +- .../UiTestScrollBoxDataProviderComponent.h | 2 +- .../Code/lyshineexamples_files.cmake | 2 +- .../Code/lyshineexamples_shared_files.cmake | 2 +- Gems/Maestro/CMakeLists.txt | 2 +- Gems/Maestro/Code/CMakeLists.txt | 2 +- Gems/Maestro/Code/Include/Maestro/MaestroBus.h | 2 +- Gems/Maestro/Code/Source/Cinematics/2DSpline.h | 2 +- .../Source/Cinematics/AnimAZEntityNode.cpp | 2 +- .../Code/Source/Cinematics/AnimAZEntityNode.h | 2 +- .../Source/Cinematics/AnimComponentNode.cpp | 2 +- .../Code/Source/Cinematics/AnimComponentNode.h | 2 +- .../Code/Source/Cinematics/AnimNode.cpp | 2 +- Gems/Maestro/Code/Source/Cinematics/AnimNode.h | 2 +- .../Code/Source/Cinematics/AnimNodeGroup.cpp | 2 +- .../Code/Source/Cinematics/AnimNodeGroup.h | 2 +- .../Code/Source/Cinematics/AnimPostFXNode.cpp | 2 +- .../Code/Source/Cinematics/AnimPostFXNode.h | 2 +- .../Source/Cinematics/AnimScreenFaderNode.cpp | 2 +- .../Source/Cinematics/AnimScreenFaderNode.h | 2 +- .../Code/Source/Cinematics/AnimSequence.cpp | 2 +- .../Code/Source/Cinematics/AnimSequence.h | 2 +- .../Code/Source/Cinematics/AnimSerializer.cpp | 2 +- .../Code/Source/Cinematics/AnimSerializer.h | 2 +- .../Code/Source/Cinematics/AnimSplineTrack.cpp | 2 +- .../Code/Source/Cinematics/AnimSplineTrack.h | 2 +- .../AnimSplineTrack_FloatSpecialization.h | 2 +- .../AnimSplineTrack_QuatSpecialization.h | 2 +- .../AnimSplineTrack_Vec2Specialization.h | 2 +- .../AnimSplineTrack_Vec3Specialization.h | 2 +- .../Code/Source/Cinematics/AnimTrack.cpp | 2 +- .../Maestro/Code/Source/Cinematics/AnimTrack.h | 2 +- .../Code/Source/Cinematics/AssetBlendTrack.cpp | 2 +- .../Code/Source/Cinematics/AssetBlendTrack.h | 2 +- .../Code/Source/Cinematics/BoolTrack.cpp | 2 +- .../Maestro/Code/Source/Cinematics/BoolTrack.h | 2 +- .../Code/Source/Cinematics/CVarNode.cpp | 2 +- Gems/Maestro/Code/Source/Cinematics/CVarNode.h | 2 +- .../Code/Source/Cinematics/CaptureTrack.cpp | 2 +- .../Code/Source/Cinematics/CaptureTrack.h | 2 +- .../Code/Source/Cinematics/CharacterTrack.cpp | 2 +- .../Code/Source/Cinematics/CharacterTrack.h | 2 +- .../Cinematics/CharacterTrackAnimator.cpp | 2 +- .../Source/Cinematics/CharacterTrackAnimator.h | 2 +- .../Code/Source/Cinematics/CommentNode.cpp | 2 +- .../Code/Source/Cinematics/CommentNode.h | 2 +- .../Code/Source/Cinematics/CommentTrack.cpp | 2 +- .../Code/Source/Cinematics/CommentTrack.h | 2 +- .../Source/Cinematics/CompoundSplineTrack.cpp | 2 +- .../Source/Cinematics/CompoundSplineTrack.h | 2 +- .../Code/Source/Cinematics/ConsoleTrack.cpp | 2 +- .../Code/Source/Cinematics/ConsoleTrack.h | 2 +- .../Code/Source/Cinematics/EventNode.cpp | 2 +- .../Maestro/Code/Source/Cinematics/EventNode.h | 2 +- .../Code/Source/Cinematics/EventTrack.cpp | 2 +- .../Code/Source/Cinematics/EventTrack.h | 2 +- .../Code/Source/Cinematics/GotoTrack.cpp | 2 +- .../Maestro/Code/Source/Cinematics/GotoTrack.h | 2 +- .../Code/Source/Cinematics/LayerNode.cpp | 2 +- .../Maestro/Code/Source/Cinematics/LayerNode.h | 2 +- .../Code/Source/Cinematics/LookAtTrack.cpp | 2 +- .../Code/Source/Cinematics/LookAtTrack.h | 2 +- .../Source/Cinematics/Maestro_precompiled.h | 2 +- .../Code/Source/Cinematics/MaterialNode.cpp | 2 +- .../Code/Source/Cinematics/MaterialNode.h | 2 +- Gems/Maestro/Code/Source/Cinematics/Movie.cpp | 2 +- Gems/Maestro/Code/Source/Cinematics/Movie.h | 2 +- .../Code/Source/Cinematics/SceneNode.cpp | 2 +- .../Maestro/Code/Source/Cinematics/SceneNode.h | 2 +- .../Source/Cinematics/ScreenFaderTrack.cpp | 2 +- .../Code/Source/Cinematics/ScreenFaderTrack.h | 2 +- .../Code/Source/Cinematics/ScriptVarNode.cpp | 2 +- .../Code/Source/Cinematics/ScriptVarNode.h | 2 +- .../Code/Source/Cinematics/SelectTrack.cpp | 2 +- .../Code/Source/Cinematics/SelectTrack.h | 2 +- .../Code/Source/Cinematics/SequenceTrack.cpp | 2 +- .../Code/Source/Cinematics/SequenceTrack.h | 2 +- .../Source/Cinematics/ShadowsSetupNode.cpp | 2 +- .../Code/Source/Cinematics/ShadowsSetupNode.h | 2 +- .../Code/Source/Cinematics/SoundTrack.cpp | 2 +- .../Code/Source/Cinematics/SoundTrack.h | 2 +- .../Maestro/Code/Source/Cinematics/TCBSpline.h | 2 +- .../Cinematics/Tests/AssetBlendTrackTest.cpp | 2 +- .../Source/Cinematics/Tests/EntityNodeTest.cpp | 2 +- .../Code/Source/Cinematics/Tests/test_Main.cpp | 2 +- .../Code/Source/Cinematics/TimeRangesTrack.cpp | 2 +- .../Code/Source/Cinematics/TimeRangesTrack.h | 2 +- .../Code/Source/Cinematics/TrackEventTrack.cpp | 2 +- .../Code/Source/Cinematics/TrackEventTrack.h | 2 +- Gems/Maestro/Code/Source/Cinematics/resource.h | 2 +- .../EditorSequenceAgentComponent.cpp | 2 +- .../Components/EditorSequenceAgentComponent.h | 2 +- .../Components/EditorSequenceComponent.cpp | 2 +- .../Components/EditorSequenceComponent.h | 2 +- .../Code/Source/Components/SequenceAgent.cpp | 2 +- .../Code/Source/Components/SequenceAgent.h | 2 +- .../Components/SequenceAgentComponent.cpp | 2 +- .../Source/Components/SequenceAgentComponent.h | 2 +- .../Source/Components/SequenceComponent.cpp | 2 +- .../Code/Source/Components/SequenceComponent.h | 2 +- Gems/Maestro/Code/Source/MaestroModule.cpp | 2 +- .../Code/Source/MaestroSystemComponent.cpp | 2 +- .../Code/Source/MaestroSystemComponent.h | 2 +- Gems/Maestro/Code/Source/Maestro_precompiled.h | 2 +- Gems/Maestro/Code/Tests/MaestroTest.cpp | 2 +- .../Code/Tests/Tracks/AnimTrackTest.cpp | 2 +- .../Code/Tests/Tracks/BoolTrackTest.cpp | 2 +- Gems/Maestro/Code/maestro_editor_files.cmake | 2 +- Gems/Maestro/Code/maestro_files.cmake | 2 +- Gems/Maestro/Code/maestro_static_files.cmake | 2 +- Gems/Maestro/Code/maestro_tests_files.cmake | 2 +- Gems/MessagePopup/CMakeLists.txt | 2 +- Gems/MessagePopup/Code/CMakeLists.txt | 2 +- .../Include/MessagePopup/MessagePopupBus.h | 2 +- .../Code/Source/LyShineMessagePopup.cpp | 2 +- .../Code/Source/LyShineMessagePopup.h | 2 +- .../Code/Source/MessagePopupManager.cpp | 2 +- .../Code/Source/MessagePopupManager.h | 2 +- .../Code/Source/MessagePopupModule.cpp | 2 +- .../Source/MessagePopupSystemComponent.cpp | 2 +- .../Code/Source/MessagePopupSystemComponent.h | 2 +- .../Code/Source/MessagePopup_precompiled.h | 2 +- .../MessagePopup/Code/messagepopup_files.cmake | 2 +- .../Code/messagepopup_shared_files.cmake | 2 +- Gems/Metastream/CMakeLists.txt | 2 +- Gems/Metastream/Code/CMakeLists.txt | 2 +- .../Code/Include/Metastream/MetastreamBus.h | 2 +- Gems/Metastream/Code/Source/BaseHttpServer.cpp | 2 +- Gems/Metastream/Code/Source/BaseHttpServer.h | 2 +- .../Metastream/Code/Source/CivetHttpServer.cpp | 2 +- Gems/Metastream/Code/Source/CivetHttpServer.h | 2 +- Gems/Metastream/Code/Source/DataCache.cpp | 2 +- Gems/Metastream/Code/Source/DataCache.h | 2 +- Gems/Metastream/Code/Source/MetastreamGem.cpp | 2 +- Gems/Metastream/Code/Source/MetastreamGem.h | 2 +- .../Code/Source/Metastream_precompiled.h | 2 +- .../Android/Metastream_Traits_Android.h | 2 +- .../Android/Metastream_Traits_Platform.h | 2 +- .../Platform/Android/metastream_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Common/Clang/metastream_clang.cmake | 2 +- .../Platform/Common/MSVC/metastream_msvc.cmake | 2 +- .../Platform/Linux/Metastream_Traits_Linux.h | 2 +- .../Linux/Metastream_Traits_Platform.h | 2 +- .../Platform/Linux/metastream_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Platform/Mac/Metastream_Traits_Mac.h | 2 +- .../Platform/Mac/Metastream_Traits_Platform.h | 2 +- .../Source/Platform/Mac/metastream_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/Metastream_Traits_Platform.h | 2 +- .../Windows/Metastream_Traits_Windows.h | 2 +- .../Platform/Windows/metastream_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/Metastream_Traits_Platform.h | 2 +- .../Platform/iOS/Metastream_Traits_iOS.h | 2 +- .../Source/Platform/iOS/metastream_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Gems/Metastream/Code/Tests/MetastreamTest.cpp | 2 +- Gems/Metastream/Code/metastream_files.cmake | 2 +- .../Code/metastream_shared_files.cmake | 2 +- .../Code/metastream_tests_files.cmake | 2 +- Gems/Microphone/CMakeLists.txt | 2 +- Gems/Microphone/Code/CMakeLists.txt | 2 +- .../Code/Include/Microphone/WAVUtil.h | 2 +- .../Code/Source/MicrophoneModule.cpp | 2 +- .../Code/Source/MicrophoneSystemComponent.cpp | 2 +- .../Code/Source/MicrophoneSystemComponent.h | 2 +- .../Code/Source/Microphone_precompiled.h | 2 +- .../MicrophoneSystemComponent_Android.cpp | 2 +- .../Microphone/MicrophoneSystemComponent.java | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Mac/MicrophoneSystemComponent_Mac.mm | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../None/MicrophoneSystemComponent_None.cpp | 2 +- .../MicrophoneSystemComponent_Windows.cpp | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/MicrophoneSystemComponent_iOS.mm | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Code/Source/SimpleDownsample.cpp | 2 +- Gems/Microphone/Code/Source/SimpleDownsample.h | 2 +- Gems/Microphone/Code/microphone_files.cmake | 2 +- .../Code/microphone_shared_files.cmake | 2 +- Gems/Multiplayer/CMakeLists.txt | 2 +- Gems/Multiplayer/Code/CMakeLists.txt | 2 +- .../LocalPredictionPlayerInputComponent.h | 2 +- .../Components/MultiplayerComponent.h | 2 +- .../Components/MultiplayerComponentRegistry.h | 2 +- .../Components/MultiplayerController.h | 2 +- .../Multiplayer/Components/NetBindComponent.h | 2 +- .../Components/NetworkTransformComponent.h | 2 +- .../ConnectionData/IConnectionData.h | 2 +- .../Multiplayer/EntityDomains/IEntityDomain.h | 2 +- .../Code/Include/Multiplayer/IMultiplayer.h | 2 +- .../Include/Multiplayer/IMultiplayerTools.h | 2 +- .../Multiplayer/INetworkSpawnableLibrary.h | 2 +- .../Include/Multiplayer/MultiplayerConstants.h | 2 +- .../Include/Multiplayer/MultiplayerStats.h | 2 +- .../Include/Multiplayer/MultiplayerTypes.h | 2 +- .../EntityReplication/ReplicationRecord.h | 2 +- .../NetworkEntity/INetworkEntityManager.h | 2 +- .../NetworkEntity/NetworkEntityHandle.h | 2 +- .../NetworkEntity/NetworkEntityHandle.inl | 2 +- .../NetworkEntity/NetworkEntityRpcMessage.h | 2 +- .../NetworkEntity/NetworkEntityUpdateMessage.h | 2 +- .../NetworkInput/IMultiplayerComponentInput.h | 2 +- .../Multiplayer/NetworkInput/NetworkInput.h | 2 +- .../Multiplayer/NetworkTime/INetworkTime.h | 2 +- .../Multiplayer/NetworkTime/RewindableArray.h | 2 +- .../NetworkTime/RewindableArray.inl | 2 +- .../NetworkTime/RewindableFixedVector.h | 2 +- .../NetworkTime/RewindableFixedVector.inl | 2 +- .../Multiplayer/NetworkTime/RewindableObject.h | 2 +- .../NetworkTime/RewindableObject.inl | 2 +- .../Include/Multiplayer/Physics/PhysicsUtils.h | 2 +- .../ReplicationWindows/IReplicationWindow.h | 2 +- .../LocalPredictionPlayerInputComponent.cpp | 2 +- .../Source/Components/MultiplayerComponent.cpp | 2 +- .../MultiplayerComponentRegistry.cpp | 2 +- .../Components/MultiplayerController.cpp | 2 +- .../Source/Components/NetBindComponent.cpp | 2 +- .../Components/NetworkTransformComponent.cpp | 2 +- .../ClientToServerConnectionData.cpp | 2 +- .../ClientToServerConnectionData.h | 2 +- .../ClientToServerConnectionData.inl | 2 +- .../ServerToClientConnectionData.cpp | 2 +- .../ServerToClientConnectionData.h | 2 +- .../ServerToClientConnectionData.inl | 2 +- .../Source/Debug/MultiplayerDebugModule.cpp | 2 +- .../Code/Source/Debug/MultiplayerDebugModule.h | 2 +- .../Debug/MultiplayerDebugSystemComponent.cpp | 2 +- .../Debug/MultiplayerDebugSystemComponent.h | 2 +- .../Editor/MultiplayerEditorConnection.cpp | 2 +- .../Editor/MultiplayerEditorConnection.h | 2 +- .../Source/Editor/MultiplayerEditorGem.cpp | 2 +- .../Code/Source/Editor/MultiplayerEditorGem.h | 2 +- .../MultiplayerEditorSystemComponent.cpp | 2 +- .../Editor/MultiplayerEditorSystemComponent.h | 2 +- .../FullOwnershipEntityDomain.cpp | 2 +- .../EntityDomains/FullOwnershipEntityDomain.h | 2 +- .../Multiplayer/Code/Source/MultiplayerGem.cpp | 2 +- Gems/Multiplayer/Code/Source/MultiplayerGem.h | 2 +- .../Code/Source/MultiplayerStats.cpp | 2 +- .../Code/Source/MultiplayerSystemComponent.cpp | 2 +- .../Code/Source/MultiplayerSystemComponent.h | 2 +- .../Code/Source/MultiplayerToolsModule.cpp | 2 +- .../Code/Source/MultiplayerToolsModule.h | 2 +- .../Multiplayer/Code/Source/MultiplayerTypes.h | 2 +- .../Code/Source/Multiplayer_precompiled.h | 2 +- .../EntityReplicationManager.cpp | 2 +- .../EntityReplicationManager.h | 2 +- .../EntityReplication/EntityReplicator.cpp | 2 +- .../EntityReplication/EntityReplicator.h | 2 +- .../EntityReplication/EntityReplicator.inl | 2 +- .../EntityReplication/PropertyPublisher.cpp | 2 +- .../EntityReplication/PropertyPublisher.h | 2 +- .../EntityReplication/PropertySubscriber.cpp | 2 +- .../EntityReplication/PropertySubscriber.h | 2 +- .../EntityReplication/ReplicationRecord.cpp | 2 +- .../NetworkEntityAuthorityTracker.cpp | 2 +- .../NetworkEntityAuthorityTracker.h | 2 +- .../NetworkEntity/NetworkEntityHandle.cpp | 2 +- .../NetworkEntity/NetworkEntityManager.cpp | 2 +- .../NetworkEntity/NetworkEntityManager.h | 2 +- .../NetworkEntity/NetworkEntityRpcMessage.cpp | 2 +- .../NetworkEntity/NetworkEntityTracker.cpp | 2 +- .../NetworkEntity/NetworkEntityTracker.h | 2 +- .../NetworkEntity/NetworkEntityTracker.inl | 2 +- .../NetworkEntityUpdateMessage.cpp | 2 +- .../NetworkEntity/NetworkSpawnableLibrary.cpp | 2 +- .../NetworkEntity/NetworkSpawnableLibrary.h | 2 +- .../Code/Source/NetworkInput/NetworkInput.cpp | 2 +- .../Source/NetworkInput/NetworkInputArray.cpp | 2 +- .../Source/NetworkInput/NetworkInputArray.h | 2 +- .../Source/NetworkInput/NetworkInputChild.cpp | 2 +- .../Source/NetworkInput/NetworkInputChild.h | 2 +- .../NetworkInput/NetworkInputHistory.cpp | 2 +- .../Source/NetworkInput/NetworkInputHistory.h | 2 +- .../NetworkInputMigrationVector.cpp | 2 +- .../NetworkInput/NetworkInputMigrationVector.h | 2 +- .../Code/Source/NetworkTime/NetworkTime.cpp | 2 +- .../Code/Source/NetworkTime/NetworkTime.h | 2 +- .../Code/Source/Physics/PhysicsUtils.cpp | 2 +- .../Source/Pipeline/NetBindMarkerComponent.cpp | 2 +- .../Source/Pipeline/NetBindMarkerComponent.h | 2 +- .../Source/Pipeline/NetworkPrefabProcessor.cpp | 2 +- .../Source/Pipeline/NetworkPrefabProcessor.h | 2 +- .../NetworkSpawnableHolderComponent.cpp | 2 +- .../Pipeline/NetworkSpawnableHolderComponent.h | 2 +- .../NullReplicationWindow.cpp | 2 +- .../ReplicationWindows/NullReplicationWindow.h | 2 +- .../ServerToClientReplicationWindow.cpp | 2 +- .../ServerToClientReplicationWindow.h | 2 +- .../Code/Tests/IMultiplayerConnectionMock.h | 2 +- Gems/Multiplayer/Code/Tests/Main.cpp | 2 +- Gems/Multiplayer/Code/Tests/MainTools.cpp | 2 +- .../Code/Tests/MultiplayerSystemTests.cpp | 2 +- .../Code/Tests/PrefabProcessingTests.cpp | 2 +- .../Code/Tests/RewindableContainerTests.cpp | 2 +- .../Code/Tests/RewindableObjectTests.cpp | 2 +- .../Code/multiplayer_autogen_files.cmake | 2 +- .../Code/multiplayer_debug_files.cmake | 2 +- .../Code/multiplayer_editor_shared_files.cmake | 2 +- Gems/Multiplayer/Code/multiplayer_files.cmake | 2 +- .../Code/multiplayer_shared_files.cmake | 2 +- .../Code/multiplayer_tests_files.cmake | 2 +- .../Code/multiplayer_tools_files.cmake | 2 +- .../Code/multiplayer_tools_tests_files.cmake | 2 +- Gems/MultiplayerCompression/CMakeLists.txt | 2 +- .../MultiplayerCompression/Code/CMakeLists.txt | 2 +- .../Code/Source/LZ4Compressor.cpp | 2 +- .../Code/Source/LZ4Compressor.h | 2 +- .../Source/MultiplayerCompressionFactory.cpp | 2 +- .../Source/MultiplayerCompressionFactory.h | 2 +- .../Source/MultiplayerCompressionModule.cpp | 2 +- .../MultiplayerCompressionSystemComponent.cpp | 2 +- .../MultiplayerCompressionSystemComponent.h | 2 +- .../Code/Tests/MultiplayerCompressionTest.cpp | 2 +- .../Code/multiplayercompression_files.cmake | 2 +- .../multiplayercompression_shared_files.cmake | 2 +- .../multiplayercompression_tests_files.cmake | 2 +- Gems/NvCloth/CMakeLists.txt | 2 +- Gems/NvCloth/Code/CMakeLists.txt | 2 +- Gems/NvCloth/Code/Include/NvCloth/ICloth.h | 2 +- .../Code/Include/NvCloth/IClothConfigurator.h | 2 +- .../Code/Include/NvCloth/IClothSystem.h | 2 +- .../Code/Include/NvCloth/IFabricCooker.h | 2 +- Gems/NvCloth/Code/Include/NvCloth/ISolver.h | 2 +- .../Code/Include/NvCloth/ITangentSpaceHelper.h | 2 +- Gems/NvCloth/Code/Include/NvCloth/Types.h | 2 +- .../Code/Platform/Android/PAL_android.cmake | 2 +- .../Code/Platform/Linux/PAL_linux.cmake | 2 +- Gems/NvCloth/Code/Platform/Mac/PAL_mac.cmake | 2 +- .../Code/Platform/Windows/PAL_windows.cmake | 2 +- Gems/NvCloth/Code/Platform/iOS/PAL_ios.cmake | 2 +- .../Code/Source/Components/ClothComponent.cpp | 2 +- .../Code/Source/Components/ClothComponent.h | 2 +- .../ClothComponentMesh/ActorClothColliders.cpp | 2 +- .../ClothComponentMesh/ActorClothColliders.h | 2 +- .../ClothComponentMesh/ActorClothSkinning.cpp | 2 +- .../ClothComponentMesh/ActorClothSkinning.h | 2 +- .../ClothComponentMesh/ClothComponentMesh.cpp | 2 +- .../ClothComponentMesh/ClothComponentMesh.h | 2 +- .../ClothComponentMesh/ClothConstraints.cpp | 2 +- .../ClothComponentMesh/ClothConstraints.h | 2 +- .../ClothComponentMesh/ClothDebugDisplay.cpp | 2 +- .../ClothComponentMesh/ClothDebugDisplay.h | 2 +- .../Source/Components/ClothConfiguration.cpp | 2 +- .../Source/Components/ClothConfiguration.h | 2 +- .../Source/Components/EditorClothComponent.cpp | 2 +- .../Source/Components/EditorClothComponent.h | 2 +- .../Source/Editor/ComboBoxEditButtonPair.cpp | 2 +- .../Source/Editor/ComboBoxEditButtonPair.h | 2 +- .../Source/Editor/EditorSystemComponent.cpp | 2 +- .../Code/Source/Editor/EditorSystemComponent.h | 2 +- .../Code/Source/Editor/MeshNodeHandler.cpp | 2 +- .../Code/Source/Editor/MeshNodeHandler.h | 2 +- .../Code/Source/Editor/PropertyTypes.cpp | 2 +- .../NvCloth/Code/Source/Editor/PropertyTypes.h | 2 +- Gems/NvCloth/Code/Source/Module.cpp | 2 +- Gems/NvCloth/Code/Source/ModuleUnsupported.cpp | 2 +- .../Source/Pipeline/SceneAPIExt/ClothRule.cpp | 2 +- .../Source/Pipeline/SceneAPIExt/ClothRule.h | 2 +- .../Pipeline/SceneAPIExt/ClothRuleBehavior.cpp | 2 +- .../Pipeline/SceneAPIExt/ClothRuleBehavior.h | 2 +- Gems/NvCloth/Code/Source/System/Cloth.cpp | 2 +- Gems/NvCloth/Code/Source/System/Cloth.h | 2 +- Gems/NvCloth/Code/Source/System/Fabric.h | 2 +- .../Code/Source/System/FabricCooker.cpp | 2 +- Gems/NvCloth/Code/Source/System/FabricCooker.h | 2 +- Gems/NvCloth/Code/Source/System/Factory.cpp | 2 +- Gems/NvCloth/Code/Source/System/Factory.h | 2 +- Gems/NvCloth/Code/Source/System/NvTypes.cpp | 2 +- Gems/NvCloth/Code/Source/System/NvTypes.h | 2 +- Gems/NvCloth/Code/Source/System/Solver.cpp | 2 +- Gems/NvCloth/Code/Source/System/Solver.h | 2 +- .../Code/Source/System/SystemComponent.cpp | 2 +- .../Code/Source/System/SystemComponent.h | 2 +- .../Code/Source/System/TangentSpaceHelper.cpp | 2 +- .../Code/Source/System/TangentSpaceHelper.h | 2 +- Gems/NvCloth/Code/Source/Utils/Allocators.h | 2 +- Gems/NvCloth/Code/Source/Utils/AssetHelper.cpp | 2 +- Gems/NvCloth/Code/Source/Utils/AssetHelper.h | 2 +- .../Code/Source/Utils/MeshAssetHelper.cpp | 2 +- .../Code/Source/Utils/MeshAssetHelper.h | 2 +- Gems/NvCloth/Code/Tests/ActorHelper.cpp | 2 +- Gems/NvCloth/Code/Tests/ActorHelper.h | 2 +- .../ActorClothCollidersTest.cpp | 2 +- .../ActorClothSkinningTest.cpp | 2 +- .../ClothComponentMeshTest.cpp | 2 +- .../ClothConstraintsTest.cpp | 2 +- .../Tests/Components/ClothComponentTest.cpp | 2 +- .../Components/EditorClothComponentTest.cpp | 2 +- .../Code/Tests/MeshVertexColorDataStub.h | 2 +- .../Tests/NvClothEditorTestEnvironment.cpp | 2 +- Gems/NvCloth/Code/Tests/NvClothTest.cpp | 2 +- .../Code/Tests/NvClothTestEnvironment.cpp | 2 +- .../Pipeline/SceneAPIExt/ClothRuleTest.cpp | 2 +- .../Code/Tests/System/ClothSystemTest.cpp | 2 +- Gems/NvCloth/Code/Tests/System/ClothTest.cpp | 2 +- .../Code/Tests/System/FabricCookerTest.cpp | 2 +- Gems/NvCloth/Code/Tests/System/FactoryTest.cpp | 2 +- Gems/NvCloth/Code/Tests/System/NvTypesTest.cpp | 2 +- Gems/NvCloth/Code/Tests/System/SolverTest.cpp | 2 +- .../Tests/System/TangentSpaceHelperTest.cpp | 2 +- .../NvCloth/Code/Tests/TriangleInputHelper.cpp | 2 +- Gems/NvCloth/Code/Tests/TriangleInputHelper.h | 2 +- Gems/NvCloth/Code/Tests/UnitTestHelper.cpp | 2 +- Gems/NvCloth/Code/Tests/UnitTestHelper.h | 2 +- .../Code/Tests/Utils/ActorAssetHelperTest.cpp | 2 +- Gems/NvCloth/Code/nvcloth_editor_files.cmake | 2 +- .../Code/nvcloth_editor_shared_files.cmake | 2 +- .../Code/nvcloth_editor_tests_files.cmake | 2 +- Gems/NvCloth/Code/nvcloth_files.cmake | 2 +- Gems/NvCloth/Code/nvcloth_shared_files.cmake | 2 +- Gems/NvCloth/Code/nvcloth_stub.cmake | 2 +- Gems/NvCloth/Code/nvcloth_stub_files.cmake | 2 +- Gems/NvCloth/Code/nvcloth_tests_files.cmake | 2 +- Gems/PBSreferenceMaterials/CMakeLists.txt | 2 +- Gems/PhysX/CMakeLists.txt | 2 +- Gems/PhysX/Code/CMakeLists.txt | 2 +- .../Code/Editor/ColliderAssetScaleMode.cpp | 2 +- .../PhysX/Code/Editor/ColliderAssetScaleMode.h | 2 +- Gems/PhysX/Code/Editor/ColliderBoxMode.cpp | 2 +- Gems/PhysX/Code/Editor/ColliderBoxMode.h | 2 +- Gems/PhysX/Code/Editor/ColliderCapsuleMode.cpp | 2 +- Gems/PhysX/Code/Editor/ColliderCapsuleMode.h | 2 +- .../Code/Editor/ColliderComponentMode.cpp | 2 +- Gems/PhysX/Code/Editor/ColliderComponentMode.h | 2 +- .../Code/Editor/ColliderComponentModeBus.h | 2 +- Gems/PhysX/Code/Editor/ColliderOffsetMode.cpp | 2 +- Gems/PhysX/Code/Editor/ColliderOffsetMode.h | 2 +- .../PhysX/Code/Editor/ColliderRotationMode.cpp | 2 +- Gems/PhysX/Code/Editor/ColliderRotationMode.h | 2 +- Gems/PhysX/Code/Editor/ColliderSphereMode.cpp | 2 +- Gems/PhysX/Code/Editor/ColliderSphereMode.h | 2 +- .../Code/Editor/ColliderSubComponentMode.h | 2 +- .../Code/Editor/CollisionFilteringWidget.cpp | 2 +- .../Code/Editor/CollisionFilteringWidget.h | 2 +- .../PhysX/Code/Editor/CollisionGroupWidget.cpp | 2 +- Gems/PhysX/Code/Editor/CollisionGroupWidget.h | 2 +- .../Code/Editor/CollisionGroupsWidget.cpp | 2 +- Gems/PhysX/Code/Editor/CollisionGroupsWidget.h | 2 +- .../PhysX/Code/Editor/CollisionLayerWidget.cpp | 2 +- Gems/PhysX/Code/Editor/CollisionLayerWidget.h | 2 +- .../Code/Editor/CollisionLayersWidget.cpp | 2 +- Gems/PhysX/Code/Editor/CollisionLayersWidget.h | 2 +- .../Code/Editor/ComboBoxEditButtonPair.cpp | 2 +- .../PhysX/Code/Editor/ComboBoxEditButtonPair.h | 2 +- .../Code/Editor/ConfigStringLineEditCtrl.cpp | 2 +- .../Code/Editor/ConfigStringLineEditCtrl.h | 2 +- Gems/PhysX/Code/Editor/ConfigurationWidget.cpp | 2 +- Gems/PhysX/Code/Editor/ConfigurationWidget.h | 2 +- .../PhysX/Code/Editor/ConfigurationWindowBus.h | 2 +- Gems/PhysX/Code/Editor/DebugDraw.cpp | 2 +- Gems/PhysX/Code/Editor/DebugDraw.h | 2 +- .../Code/Editor/DocumentationLinkWidget.cpp | 2 +- .../Code/Editor/DocumentationLinkWidget.h | 2 +- .../Code/Editor/EditorClassConverters.cpp | 2 +- Gems/PhysX/Code/Editor/EditorClassConverters.h | 2 +- .../Code/Editor/EditorJointComponentMode.cpp | 2 +- .../Code/Editor/EditorJointComponentMode.h | 2 +- .../Code/Editor/EditorJointConfiguration.cpp | 2 +- .../Code/Editor/EditorJointConfiguration.h | 2 +- .../Code/Editor/EditorJointTypeDrawer.cpp | 2 +- Gems/PhysX/Code/Editor/EditorJointTypeDrawer.h | 2 +- .../Code/Editor/EditorJointTypeDrawerBus.h | 2 +- .../Editor/EditorSubComponentModeAngleCone.cpp | 2 +- .../Editor/EditorSubComponentModeAngleCone.h | 2 +- .../Editor/EditorSubComponentModeAnglePair.cpp | 2 +- .../Editor/EditorSubComponentModeAnglePair.h | 2 +- .../Code/Editor/EditorSubComponentModeBase.cpp | 2 +- .../Code/Editor/EditorSubComponentModeBase.h | 2 +- .../Editor/EditorSubComponentModeLinear.cpp | 2 +- .../Code/Editor/EditorSubComponentModeLinear.h | 2 +- .../Editor/EditorSubComponentModeRotation.cpp | 2 +- .../Editor/EditorSubComponentModeRotation.h | 2 +- .../Code/Editor/EditorSubComponentModeSnap.cpp | 2 +- .../Code/Editor/EditorSubComponentModeSnap.h | 2 +- .../EditorSubComponentModeSnapPosition.cpp | 2 +- .../EditorSubComponentModeSnapPosition.h | 2 +- .../EditorSubComponentModeSnapRotation.cpp | 2 +- .../EditorSubComponentModeSnapRotation.h | 2 +- .../Code/Editor/EditorSubComponentModeVec3.cpp | 2 +- .../Code/Editor/EditorSubComponentModeVec3.h | 2 +- .../Code/Editor/EditorViewportEntityPicker.cpp | 2 +- .../Code/Editor/EditorViewportEntityPicker.h | 2 +- Gems/PhysX/Code/Editor/EditorWindow.cpp | 2 +- Gems/PhysX/Code/Editor/EditorWindow.h | 2 +- .../Code/Editor/InertiaPropertyHandler.cpp | 2 +- .../PhysX/Code/Editor/InertiaPropertyHandler.h | 2 +- Gems/PhysX/Code/Editor/MaterialIdWidget.cpp | 2 +- Gems/PhysX/Code/Editor/MaterialIdWidget.h | 2 +- .../Code/Editor/PolygonPrismMeshUtils.cpp | 2 +- Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.h | 2 +- Gems/PhysX/Code/Editor/PropertyTypes.cpp | 2 +- Gems/PhysX/Code/Editor/PropertyTypes.h | 2 +- Gems/PhysX/Code/Editor/PvdWidget.cpp | 2 +- Gems/PhysX/Code/Editor/PvdWidget.h | 2 +- Gems/PhysX/Code/Editor/SettingsWidget.cpp | 2 +- Gems/PhysX/Code/Editor/SettingsWidget.h | 2 +- .../Components/EditorSystemComponent.cpp | 2 +- .../Source/Components/EditorSystemComponent.h | 2 +- .../PhysXEditorSettingsRegistryManager.cpp | 2 +- .../PhysXEditorSettingsRegistryManager.h | 2 +- .../Code/Editor/UniqueStringContainer.cpp | 2 +- Gems/PhysX/Code/Editor/UniqueStringContainer.h | 2 +- .../Include/PhysX/CharacterControllerBus.h | 2 +- .../Code/Include/PhysX/CharacterGameplayBus.h | 2 +- .../Code/Include/PhysX/ColliderComponentBus.h | 2 +- .../Code/Include/PhysX/ColliderShapeBus.h | 2 +- .../Code/Include/PhysX/ComponentTypeIds.h | 2 +- .../PhysX/Configuration/PhysXConfiguration.h | 2 +- .../PhysX/Debug/PhysXDebugConfiguration.h | 2 +- .../Include/PhysX/Debug/PhysXDebugInterface.h | 2 +- .../PhysX/EditorColliderComponentRequestBus.h | 2 +- Gems/PhysX/Code/Include/PhysX/EditorJointBus.h | 2 +- .../Include/PhysX/ForceRegionComponentBus.h | 2 +- .../Code/Include/PhysX/HeightFieldAsset.cpp | 2 +- .../Code/Include/PhysX/HeightFieldAsset.h | 2 +- Gems/PhysX/Code/Include/PhysX/MathConversion.h | 2 +- Gems/PhysX/Code/Include/PhysX/MeshAsset.h | 2 +- .../Include/PhysX/MeshColliderComponentBus.h | 2 +- .../Code/Include/PhysX/NativeTypeIdentifiers.h | 2 +- Gems/PhysX/Code/Include/PhysX/PhysXLocks.h | 2 +- .../Code/Include/PhysX/SystemComponentBus.h | 2 +- Gems/PhysX/Code/Include/PhysX/UserDataTypes.h | 2 +- .../PhysX/Code/Include/PhysX/UserDataTypes.inl | 2 +- Gems/PhysX/Code/Include/PhysX/Utils.h | 2 +- Gems/PhysX/Code/Include/PhysX/Utils.inl | 2 +- .../PhysX/Code/NumericalMethods/CMakeLists.txt | 2 +- .../Include/NumericalMethods/Eigenanalysis.h | 2 +- .../Include/NumericalMethods/Optimization.h | 2 +- .../Eigenanalysis/EigenanalysisUtilities.cpp | 2 +- .../Source/Eigenanalysis/Solver3x3.cpp | 2 +- .../Source/Eigenanalysis/Solver3x3.h | 2 +- .../Source/Eigenanalysis/Utilities.h | 2 +- .../NumericalMethods/Source/LinearAlgebra.cpp | 2 +- .../NumericalMethods/Source/LinearAlgebra.h | 2 +- .../Source/NumericalMethods.cpp | 2 +- .../Source/NumericalMethods_precompiled.h | 2 +- .../Source/Optimization/Constants.h | 2 +- .../Source/Optimization/LineSearch.cpp | 2 +- .../Source/Optimization/LineSearch.h | 2 +- .../Source/Optimization/SolverBFGS.cpp | 2 +- .../Source/Optimization/SolverBFGS.h | 2 +- .../Source/Optimization/Utilities.cpp | 2 +- .../Source/Optimization/Utilities.h | 2 +- .../Code/NumericalMethods/Tests/CommonTest.cpp | 2 +- .../Tests/EigenanalysisTest.cpp | 2 +- .../NumericalMethods/Tests/Environment.cpp | 2 +- .../Code/NumericalMethods/Tests/Environment.h | 2 +- .../Tests/OptimizationTest.cpp | 2 +- .../numericalmethods_files.cmake | 2 +- .../numericalmethods_tests_files.cmake | 2 +- Gems/PhysX/Code/Source/BallJointComponent.cpp | 2 +- Gems/PhysX/Code/Source/BallJointComponent.h | 2 +- .../Code/Source/BaseColliderComponent.cpp | 2 +- Gems/PhysX/Code/Source/BaseColliderComponent.h | 2 +- .../PhysX/Code/Source/BoxColliderComponent.cpp | 2 +- Gems/PhysX/Code/Source/BoxColliderComponent.h | 2 +- .../Code/Source/CapsuleColliderComponent.cpp | 2 +- .../Code/Source/CapsuleColliderComponent.h | 2 +- Gems/PhysX/Code/Source/Collision.cpp | 2 +- Gems/PhysX/Code/Source/Collision.h | 2 +- .../Source/Common/PhysXSceneQueryHelpers.cpp | 2 +- .../Source/Common/PhysXSceneQueryHelpers.h | 2 +- .../PhysX/Code/Source/ComponentDescriptors.cpp | 2 +- Gems/PhysX/Code/Source/ComponentDescriptors.h | 2 +- .../Configuration/PhysXConfiguration.cpp | 2 +- .../PhysXSettingsRegistryManager.cpp | 2 +- .../PhysXSettingsRegistryManager.h | 2 +- .../Configuration/PhysXDebugConfiguration.cpp | 2 +- Gems/PhysX/Code/Source/Debug/PhysXDebug.cpp | 2 +- Gems/PhysX/Code/Source/Debug/PhysXDebug.h | 2 +- .../Code/Source/DefaultWorldComponent.cpp | 2 +- Gems/PhysX/Code/Source/DefaultWorldComponent.h | 2 +- .../Code/Source/EditorBallJointComponent.cpp | 2 +- .../Code/Source/EditorBallJointComponent.h | 2 +- .../Code/Source/EditorColliderComponent.cpp | 2 +- .../Code/Source/EditorColliderComponent.h | 2 +- .../Code/Source/EditorComponentDescriptors.cpp | 2 +- .../Code/Source/EditorComponentDescriptors.h | 2 +- .../Code/Source/EditorFixedJointComponent.cpp | 2 +- .../Code/Source/EditorFixedJointComponent.h | 2 +- .../Code/Source/EditorForceRegionComponent.cpp | 2 +- .../Code/Source/EditorForceRegionComponent.h | 2 +- .../Code/Source/EditorHingeJointComponent.cpp | 2 +- .../Code/Source/EditorHingeJointComponent.h | 2 +- .../PhysX/Code/Source/EditorJointComponent.cpp | 2 +- Gems/PhysX/Code/Source/EditorJointComponent.h | 2 +- .../Code/Source/EditorRigidBodyComponent.cpp | 2 +- .../Code/Source/EditorRigidBodyComponent.h | 2 +- .../Source/EditorShapeColliderComponent.cpp | 2 +- .../Code/Source/EditorShapeColliderComponent.h | 2 +- Gems/PhysX/Code/Source/FixedJointComponent.cpp | 2 +- Gems/PhysX/Code/Source/FixedJointComponent.h | 2 +- Gems/PhysX/Code/Source/ForceRegion.cpp | 2 +- Gems/PhysX/Code/Source/ForceRegion.h | 2 +- .../PhysX/Code/Source/ForceRegionComponent.cpp | 2 +- Gems/PhysX/Code/Source/ForceRegionComponent.h | 2 +- Gems/PhysX/Code/Source/ForceRegionForces.cpp | 2 +- Gems/PhysX/Code/Source/ForceRegionForces.h | 2 +- Gems/PhysX/Code/Source/HingeJointComponent.cpp | 2 +- Gems/PhysX/Code/Source/HingeJointComponent.h | 2 +- Gems/PhysX/Code/Source/Joint.cpp | 2 +- Gems/PhysX/Code/Source/Joint.h | 2 +- Gems/PhysX/Code/Source/JointComponent.cpp | 2 +- Gems/PhysX/Code/Source/JointComponent.h | 2 +- Gems/PhysX/Code/Source/Material.cpp | 2 +- Gems/PhysX/Code/Source/Material.h | 2 +- .../Code/Source/MeshColliderComponent.cpp | 2 +- Gems/PhysX/Code/Source/MeshColliderComponent.h | 2 +- Gems/PhysX/Code/Source/Module.cpp | 2 +- Gems/PhysX/Code/Source/ModuleUnsupported.cpp | 2 +- Gems/PhysX/Code/Source/NameConstants.cpp | 2 +- Gems/PhysX/Code/Source/NameConstants.h | 2 +- .../API/CharacterController.cpp | 2 +- .../PhysXCharacters/API/CharacterController.h | 2 +- .../PhysXCharacters/API/CharacterUtils.cpp | 2 +- .../PhysXCharacters/API/CharacterUtils.h | 2 +- .../Source/PhysXCharacters/API/Ragdoll.cpp | 2 +- .../Code/Source/PhysXCharacters/API/Ragdoll.h | 2 +- .../Source/PhysXCharacters/API/RagdollNode.cpp | 2 +- .../Source/PhysXCharacters/API/RagdollNode.h | 2 +- .../CharacterControllerComponent.cpp | 2 +- .../Components/CharacterControllerComponent.h | 2 +- .../Components/CharacterGameplayComponent.cpp | 2 +- .../Components/CharacterGameplayComponent.h | 2 +- .../EditorCharacterControllerComponent.cpp | 2 +- .../EditorCharacterControllerComponent.h | 2 +- .../EditorCharacterGameplayComponent.cpp | 2 +- .../EditorCharacterGameplayComponent.h | 2 +- .../Components/RagdollComponent.cpp | 2 +- .../Components/RagdollComponent.h | 2 +- .../Code/Source/PhysXUnsupported_precompiled.h | 2 +- Gems/PhysX/Code/Source/PhysX_precompiled.h | 2 +- .../Pipeline/HeightFieldAssetHandler.cpp | 2 +- .../Source/Pipeline/HeightFieldAssetHandler.h | 2 +- .../Code/Source/Pipeline/MeshAssetHandler.cpp | 2 +- .../Code/Source/Pipeline/MeshAssetHandler.h | 2 +- .../Code/Source/Pipeline/MeshBehavior.cpp | 2 +- Gems/PhysX/Code/Source/Pipeline/MeshBehavior.h | 2 +- .../Code/Source/Pipeline/MeshExporter.cpp | 2 +- Gems/PhysX/Code/Source/Pipeline/MeshExporter.h | 2 +- Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp | 2 +- Gems/PhysX/Code/Source/Pipeline/MeshGroup.h | 2 +- .../AbstractShapeParameterization.cpp | 2 +- .../AbstractShapeParameterization.h | 2 +- .../PrimitiveShapeFitter.cpp | 2 +- .../PrimitiveShapeFitter.h | 2 +- .../Pipeline/PrimitiveShapeFitter/Utils.cpp | 2 +- .../Pipeline/PrimitiveShapeFitter/Utils.h | 2 +- .../Code/Source/Pipeline/StreamWrapper.cpp | 2 +- .../PhysX/Code/Source/Pipeline/StreamWrapper.h | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Platform/Android/PhysX_Traits_Android.h | 2 +- .../Platform/Android/PhysX_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Source/Platform/Linux/PhysX_Traits_Linux.h | 2 +- .../Platform/Linux/PhysX_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Source/Platform/Mac/PhysX_Traits_Mac.h | 2 +- .../Platform/Mac/PhysX_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/Windows/PhysX_Traits_Platform.h | 2 +- .../Platform/Windows/PhysX_Traits_Windows.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../Platform/iOS/PhysX_Traits_Platform.h | 2 +- .../Source/Platform/iOS/PhysX_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Gems/PhysX/Code/Source/RigidBody.cpp | 2 +- Gems/PhysX/Code/Source/RigidBody.h | 2 +- Gems/PhysX/Code/Source/RigidBodyComponent.cpp | 2 +- Gems/PhysX/Code/Source/RigidBodyComponent.h | 2 +- Gems/PhysX/Code/Source/RigidBodyStatic.cpp | 2 +- Gems/PhysX/Code/Source/RigidBodyStatic.h | 2 +- Gems/PhysX/Code/Source/Scene/PhysXScene.cpp | 2 +- Gems/PhysX/Code/Source/Scene/PhysXScene.h | 2 +- .../Code/Source/Scene/PhysXSceneInterface.cpp | 2 +- .../Code/Source/Scene/PhysXSceneInterface.h | 2 +- .../PhysXSceneSimulationEventCallback.cpp | 2 +- .../Scene/PhysXSceneSimulationEventCallback.h | 2 +- .../PhysXSceneSimulationFilterCallback.cpp | 2 +- .../Scene/PhysXSceneSimulationFilterCallback.h | 2 +- Gems/PhysX/Code/Source/Shape.cpp | 2 +- Gems/PhysX/Code/Source/Shape.h | 2 +- .../Code/Source/ShapeColliderComponent.cpp | 2 +- .../PhysX/Code/Source/ShapeColliderComponent.h | 2 +- .../Code/Source/SphereColliderComponent.cpp | 2 +- .../Code/Source/SphereColliderComponent.h | 2 +- .../Code/Source/StaticRigidBodyComponent.cpp | 2 +- .../Code/Source/StaticRigidBodyComponent.h | 2 +- .../Code/Source/System/PhysXAllocator.cpp | 2 +- Gems/PhysX/Code/Source/System/PhysXAllocator.h | 2 +- .../Code/Source/System/PhysXCookingParams.cpp | 2 +- .../Code/Source/System/PhysXCookingParams.h | 2 +- .../Code/Source/System/PhysXCpuDispatcher.cpp | 2 +- .../Code/Source/System/PhysXCpuDispatcher.h | 2 +- Gems/PhysX/Code/Source/System/PhysXJob.cpp | 2 +- Gems/PhysX/Code/Source/System/PhysXJob.h | 2 +- .../Code/Source/System/PhysXSdkCallbacks.cpp | 2 +- .../Code/Source/System/PhysXSdkCallbacks.h | 2 +- Gems/PhysX/Code/Source/System/PhysXSystem.cpp | 2 +- Gems/PhysX/Code/Source/System/PhysXSystem.h | 2 +- Gems/PhysX/Code/Source/SystemComponent.cpp | 2 +- Gems/PhysX/Code/Source/SystemComponent.h | 2 +- Gems/PhysX/Code/Source/Utils.cpp | 2 +- Gems/PhysX/Code/Source/Utils.h | 2 +- Gems/PhysX/Code/Source/WindProvider.cpp | 2 +- Gems/PhysX/Code/Source/WindProvider.h | 2 +- .../PhysXBenchmarkWashingMachine.cpp | 2 +- .../Benchmarks/PhysXBenchmarkWashingMachine.h | 2 +- .../Tests/Benchmarks/PhysXBenchmarksCommon.cpp | 2 +- .../Tests/Benchmarks/PhysXBenchmarksCommon.h | 2 +- .../Benchmarks/PhysXBenchmarksUtilities.cpp | 2 +- .../Benchmarks/PhysXBenchmarksUtilities.h | 2 +- .../Benchmarks/PhysXCharactersBenchmarks.cpp | 2 +- .../PhysXCharactersRagdollBenchmarks.cpp | 2 +- .../Benchmarks/PhysXGenericBenchmarks.cpp | 2 +- .../Tests/Benchmarks/PhysXJointBenchmarks.cpp | 2 +- .../Benchmarks/PhysXRigidBodyBenchmarks.cpp | 2 +- .../Benchmarks/PhysXSceneQueryBenchmarks.cpp | 2 +- .../Code/Tests/CharacterControllerTests.cpp | 2 +- Gems/PhysX/Code/Tests/ColliderScalingTests.cpp | 2 +- Gems/PhysX/Code/Tests/DebugDrawTests.cpp | 2 +- .../Tests/EditorCharacterControllerTests.cpp | 2 +- Gems/PhysX/Code/Tests/EditorTestUtilities.cpp | 2 +- Gems/PhysX/Code/Tests/EditorTestUtilities.h | 2 +- .../Tests/PhysXColliderComponentModeTests.cpp | 2 +- .../Code/Tests/PhysXCollisionFilteringTest.cpp | 2 +- .../Code/Tests/PhysXComponentBusTests.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXEditorTest.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXForceRegionTest.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXGenericTest.cpp | 2 +- .../Code/Tests/PhysXGenericTestFixture.cpp | 2 +- .../PhysX/Code/Tests/PhysXGenericTestFixture.h | 2 +- Gems/PhysX/Code/Tests/PhysXJointsTest.cpp | 2 +- .../Code/Tests/PhysXMultithreadingTest.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXSceneTests.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXSystemTests.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXTestCommon.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXTestCommon.h | 2 +- Gems/PhysX/Code/Tests/PhysXTestCommon.inl | 2 +- Gems/PhysX/Code/Tests/PhysXTestEnvironment.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXTestEnvironment.h | 2 +- Gems/PhysX/Code/Tests/PhysXTestFixtures.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXTestFixtures.h | 2 +- Gems/PhysX/Code/Tests/PhysXTestUtil.cpp | 2 +- Gems/PhysX/Code/Tests/PhysXTestUtil.h | 2 +- Gems/PhysX/Code/Tests/PhysXWindTest.cpp | 2 +- .../Code/Tests/PolygonPrismMeshUtilsTest.cpp | 2 +- .../Tests/PrimitiveShapeFitterTestData.cpp | 2 +- .../Code/Tests/PrimitiveShapeFitterTests.cpp | 2 +- Gems/PhysX/Code/Tests/RagdollTestData.h | 2 +- Gems/PhysX/Code/Tests/RagdollTests.cpp | 2 +- .../Code/Tests/RigidBodyComponentTests.cpp | 2 +- .../Code/Tests/ShapeColliderComponentTests.cpp | 2 +- Gems/PhysX/Code/Tests/ShapeGeometryTests.cpp | 2 +- .../Tests/StaticRigidBodyComponentTests.cpp | 2 +- Gems/PhysX/Code/Tests/SystemComponentTest.cpp | 2 +- Gems/PhysX/Code/Tests/TestColliderComponent.h | 2 +- Gems/PhysX/Code/physx_editor_files.cmake | 2 +- .../PhysX/Code/physx_editor_shared_files.cmake | 2 +- Gems/PhysX/Code/physx_editor_tests_files.cmake | 2 +- Gems/PhysX/Code/physx_files.cmake | 2 +- Gems/PhysX/Code/physx_shared_files.cmake | 2 +- Gems/PhysX/Code/physx_tests_files.cmake | 2 +- Gems/PhysX/Code/physx_unsupported_files.cmake | 2 +- .../Code/physx_unsupported_shared_files.cmake | 2 +- Gems/PhysXDebug/CMakeLists.txt | 2 +- Gems/PhysXDebug/Code/CMakeLists.txt | 2 +- .../Code/Include/PhysXDebug/PhysXDebugBus.h | 2 +- .../Code/Source/EditorSystemComponent.cpp | 2 +- .../Code/Source/EditorSystemComponent.h | 2 +- Gems/PhysXDebug/Code/Source/Module.cpp | 2 +- .../Code/Source/ModuleUnsupported.cpp | 2 +- .../Source/PhysXDebugUnsupported_precompiled.h | 2 +- .../Code/Source/PhysXDebug_precompiled.h | 2 +- .../PhysXDebug/Code/Source/SystemComponent.cpp | 2 +- Gems/PhysXDebug/Code/Source/SystemComponent.h | 2 +- .../Code/physxdebug_editor_files.cmake | 2 +- Gems/PhysXDebug/Code/physxdebug_files.cmake | 2 +- .../Code/physxdebug_unsupported_files.cmake | 2 +- Gems/PhysXSamples/CMakeLists.txt | 2 +- Gems/Prefab/CMakeLists.txt | 2 +- Gems/Prefab/PrefabBuilder/CMakeLists.txt | 2 +- .../PrefabBuilder/PrefabBuilderComponent.cpp | 2 +- .../PrefabBuilder/PrefabBuilderComponent.h | 2 +- .../PrefabBuilder/PrefabBuilderModule.cpp | 2 +- .../PrefabBuilder/PrefabBuilderTests.cpp | 2 +- Gems/Prefab/PrefabBuilder/PrefabBuilderTests.h | 2 +- .../PrefabBuilder/prefabbuilder_files.cmake | 2 +- .../prefabbuilder_module_files.cmake | 2 +- .../prefabbuilder_tests_files.cmake | 2 +- Gems/Presence/CMakeLists.txt | 2 +- Gems/Presence/Code/CMakeLists.txt | 2 +- .../Include/Presence/PresenceNotificationBus.h | 2 +- .../Code/Include/Presence/PresenceRequestBus.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Platform/AppleTV/platform_appletv.cmake | 2 +- .../PresenceSystemComponent_Unimplemented.cpp | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Gems/Presence/Code/Source/PresenceModule.cpp | 2 +- .../Code/Source/PresenceSystemComponent.cpp | 2 +- .../Code/Source/PresenceSystemComponent.h | 2 +- Gems/Presence/Code/presence_files.cmake | 2 +- Gems/Presence/Code/presence_shared_files.cmake | 2 +- Gems/PrimitiveAssets/CMakeLists.txt | 2 +- Gems/PythonAssetBuilder/CMakeLists.txt | 2 +- Gems/PythonAssetBuilder/Code/CMakeLists.txt | 2 +- .../PythonAssetBuilder/PythonAssetBuilderBus.h | 2 +- .../PythonBuilderNotificationBus.h | 2 +- .../PythonBuilderRequestBus.h | 2 +- .../pythonassetbuilder_static_clang.cmake | 2 +- .../Clang/pythonassetbuilder_tests_clang.cmake | 2 +- .../MSVC/pythonassetbuilder_static_msvc.cmake | 2 +- .../MSVC/pythonassetbuilder_tests_msvc.cmake | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Code/Source/PythonAssetBuilderModule.cpp | 2 +- .../PythonAssetBuilderSystemComponent.cpp | 2 +- .../Source/PythonAssetBuilderSystemComponent.h | 2 +- .../Code/Source/PythonBuilderMessageSink.cpp | 2 +- .../Code/Source/PythonBuilderMessageSink.h | 2 +- .../PythonBuilderNotificationHandler.cpp | 2 +- .../Source/PythonBuilderNotificationHandler.h | 2 +- .../Code/Source/PythonBuilderWorker.cpp | 2 +- .../Code/Source/PythonBuilderWorker.h | 2 +- .../Code/Tests/PythonAssetBuilderTest.cpp | 2 +- .../Code/Tests/PythonBuilderCreateJobsTest.cpp | 2 +- .../Code/Tests/PythonBuilderProcessJobTest.cpp | 2 +- .../Code/Tests/PythonBuilderRegisterTest.cpp | 2 +- .../Code/Tests/PythonBuilderTestShared.h | 2 +- .../Code/Tests/asset_builder_example.py | 2 +- .../Code/pythonassetbuilder_common_files.cmake | 2 +- .../Code/pythonassetbuilder_editor_files.cmake | 2 +- ...pythonassetbuilder_editor_tests_files.cmake | 2 +- .../Code/pythonassetbuilder_shared_files.cmake | 2 +- .../Code/pythonassetbuilder_tests_files.cmake | 2 +- .../Editor/Scripts/__init__.py | 2 +- .../Editor/Scripts/bootstrap.py | 2 +- .../Editor/Scripts/scene_api/_init_.py | 2 +- .../Editor/Scripts/scene_api/scene_data.py | 2 +- Gems/QtForPython/CMakeLists.txt | 2 +- Gems/QtForPython/Code/CMakeLists.txt | 2 +- .../Code/Include/QtForPython/QtForPythonBus.h | 2 +- .../Common/Clang/qtforpython_clang.cmake | 2 +- .../Common/MSVC/qtforpython_msvc.cmake | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Code/Source/QtForPythonModule.cpp | 2 +- .../Code/Source/QtForPythonSystemComponent.cpp | 2 +- .../Code/Source/QtForPythonSystemComponent.h | 2 +- .../Code/Tests/pyside_auto_menubar_test.py | 2 +- .../Tests/pyside_auto_menubar_test_case.py | 2 +- .../Code/qtforpython_editor_macos_files.cmake | 2 +- .../qtforpython_editor_windows_files.cmake | 2 +- .../Code/qtforpython_shared_files.cmake | 2 +- .../Editor/Scripts/az_qt_helpers.py | 2 +- Gems/QtForPython/Editor/Scripts/bootstrap.py | 2 +- .../Editor/Scripts/show_object_tree.py | 2 +- .../Editor/Scripts/tests/hello_world.py | 2 +- .../Editor/Scripts/tests/log_main_window.py | 2 +- Gems/RADTelemetry/CMakeLists.txt | 2 +- Gems/RADTelemetry/Code/CMakeLists.txt | 2 +- .../Android/RADTelemetry_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Linux/RADTelemetry_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Mac/RADTelemetry_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Windows/RADTelemetry_Traits_Platform.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../iOS/RADTelemetry_Traits_Platform.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Code/Source/ProfileTelemetryComponent.cpp | 2 +- .../Code/Source/ProfileTelemetryComponent.h | 2 +- .../Code/Source/RADTelemetryModule.cpp | 2 +- .../RADTelemetry/Code/radtelemetry_files.cmake | 2 +- .../Code/radtelemetry_shared_files.cmake | 2 +- Gems/SaveData/CMakeLists.txt | 2 +- Gems/SaveData/Code/CMakeLists.txt | 2 +- .../Include/SaveData/SaveDataNotificationBus.h | 2 +- .../Code/Include/SaveData/SaveDataRequestBus.h | 2 +- .../SaveData_SystemComponent_Android.cpp | 2 +- .../Platform/Android/SaveData_Traits_Android.h | 2 +- .../Android/SaveData_Traits_Platform.h | 2 +- .../Platform/Android/platform_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Android/platform_test_android_files.cmake | 2 +- .../Platform/AppleTV/platform_appletv.cmake | 2 +- .../Apple/SaveData_SystemComponent_Apple.mm | 2 +- .../SaveDataTest_Unimplemented.cpp | 2 +- .../SaveData_SystemComponent_Unimplemented.cpp | 2 +- .../Platform/Linux/SaveData_Traits_Linux.h | 2 +- .../Platform/Linux/SaveData_Traits_Platform.h | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Linux/platform_test_linux_files.cmake | 2 +- .../Source/Platform/Mac/SaveData_Traits_Mac.h | 2 +- .../Platform/Mac/SaveData_Traits_Platform.h | 2 +- .../Source/Platform/Mac/platform_mac.cmake | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Mac/platform_test_mac_files.cmake | 2 +- .../Platform/Windows/PAL_traits_windows.cmake | 2 +- .../SaveData_SystemComponent_Windows.cpp | 2 +- .../Windows/SaveData_Traits_Platform.h | 2 +- .../Platform/Windows/SaveData_Traits_Windows.h | 2 +- .../Windows/platform_test_windows_files.cmake | 2 +- .../Platform/Windows/platform_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Source/Platform/iOS/PAL_traits_ios.cmake | 2 +- .../Platform/iOS/SaveData_Traits_Platform.h | 2 +- .../Source/Platform/iOS/SaveData_Traits_iOS.h | 2 +- .../Source/Platform/iOS/platform_ios.cmake | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- .../Platform/iOS/platform_test_ios_files.cmake | 2 +- Gems/SaveData/Code/Source/SaveDataModule.cpp | 2 +- .../Code/Source/SaveDataSystemComponent.cpp | 2 +- .../Code/Source/SaveDataSystemComponent.h | 2 +- Gems/SaveData/Code/Tests/SaveDataTest.cpp | 2 +- Gems/SaveData/Code/Tests/SaveDataTest.h | 2 +- Gems/SaveData/Code/savedata_files.cmake | 2 +- Gems/SaveData/Code/savedata_shared_files.cmake | 2 +- Gems/SaveData/Code/savedata_tests_files.cmake | 2 +- Gems/SceneLoggingExample/CMakeLists.txt | 2 +- .../Code/Behaviors/LoggingGroupBehavior.cpp | 2 +- .../Code/Behaviors/LoggingGroupBehavior.h | 2 +- Gems/SceneLoggingExample/Code/CMakeLists.txt | 2 +- .../Code/Groups/LoggingGroup.cpp | 2 +- .../Code/Groups/LoggingGroup.h | 2 +- .../Processors/ExportTrackingProcessor.cpp | 2 +- .../Code/Processors/ExportTrackingProcessor.h | 2 +- .../Processors/LoadingTrackingProcessor.cpp | 2 +- .../Code/Processors/LoadingTrackingProcessor.h | 2 +- .../Code/SceneLoggingExampleModule.cpp | 2 +- .../Code/SceneLoggingExampleModule_Stub.cpp | 2 +- .../Code/sceneloggingexample_files.cmake | 2 +- .../sceneloggingexample_shared_files.cmake | 2 +- Gems/SceneProcessing/CMakeLists.txt | 2 +- Gems/SceneProcessing/Code/CMakeLists.txt | 2 +- .../Include/Config/SceneProcessingConfigBus.h | 2 +- .../SceneProcessingConfigSystemComponent.cpp | 2 +- .../SceneProcessingConfigSystemComponent.h | 2 +- .../Config/Components/SoftNameBehavior.cpp | 2 +- .../Config/Components/SoftNameBehavior.h | 2 +- .../SettingsObjects/FileSoftNameSetting.cpp | 2 +- .../SettingsObjects/FileSoftNameSetting.h | 2 +- .../SettingsObjects/NodeSoftNameSetting.cpp | 2 +- .../SettingsObjects/NodeSoftNameSetting.h | 2 +- .../Config/SettingsObjects/SoftNameSetting.cpp | 2 +- .../Config/SettingsObjects/SoftNameSetting.h | 2 +- .../Config/Widgets/GraphTypeSelector.cpp | 2 +- .../Source/Config/Widgets/GraphTypeSelector.h | 2 +- .../Components/MeshOptimizer/Array2D.h | 2 +- .../Components/MeshOptimizer/Array2D.inl | 2 +- .../Components/MeshOptimizer/MeshBuilder.cpp | 2 +- .../Components/MeshOptimizer/MeshBuilder.h | 2 +- .../MeshOptimizer/MeshBuilderInvalidIndex.h | 2 +- .../MeshOptimizer/MeshBuilderSkinningInfo.cpp | 2 +- .../MeshOptimizer/MeshBuilderSkinningInfo.h | 2 +- .../MeshOptimizer/MeshBuilderSubMesh.cpp | 2 +- .../MeshOptimizer/MeshBuilderSubMesh.h | 2 +- .../MeshBuilderVertexAttributeLayers.cpp | 2 +- .../MeshBuilderVertexAttributeLayers.h | 2 +- .../MeshOptimizer/MeshOptimizerComponent.cpp | 2 +- .../MeshOptimizer/MeshOptimizerComponent.h | 2 +- .../TangentGenerateComponent.cpp | 2 +- .../TangentGenerateComponent.h | 2 +- .../BlendShapeMikkTGenerator.cpp | 2 +- .../BlendShapeMikkTGenerator.h | 2 +- .../TangentGenerators/MikkTGenerator.cpp | 2 +- .../TangentGenerators/MikkTGenerator.h | 2 +- .../TangentPreExportComponent.cpp | 2 +- .../TangentPreExportComponent.h | 2 +- .../Source/Platform/Linux/platform_linux.cmake | 2 +- .../SceneBuilder/SceneBuilderComponent.cpp | 2 +- .../SceneBuilder/SceneBuilderComponent.h | 2 +- .../Source/SceneBuilder/SceneBuilderWorker.cpp | 2 +- .../Source/SceneBuilder/SceneBuilderWorker.h | 2 +- .../SceneBuilder/SceneSerializationHandler.cpp | 2 +- .../SceneBuilder/SceneSerializationHandler.h | 2 +- .../Source/SceneBuilder/TraceMessageHook.cpp | 2 +- .../Source/SceneBuilder/TraceMessageHook.h | 2 +- .../Code/Source/SceneProcessingModule.cpp | 2 +- .../Code/Source/SceneProcessingModule.h | 2 +- .../Code/Source/SceneProcessingModuleStub.cpp | 2 +- .../Code/Tests/InitSceneAPIFixture.h | 2 +- .../Tests/MeshBuilder/MeshBuilderTests.cpp | 2 +- .../Tests/MeshBuilder/MeshVerticesTests.cpp | 2 +- .../Tests/MeshBuilder/SkinInfluencesTests.cpp | 2 +- .../Tests/MeshOptimizer/HasBlendshapes.cpp | 2 +- .../SceneBuilder/SceneBuilderPhasesTests.cpp | 2 +- .../Tests/SceneBuilder/SceneBuilderTests.cpp | 2 +- .../Code/Tests/SceneProcessingConfigTest.cpp | 2 +- .../Code/sceneprocessing_editor_files.cmake | 2 +- .../sceneprocessing_editor_static_files.cmake | 2 +- .../sceneprocessing_editor_tests_files.cmake | 2 +- .../Code/sceneprocessing_files.cmake | 2 +- .../Code/sceneprocessing_tests_files.cmake | 2 +- Gems/ScriptCanvas/CMakeLists.txt | 2 +- .../Code/Asset/EditorAssetConversionBus.h | 2 +- .../Code/Asset/EditorAssetSystemComponent.cpp | 2 +- .../Code/Asset/EditorAssetSystemComponent.h | 2 +- .../Code/Asset/RuntimeAssetSystemComponent.cpp | 2 +- .../Code/Asset/RuntimeAssetSystemComponent.h | 2 +- .../Code/Builder/BuilderSystemComponent.h | 2 +- .../Builder/ScriptCanvasBuilderComponent.cpp | 2 +- .../Builder/ScriptCanvasBuilderComponent.h | 2 +- .../Code/Builder/ScriptCanvasBuilderWorker.cpp | 2 +- .../Code/Builder/ScriptCanvasBuilderWorker.h | 2 +- .../ScriptCanvasBuilderWorkerUtility.cpp | 2 +- .../ScriptCanvasFunctionBuilderWorker.cpp | 2 +- Gems/ScriptCanvas/Code/CMakeLists.txt | 2 +- .../ScriptCanvasFunctionAssetHandler.cpp | 2 +- .../ScriptCanvasFunctionAssetHolder.cpp | 2 +- .../ScriptCanvasFunctionAssetHolder.h | 2 +- .../Code/Editor/Assets/ScriptCanvasAsset.cpp | 2 +- .../Editor/Assets/ScriptCanvasAssetHandler.cpp | 2 +- .../Editor/Assets/ScriptCanvasAssetHelpers.cpp | 2 +- .../Editor/Assets/ScriptCanvasAssetHelpers.h | 2 +- .../Editor/Assets/ScriptCanvasAssetHolder.cpp | 2 +- .../Editor/Assets/ScriptCanvasAssetHolder.h | 2 +- .../Assets/ScriptCanvasAssetInstance.cpp | 2 +- .../Editor/Assets/ScriptCanvasAssetInstance.h | 2 +- .../Assets/ScriptCanvasAssetReference.cpp | 2 +- .../Editor/Assets/ScriptCanvasAssetReference.h | 2 +- .../ScriptCanvasAssetReferenceContainer.h | 2 +- .../Editor/Assets/ScriptCanvasAssetTracker.cpp | 2 +- .../Editor/Assets/ScriptCanvasAssetTracker.h | 2 +- .../Assets/ScriptCanvasAssetTrackerBus.h | 2 +- .../ScriptCanvasAssetTrackerDefinitions.h | 2 +- .../Editor/Assets/ScriptCanvasMemoryAsset.cpp | 2 +- .../Editor/Assets/ScriptCanvasMemoryAsset.h | 2 +- .../Editor/Assets/ScriptCanvasUndoHelper.cpp | 2 +- .../Editor/Assets/ScriptCanvasUndoHelper.h | 2 +- .../Code/Editor/Components/EditorGraph.cpp | 2 +- .../EditorGraphVariableManagerComponent.cpp | 2 +- .../Components/EditorScriptCanvasComponent.cpp | 2 +- .../Code/Editor/Components/EditorUtils.cpp | 2 +- .../Code/Editor/Components/GraphUpgrade.cpp | 2 +- .../Code/Editor/Components/IconComponent.cpp | 2 +- .../Code/Editor/Components/IconComponent.h | 2 +- .../Code/Editor/Debugger/Debugger.cpp | 2 +- .../Code/Editor/Debugger/Debugger.h | 2 +- .../Framework/ScriptCanvasGraphUtilities.h | 2 +- .../Framework/ScriptCanvasGraphUtilities.inl | 2 +- .../Editor/Framework/ScriptCanvasReporter.h | 2 +- .../Editor/Framework/ScriptCanvasReporter.inl | 2 +- .../Framework/ScriptCanvasTraceUtilities.h | 2 +- .../Code/Editor/GraphCanvas/AutomationIds.h | 2 +- .../DynamicOrderingDynamicSlotComponent.cpp | 2 +- .../DynamicOrderingDynamicSlotComponent.h | 2 +- .../Components/DynamicSlotComponent.cpp | 2 +- .../Components/DynamicSlotComponent.h | 2 +- .../Components/MappingComponent.cpp | 2 +- .../GraphCanvas/Components/MappingComponent.h | 2 +- .../AzEventHandlerNodeDescriptorComponent.cpp | 2 +- .../AzEventHandlerNodeDescriptorComponent.h | 2 +- .../ClassMethodNodeDescriptorComponent.cpp | 2 +- .../ClassMethodNodeDescriptorComponent.h | 2 +- ...EBusHandlerEventNodeDescriptorComponent.cpp | 2 +- .../EBusHandlerEventNodeDescriptorComponent.h | 2 +- .../EBusHandlerNodeDescriptorComponent.cpp | 2 +- .../EBusHandlerNodeDescriptorComponent.h | 2 +- .../EBusSenderNodeDescriptorComponent.cpp | 2 +- .../EBusSenderNodeDescriptorComponent.h | 2 +- .../EntityRefNodeDescriptorComponent.cpp | 2 +- .../EntityRefNodeDescriptorComponent.h | 2 +- ...nctionDefinitionNodeDescriptorComponent.cpp | 2 +- ...FunctionDefinitionNodeDescriptorComponent.h | 2 +- .../FunctionNodeDescriptorComponent.cpp | 2 +- .../FunctionNodeDescriptorComponent.h | 2 +- .../GetVariableNodeDescriptorComponent.cpp | 2 +- .../GetVariableNodeDescriptorComponent.h | 2 +- .../NodeDescriptorComponent.cpp | 2 +- .../NodeDescriptors/NodeDescriptorComponent.h | 2 +- .../NodelingDescriptorComponent.cpp | 2 +- .../NodelingDescriptorComponent.h | 2 +- ...entReceiverEventNodeDescriptorComponent.cpp | 2 +- ...EventReceiverEventNodeDescriptorComponent.h | 2 +- ...iptEventReceiverNodeDescriptorComponent.cpp | 2 +- ...criptEventReceiverNodeDescriptorComponent.h | 2 +- ...criptEventSenderNodeDescriptorComponent.cpp | 2 +- .../ScriptEventSenderNodeDescriptorComponent.h | 2 +- .../SetVariableNodeDescriptorComponent.cpp | 2 +- .../SetVariableNodeDescriptorComponent.h | 2 +- .../UserDefinedNodeDescriptorComponent.cpp | 2 +- .../UserDefinedNodeDescriptorComponent.h | 2 +- .../VariableNodeDescriptorComponent.cpp | 2 +- .../VariableNodeDescriptorComponent.h | 2 +- .../ScriptCanvasAssetIdDataInterface.h | 2 +- .../ScriptCanvasBoolDataInterface.h | 2 +- .../ScriptCanvasCRCDataInterface.h | 2 +- .../ScriptCanvasColorDataInterface.h | 2 +- .../DataInterfaces/ScriptCanvasDataInterface.h | 2 +- .../ScriptCanvasEntityIdDataInterface.h | 2 +- .../ScriptCanvasEnumDataInterface.h | 2 +- .../ScriptCanvasNumericDataInterface.h | 2 +- .../ScriptCanvasQuaternionDataInterface.h | 2 +- .../ScriptCanvasReadOnlyDataInterface.h | 2 +- .../ScriptCanvasStringDataInterface.h | 2 +- .../ScriptCanvasVariableDataInterface.h | 2 +- .../ScriptCanvasVectorDataInterface.h | 2 +- .../GraphCanvasEditorNotificationBusId.h | 2 +- ...ptCanvasEnumComboBoxPropertyDataInterface.h | 2 +- .../ScriptCanvasPropertyDataInterface.h | 2 +- .../ScriptCanvasStringPropertyDataInterface.h | 2 +- .../Code/Editor/GraphCanvas/PropertySlotIds.h | 2 +- .../ScriptCanvasFunctionAssetHandler.h | 2 +- .../ScriptCanvas/Assets/ScriptCanvasAsset.h | 2 +- .../ScriptCanvas/Assets/ScriptCanvasAssetBus.h | 2 +- .../Assets/ScriptCanvasAssetHandler.h | 2 +- .../Assets/ScriptCanvasAssetTypes.h | 2 +- .../Assets/ScriptCanvasBaseAssetData.h | 2 +- .../ScriptCanvas/Bus/DocumentContextBus.h | 2 +- .../Bus/EditorSceneVariableManagerBus.h | 2 +- .../ScriptCanvas/Bus/EditorScriptCanvasBus.h | 2 +- .../Editor/Include/ScriptCanvas/Bus/GraphBus.h | 2 +- .../Editor/Include/ScriptCanvas/Bus/IconBus.h | 2 +- .../Include/ScriptCanvas/Bus/NodeIdPair.h | 2 +- .../Include/ScriptCanvas/Bus/RequestBus.h | 2 +- .../Bus/ScriptCanvasAssetNodeBus.h | 2 +- .../Include/ScriptCanvas/Bus/ScriptCanvasBus.h | 2 +- .../Bus/ScriptCanvasExecutionBus.h | 2 +- .../Editor/Include/ScriptCanvas/Bus/UndoBus.h | 2 +- .../ScriptCanvas/Bus/UnitTestVerificationBus.h | 2 +- .../ScriptCanvas/Components/EditorGraph.h | 2 +- .../EditorGraphVariableManagerComponent.h | 2 +- .../Components/EditorScriptCanvasComponent.h | 2 +- .../ScriptCanvas/Components/EditorUtils.h | 2 +- .../ScriptCanvas/Components/GraphUpgrade.h | 2 +- .../ScriptCanvas/GraphCanvas/DynamicSlotBus.h | 2 +- .../ScriptCanvas/GraphCanvas/MappingBus.h | 2 +- .../GraphCanvas/NodeDescriptorBus.h | 2 +- .../Editor/Model/EntityMimeDataHandler.cpp | 2 +- .../Code/Editor/Model/EntityMimeDataHandler.h | 2 +- .../Code/Editor/Model/LibraryDataModel.cpp | 2 +- .../Code/Editor/Model/LibraryDataModel.h | 2 +- .../Model/UnitTestBrowserFilterModel.cpp | 2 +- .../Editor/Model/UnitTestBrowserFilterModel.h | 2 +- .../Code/Editor/Nodes/EditorLibrary.cpp | 2 +- .../Code/Editor/Nodes/EditorLibrary.h | 2 +- .../Code/Editor/Nodes/NodeCreateUtils.cpp | 2 +- .../Code/Editor/Nodes/NodeCreateUtils.h | 2 +- .../Code/Editor/Nodes/NodeDisplayUtils.cpp | 2 +- .../Code/Editor/Nodes/NodeDisplayUtils.h | 2 +- .../Code/Editor/Nodes/NodeUtils.cpp | 2 +- .../ScriptCanvas/Code/Editor/Nodes/NodeUtils.h | 2 +- .../Editor/Nodes/ScriptCanvasAssetNode.cpp | 2 +- .../Code/Editor/Nodes/ScriptCanvasAssetNode.h | 2 +- Gems/ScriptCanvas/Code/Editor/QtMetaTypes.h | 2 +- .../Code/Editor/ReflectComponent.cpp | 2 +- .../Code/Editor/ReflectComponent.h | 2 +- .../Code/Editor/ScriptCanvasEditorGem.cpp | 2 +- Gems/ScriptCanvas/Code/Editor/Settings.cpp | 2 +- Gems/ScriptCanvas/Code/Editor/Settings.h | 2 +- .../View/EditCtrls/GenericLineEditCtrl.h | 2 +- .../View/EditCtrls/GenericLineEditCtrl.inl | 2 +- .../View/EditCtrls/GenericLineEditCtrl.cpp | 2 +- .../Code/Editor/SystemComponent.cpp | 2 +- .../ScriptCanvas/Code/Editor/SystemComponent.h | 2 +- .../Code/Editor/Tests/test_Main.cpp | 2 +- .../Editor/Translation/TranslationHelper.h | 2 +- .../Editor/Undo/ScriptCanvasGraphCommand.cpp | 2 +- .../Editor/Undo/ScriptCanvasGraphCommand.h | 2 +- .../Editor/Undo/ScriptCanvasUndoManager.cpp | 2 +- .../Code/Editor/Undo/ScriptCanvasUndoManager.h | 2 +- .../Code/Editor/Utilities/Command.cpp | 2 +- .../Code/Editor/Utilities/Command.h | 2 +- .../Utilities/CommonSettingsConfigurations.cpp | 2 +- .../Utilities/CommonSettingsConfigurations.h | 2 +- .../Code/Editor/Utilities/RecentAssetPath.cpp | 2 +- .../Code/Editor/Utilities/RecentAssetPath.h | 2 +- .../Code/Editor/Utilities/RecentFiles.cpp | 2 +- .../Code/Editor/Utilities/RecentFiles.h | 2 +- .../ContainerWizard/ContainerTypeLineEdit.cpp | 2 +- .../ContainerWizard/ContainerTypeLineEdit.h | 2 +- .../ContainerWizard/ContainerWizard.cpp | 2 +- .../Dialogs/ContainerWizard/ContainerWizard.h | 2 +- .../Editor/View/Dialogs/NewGraphDialog.cpp | 2 +- .../Code/Editor/View/Dialogs/NewGraphDialog.h | 2 +- .../Editor/View/Dialogs/SettingsDialog.cpp | 2 +- .../Code/Editor/View/Dialogs/SettingsDialog.h | 2 +- .../View/Dialogs/UnsavedChangesDialog.cpp | 2 +- .../Editor/View/Dialogs/UnsavedChangesDialog.h | 2 +- .../View/Widgets/AssetGraphSceneDataBus.h | 2 +- .../Code/Editor/View/Widgets/CanvasWidget.cpp | 2 +- .../Code/Editor/View/Widgets/CanvasWidget.h | 2 +- .../Code/Editor/View/Widgets/CommandLine.cpp | 2 +- .../Code/Editor/View/Widgets/CommandLine.h | 2 +- .../DataTypePalette/DataTypePaletteModel.cpp | 2 +- .../DataTypePalette/DataTypePaletteModel.h | 2 +- .../Code/Editor/View/Widgets/GraphTabBar.cpp | 2 +- .../Code/Editor/View/Widgets/GraphTabBar.h | 2 +- .../Code/Editor/View/Widgets/LogPanel.cpp | 2 +- .../Code/Editor/View/Widgets/LogPanel.h | 2 +- .../LoggingAssetDataAggregator.cpp | 2 +- .../LoggingAssetDataAggregator.h | 2 +- .../LoggingAssetWindowSession.cpp | 2 +- .../LoggingAssetWindowSession.h | 2 +- .../LiveLoggingDataAggregator.cpp | 2 +- .../LiveLoggingDataAggregator.h | 2 +- .../LiveLoggingWindowSession.cpp | 2 +- .../LiveLoggingWindowSession.h | 2 +- .../LoggingPanel/LoggingDataAggregator.cpp | 2 +- .../LoggingPanel/LoggingDataAggregator.h | 2 +- .../View/Widgets/LoggingPanel/LoggingTypes.cpp | 2 +- .../View/Widgets/LoggingPanel/LoggingTypes.h | 2 +- .../Widgets/LoggingPanel/LoggingWindow.cpp | 2 +- .../View/Widgets/LoggingPanel/LoggingWindow.h | 2 +- .../LoggingPanel/LoggingWindowSession.cpp | 2 +- .../LoggingPanel/LoggingWindowSession.h | 2 +- .../LoggingPanel/LoggingWindowTreeItems.cpp | 2 +- .../LoggingPanel/LoggingWindowTreeItems.h | 2 +- .../EntityPivotTree/EntityPivotTree.cpp | 2 +- .../EntityPivotTree/EntityPivotTree.h | 2 +- .../GraphPivotTree/GraphPivotTree.cpp | 2 +- .../PivotTree/GraphPivotTree/GraphPivotTree.h | 2 +- .../LoggingPanel/PivotTree/PivotTreeWidget.cpp | 2 +- .../LoggingPanel/PivotTree/PivotTreeWidget.h | 2 +- .../View/Widgets/MainWindowStatusWidget.cpp | 2 +- .../View/Widgets/MainWindowStatusWidget.h | 2 +- .../NodePalette/CreateNodeMimeEvent.cpp | 2 +- .../Widgets/NodePalette/CreateNodeMimeEvent.h | 2 +- .../EBusNodePaletteTreeItemTypes.cpp | 2 +- .../NodePalette/EBusNodePaletteTreeItemTypes.h | 2 +- .../FunctionNodePaletteTreeItemTypes.cpp | 2 +- .../FunctionNodePaletteTreeItemTypes.h | 2 +- .../GeneralNodePaletteTreeItemTypes.cpp | 2 +- .../GeneralNodePaletteTreeItemTypes.h | 2 +- .../Widgets/NodePalette/NodePaletteModel.cpp | 2 +- .../Widgets/NodePalette/NodePaletteModel.h | 2 +- .../Widgets/NodePalette/NodePaletteModelBus.h | 2 +- .../ScriptEventsNodePaletteTreeItemTypes.cpp | 2 +- .../ScriptEventsNodePaletteTreeItemTypes.h | 2 +- .../SpecializedNodePaletteTreeItemTypes.cpp | 2 +- .../SpecializedNodePaletteTreeItemTypes.h | 2 +- .../VariableNodePaletteTreeItemTypes.cpp | 2 +- .../VariableNodePaletteTreeItemTypes.h | 2 +- .../Code/Editor/View/Widgets/PropertyGrid.cpp | 2 +- .../Code/Editor/View/Widgets/PropertyGrid.h | 2 +- .../Code/Editor/View/Widgets/PropertyGridBus.h | 2 +- .../View/Widgets/PropertyGridContextMenu.cpp | 2 +- .../View/Widgets/PropertyGridContextMenu.h | 2 +- .../ScriptCanvasNodePaletteDockWidget.cpp | 2 +- .../ScriptCanvasNodePaletteDockWidget.h | 2 +- .../StatisticsDialog/NodeUsageTreeItem.cpp | 2 +- .../StatisticsDialog/NodeUsageTreeItem.h | 2 +- .../ScriptCanvasStatisticsDialog.cpp | 2 +- .../ScriptCanvasStatisticsDialog.h | 2 +- .../UnitTestPanel/UnitTestDockWidget.cpp | 2 +- .../Widgets/UnitTestPanel/UnitTestDockWidget.h | 2 +- .../Widgets/UnitTestPanel/UnitTestTreeView.cpp | 2 +- .../Widgets/UnitTestPanel/UnitTestTreeView.h | 2 +- .../GraphValidationDockWidget.cpp | 2 +- .../GraphValidationDockWidget.h | 2 +- .../GraphValidationDockWidgetBus.h | 2 +- .../VariablePanel/GraphVariablesTableView.cpp | 2 +- .../VariablePanel/GraphVariablesTableView.h | 2 +- .../VariablePanel/SlotTypeSelectorWidget.cpp | 2 +- .../VariablePanel/SlotTypeSelectorWidget.h | 2 +- .../VariablePanel/VariableDockWidget.cpp | 2 +- .../Widgets/VariablePanel/VariableDockWidget.h | 2 +- .../VariablePanel/VariablePaletteTableView.cpp | 2 +- .../VariablePanel/VariablePaletteTableView.h | 2 +- .../Code/Editor/View/Widgets/WidgetBus.h | 2 +- .../View/Windows/CreateNodeContextMenu.cpp | 2 +- .../View/Windows/CreateNodeContextMenu.h | 2 +- .../View/Windows/EBusHandlerActionMenu.cpp | 2 +- .../View/Windows/EBusHandlerActionMenu.h | 2 +- .../Code/Editor/View/Windows/MainWindow.cpp | 2 +- .../Code/Editor/View/Windows/MainWindow.h | 2 +- .../Code/Editor/View/Windows/MainWindowBus.h | 2 +- .../View/Windows/ScriptCanvasContextMenus.cpp | 2 +- .../View/Windows/ScriptCanvasContextMenus.h | 2 +- .../Tools/UpgradeTool/UpgradeHelper.cpp | 2 +- .../Windows/Tools/UpgradeTool/UpgradeHelper.h | 2 +- .../Windows/Tools/UpgradeTool/UpgradeTool.cpp | 2 +- .../Windows/Tools/UpgradeTool/UpgradeTool.h | 2 +- .../Tools/UpgradeTool/VersionExplorer.cpp | 2 +- .../Tools/UpgradeTool/VersionExplorer.h | 2 +- Gems/ScriptCanvas/Code/Editor/precompiled.h | 2 +- .../ScriptCanvas/Asset/AssetDescription.h | 2 +- .../ScriptCanvas/Asset/AssetRegistry.cpp | 2 +- .../Include/ScriptCanvas/Asset/AssetRegistry.h | 2 +- .../ScriptCanvas/Asset/AssetRegistryBus.h | 2 +- .../ScriptCanvas/Asset/ExecutionLogAsset.cpp | 2 +- .../ScriptCanvas/Asset/ExecutionLogAsset.h | 2 +- .../ScriptCanvas/Asset/ExecutionLogAssetBus.h | 2 +- .../Functions/RuntimeFunctionAssetHandler.cpp | 2 +- .../Functions/RuntimeFunctionAssetHandler.h | 2 +- .../Functions/ScriptCanvasFunctionAsset.h | 2 +- .../ScriptCanvas/Asset/RuntimeAsset.cpp | 2 +- .../Include/ScriptCanvas/Asset/RuntimeAsset.h | 2 +- .../ScriptCanvas/Asset/RuntimeAssetHandler.cpp | 2 +- .../ScriptCanvas/Asset/RuntimeAssetHandler.h | 2 +- .../ScriptCanvas/Asset/ScriptCanvasAssetBase.h | 2 +- .../ScriptCanvas/Asset/ScriptCanvasAssetData.h | 2 +- .../AutoGen/ScriptCanvasGrammar_Header.jinja | 2 +- .../AutoGen/ScriptCanvasGrammar_Source.jinja | 2 +- .../AutoGen/ScriptCanvasNodeable_Header.jinja | 2 +- .../AutoGen/ScriptCanvasNodeable_Source.jinja | 2 +- .../AutoGen/ScriptCanvas_Macros.jinja | 2 +- .../AutoGen/ScriptCanvas_Nodeable_Macros.jinja | 2 +- .../ScriptCanvas/CodeGen/NodeableCodegen.h | 2 +- .../Include/ScriptCanvas/Core/Attributes.h | 2 +- .../Include/ScriptCanvas/Core/Connection.cpp | 2 +- .../Include/ScriptCanvas/Core/Connection.h | 2 +- .../Include/ScriptCanvas/Core/ConnectionBus.h | 2 +- .../Include/ScriptCanvas/Core/Contract.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Contract.h | 2 +- .../Include/ScriptCanvas/Core/ContractBus.h | 2 +- .../Code/Include/ScriptCanvas/Core/Contracts.h | 2 +- .../Core/Contracts/ConnectionLimitContract.cpp | 2 +- .../Core/Contracts/ConnectionLimitContract.h | 2 +- .../Core/Contracts/ContractRTTI.cpp | 2 +- .../ScriptCanvas/Core/Contracts/ContractRTTI.h | 2 +- .../DisallowReentrantExecutionContract.cpp | 2 +- .../DisallowReentrantExecutionContract.h | 2 +- .../DisplayGroupConnectedSlotLimitContract.cpp | 2 +- .../DisplayGroupConnectedSlotLimitContract.h | 2 +- .../Core/Contracts/DynamicTypeContract.cpp | 2 +- .../Core/Contracts/DynamicTypeContract.h | 2 +- .../Contracts/ExclusivePureDataContract.cpp | 2 +- .../Core/Contracts/ExclusivePureDataContract.h | 2 +- .../Core/Contracts/IsReferenceTypeContract.cpp | 2 +- .../Core/Contracts/IsReferenceTypeContract.h | 2 +- .../Core/Contracts/MathOperatorContract.cpp | 2 +- .../Core/Contracts/MathOperatorContract.h | 2 +- .../Core/Contracts/MethodOverloadContract.cpp | 2 +- .../Core/Contracts/MethodOverloadContract.h | 2 +- .../Core/Contracts/RestrictedNodeContract.cpp | 2 +- .../Core/Contracts/RestrictedNodeContract.h | 2 +- .../Core/Contracts/SlotTypeContract.cpp | 2 +- .../Core/Contracts/SlotTypeContract.h | 2 +- .../Core/Contracts/StorageRequiredContract.cpp | 2 +- .../Core/Contracts/StorageRequiredContract.h | 2 +- .../Core/Contracts/SupportsMethodContract.cpp | 2 +- .../Core/Contracts/SupportsMethodContract.h | 2 +- .../Core/Contracts/TypeContract.cpp | 2 +- .../ScriptCanvas/Core/Contracts/TypeContract.h | 2 +- .../Code/Include/ScriptCanvas/Core/Core.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Core.h | 2 +- .../Code/Include/ScriptCanvas/Core/Datum.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Datum.h | 2 +- .../Code/Include/ScriptCanvas/Core/DatumBus.h | 2 +- .../Include/ScriptCanvas/Core/EBusHandler.cpp | 2 +- .../Include/ScriptCanvas/Core/EBusHandler.h | 2 +- .../Include/ScriptCanvas/Core/EBusNodeBus.h | 2 +- .../Include/ScriptCanvas/Core/Endpoint.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Endpoint.h | 2 +- .../Core/ExecutionNotificationsBus.cpp | 2 +- .../Core/ExecutionNotificationsBus.h | 2 +- .../Code/Include/ScriptCanvas/Core/Graph.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Graph.h | 2 +- .../Code/Include/ScriptCanvas/Core/GraphBus.h | 2 +- .../Include/ScriptCanvas/Core/GraphData.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/GraphData.h | 2 +- .../ScriptCanvas/Core/GraphScopedTypes.h | 2 +- .../ScriptCanvas/Core/MethodConfiguration.cpp | 2 +- .../ScriptCanvas/Core/MethodConfiguration.h | 2 +- .../ScriptCanvas/Core/ModifiableDatumView.cpp | 2 +- .../ScriptCanvas/Core/ModifiableDatumView.h | 2 +- .../Code/Include/ScriptCanvas/Core/NamedId.h | 2 +- .../ScriptCanvas/Core/NativeDatumNode.h | 2 +- .../Code/Include/ScriptCanvas/Core/Node.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Node.h | 2 +- .../Code/Include/ScriptCanvas/Core/NodeBus.h | 2 +- .../ScriptCanvas/Core/NodeFunctionGeneric.h | 2 +- .../Include/ScriptCanvas/Core/Nodeable.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Nodeable.h | 2 +- .../Include/ScriptCanvas/Core/NodeableNode.cpp | 2 +- .../Include/ScriptCanvas/Core/NodeableNode.h | 2 +- .../Core/NodeableNodeOverloaded.cpp | 2 +- .../ScriptCanvas/Core/NodeableNodeOverloaded.h | 2 +- .../Include/ScriptCanvas/Core/NodeableOut.h | 2 +- .../Include/ScriptCanvas/Core/NodelingBus.h | 2 +- .../Include/ScriptCanvas/Core/PureData.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/PureData.h | 2 +- .../ScriptCanvas/Core/ScriptCanvasBus.h | 2 +- .../Code/Include/ScriptCanvas/Core/SignalBus.h | 2 +- .../Code/Include/ScriptCanvas/Core/Slot.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Slot.h | 2 +- .../Core/SlotConfigurationDefaults.h | 2 +- .../ScriptCanvas/Core/SlotConfigurations.cpp | 2 +- .../ScriptCanvas/Core/SlotConfigurations.h | 2 +- .../ScriptCanvas/Core/SlotExecutionMap.cpp | 2 +- .../ScriptCanvas/Core/SlotExecutionMap.h | 2 +- .../Include/ScriptCanvas/Core/SlotMetadata.cpp | 2 +- .../Include/ScriptCanvas/Core/SlotMetadata.h | 2 +- .../Code/Include/ScriptCanvas/Core/SlotNames.h | 2 +- .../ScriptCanvas/Core/SubgraphInterface.cpp | 2 +- .../ScriptCanvas/Core/SubgraphInterface.h | 2 +- .../Core/SubgraphInterfaceUtility.cpp | 2 +- .../Core/SubgraphInterfaceUtility.h | 2 +- .../Data/BehaviorContextObject.cpp | 2 +- .../ScriptCanvas/Data/BehaviorContextObject.h | 2 +- .../Data/BehaviorContextObjectPtr.cpp | 2 +- .../Data/BehaviorContextObjectPtr.h | 2 +- .../Code/Include/ScriptCanvas/Data/Data.cpp | 2 +- .../Code/Include/ScriptCanvas/Data/Data.h | 2 +- .../Include/ScriptCanvas/Data/DataMacros.h | 2 +- .../Include/ScriptCanvas/Data/DataRegistry.cpp | 2 +- .../Include/ScriptCanvas/Data/DataRegistry.h | 2 +- .../Include/ScriptCanvas/Data/DataTrait.cpp | 2 +- .../Code/Include/ScriptCanvas/Data/DataTrait.h | 2 +- .../Include/ScriptCanvas/Data/NumericData.h | 2 +- .../ScriptCanvas/Data/PropertyTraits.cpp | 2 +- .../Include/ScriptCanvas/Data/PropertyTraits.h | 2 +- .../Code/Include/ScriptCanvas/Data/Traits.h | 2 +- .../Code/Include/ScriptCanvas/Debugger/API.cpp | 2 +- .../Code/Include/ScriptCanvas/Debugger/API.h | 2 +- .../ScriptCanvas/Debugger/APIArguments.cpp | 2 +- .../ScriptCanvas/Debugger/APIArguments.h | 2 +- .../Code/Include/ScriptCanvas/Debugger/Bus.h | 2 +- .../Debugger/ClientTransceiver.cpp | 2 +- .../ScriptCanvas/Debugger/ClientTransceiver.h | 2 +- .../Include/ScriptCanvas/Debugger/Debugger.cpp | 2 +- .../Include/ScriptCanvas/Debugger/Debugger.h | 2 +- .../ScriptCanvas/Debugger/LogReader.cpp | 2 +- .../Include/ScriptCanvas/Debugger/LogReader.h | 2 +- .../Include/ScriptCanvas/Debugger/Logger.cpp | 2 +- .../Include/ScriptCanvas/Debugger/Logger.h | 2 +- .../ScriptCanvas/Debugger/Messages/Notify.cpp | 2 +- .../ScriptCanvas/Debugger/Messages/Notify.h | 2 +- .../ScriptCanvas/Debugger/Messages/Request.cpp | 2 +- .../ScriptCanvas/Debugger/Messages/Request.h | 2 +- .../Include/ScriptCanvas/Debugger/StatusBus.h | 2 +- .../DataValidation/DataValidationEvents.h | 2 +- .../DataValidation/DataValidationIds.h | 2 +- .../DataValidation/DynamicDataTypeEvent.h | 2 +- .../DataValidation/InvalidExpressionEvent.h | 2 +- .../DataValidation/InvalidPropertyEvent.h | 2 +- .../DataValidation/InvalidRandomSignalEvent.h | 2 +- .../DataValidation/InvalidVariableTypeEvent.h | 2 +- .../DataValidation/ScopedDataConnectionEvent.h | 2 +- .../ScriptEventVersionMismatch.h | 2 +- .../DataValidation/SlotReferenceEvent.h | 2 +- .../DataValidation/UnknownEndpointEvent.h | 2 +- .../ExecutionValidationEvents.h | 2 +- .../ExecutionValidationIds.h | 2 +- .../ExecutionValidation/UnusedNodeEvent.h | 2 +- .../GraphTranslationValidationIds.h | 2 +- .../GraphTranslationValidations.h | 2 +- .../ParsingValidation/ParsingValidationIds.h | 2 +- .../ParsingValidation/ParsingValidations.h | 2 +- .../ValidationEffects/FocusOnEffect.h | 2 +- .../ValidationEffects/GreyOutEffect.h | 2 +- .../ValidationEffects/HighlightEffect.h | 2 +- .../ValidationEvents/ValidationEvent.h | 2 +- .../ScriptCanvas/Deprecated/VariableDatum.cpp | 2 +- .../ScriptCanvas/Deprecated/VariableDatum.h | 2 +- .../Deprecated/VariableDatumBase.cpp | 2 +- .../Deprecated/VariableDatumBase.h | 2 +- .../Deprecated/VariableHelpers.cpp | 2 +- .../ScriptCanvas/Deprecated/VariableHelpers.h | 2 +- .../Include/ScriptCanvas/Execution/ErrorBus.h | 2 +- .../ScriptCanvas/Execution/ExecutionBus.h | 2 +- .../Execution/ExecutionContext.cpp | 2 +- .../ScriptCanvas/Execution/ExecutionContext.h | 2 +- .../Execution/ExecutionObjectCloning.cpp | 2 +- .../Execution/ExecutionObjectCloning.h | 2 +- .../Execution/ExecutionPerformanceTimer.cpp | 2 +- .../Execution/ExecutionPerformanceTimer.h | 2 +- .../ScriptCanvas/Execution/ExecutionState.cpp | 2 +- .../ScriptCanvas/Execution/ExecutionState.h | 2 +- .../Execution/ExecutionStateDeclarations.h | 2 +- .../Interpreted/ExecutionInterpretedAPI.cpp | 2 +- .../Interpreted/ExecutionInterpretedAPI.h | 2 +- .../ExecutionInterpretedCloningAPI.cpp | 2 +- .../ExecutionInterpretedCloningAPI.h | 2 +- .../ExecutionInterpretedDebugAPI.cpp | 2 +- .../Interpreted/ExecutionInterpretedDebugAPI.h | 2 +- .../ExecutionInterpretedEBusAPI.cpp | 2 +- .../Interpreted/ExecutionInterpretedEBusAPI.h | 2 +- .../Interpreted/ExecutionInterpretedOut.cpp | 2 +- .../Interpreted/ExecutionInterpretedOut.h | 2 +- .../Interpreted/ExecutionStateInterpreted.cpp | 2 +- .../Interpreted/ExecutionStateInterpreted.h | 2 +- .../ExecutionStateInterpretedPerActivation.cpp | 2 +- .../ExecutionStateInterpretedPerActivation.h | 2 +- .../ExecutionStateInterpretedPure.cpp | 2 +- .../ExecutionStateInterpretedPure.h | 2 +- .../ExecutionStateInterpretedSingleton.cpp | 2 +- .../ExecutionStateInterpretedSingleton.h | 2 +- .../ExecutionStateInterpretedUtility.cpp | 2 +- .../ExecutionStateInterpretedUtility.h | 2 +- .../Execution/NativeHostDeclarations.cpp | 2 +- .../Execution/NativeHostDeclarations.h | 2 +- .../Execution/NativeHostDefinitions.cpp | 2 +- .../Execution/NativeHostDefinitions.h | 2 +- .../Execution/NodeableOut/NodeableOutNative.h | 2 +- .../ScriptCanvas/Execution/RuntimeBus.h | 2 +- .../Execution/RuntimeComponent.cpp | 2 +- .../ScriptCanvas/Execution/RuntimeComponent.h | 2 +- .../ScriptCanvas/Grammar/AbstractCodeModel.cpp | 2 +- .../ScriptCanvas/Grammar/AbstractCodeModel.h | 2 +- .../Include/ScriptCanvas/Grammar/DebugMap.cpp | 2 +- .../Include/ScriptCanvas/Grammar/DebugMap.h | 2 +- .../ScriptCanvas/Grammar/ExecutionIterator.h | 2 +- .../Grammar/ExecutionTraversalListeners.cpp | 2 +- .../Grammar/ExecutionTraversalListeners.h | 2 +- .../Grammar/FunctionsLegacySupport.cpp | 2 +- .../Grammar/FunctionsLegacySupport.h | 2 +- .../ScriptCanvas/Grammar/GrammarContext.cpp | 2 +- .../ScriptCanvas/Grammar/GrammarContext.h | 2 +- .../ScriptCanvas/Grammar/GrammarContextBus.h | 2 +- .../Code/Include/ScriptCanvas/Grammar/Parser.h | 2 +- .../ScriptCanvas/Grammar/ParsingMetaData.cpp | 2 +- .../ScriptCanvas/Grammar/ParsingMetaData.h | 2 +- .../ScriptCanvas/Grammar/ParsingUtilities.cpp | 2 +- .../ScriptCanvas/Grammar/ParsingUtilities.h | 2 +- .../ScriptCanvas/Grammar/Primitives.cpp | 2 +- .../Include/ScriptCanvas/Grammar/Primitives.h | 2 +- .../Grammar/PrimitivesDeclarations.cpp | 2 +- .../Grammar/PrimitivesDeclarations.h | 2 +- .../Grammar/PrimitivesExecution.cpp | 2 +- .../ScriptCanvas/Grammar/PrimitivesExecution.h | 2 +- .../Include/ScriptCanvas/Grammar/SymbolNames.h | 2 +- .../Internal/Nodeables/BaseTimer.cpp | 2 +- .../Internal/Nodeables/BaseTimer.h | 2 +- .../Internal/Nodes/BaseTimerNode.cpp | 2 +- .../Internal/Nodes/BaseTimerNode.h | 2 +- .../Internal/Nodes/ExpressionNodeBase.cpp | 2 +- .../Internal/Nodes/ExpressionNodeBase.h | 2 +- .../Internal/Nodes/StringFormatted.cpp | 2 +- .../Internal/Nodes/StringFormatted.h | 2 +- .../Libraries/Comparison/Comparison.cpp | 2 +- .../Libraries/Comparison/Comparison.h | 2 +- .../Libraries/Comparison/ComparisonFunctions.h | 2 +- .../Libraries/Comparison/EqualTo.h | 2 +- .../Libraries/Comparison/Greater.h | 2 +- .../Libraries/Comparison/GreaterEqual.h | 2 +- .../ScriptCanvas/Libraries/Comparison/Less.h | 2 +- .../Libraries/Comparison/LessEqual.h | 2 +- .../Libraries/Comparison/NotEqualTo.h | 2 +- .../ScriptCanvas/Libraries/Core/Assign.cpp | 2 +- .../ScriptCanvas/Libraries/Core/Assign.h | 2 +- .../Libraries/Core/AzEventHandler.cpp | 2 +- .../Libraries/Core/AzEventHandler.h | 2 +- .../Core/BehaviorContextObjectNode.cpp | 2 +- .../Libraries/Core/BehaviorContextObjectNode.h | 2 +- .../Libraries/Core/BinaryOperator.cpp | 2 +- .../Libraries/Core/BinaryOperator.h | 2 +- .../Libraries/Core/ContainerTypeReflection.h | 2 +- .../ScriptCanvas/Libraries/Core/CoreNodes.cpp | 2 +- .../ScriptCanvas/Libraries/Core/CoreNodes.h | 2 +- .../Libraries/Core/EBusEventHandler.cpp | 2 +- .../Libraries/Core/EBusEventHandler.h | 2 +- .../ScriptCanvas/Libraries/Core/Error.cpp | 2 +- .../ScriptCanvas/Libraries/Core/Error.h | 2 +- .../Libraries/Core/ErrorHandler.cpp | 2 +- .../ScriptCanvas/Libraries/Core/ErrorHandler.h | 2 +- .../Core/EventHandlerTranslationUtility.cpp | 2 +- .../Core/EventHandlerTranslationUtility.h | 2 +- .../Libraries/Core/ExtractProperty.cpp | 2 +- .../Libraries/Core/ExtractProperty.h | 2 +- .../ScriptCanvas/Libraries/Core/ForEach.cpp | 2 +- .../ScriptCanvas/Libraries/Core/ForEach.h | 2 +- .../ScriptCanvas/Libraries/Core/FunctionBus.h | 2 +- .../Libraries/Core/FunctionCallNode.cpp | 2 +- .../Libraries/Core/FunctionCallNode.h | 2 +- .../Core/FunctionCallNodeIsOutOfDate.cpp | 2 +- .../Core/FunctionCallNodeIsOutOfDate.h | 2 +- .../Libraries/Core/FunctionDefinitionNode.cpp | 2 +- .../Libraries/Core/FunctionDefinitionNode.h | 2 +- .../Libraries/Core/GetVariable.cpp | 2 +- .../ScriptCanvas/Libraries/Core/GetVariable.h | 2 +- .../ScriptCanvas/Libraries/Core/Method.cpp | 2 +- .../ScriptCanvas/Libraries/Core/Method.h | 2 +- .../Libraries/Core/MethodOverloaded.cpp | 2 +- .../Libraries/Core/MethodOverloaded.h | 2 +- .../Libraries/Core/MethodUtility.cpp | 2 +- .../Libraries/Core/MethodUtility.h | 2 +- .../ScriptCanvas/Libraries/Core/Nodeling.cpp | 2 +- .../ScriptCanvas/Libraries/Core/Nodeling.h | 2 +- .../Libraries/Core/ReceiveScriptEvent.cpp | 2 +- .../Libraries/Core/ReceiveScriptEvent.h | 2 +- .../ScriptCanvas/Libraries/Core/Repeater.cpp | 2 +- .../ScriptCanvas/Libraries/Core/Repeater.h | 2 +- .../Libraries/Core/RepeaterNodeable.cpp | 2 +- .../Libraries/Core/RepeaterNodeable.h | 2 +- .../Libraries/Core/ScriptEventBase.cpp | 2 +- .../Libraries/Core/ScriptEventBase.h | 2 +- .../Libraries/Core/SendScriptEvent.cpp | 2 +- .../Libraries/Core/SendScriptEvent.h | 2 +- .../Libraries/Core/SetVariable.cpp | 2 +- .../ScriptCanvas/Libraries/Core/SetVariable.h | 2 +- .../ScriptCanvas/Libraries/Core/Start.cpp | 2 +- .../ScriptCanvas/Libraries/Core/Start.h | 2 +- .../ScriptCanvas/Libraries/Core/String.h | 2 +- .../Libraries/Core/UnaryOperator.cpp | 2 +- .../Libraries/Core/UnaryOperator.h | 2 +- .../ScriptCanvas/Libraries/Entity/Entity.cpp | 2 +- .../ScriptCanvas/Libraries/Entity/Entity.h | 2 +- .../Libraries/Entity/EntityIDNode.h | 2 +- .../Libraries/Entity/EntityIDNodes.h | 2 +- .../Libraries/Entity/EntityNodes.h | 2 +- .../ScriptCanvas/Libraries/Entity/EntityRef.h | 2 +- .../Libraries/Entity/FindTaggedEntities.cpp | 2 +- .../ScriptCanvas/Libraries/Entity/Rotate.cpp | 2 +- .../ScriptCanvas/Libraries/Entity/Rotate.h | 2 +- .../Libraries/Entity/RotateMethod.cpp | 2 +- .../Libraries/Entity/RotateMethod.h | 2 +- .../ScriptCanvas/Libraries/Libraries.cpp | 2 +- .../Include/ScriptCanvas/Libraries/Libraries.h | 2 +- .../Include/ScriptCanvas/Libraries/Logic/And.h | 2 +- .../ScriptCanvas/Libraries/Logic/Any.cpp | 2 +- .../Include/ScriptCanvas/Libraries/Logic/Any.h | 2 +- .../ScriptCanvas/Libraries/Logic/Boolean.h | 2 +- .../ScriptCanvas/Libraries/Logic/Break.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Break.h | 2 +- .../ScriptCanvas/Libraries/Logic/Cycle.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Cycle.h | 2 +- .../ScriptCanvas/Libraries/Logic/Gate.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Gate.h | 2 +- .../ScriptCanvas/Libraries/Logic/Indexer.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Indexer.h | 2 +- .../ScriptCanvas/Libraries/Logic/IsNull.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/IsNull.h | 2 +- .../ScriptCanvas/Libraries/Logic/Logic.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Logic.h | 2 +- .../Libraries/Logic/Multiplexer.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Multiplexer.h | 2 +- .../Include/ScriptCanvas/Libraries/Logic/Not.h | 2 +- .../ScriptCanvas/Libraries/Logic/Once.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Once.h | 2 +- .../Include/ScriptCanvas/Libraries/Logic/Or.h | 2 +- .../Libraries/Logic/OrderedSequencer.cpp | 2 +- .../Libraries/Logic/OrderedSequencer.h | 2 +- .../ScriptCanvas/Libraries/Logic/Sequencer.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/Sequencer.h | 2 +- .../Libraries/Logic/TargetedSequencer.cpp | 2 +- .../Libraries/Logic/TargetedSequencer.h | 2 +- .../Logic/WeightedRandomSequencer.cpp | 2 +- .../Libraries/Logic/WeightedRandomSequencer.h | 2 +- .../ScriptCanvas/Libraries/Logic/While.cpp | 2 +- .../ScriptCanvas/Libraries/Logic/While.h | 2 +- .../ScriptCanvas/Libraries/Math/AABBNode.h | 2 +- .../ScriptCanvas/Libraries/Math/AABBNodes.h | 2 +- .../Libraries/Math/BinaryOperation.cpp | 2 +- .../Libraries/Math/BinaryOperation.h | 2 +- .../ScriptCanvas/Libraries/Math/CRCNode.h | 2 +- .../ScriptCanvas/Libraries/Math/CRCNodes.h | 2 +- .../ScriptCanvas/Libraries/Math/ColorNode.h | 2 +- .../ScriptCanvas/Libraries/Math/ColorNodes.h | 2 +- .../ScriptCanvas/Libraries/Math/Divide.h | 2 +- .../ScriptCanvas/Libraries/Math/Math.cpp | 2 +- .../Include/ScriptCanvas/Libraries/Math/Math.h | 2 +- .../Libraries/Math/MathExpression.cpp | 2 +- .../Libraries/Math/MathExpression.h | 2 +- .../ScriptCanvas/Libraries/Math/MathGenerics.h | 2 +- .../Libraries/Math/MathNodeUtilities.cpp | 2 +- .../Libraries/Math/MathNodeUtilities.h | 2 +- .../ScriptCanvas/Libraries/Math/MathRandom.h | 2 +- .../Libraries/Math/Matrix3x3Node.h | 2 +- .../Libraries/Math/Matrix3x3Nodes.h | 2 +- .../Libraries/Math/Matrix4x4Node.h | 2 +- .../Libraries/Math/Matrix4x4Nodes.h | 2 +- .../ScriptCanvas/Libraries/Math/Multiply.h | 2 +- .../ScriptCanvas/Libraries/Math/Number.h | 2 +- .../ScriptCanvas/Libraries/Math/OBBNode.h | 2 +- .../ScriptCanvas/Libraries/Math/OBBNodes.h | 2 +- .../ScriptCanvas/Libraries/Math/PlaneNode.h | 2 +- .../ScriptCanvas/Libraries/Math/PlaneNodes.h | 2 +- .../ScriptCanvas/Libraries/Math/Random.cpp | 2 +- .../ScriptCanvas/Libraries/Math/Random.h | 2 +- .../ScriptCanvas/Libraries/Math/Rotation.h | 2 +- .../Libraries/Math/RotationNodes.h | 2 +- .../ScriptCanvas/Libraries/Math/Subtract.h | 2 +- .../Include/ScriptCanvas/Libraries/Math/Sum.h | 2 +- .../ScriptCanvas/Libraries/Math/Transform.h | 2 +- .../Libraries/Math/TransformNodes.h | 2 +- .../ScriptCanvas/Libraries/Math/Vector.h | 2 +- .../ScriptCanvas/Libraries/Math/Vector2Nodes.h | 2 +- .../ScriptCanvas/Libraries/Math/Vector3Nodes.h | 2 +- .../ScriptCanvas/Libraries/Math/Vector4Nodes.h | 2 +- .../Operators/Containers/OperatorAt.cpp | 2 +- .../Operators/Containers/OperatorAt.h | 2 +- .../Operators/Containers/OperatorBack.cpp | 2 +- .../Operators/Containers/OperatorBack.h | 2 +- .../Operators/Containers/OperatorClear.cpp | 2 +- .../Operators/Containers/OperatorClear.h | 2 +- .../Operators/Containers/OperatorEmpty.cpp | 2 +- .../Operators/Containers/OperatorEmpty.h | 2 +- .../Operators/Containers/OperatorErase.cpp | 2 +- .../Operators/Containers/OperatorErase.h | 2 +- .../Operators/Containers/OperatorFront.cpp | 2 +- .../Operators/Containers/OperatorFront.h | 2 +- .../Operators/Containers/OperatorInsert.cpp | 2 +- .../Operators/Containers/OperatorInsert.h | 2 +- .../Operators/Containers/OperatorPushBack.cpp | 2 +- .../Operators/Containers/OperatorPushBack.h | 2 +- .../Operators/Containers/OperatorSize.cpp | 2 +- .../Operators/Containers/OperatorSize.h | 2 +- .../Libraries/Operators/Math/OperatorAdd.cpp | 2 +- .../Libraries/Operators/Math/OperatorAdd.h | 2 +- .../Operators/Math/OperatorArithmetic.cpp | 2 +- .../Operators/Math/OperatorArithmetic.h | 2 +- .../Libraries/Operators/Math/OperatorDiv.cpp | 2 +- .../Libraries/Operators/Math/OperatorDiv.h | 2 +- .../Operators/Math/OperatorDivideByNumber.cpp | 2 +- .../Operators/Math/OperatorDivideByNumber.h | 2 +- .../Operators/Math/OperatorLength.cpp | 2 +- .../Libraries/Operators/Math/OperatorLength.h | 2 +- .../Libraries/Operators/Math/OperatorLerp.cpp | 2 +- .../Libraries/Operators/Math/OperatorLerp.h | 2 +- .../Operators/Math/OperatorLerpNodeable.cpp | 2 +- .../Operators/Math/OperatorLerpNodeable.h | 2 +- .../Math/OperatorLerpNodeableNode.cpp | 2 +- .../Operators/Math/OperatorLerpNodeableNode.h | 2 +- .../Libraries/Operators/Math/OperatorMul.cpp | 2 +- .../Libraries/Operators/Math/OperatorMul.h | 2 +- .../Libraries/Operators/Math/OperatorSub.cpp | 2 +- .../Libraries/Operators/Math/OperatorSub.h | 2 +- .../Libraries/Operators/Operator.cpp | 2 +- .../Libraries/Operators/Operator.h | 2 +- .../Libraries/Operators/Operators.cpp | 2 +- .../Libraries/Operators/Operators.h | 2 +- .../Libraries/Spawning/SpawnNodeable.cpp | 2 +- .../Libraries/Spawning/SpawnNodeable.h | 2 +- .../Libraries/Spawning/Spawning.cpp | 2 +- .../ScriptCanvas/Libraries/Spawning/Spawning.h | 2 +- .../ScriptCanvas/Libraries/String/Contains.cpp | 2 +- .../ScriptCanvas/Libraries/String/Contains.h | 2 +- .../ScriptCanvas/Libraries/String/Format.cpp | 2 +- .../ScriptCanvas/Libraries/String/Format.h | 2 +- .../ScriptCanvas/Libraries/String/Print.cpp | 2 +- .../ScriptCanvas/Libraries/String/Print.h | 2 +- .../ScriptCanvas/Libraries/String/Replace.cpp | 2 +- .../ScriptCanvas/Libraries/String/Replace.h | 2 +- .../ScriptCanvas/Libraries/String/String.cpp | 2 +- .../ScriptCanvas/Libraries/String/String.h | 2 +- .../Libraries/String/StringGenerics.h | 2 +- .../Libraries/String/StringMethods.cpp | 2 +- .../Libraries/String/StringMethods.h | 2 +- .../Libraries/String/Utilities.cpp | 2 +- .../ScriptCanvas/Libraries/String/Utilities.h | 2 +- .../ScriptCanvas/Libraries/Time/Countdown.cpp | 2 +- .../ScriptCanvas/Libraries/Time/Countdown.h | 2 +- .../Libraries/Time/CountdownNodeable.cpp | 2 +- .../Libraries/Time/CountdownNodeable.h | 2 +- .../ScriptCanvas/Libraries/Time/DateTime.cpp | 2 +- .../ScriptCanvas/Libraries/Time/DateTime.h | 2 +- .../Libraries/Time/DelayNodeable.cpp | 2 +- .../Libraries/Time/DelayNodeable.h | 2 +- .../ScriptCanvas/Libraries/Time/Duration.cpp | 2 +- .../ScriptCanvas/Libraries/Time/Duration.h | 2 +- .../Libraries/Time/DurationNodeable.cpp | 2 +- .../Libraries/Time/DurationNodeable.h | 2 +- .../ScriptCanvas/Libraries/Time/HeartBeat.cpp | 2 +- .../ScriptCanvas/Libraries/Time/HeartBeat.h | 2 +- .../Libraries/Time/HeartBeatNodeable.cpp | 2 +- .../Libraries/Time/HeartBeatNodeable.h | 2 +- .../ScriptCanvas/Libraries/Time/Time.cpp | 2 +- .../Include/ScriptCanvas/Libraries/Time/Time.h | 2 +- .../Libraries/Time/TimeDelayNodeable.cpp | 2 +- .../Libraries/Time/TimeDelayNodeable.h | 2 +- .../ScriptCanvas/Libraries/Time/Timer.cpp | 2 +- .../ScriptCanvas/Libraries/Time/Timer.h | 2 +- .../Libraries/Time/TimerNodeable.cpp | 2 +- .../Libraries/Time/TimerNodeable.h | 2 +- .../Libraries/UnitTesting/AddFailure.cpp | 2 +- .../Libraries/UnitTesting/AddFailure.h | 2 +- .../Libraries/UnitTesting/AddSuccess.cpp | 2 +- .../Libraries/UnitTesting/AddSuccess.h | 2 +- .../UnitTesting/Auxiliary/Auxiliary.cpp | 2 +- .../UnitTesting/Auxiliary/Auxiliary.h | 2 +- .../UnitTesting/Auxiliary/AuxiliaryGenerics.h | 2 +- .../Libraries/UnitTesting/Checkpoint.cpp | 2 +- .../Libraries/UnitTesting/Checkpoint.h | 2 +- .../Libraries/UnitTesting/ExpectEqual.cpp | 2 +- .../Libraries/UnitTesting/ExpectEqual.h | 2 +- .../Libraries/UnitTesting/ExpectFalse.cpp | 2 +- .../Libraries/UnitTesting/ExpectFalse.h | 2 +- .../UnitTesting/ExpectGreaterThan.cpp | 2 +- .../Libraries/UnitTesting/ExpectGreaterThan.h | 2 +- .../UnitTesting/ExpectGreaterThanEqual.cpp | 2 +- .../UnitTesting/ExpectGreaterThanEqual.h | 2 +- .../Libraries/UnitTesting/ExpectLessThan.cpp | 2 +- .../Libraries/UnitTesting/ExpectLessThan.h | 2 +- .../UnitTesting/ExpectLessThanEqual.cpp | 2 +- .../UnitTesting/ExpectLessThanEqual.h | 2 +- .../Libraries/UnitTesting/ExpectNotEqual.cpp | 2 +- .../Libraries/UnitTesting/ExpectNotEqual.h | 2 +- .../Libraries/UnitTesting/ExpectTrue.cpp | 2 +- .../Libraries/UnitTesting/ExpectTrue.h | 2 +- .../Libraries/UnitTesting/MarkComplete.cpp | 2 +- .../Libraries/UnitTesting/MarkComplete.h | 2 +- .../Libraries/UnitTesting/UnitTestBus.cpp | 2 +- .../Libraries/UnitTesting/UnitTestBus.h | 2 +- .../Libraries/UnitTesting/UnitTestBusMacros.h | 2 +- .../UnitTesting/UnitTestBusSender.cpp | 2 +- .../Libraries/UnitTesting/UnitTestBusSender.h | 2 +- .../UnitTesting/UnitTestBusSenderMacros.h | 2 +- .../Libraries/UnitTesting/UnitTesting.cpp | 2 +- .../Libraries/UnitTesting/UnitTesting.h | 2 +- .../UnitTesting/UnitTestingLibrary.cpp | 2 +- .../Libraries/UnitTesting/UnitTestingLibrary.h | 2 +- .../ScriptCanvas/PerformanceStatistician.h | 2 +- .../ScriptCanvas/PerformanceStatisticsBus.h | 2 +- .../Include/ScriptCanvas/PerformanceTracker.h | 2 +- .../ScriptCanvas/Profiler/Aggregator.cpp | 2 +- .../Include/ScriptCanvas/Profiler/Aggregator.h | 2 +- .../Include/ScriptCanvas/Profiler/Driller.cpp | 2 +- .../Include/ScriptCanvas/Profiler/Driller.h | 2 +- .../ScriptCanvas/Profiler/DrillerEvents.cpp | 2 +- .../ScriptCanvas/Profiler/DrillerEvents.h | 2 +- .../Include/ScriptCanvas/Results/ErrorText.h | 2 +- .../Include/ScriptCanvas/ScriptCanvasGem.h | 2 +- .../Include/ScriptCanvas/SystemComponent.h | 2 +- .../Translation/AbstractModelTranslator.h | 2 +- .../ScriptCanvas/Translation/Configuration.h | 2 +- .../Translation/GraphToCPlusPlus.cpp | 2 +- .../Translation/GraphToCPlusPlus.h | 2 +- .../ScriptCanvas/Translation/GraphToLua.cpp | 2 +- .../ScriptCanvas/Translation/GraphToLua.h | 2 +- .../Translation/GraphToLuaUtility.cpp | 2 +- .../Translation/GraphToLuaUtility.h | 2 +- .../ScriptCanvas/Translation/GraphToX.cpp | 2 +- .../ScriptCanvas/Translation/GraphToX.h | 2 +- .../ScriptCanvas/Translation/Translation.cpp | 2 +- .../ScriptCanvas/Translation/Translation.h | 2 +- .../Translation/TranslationContext.cpp | 2 +- .../Translation/TranslationContext.h | 2 +- .../Translation/TranslationContextBus.h | 2 +- .../Translation/TranslationResult.cpp | 2 +- .../Translation/TranslationResult.h | 2 +- .../Translation/TranslationUtilities.cpp | 4 ++-- .../Translation/TranslationUtilities.h | 2 +- .../Utils/BehaviorContextUtils.cpp | 2 +- .../ScriptCanvas/Utils/BehaviorContextUtils.h | 2 +- .../Include/ScriptCanvas/Utils/DataUtils.cpp | 2 +- .../Include/ScriptCanvas/Utils/DataUtils.h | 2 +- .../Include/ScriptCanvas/Utils/NodeUtils.cpp | 2 +- .../Include/ScriptCanvas/Utils/NodeUtils.h | 2 +- .../ScriptCanvas/Utils/SerializationUtils.h | 2 +- .../ScriptCanvas/Utils/VersionConverters.cpp | 2 +- .../ScriptCanvas/Utils/VersionConverters.h | 2 +- .../ScriptCanvas/Utils/VersioningUtils.cpp | 2 +- .../ScriptCanvas/Utils/VersioningUtils.h | 2 +- .../ScriptCanvas/Variable/GraphVariable.cpp | 2 +- .../ScriptCanvas/Variable/GraphVariable.h | 2 +- .../Variable/GraphVariableManagerComponent.cpp | 2 +- .../Variable/GraphVariableManagerComponent.h | 2 +- .../ScriptCanvas/Variable/VariableBus.h | 2 +- .../ScriptCanvas/Variable/VariableCore.cpp | 2 +- .../ScriptCanvas/Variable/VariableCore.h | 2 +- .../ScriptCanvas/Variable/VariableData.cpp | 2 +- .../ScriptCanvas/Variable/VariableData.h | 2 +- .../Code/Source/PerformanceStatistician.cpp | 2 +- .../Code/Source/PerformanceTracker.cpp | 2 +- .../Code/Source/ScriptCanvasCommonGem.cpp | 2 +- .../Code/Source/ScriptCanvasGem.cpp | 2 +- .../Code/Source/SystemComponent.cpp | 2 +- Gems/ScriptCanvas/Code/Source/precompiled.h | 2 +- .../Framework/ScriptCanvasUnitTestFixture.h | 2 +- .../Code/Tests/Mocks/BehaviorMethodMock.h | 2 +- .../Code/Tests/Mocks/RuntimeRequestsMock.h | 2 +- .../Code/Tests/ScriptCanvasBuilderTests.cpp | 2 +- .../Code/Tests/ScriptCanvasTest.cpp | 2 +- .../Code/Tests/ScriptCanvasTestApplication.h | 2 +- .../Code/Tests/ScriptCanvasUnitTestHook.cpp | 2 +- .../ScriptCanvasUnitTest_AbstractCodeModel.cpp | 2 +- ...riptCanvasUnitTest_BehaviorContextUtils.cpp | 2 +- ...UnitTest_EventHandlerTranslationUtility.cpp | 2 +- .../Code/Tests/ScriptCanvasUnitTest_Method.cpp | 2 +- .../Code/Tests/ScriptCanvasUnitTest_Node.cpp | 2 +- ...asUnitTest_ScriptCanvasBuilderComponent.cpp | 2 +- .../Code/scriptcanvasgem_common_files.cmake | 2 +- .../Code/scriptcanvasgem_debugger_files.cmake | 2 +- .../scriptcanvasgem_editor_asset_files.cmake | 2 +- .../scriptcanvasgem_editor_builder_files.cmake | 2 +- .../Code/scriptcanvasgem_editor_files.cmake | 2 +- .../scriptcanvasgem_editor_shared_files.cmake | 2 +- .../scriptcanvasgem_editor_static_files.cmake | 2 +- .../scriptcanvasgem_editor_tests_files.cmake | 2 +- .../Code/scriptcanvasgem_game_files.cmake | 2 +- .../scriptcanvasgem_runtime_asset_files.cmake | 2 +- .../Code/scriptcanvasgem_tests_files.cmake | 2 +- Gems/ScriptCanvasDeveloper/CMakeLists.txt | 2 +- Gems/ScriptCanvasDeveloper/Code/CMakeLists.txt | 2 +- .../DynamicSlotFullCreation.h | 2 +- .../FullyConnectedNodePaletteCreation.h | 2 +- .../NodePaletteFullCreation.h | 2 +- .../VariableListFullCreation.h | 2 +- .../ScriptCanvasDeveloperEditor/Developer.h | 2 +- .../DeveloperUtils.h | 2 +- .../EditorAutomation/EditorAutomationAction.h | 2 +- .../EditorAutomationActions/EditorKeyActions.h | 2 +- .../EditorMouseActions.h | 2 +- .../EditorAutomationActions/GenericActions.h | 2 +- .../ScriptCanvasActions/ConnectionActions.h | 2 +- .../CreateElementsActions.h | 2 +- .../ScriptCanvasActions/EditorViewActions.h | 2 +- .../ScriptCanvasActions/ElementInteractions.h | 2 +- .../ScriptCanvasActions/GraphActions.h | 2 +- .../ScriptCanvasActions/VariableActions.h | 2 +- .../EditorAutomationActions/WidgetActions.h | 2 +- .../EditorAutomationModelIds.h | 2 +- .../EditorAutomationStates/ConnectionStates.h | 2 +- .../CreateElementsStates.h | 2 +- .../EditorAutomationStates/EditorViewStates.h | 2 +- .../ElementInteractionStates.h | 2 +- .../EditorAutomationStates/GraphStates.h | 2 +- .../EditorAutomationStates/UtilityStates.h | 2 +- .../EditorAutomationStates/VariableStates.h | 2 +- .../EditorAutomation/EditorAutomationTest.h | 2 +- .../Include/ScriptCanvasDeveloperEditor/Mock.h | 2 +- .../ScriptCanvasDeveloperEditor/MockBus.h | 2 +- .../NodeListDumpAction.h | 2 +- .../ScriptCanvasDeveloperEditorComponent.h | 2 +- .../TSGenerateAction.h | 2 +- .../ScriptCanvasDeveloperEditor/WrapperMock.h | 2 +- .../DynamicSlotFullCreation.cpp | 2 +- .../FullyConnectedNodePaletteCreation.cpp | 2 +- .../NodePaletteFullCreation.cpp | 2 +- .../VariableListFullCreation.cpp | 2 +- .../Code/Editor/Source/Developer.cpp | 2 +- .../Code/Editor/Source/DeveloperUtils.cpp | 2 +- .../EditorKeyActions.cpp | 2 +- .../EditorMouseActions.cpp | 2 +- .../EditorAutomationActions/GenericActions.cpp | 2 +- .../ScriptCanvasActions/ConnectionActions.cpp | 2 +- .../CreateElementsActions.cpp | 2 +- .../ScriptCanvasActions/EditorViewActions.cpp | 2 +- .../ElementInteractions.cpp | 2 +- .../ScriptCanvasActions/GraphActions.cpp | 2 +- .../ScriptCanvasActions/VariableActions.cpp | 2 +- .../EditorAutomationActions/WidgetActions.cpp | 2 +- .../ConnectionStates.cpp | 2 +- .../CreateElementsStates.cpp | 2 +- .../EditorViewStates.cpp | 2 +- .../ElementInteractionStates.cpp | 2 +- .../EditorAutomationStates/GraphStates.cpp | 2 +- .../EditorAutomationStates/UtilityStates.cpp | 2 +- .../EditorAutomationStates/VariableStates.cpp | 2 +- .../EditorAutomation/EditorAutomationTest.cpp | 2 +- .../Source/EditorAutomationTestDialog.cpp | 2 +- .../Editor/Source/EditorAutomationTestDialog.h | 2 +- .../EditorAutomationTests.h | 2 +- .../GraphCreationTests.cpp | 2 +- .../EditorAutomationTests/GraphCreationTests.h | 2 +- .../EditorAutomationTests/GroupTests.cpp | 2 +- .../Source/EditorAutomationTests/GroupTests.h | 2 +- .../EditorAutomationTests/InteractionTests.cpp | 2 +- .../EditorAutomationTests/InteractionTests.h | 2 +- .../NodeCreationTests.cpp | 2 +- .../EditorAutomationTests/NodeCreationTests.h | 2 +- .../EditorAutomationTests/VariableTests.cpp | 2 +- .../EditorAutomationTests/VariableTests.h | 2 +- .../Code/Editor/Source/Mock.cpp | 2 +- .../Code/Editor/Source/NodeListDumpAction.cpp | 2 +- .../ScriptCanvasDeveloperEditorComponent.cpp | 2 +- .../Editor/Source/ScriptCanvasDeveloperGem.cpp | 2 +- .../Code/Editor/Source/TSGenerateAction.cpp | 2 +- .../Code/Editor/Source/WrapperMock.cpp | 2 +- .../Code/Editor/Source/XMLDoc.cpp | 2 +- .../Code/Editor/Source/XMLDoc.h | 2 +- .../Game/Source/ScriptCanvasDeveloperGem.cpp | 2 +- .../ScriptCanvasDeveloperComponent.h | 2 +- .../ScriptCanvasDeveloperGem.h | 2 +- .../Source/ScriptCanvasDeveloperComponent.cpp | 2 +- .../Code/Source/precompiled.h | 2 +- .../Code/Tests/ScriptCanvasDeveloperTest.cpp | 2 +- ...criptcanvasdeveloper_gem_common_files.cmake | 2 +- ...criptcanvasdeveloper_gem_editor_files.cmake | 2 +- .../scriptcanvasdeveloper_gem_game_files.cmake | 2 +- Gems/ScriptCanvasPhysics/CMakeLists.txt | 2 +- Gems/ScriptCanvasPhysics/Code/CMakeLists.txt | 2 +- .../Code/Source/PhysicsNodeLibrary.cpp | 2 +- .../Code/Source/PhysicsNodeLibrary.h | 2 +- .../Code/Source/ScriptCanvasPhysicsModule.cpp | 2 +- .../ScriptCanvasPhysicsSystemComponent.cpp | 2 +- .../ScriptCanvasPhysicsSystemComponent.h | 2 +- .../Source/ScriptCanvasPhysics_precompiled.h | 2 +- .../Code/Source/WorldNodes.h | 2 +- .../Code/Tests/ScriptCanvasPhysicsTest.cpp | 2 +- .../Code/scriptcanvas_physics_files.cmake | 2 +- .../scriptcanvas_physics_shared_files.cmake | 2 +- .../scriptcanvas_physics_tests_files.cmake | 2 +- Gems/ScriptCanvasTesting/CMakeLists.txt | 2 +- Gems/ScriptCanvasTesting/Code/CMakeLists.txt | 2 +- ...criptcanvastesting_editor_tests_clang.cmake | 2 +- ...scriptcanvastesting_editor_tests_msvc.cmake | 2 +- .../Code/Source/Framework/EntityRefTests.h | 2 +- .../Framework/ScriptCanvasTestApplication.h | 2 +- .../Framework/ScriptCanvasTestFixture.cpp | 2 +- .../Source/Framework/ScriptCanvasTestFixture.h | 2 +- .../Source/Framework/ScriptCanvasTestNodes.cpp | 2 +- .../Source/Framework/ScriptCanvasTestNodes.h | 2 +- .../Framework/ScriptCanvasTestUtilities.cpp | 2 +- .../Framework/ScriptCanvasTestUtilities.h | 2 +- .../Framework/ScriptCanvasTestVerify.cpp | 2 +- .../Source/Framework/ScriptCanvasTestVerify.h | 2 +- .../Source/Framework/UnitTestingReporter.cpp | 2 +- .../Source/Framework/UnitTestingReporter.h | 2 +- .../Nodes/BehaviorContextObjectTestNode.h | 2 +- .../Nodes/Nodeables/NodeableTestingLibrary.cpp | 2 +- .../Nodes/Nodeables/NodeableTestingLibrary.h | 2 +- .../Nodes/Nodeables/SharedDataSlotExample.cpp | 2 +- .../Nodes/Nodeables/SharedDataSlotExample.h | 2 +- .../Nodeables/ValuePointerReferenceExample.cpp | 2 +- .../Nodeables/ValuePointerReferenceExample.h | 2 +- .../Code/Source/ScriptCanvasTestBus.cpp | 2 +- .../Code/Source/ScriptCanvasTestBus.h | 2 +- .../Source/ScriptCanvasTestingEditorModule.cpp | 2 +- .../Code/Source/ScriptCanvasTestingModule.cpp | 2 +- .../ScriptCanvasTestingSystemComponent.cpp | 2 +- .../ScriptCanvasTestingSystemComponent.h | 2 +- .../Code/Tests/ScriptCanvasTestingTest.cpp | 2 +- .../Code/Tests/ScriptCanvas_Async.cpp | 2 +- .../Tests/ScriptCanvas_BehaviorContext.cpp | 2 +- .../Tests/ScriptCanvas_ContainerSupport.cpp | 2 +- .../Code/Tests/ScriptCanvas_Core.cpp | 2 +- .../Code/Tests/ScriptCanvas_EventHandlers.cpp | 2 +- .../Code/Tests/ScriptCanvas_Math.cpp | 2 +- .../Code/Tests/ScriptCanvas_MethodOverload.cpp | 2 +- .../Code/Tests/ScriptCanvas_NodeGenerics.cpp | 2 +- .../Code/Tests/ScriptCanvas_Regressions.cpp | 2 +- .../Tests/ScriptCanvas_RuntimeInterpreted.cpp | 2 +- .../Code/Tests/ScriptCanvas_Slots.cpp | 2 +- .../Code/Tests/ScriptCanvas_StringNodes.cpp | 2 +- .../Code/Tests/ScriptCanvas_UnitTesting.cpp | 2 +- .../Code/Tests/ScriptCanvas_VM.cpp | 2 +- .../Code/Tests/ScriptCanvas_Variables.cpp | 2 +- .../scriptcanvastesting_autogen_files.cmake | 2 +- .../Code/scriptcanvastesting_files.cmake | 2 +- .../scriptcanvastesting_shared_files.cmake | 2 +- .../Code/scriptcanvastesting_tests_files.cmake | 2 +- .../Code/scriptcanvastestingeditor_files.cmake | 2 +- ...criptcanvastestingeditor_shared_files.cmake | 2 +- ...scriptcanvastestingeditor_tests_files.cmake | 2 +- .../Example/ScriptEvents_Addressable.lua | 2 +- .../Scripts/Example/ScriptEvents_Broadcast.lua | 2 +- Gems/ScriptEvents/CMakeLists.txt | 2 +- .../Code/Builder/BuilderSystemComponent.h | 2 +- .../Builder/ScriptEventsBuilderComponent.cpp | 2 +- .../Builder/ScriptEventsBuilderComponent.h | 2 +- .../Code/Builder/ScriptEventsBuilderWorker.cpp | 2 +- .../Code/Builder/ScriptEventsBuilderWorker.h | 2 +- Gems/ScriptEvents/Code/CMakeLists.txt | 2 +- .../ScriptEventReferencesComponent.cpp | 2 +- .../ScriptEventReferencesComponent.h | 2 +- .../BehaviorContextFactoryMethods.h | 2 +- .../DefaultEventHandler.cpp | 2 +- .../DefaultEventHandler.h | 2 +- .../ScriptEventBinding.cpp | 2 +- .../ScriptEventBinding.h | 2 +- .../ScriptEventBroadcast.cpp | 2 +- .../ScriptEventBroadcast.h | 2 +- .../ScriptEventMethod.cpp | 2 +- .../BehaviorContextBinding/ScriptEventMethod.h | 2 +- .../ScriptEventsBindingBus.h | 2 +- .../Internal/VersionedProperty.cpp | 2 +- .../ScriptEvents/Internal/VersionedProperty.h | 2 +- .../Code/Include/ScriptEvents/ScriptEvent.cpp | 2 +- .../Code/Include/ScriptEvents/ScriptEvent.h | 2 +- .../ScriptEvents/ScriptEventDefinition.cpp | 2 +- .../ScriptEvents/ScriptEventDefinition.h | 2 +- .../ScriptEvents/ScriptEventFundamentalTypes.h | 2 +- .../Include/ScriptEvents/ScriptEventMethod.h | 2 +- .../ScriptEvents/ScriptEventParameter.h | 2 +- .../ScriptEvents/ScriptEventRegistration.cpp | 2 +- .../ScriptEvents/ScriptEventRegistration.h | 2 +- .../Include/ScriptEvents/ScriptEventSystem.cpp | 2 +- .../Include/ScriptEvents/ScriptEventSystem.h | 2 +- .../Include/ScriptEvents/ScriptEventTypes.cpp | 2 +- .../Include/ScriptEvents/ScriptEventTypes.h | 2 +- .../Include/ScriptEvents/ScriptEventsAsset.cpp | 2 +- .../Include/ScriptEvents/ScriptEventsAsset.h | 2 +- .../ScriptEvents/ScriptEventsAssetRef.h | 2 +- .../Include/ScriptEvents/ScriptEventsBus.h | 2 +- .../Include/ScriptEvents/ScriptEventsGem.h | 2 +- .../ScriptEventsLegacyDefinitions.h | 2 +- .../Source/Editor/ScriptEventsEditorGem.cpp | 2 +- .../ScriptEventsSystemEditorComponent.cpp | 2 +- .../Editor/ScriptEventsSystemEditorComponent.h | 2 +- .../Code/Source/ScriptEventsGem.cpp | 2 +- .../Source/ScriptEventsSystemComponent.cpp | 2 +- .../Code/Source/ScriptEventsSystemComponent.h | 2 +- Gems/ScriptEvents/Code/Source/precompiled.h | 2 +- .../Code/Tests/Editor/EditorTests.cpp | 2 +- .../Code/Tests/ScriptEventTestUtilities.cpp | 2 +- .../Code/Tests/ScriptEventTestUtilities.h | 2 +- .../Code/Tests/ScriptEventsTest.cpp | 2 +- .../Code/Tests/ScriptEventsTestApplication.h | 2 +- .../Code/Tests/ScriptEventsTestFixture.cpp | 2 +- .../Code/Tests/ScriptEventsTestFixture.h | 2 +- .../Code/Tests/Tests/ScriptEventsTest_Core.cpp | 2 +- .../Code/scriptevents_common_files.cmake | 2 +- .../scriptevents_editor_builder_files.cmake | 2 +- .../Code/scriptevents_editor_files.cmake | 2 +- .../ScriptEvents/Code/scriptevents_files.cmake | 2 +- .../Code/scriptevents_tests_files.cmake | 2 +- .../ScriptedEntityTweener.lua | 2 +- Gems/ScriptedEntityTweener/CMakeLists.txt | 2 +- Gems/ScriptedEntityTweener/Code/CMakeLists.txt | 2 +- .../ScriptedEntityTweenerBus.h | 2 +- .../ScriptedEntityTweenerEnums.h | 2 +- .../Code/Source/ScriptedEntityTweenerMath.h | 2 +- .../Source/ScriptedEntityTweenerModule.cpp | 2 +- .../Source/ScriptedEntityTweenerSubtask.cpp | 2 +- .../Code/Source/ScriptedEntityTweenerSubtask.h | 2 +- .../ScriptedEntityTweenerSystemComponent.cpp | 2 +- .../ScriptedEntityTweenerSystemComponent.h | 2 +- .../Code/Source/ScriptedEntityTweenerTask.cpp | 2 +- .../Code/Source/ScriptedEntityTweenerTask.h | 2 +- .../Source/ScriptedEntityTweener_precompiled.h | 2 +- .../Code/scriptedentitytweener_files.cmake | 2 +- .../scriptedentitytweener_shared_files.cmake | 2 +- Gems/SliceFavorites/CMakeLists.txt | 2 +- Gems/SliceFavorites/Code/CMakeLists.txt | 2 +- .../Include/SliceFavorites/SliceFavoritesBus.h | 2 +- .../Source/ComponentSliceFavoritesWindow.cpp | 2 +- .../Source/ComponentSliceFavoritesWindow.h | 2 +- .../Code/Source/FavoriteDataModel.cpp | 2 +- .../Code/Source/FavoriteDataModel.h | 2 +- .../Code/Source/SliceFavoritesModule.cpp | 2 +- .../Source/SliceFavoritesSystemComponent.cpp | 2 +- .../Source/SliceFavoritesSystemComponent.h | 2 +- .../Source/SliceFavoritesSystemComponentBus.h | 2 +- .../Code/Source/SliceFavoritesTreeView.cpp | 2 +- .../Code/Source/SliceFavoritesTreeView.h | 2 +- .../Code/Source/SliceFavoritesWidget.cpp | 2 +- .../Code/Source/SliceFavoritesWidget.h | 2 +- .../Code/Source/SliceFavorites_precompiled.h | 2 +- .../Code/slicefavorites_files.cmake | 2 +- .../Code/slicefavorites_shared_files.cmake | 2 +- Gems/StartingPointCamera/CMakeLists.txt | 2 +- Gems/StartingPointCamera/Code/CMakeLists.txt | 2 +- .../StartingPointCameraConstants.h | 2 +- .../StartingPointCameraUtilities.h | 2 +- .../CameraLookAtBehaviors/OffsetPosition.cpp | 2 +- .../CameraLookAtBehaviors/OffsetPosition.h | 2 +- .../RotateCameraLookAt.cpp | 2 +- .../CameraLookAtBehaviors/RotateCameraLookAt.h | 2 +- .../SlideAlongAxisBasedOnAngle.cpp | 2 +- .../SlideAlongAxisBasedOnAngle.h | 2 +- .../AcquireByEntityId.cpp | 2 +- .../CameraTargetAcquirers/AcquireByEntityId.h | 2 +- .../CameraTargetAcquirers/AcquireByTag.cpp | 2 +- .../CameraTargetAcquirers/AcquireByTag.h | 2 +- .../CameraTransformBehaviors/FaceTarget.cpp | 2 +- .../CameraTransformBehaviors/FaceTarget.h | 2 +- .../FollowTargetFromAngle.cpp | 2 +- .../FollowTargetFromAngle.h | 2 +- .../FollowTargetFromDistance.cpp | 2 +- .../FollowTargetFromDistance.h | 2 +- .../OffsetCameraPosition.cpp | 2 +- .../OffsetCameraPosition.h | 2 +- .../Source/CameraTransformBehaviors/Rotate.cpp | 2 +- .../Source/CameraTransformBehaviors/Rotate.h | 2 +- .../StartingPointCameraUtilities.cpp | 2 +- .../Code/Source/StartingPointCameraGem.cpp | 2 +- .../Source/StartingPointCamera_precompiled.h | 2 +- .../Code/startingpointcamera_files.cmake | 2 +- .../startingpointcamera_shared_files.cmake | 2 +- .../Assets/Scripts/Input/held.lua | 2 +- .../Input/ordered_event_combination.lua | 2 +- .../Assets/Scripts/Input/pressed.lua | 2 +- .../Assets/Scripts/Input/released.lua | 2 +- .../Scripts/Input/vectorized_combination.lua | 2 +- Gems/StartingPointInput/CMakeLists.txt | 2 +- Gems/StartingPointInput/Code/CMakeLists.txt | 2 +- .../InputEventNotificationBus.h | 2 +- .../StartingPointInput/InputEventRequestBus.h | 2 +- Gems/StartingPointInput/Code/Source/Input.cpp | 2 +- Gems/StartingPointInput/Code/Source/Input.h | 2 +- .../Source/InputConfigurationComponent.cpp | 2 +- .../Code/Source/InputConfigurationComponent.h | 2 +- .../Code/Source/InputEventBindings.h | 2 +- .../Code/Source/InputEventGroup.h | 2 +- .../Code/Source/InputEventMap.cpp | 2 +- .../Code/Source/InputEventMap.h | 2 +- .../Code/Source/InputHandlerNodeable.cpp | 2 +- .../Code/Source/InputHandlerNodeable.h | 2 +- .../Code/Source/InputLibrary.cpp | 2 +- .../Code/Source/InputLibrary.h | 2 +- .../Code/Source/InputNode.cpp | 2 +- .../StartingPointInput/Code/Source/InputNode.h | 2 +- .../Code/Source/LyToAzInputNameConversions.h | 2 +- .../Code/Source/StartingPointInputGem.cpp | 2 +- .../Source/StartingPointInput_precompiled.h | 2 +- .../Code/Tests/StartingPointInputTest.cpp | 2 +- .../startingpointinput_autogen_files.cmake | 2 +- .../Code/startingpointinput_editor_files.cmake | 2 +- .../Code/startingpointinput_files.cmake | 2 +- .../Code/startingpointinput_shared_files.cmake | 2 +- .../Code/startingpointinput_tests_files.cmake | 2 +- .../Scripts/Components/AddPhysicsImpulse.lua | 2 +- .../Assets/Scripts/Components/EntityLookAt.lua | 2 +- .../Assets/Scripts/Components/MoveEntity.lua | 2 +- .../Assets/Scripts/Components/RotateEntity.lua | 2 +- Gems/StartingPointMovement/CMakeLists.txt | 2 +- Gems/StartingPointMovement/Code/CMakeLists.txt | 2 +- .../StartingPointMovementConstants.h | 2 +- .../StartingPointMovementUtilities.h | 2 +- .../Code/Source/StartingPointMovementGem.cpp | 2 +- .../Source/StartingPointMovement_precompiled.h | 2 +- .../startingpointmovement_shared_files.cmake | 2 +- Gems/SurfaceData/CMakeLists.txt | 2 +- Gems/SurfaceData/Code/CMakeLists.txt | 2 +- .../Include/SurfaceData/SurfaceDataConstants.h | 2 +- .../SurfaceDataModifierRequestBus.h | 2 +- .../SurfaceDataProviderRequestBus.h | 2 +- .../SurfaceDataSystemNotificationBus.h | 2 +- .../SurfaceData/SurfaceDataSystemRequestBus.h | 2 +- .../SurfaceDataTagEnumeratorRequestBus.h | 2 +- .../SurfaceDataTagProviderRequestBus.h | 2 +- .../Include/SurfaceData/SurfaceDataTypes.h | 2 +- .../Code/Include/SurfaceData/SurfaceTag.h | 2 +- .../SurfaceData/Tests/SurfaceDataTestMocks.h | 2 +- .../SurfaceData/Utility/SurfaceDataUtility.h | 2 +- .../SurfaceDataColliderComponent.cpp | 2 +- .../Components/SurfaceDataColliderComponent.h | 2 +- .../Components/SurfaceDataShapeComponent.cpp | 2 +- .../Components/SurfaceDataShapeComponent.h | 2 +- .../EditorSurfaceDataColliderComponent.cpp | 2 +- .../EditorSurfaceDataColliderComponent.h | 2 +- .../Editor/EditorSurfaceDataShapeComponent.cpp | 2 +- .../Editor/EditorSurfaceDataShapeComponent.h | 2 +- .../EditorSurfaceDataSystemComponent.cpp | 2 +- .../Editor/EditorSurfaceDataSystemComponent.h | 2 +- .../Editor/EditorSurfaceTagListAsset.cpp | 2 +- .../Source/Editor/EditorSurfaceTagListAsset.h | 2 +- .../Code/Source/SurfaceDataEditorModule.cpp | 2 +- .../Code/Source/SurfaceDataEditorModule.h | 2 +- .../Code/Source/SurfaceDataModule.cpp | 2 +- .../Code/Source/SurfaceDataModule.h | 2 +- .../Code/Source/SurfaceDataSystemComponent.cpp | 2 +- .../Code/Source/SurfaceDataSystemComponent.h | 2 +- .../Code/Source/SurfaceDataUtility.cpp | 2 +- .../Code/Source/SurfaceData_precompiled.h | 2 +- Gems/SurfaceData/Code/Source/SurfaceTag.cpp | 2 +- .../TerrainSurfaceDataSystemComponent.cpp | 2 +- .../Source/TerrainSurfaceDataSystemComponent.h | 2 +- .../Tests/SurfaceDataColliderComponentTest.cpp | 2 +- .../SurfaceData/Code/Tests/SurfaceDataTest.cpp | 2 +- .../Code/surfacedata_editor_files.cmake | 2 +- Gems/SurfaceData/Code/surfacedata_files.cmake | 2 +- .../Code/surfacedata_shared_files.cmake | 2 +- .../Code/surfacedata_tests_files.cmake | 2 +- Gems/TestAssetBuilder/CMakeLists.txt | 2 +- Gems/TestAssetBuilder/Code/CMakeLists.txt | 2 +- .../Builder/TestAssetBuilderComponent.cpp | 2 +- .../Source/Builder/TestAssetBuilderComponent.h | 2 +- .../Code/Source/TestAssetBuilderModule.cpp | 2 +- .../Code/testassetbuilder_files.cmake | 2 +- .../Code/testassetbuilder_shared_files.cmake | 2 +- Gems/TextureAtlas/CMakeLists.txt | 2 +- Gems/TextureAtlas/Code/CMakeLists.txt | 2 +- .../Code/Include/TextureAtlas/TextureAtlas.h | 2 +- .../Include/TextureAtlas/TextureAtlasBus.h | 2 +- .../TextureAtlas/TextureAtlasNotificationBus.h | 2 +- .../Source/Editor/AtlasBuilderComponent.cpp | 2 +- .../Code/Source/Editor/AtlasBuilderComponent.h | 2 +- .../Code/Source/Editor/AtlasBuilderWorker.cpp | 2 +- .../Code/Source/Editor/AtlasBuilderWorker.h | 2 +- .../Code/Source/TextureAtlasImpl.cpp | 2 +- .../Code/Source/TextureAtlasImpl.h | 2 +- .../Code/Source/TextureAtlasModule.cpp | 2 +- .../Source/TextureAtlasSystemComponent.cpp | 2 +- .../Code/Source/TextureAtlasSystemComponent.h | 2 +- .../Code/Source/TextureAtlas_precompiled.h | 2 +- .../Code/textureatlas_builder_files.cmake | 2 +- .../TextureAtlas/Code/textureatlas_files.cmake | 2 +- .../Code/textureatlas_module_files.cmake | 2 +- Gems/TickBusOrderViewer/CMakeLists.txt | 2 +- Gems/TickBusOrderViewer/Code/CMakeLists.txt | 2 +- .../TickBusOrderViewer/TickBusOrderViewerBus.h | 2 +- .../Code/Source/TickBusOrderViewerModule.cpp | 2 +- .../TickBusOrderViewerSystemComponent.cpp | 2 +- .../Source/TickBusOrderViewerSystemComponent.h | 2 +- .../Source/TickBusOrderViewer_precompiled.h | 2 +- .../Code/tickbusorderviewer_files.cmake | 2 +- .../Code/tickbusorderviewer_shared_files.cmake | 2 +- Gems/Twitch/Assets/Scripts/Twitch.lua | 2 +- Gems/Twitch/CMakeLists.txt | 2 +- Gems/Twitch/Code/CMakeLists.txt | 2 +- Gems/Twitch/Code/Include/Twitch/BaseTypes.h | 2 +- Gems/Twitch/Code/Include/Twitch/RESTTypes.h | 2 +- Gems/Twitch/Code/Include/Twitch/TwitchBus.h | 2 +- Gems/Twitch/Code/Include/Twitch/TwitchTypes.h | 2 +- Gems/Twitch/Code/Source/ComponentStub.cpp | 2 +- Gems/Twitch/Code/Source/FuelInterface.h | 2 +- Gems/Twitch/Code/Source/IFuelInterface.h | 2 +- Gems/Twitch/Code/Source/ITwitchREST.h | 2 +- .../Platform/Android/Twitch_Traits_Android.h | 2 +- .../Platform/Android/Twitch_Traits_Platform.h | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Platform/Linux/Twitch_Traits_Linux.h | 2 +- .../Platform/Linux/Twitch_Traits_Platform.h | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- .../Source/Platform/Mac/Twitch_Traits_Mac.h | 2 +- .../Platform/Mac/Twitch_Traits_Platform.h | 2 +- .../Platform/Mac/platform_mac_files.cmake | 2 +- .../Platform/Windows/Twitch_Traits_Platform.h | 2 +- .../Platform/Windows/Twitch_Traits_Windows.h | 2 +- .../Windows/platform_windows_files.cmake | 2 +- .../Platform/iOS/Twitch_Traits_Platform.h | 2 +- .../Source/Platform/iOS/Twitch_Traits_iOS.h | 2 +- .../Platform/iOS/platform_ios_files.cmake | 2 +- Gems/Twitch/Code/Source/TwitchModule.cpp | 2 +- Gems/Twitch/Code/Source/TwitchREST.cpp | 2 +- Gems/Twitch/Code/Source/TwitchREST.h | 2 +- Gems/Twitch/Code/Source/TwitchReflection.cpp | 2 +- Gems/Twitch/Code/Source/TwitchReflection.h | 2 +- .../Code/Source/TwitchSystemComponent.cpp | 2 +- .../Twitch/Code/Source/TwitchSystemComponent.h | 2 +- Gems/Twitch/Code/Source/Twitch_precompiled.h | 2 +- .../Code/lmbraws_unsupported_files.cmake | 2 +- Gems/Twitch/Code/twitch_files.cmake | 2 +- Gems/Twitch/Code/twitch_shared_files.cmake | 2 +- Gems/UiBasics/CMakeLists.txt | 2 +- Gems/Vegetation/CMakeLists.txt | 2 +- Gems/Vegetation/Code/CMakeLists.txt | 2 +- .../Include/Vegetation/AreaComponentBase.h | 2 +- .../Code/Include/Vegetation/Descriptor.h | 2 +- .../Include/Vegetation/DescriptorListAsset.h | 2 +- .../Vegetation/DynamicSliceInstanceSpawner.h | 2 +- .../Vegetation/Ebuses/AreaBlenderRequestBus.h | 2 +- .../Vegetation/Ebuses/AreaConfigRequestBus.h | 2 +- .../Include/Vegetation/Ebuses/AreaDebugBus.h | 2 +- .../Include/Vegetation/Ebuses/AreaInfoBus.h | 2 +- .../Vegetation/Ebuses/AreaNotificationBus.h | 2 +- .../Include/Vegetation/Ebuses/AreaRequestBus.h | 2 +- .../Vegetation/Ebuses/AreaSystemRequestBus.h | 2 +- .../Vegetation/Ebuses/BlockerRequestBus.h | 2 +- .../Vegetation/Ebuses/DebugNotificationBus.h | 2 +- .../Vegetation/Ebuses/DebugRequestsBus.h | 2 +- .../Vegetation/Ebuses/DebugSystemDataBus.h | 2 +- .../Vegetation/Ebuses/DependencyRequestBus.h | 2 +- .../Ebuses/DescriptorListCombinerRequestBus.h | 2 +- .../Ebuses/DescriptorListRequestBus.h | 2 +- .../Ebuses/DescriptorNotificationBus.h | 2 +- .../Ebuses/DescriptorProviderRequestBus.h | 2 +- .../Ebuses/DescriptorSelectorRequestBus.h | 2 +- .../DescriptorWeightSelectorRequestBus.h | 2 +- .../Ebuses/DistanceBetweenFilterRequestBus.h | 2 +- .../Ebuses/DistributionFilterRequestBus.h | 2 +- .../Vegetation/Ebuses/FilterRequestBus.h | 2 +- .../Ebuses/InstanceSystemRequestBus.h | 2 +- .../Ebuses/LevelSettingsRequestBus.h | 2 +- .../Vegetation/Ebuses/MeshBlockerRequestBus.h | 2 +- .../Vegetation/Ebuses/ModifierRequestBus.h | 2 +- .../Ebuses/PositionModifierRequestBus.h | 2 +- .../Ebuses/ReferenceShapeRequestBus.h | 2 +- .../Ebuses/RotationModifierRequestBus.h | 2 +- .../Ebuses/ScaleModifierRequestBus.h | 2 +- .../Ebuses/ShapeIntersectionFilterRequestBus.h | 2 +- .../Ebuses/SlopeAlignmentModifierRequestBus.h | 2 +- .../Vegetation/Ebuses/SpawnerRequestBus.h | 2 +- .../Ebuses/SurfaceAltitudeFilterRequestBus.h | 2 +- .../Ebuses/SurfaceMaskDepthFilterRequestBus.h | 2 +- .../Ebuses/SurfaceMaskFilterRequestBus.h | 2 +- .../Ebuses/SurfaceSlopeFilterRequestBus.h | 2 +- .../Vegetation/Ebuses/SystemConfigurationBus.h | 2 +- .../Editor/EditorAreaComponentBase.h | 2 +- .../Editor/EditorAreaComponentBase.inl | 2 +- .../Editor/EditorVegetationComponentBase.h | 2 +- .../Editor/EditorVegetationComponentBase.inl | 2 +- .../Editor/EditorVegetationComponentTypeIds.h | 2 +- .../Include/Vegetation/EmptyInstanceSpawner.h | 2 +- .../Code/Include/Vegetation/InstanceData.h | 2 +- .../Code/Include/Vegetation/InstanceSpawner.h | 2 +- .../Include/Vegetation/PrefabInstanceSpawner.h | 2 +- .../Code/Source/AreaSystemComponent.cpp | 2 +- .../Code/Source/AreaSystemComponent.h | 2 +- .../Source/Components/AreaBlenderComponent.cpp | 2 +- .../Source/Components/AreaBlenderComponent.h | 2 +- .../Source/Components/AreaComponentBase.cpp | 2 +- .../Source/Components/BlockerComponent.cpp | 2 +- .../Code/Source/Components/BlockerComponent.h | 2 +- .../DescriptorListCombinerComponent.cpp | 2 +- .../DescriptorListCombinerComponent.h | 2 +- .../Components/DescriptorListComponent.cpp | 2 +- .../Components/DescriptorListComponent.h | 2 +- .../DescriptorWeightSelectorComponent.cpp | 2 +- .../DescriptorWeightSelectorComponent.h | 2 +- .../DistanceBetweenFilterComponent.cpp | 2 +- .../DistanceBetweenFilterComponent.h | 2 +- .../Components/DistributionFilterComponent.cpp | 2 +- .../Components/DistributionFilterComponent.h | 2 +- .../Components/LevelSettingsComponent.cpp | 2 +- .../Source/Components/LevelSettingsComponent.h | 2 +- .../Source/Components/MeshBlockerComponent.cpp | 2 +- .../Source/Components/MeshBlockerComponent.h | 2 +- .../Components/PositionModifierComponent.cpp | 2 +- .../Components/PositionModifierComponent.h | 2 +- .../Components/ReferenceShapeComponent.cpp | 2 +- .../Components/ReferenceShapeComponent.h | 2 +- .../Components/RotationModifierComponent.cpp | 2 +- .../Components/RotationModifierComponent.h | 2 +- .../Components/ScaleModifierComponent.cpp | 2 +- .../Source/Components/ScaleModifierComponent.h | 2 +- .../ShapeIntersectionFilterComponent.cpp | 2 +- .../ShapeIntersectionFilterComponent.h | 2 +- .../SlopeAlignmentModifierComponent.cpp | 2 +- .../SlopeAlignmentModifierComponent.h | 2 +- .../Source/Components/SpawnerComponent.cpp | 2 +- .../Code/Source/Components/SpawnerComponent.h | 2 +- .../SurfaceAltitudeFilterComponent.cpp | 2 +- .../SurfaceAltitudeFilterComponent.h | 2 +- .../SurfaceMaskDepthFilterComponent.cpp | 2 +- .../SurfaceMaskDepthFilterComponent.h | 2 +- .../Components/SurfaceMaskFilterComponent.cpp | 2 +- .../Components/SurfaceMaskFilterComponent.h | 2 +- .../Components/SurfaceSlopeFilterComponent.cpp | 2 +- .../Components/SurfaceSlopeFilterComponent.h | 2 +- .../Code/Source/DebugSystemComponent.cpp | 2 +- .../Code/Source/DebugSystemComponent.h | 2 +- .../Source/Debugger/AreaDebugComponent.cpp | 2 +- .../Code/Source/Debugger/AreaDebugComponent.h | 2 +- .../Code/Source/Debugger/DebugComponent.cpp | 2 +- .../Code/Source/Debugger/DebugComponent.h | 2 +- .../Debugger/EditorAreaDebugComponent.cpp | 2 +- .../Source/Debugger/EditorAreaDebugComponent.h | 2 +- .../Source/Debugger/EditorDebugComponent.cpp | 2 +- .../Source/Debugger/EditorDebugComponent.h | 2 +- Gems/Vegetation/Code/Source/Descriptor.cpp | 2 +- .../Code/Source/DescriptorListAsset.cpp | 2 +- .../Source/DynamicSliceInstanceSpawner.cpp | 2 +- .../Editor/EditorAreaBlenderComponent.cpp | 2 +- .../Source/Editor/EditorAreaBlenderComponent.h | 2 +- .../Source/Editor/EditorBlockerComponent.cpp | 2 +- .../Source/Editor/EditorBlockerComponent.h | 2 +- .../EditorDescriptorListCombinerComponent.cpp | 2 +- .../EditorDescriptorListCombinerComponent.h | 2 +- .../Editor/EditorDescriptorListComponent.cpp | 2 +- .../Editor/EditorDescriptorListComponent.h | 2 +- ...EditorDescriptorWeightSelectorComponent.cpp | 2 +- .../EditorDescriptorWeightSelectorComponent.h | 2 +- .../EditorDistanceBetweenFilterComponent.cpp | 2 +- .../EditorDistanceBetweenFilterComponent.h | 2 +- .../EditorDistributionFilterComponent.cpp | 2 +- .../Editor/EditorDistributionFilterComponent.h | 2 +- .../Editor/EditorLevelSettingsComponent.cpp | 2 +- .../Editor/EditorLevelSettingsComponent.h | 2 +- .../Editor/EditorMeshBlockerComponent.cpp | 2 +- .../Source/Editor/EditorMeshBlockerComponent.h | 2 +- .../Editor/EditorPositionModifierComponent.cpp | 2 +- .../Editor/EditorPositionModifierComponent.h | 2 +- .../Editor/EditorReferenceShapeComponent.cpp | 2 +- .../Editor/EditorReferenceShapeComponent.h | 2 +- .../Editor/EditorRotationModifierComponent.cpp | 2 +- .../Editor/EditorRotationModifierComponent.h | 2 +- .../Editor/EditorScaleModifierComponent.cpp | 2 +- .../Editor/EditorScaleModifierComponent.h | 2 +- .../EditorShapeIntersectionFilterComponent.cpp | 2 +- .../EditorShapeIntersectionFilterComponent.h | 2 +- .../EditorSlopeAlignmentModifierComponent.cpp | 2 +- .../EditorSlopeAlignmentModifierComponent.h | 2 +- .../Source/Editor/EditorSpawnerComponent.cpp | 2 +- .../Source/Editor/EditorSpawnerComponent.h | 2 +- .../EditorSurfaceAltitudeFilterComponent.cpp | 2 +- .../EditorSurfaceAltitudeFilterComponent.h | 2 +- .../EditorSurfaceMaskDepthFilterComponent.cpp | 2 +- .../EditorSurfaceMaskDepthFilterComponent.h | 2 +- .../EditorSurfaceMaskFilterComponent.cpp | 2 +- .../Editor/EditorSurfaceMaskFilterComponent.h | 2 +- .../EditorSurfaceSlopeFilterComponent.cpp | 2 +- .../Editor/EditorSurfaceSlopeFilterComponent.h | 2 +- .../Editor/EditorVegetationSystemComponent.cpp | 2 +- .../Editor/EditorVegetationSystemComponent.h | 2 +- .../Code/Source/EmptyInstanceSpawner.cpp | 2 +- Gems/Vegetation/Code/Source/InstanceData.cpp | 2 +- .../Code/Source/InstanceSystemComponent.cpp | 2 +- .../Code/Source/InstanceSystemComponent.h | 2 +- .../Code/Source/PrefabInstanceSpawner.cpp | 2 +- .../Code/Source/Util/ConcurrentQueue.h | 2 +- .../Code/Source/Util/ProducerConsumerQueue.h | 2 +- .../Code/Source/VegetationEditorModule.cpp | 2 +- .../Code/Source/VegetationEditorModule.h | 2 +- .../Code/Source/VegetationModule.cpp | 2 +- Gems/Vegetation/Code/Source/VegetationModule.h | 2 +- .../Code/Source/VegetationProfiler.h | 2 +- .../Code/Source/VegetationSystemComponent.cpp | 2 +- .../Code/Source/VegetationSystemComponent.h | 2 +- .../Tests/DynamicSliceInstanceSpawnerTests.cpp | 2 +- .../Code/Tests/EmptyInstanceSpawnerTests.cpp | 2 +- .../Code/Tests/PrefabInstanceSpawnerTests.cpp | 2 +- .../VegetationAreaSystemComponentTest.cpp | 2 +- .../VegetationComponentDescriptorTests.cpp | 2 +- .../Tests/VegetationComponentFilterTests.cpp | 2 +- .../Tests/VegetationComponentModifierTests.cpp | 2 +- .../VegetationComponentOperationTests.cpp | 2 +- Gems/Vegetation/Code/Tests/VegetationMocks.h | 2 +- Gems/Vegetation/Code/Tests/VegetationTest.cpp | 2 +- Gems/Vegetation/Code/Tests/VegetationTest.h | 2 +- .../Code/vegetation_editor_files.cmake | 2 +- Gems/Vegetation/Code/vegetation_files.cmake | 2 +- .../Code/vegetation_shared_files.cmake | 2 +- .../Code/vegetation_tests_files.cmake | 2 +- Gems/VideoPlaybackFramework/CMakeLists.txt | 2 +- .../VideoPlaybackFramework/Code/CMakeLists.txt | 2 +- .../VideoPlaybackAsset.h | 2 +- .../VideoPlaybackFramework/VideoPlaybackBus.h | 2 +- .../VideoPlaybackFrameworkBus.h | 2 +- .../Source/VideoPlaybackFrameworkModule.cpp | 2 +- .../Code/Source/VideoPlaybackFrameworkModule.h | 2 +- .../VideoPlaybackFrameworkSystemComponent.cpp | 2 +- .../VideoPlaybackFrameworkSystemComponent.h | 2 +- .../Code/Tests/VideoPlaybackFrameworkTest.cpp | 2 +- .../Code/videoplaybackframework_files.cmake | 2 +- .../videoplaybackframework_shared_files.cmake | 2 +- .../videoplaybackframework_tests_files.cmake | 2 +- Gems/VirtualGamepad/CMakeLists.txt | 2 +- Gems/VirtualGamepad/Code/CMakeLists.txt | 2 +- .../Include/VirtualGamepad/VirtualGamepadBus.h | 2 +- .../Code/Source/InputDeviceVirtualGamepad.cpp | 2 +- .../Code/Source/InputDeviceVirtualGamepad.h | 2 +- .../Source/VirtualGamepadButtonComponent.cpp | 2 +- .../Source/VirtualGamepadButtonComponent.h | 2 +- .../Source/VirtualGamepadButtonRequestBus.h | 2 +- .../Code/Source/VirtualGamepadModule.cpp | 2 +- .../Source/VirtualGamepadSystemComponent.cpp | 2 +- .../Source/VirtualGamepadSystemComponent.h | 2 +- .../VirtualGamepadThumbStickComponent.cpp | 2 +- .../Source/VirtualGamepadThumbStickComponent.h | 2 +- .../VirtualGamepadThumbStickRequestBus.h | 2 +- .../Code/Source/VirtualGamepad_precompiled.h | 2 +- .../Code/virtualgamepad_files.cmake | 2 +- .../Code/virtualgamepad_shared_files.cmake | 2 +- Gems/WhiteBox/CMakeLists.txt | 2 +- Gems/WhiteBox/Code/CMakeLists.txt | 2 +- .../Code/Include/WhiteBox/EditorWhiteBoxBus.h | 2 +- .../WhiteBox/EditorWhiteBoxColliderBus.h | 2 +- .../WhiteBox/EditorWhiteBoxComponentBus.h | 2 +- .../Code/Include/WhiteBox/WhiteBoxBus.h | 2 +- .../Include/WhiteBox/WhiteBoxComponentBus.h | 2 +- .../Code/Include/WhiteBox/WhiteBoxToolApi.h | 2 +- .../Source/Asset/EditorWhiteBoxMeshAsset.cpp | 2 +- .../Source/Asset/EditorWhiteBoxMeshAsset.h | 2 +- .../Code/Source/Asset/WhiteBoxMeshAsset.h | 2 +- .../Code/Source/Asset/WhiteBoxMeshAssetBus.h | 2 +- .../Source/Asset/WhiteBoxMeshAssetHandler.cpp | 2 +- .../Source/Asset/WhiteBoxMeshAssetHandler.h | 2 +- .../Asset/WhiteBoxMeshAssetUndoCommand.cpp | 2 +- .../Asset/WhiteBoxMeshAssetUndoCommand.h | 2 +- .../EditorWhiteBoxColliderComponent.cpp | 2 +- .../EditorWhiteBoxColliderComponent.h | 2 +- .../Components/WhiteBoxColliderComponent.cpp | 2 +- .../Components/WhiteBoxColliderComponent.h | 2 +- .../WhiteBoxColliderConfiguration.cpp | 2 +- .../Components/WhiteBoxColliderConfiguration.h | 2 +- .../Code/Source/Core/WhiteBoxToolApi.cpp | 2 +- .../Code/Source/EditorWhiteBoxComponent.cpp | 2 +- .../Code/Source/EditorWhiteBoxComponent.h | 2 +- .../Source/EditorWhiteBoxComponentMode.cpp | 2 +- .../Code/Source/EditorWhiteBoxComponentMode.h | 2 +- .../Source/EditorWhiteBoxComponentModeBus.h | 2 +- .../EditorWhiteBoxComponentModeTypes.cpp | 2 +- .../Source/EditorWhiteBoxComponentModeTypes.h | 2 +- .../Source/EditorWhiteBoxDefaultShapeTypes.h | 2 +- .../Source/EditorWhiteBoxEdgeModifierBus.h | 2 +- .../Source/EditorWhiteBoxPolygonModifierBus.h | 2 +- .../Source/EditorWhiteBoxSystemComponent.cpp | 2 +- .../Source/EditorWhiteBoxSystemComponent.h | 2 +- .../Source/Platform/Android/PAL_android.cmake | 2 +- .../Code/Source/Platform/Linux/PAL_linux.cmake | 2 +- .../Code/Source/Platform/Mac/PAL_mac.cmake | 2 +- .../Source/Platform/Windows/PAL_windows.cmake | 2 +- .../Windows/platform_windows_tools.cmake | 2 +- .../Code/Source/Platform/iOS/PAL_ios.cmake | 2 +- .../Code/Source/Rendering/Atom/PackedFloat2.h | 2 +- .../Rendering/Atom/TangentSpaceHelper.cpp | 2 +- .../Source/Rendering/Atom/TangentSpaceHelper.h | 2 +- .../Rendering/Atom/WhiteBoxAtomRenderMesh.cpp | 2 +- .../Rendering/Atom/WhiteBoxAtomRenderMesh.h | 2 +- .../Rendering/Atom/WhiteBoxAttributeBuffer.h | 2 +- .../Source/Rendering/Atom/WhiteBoxBuffer.h | 2 +- .../Rendering/Atom/WhiteBoxMeshAtomData.cpp | 2 +- .../Rendering/Atom/WhiteBoxMeshAtomData.h | 2 +- .../Code/Source/Rendering/WhiteBoxMaterial.cpp | 2 +- .../Code/Source/Rendering/WhiteBoxMaterial.h | 2 +- .../Rendering/WhiteBoxNullRenderMesh.cpp | 2 +- .../Source/Rendering/WhiteBoxNullRenderMesh.h | 2 +- .../Source/Rendering/WhiteBoxRenderData.cpp | 2 +- .../Code/Source/Rendering/WhiteBoxRenderData.h | 2 +- .../Rendering/WhiteBoxRenderMeshInterface.cpp | 2 +- .../Rendering/WhiteBoxRenderMeshInterface.h | 2 +- .../EditorWhiteBoxComponentModeCommon.cpp | 2 +- .../EditorWhiteBoxComponentModeCommon.h | 2 +- .../EditorWhiteBoxDefaultMode.cpp | 2 +- .../EditorWhiteBoxDefaultMode.h | 2 +- .../EditorWhiteBoxDefaultModeBus.h | 2 +- .../EditorWhiteBoxEdgeRestoreMode.cpp | 2 +- .../EditorWhiteBoxEdgeRestoreMode.h | 2 +- .../Code/Source/Util/WhiteBoxEditorUtil.cpp | 2 +- .../Code/Source/Util/WhiteBoxEditorUtil.h | 2 +- .../Code/Source/Util/WhiteBoxMathUtil.cpp | 2 +- .../Code/Source/Util/WhiteBoxMathUtil.h | 2 +- .../Code/Source/Util/WhiteBoxTextureUtil.cpp | 2 +- .../Code/Source/Util/WhiteBoxTextureUtil.h | 2 +- .../Viewport/WhiteBoxEdgeScaleModifier.cpp | 2 +- .../Viewport/WhiteBoxEdgeScaleModifier.h | 2 +- .../WhiteBoxEdgeTranslationModifier.cpp | 2 +- .../Viewport/WhiteBoxEdgeTranslationModifier.h | 2 +- .../Viewport/WhiteBoxManipulatorBounds.cpp | 2 +- .../Viewport/WhiteBoxManipulatorBounds.h | 2 +- .../Viewport/WhiteBoxManipulatorViews.cpp | 2 +- .../Source/Viewport/WhiteBoxManipulatorViews.h | 2 +- .../Source/Viewport/WhiteBoxModifierUtil.cpp | 2 +- .../Source/Viewport/WhiteBoxModifierUtil.h | 2 +- .../Viewport/WhiteBoxPolygonScaleModifier.cpp | 2 +- .../Viewport/WhiteBoxPolygonScaleModifier.h | 2 +- .../WhiteBoxPolygonTranslationModifier.cpp | 2 +- .../WhiteBoxPolygonTranslationModifier.h | 2 +- .../WhiteBoxVertexTranslationModifier.cpp | 2 +- .../WhiteBoxVertexTranslationModifier.h | 2 +- .../Viewport/WhiteBoxViewportConstants.cpp | 2 +- .../Viewport/WhiteBoxViewportConstants.h | 2 +- .../WhiteBox/Code/Source/WhiteBoxAllocator.cpp | 2 +- Gems/WhiteBox/Code/Source/WhiteBoxAllocator.h | 2 +- .../WhiteBox/Code/Source/WhiteBoxComponent.cpp | 2 +- Gems/WhiteBox/Code/Source/WhiteBoxComponent.h | 2 +- .../Code/Source/WhiteBoxEditorModule.cpp | 2 +- .../Code/Source/WhiteBoxEditorModule.h | 2 +- Gems/WhiteBox/Code/Source/WhiteBoxModule.cpp | 2 +- Gems/WhiteBox/Code/Source/WhiteBoxModule.h | 2 +- .../Code/Source/WhiteBoxModuleUnsupported.cpp | 2 +- .../Code/Source/WhiteBoxSystemComponent.cpp | 2 +- .../Code/Source/WhiteBoxSystemComponent.h | 2 +- .../Code/Source/WhiteBoxToolApiReflection.cpp | 2 +- .../Code/Source/WhiteBoxToolApiReflection.h | 2 +- .../Source/WhiteBoxUnsupported_precompiled.h | 2 +- .../Code/Source/WhiteBox_precompiled.h | 2 +- .../Code/Tests/WhiteBoxComponentTest.cpp | 2 +- Gems/WhiteBox/Code/Tests/WhiteBoxEdgeTest.cpp | 2 +- .../Code/Tests/WhiteBoxPhysicsTest.cpp | 2 +- .../Code/Tests/WhiteBoxRenderDataTest.cpp | 2 +- .../Code/Tests/WhiteBoxRuntimeTest.cpp | 2 +- .../Code/Tests/WhiteBoxSelectionTest.cpp | 2 +- Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp | 2 +- .../WhiteBox/Code/Tests/WhiteBoxTestFixtures.h | 2 +- .../Code/Tests/WhiteBoxTestRailsAutomation.cpp | 2 +- Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.cpp | 2 +- Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.h | 2 +- Gems/WhiteBox/Code/Tests/WhiteBoxUVTest.cpp | 2 +- ..._editor_physics_tests_supported_files.cmake | 2 +- .../Code/whitebox_editor_shared_files.cmake | 2 +- .../Code/whitebox_editor_supported_files.cmake | 2 +- ...whitebox_editor_tests_supported_files.cmake | 2 +- Gems/WhiteBox/Code/whitebox_shared_files.cmake | 2 +- .../Code/whitebox_supported_files.cmake | 2 +- .../Code/whitebox_tests_supported_files.cmake | 2 +- .../Code/whitebox_unsupported_files.cmake | 2 +- Gems/WhiteBox/Editor/Scripts/Cylinder.py | 2 +- Gems/WhiteBox/Editor/Scripts/Icosahedron.py | 2 +- Gems/WhiteBox/Editor/Scripts/Sphere.py | 2 +- Gems/WhiteBox/Editor/Scripts/Staircase.py | 2 +- Gems/WhiteBox/Editor/Scripts/Tetrahedron.py | 2 +- Gems/WhiteBox/Editor/Scripts/WhiteBox.py | 2 +- Gems/WhiteBox/Editor/Scripts/WhiteBoxInit.py | 2 +- Gems/WhiteBox/Editor/Scripts/WhiteBoxMath.py | 2 +- Gems/WhiteBox/Editor/Scripts/default_shapes.py | 2 +- Registry/setregbuilder.assetprocessor.setreg | 2 +- SerializeContextAnalysis.bat | 2 +- Templates/AssetGem/Template/CMakeLists.txt | 2 +- Templates/DefaultGem/Template/CMakeLists.txt | 2 +- .../Code/${NameLower}_editor_files.cmake | 2 +- .../${NameLower}_editor_shared_files.cmake | 2 +- .../Code/${NameLower}_editor_tests_files.cmake | 2 +- .../Template/Code/${NameLower}_files.cmake | 2 +- .../Code/${NameLower}_shared_files.cmake | 2 +- .../Code/${NameLower}_tests_files.cmake | 2 +- .../DefaultGem/Template/Code/CMakeLists.txt | 2 +- .../Template/Code/Include/${Name}/${Name}Bus.h | 2 +- .../Android/${NameLower}_android_files.cmake | 2 +- .../${NameLower}_shared_android_files.cmake | 2 +- .../Code/Platform/Android/PAL_android.cmake | 2 +- .../Linux/${NameLower}_linux_files.cmake | 2 +- .../${NameLower}_shared_linux_files.cmake | 2 +- .../Code/Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Mac/${NameLower}_mac_files.cmake | 2 +- .../Mac/${NameLower}_shared_mac_files.cmake | 2 +- .../Template/Code/Platform/Mac/PAL_mac.cmake | 2 +- .../${NameLower}_shared_windows_files.cmake | 2 +- .../Windows/${NameLower}_windows_files.cmake | 2 +- .../Code/Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/iOS/${NameLower}_ios_files.cmake | 2 +- .../iOS/${NameLower}_shared_ios_files.cmake | 2 +- .../Template/Code/Platform/iOS/PAL_ios.cmake | 2 +- .../Code/Source/${Name}EditorModule.cpp | 2 +- .../Source/${Name}EditorSystemComponent.cpp | 2 +- .../Code/Source/${Name}EditorSystemComponent.h | 2 +- .../Template/Code/Source/${Name}Module.cpp | 2 +- .../Code/Source/${Name}ModuleInterface.h | 2 +- .../Code/Source/${Name}SystemComponent.cpp | 2 +- .../Code/Source/${Name}SystemComponent.h | 2 +- .../Template/Code/Tests/${Name}EditorTest.cpp | 2 +- .../Template/Code/Tests/${Name}Test.cpp | 2 +- .../Platform/Android/android_gem.cmake | 2 +- .../Template/Platform/Linux/linux_gem.cmake | 2 +- .../Template/Platform/Mac/mac_gem.cmake | 2 +- .../Platform/Windows/windows_gem.cmake | 2 +- .../Template/Platform/iOS/ios_gem.cmake | 2 +- .../DefaultProject/Template/CMakeLists.txt | 2 +- .../Template/Code/${NameLower}_files.cmake | 2 +- .../Code/${NameLower}_shared_files.cmake | 2 +- .../Template/Code/CMakeLists.txt | 2 +- .../Template/Code/Include/${Name}/${Name}Bus.h | 2 +- .../Android/${NameLower}_android_files.cmake | 2 +- .../${NameLower}_shared_android_files.cmake | 2 +- .../Code/Platform/Android/PAL_android.cmake | 2 +- .../Linux/${NameLower}_linux_files.cmake | 2 +- .../${NameLower}_shared_linux_files.cmake | 2 +- .../Code/Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Mac/${NameLower}_mac_files.cmake | 2 +- .../Mac/${NameLower}_shared_mac_files.cmake | 2 +- .../Template/Code/Platform/Mac/PAL_mac.cmake | 2 +- .../${NameLower}_shared_windows_files.cmake | 2 +- .../Windows/${NameLower}_windows_files.cmake | 2 +- .../Code/Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/iOS/${NameLower}_ios_files.cmake | 2 +- .../iOS/${NameLower}_shared_ios_files.cmake | 2 +- .../Template/Code/Platform/iOS/PAL_ios.cmake | 2 +- .../Template/Code/Source/${Name}Module.cpp | 2 +- .../Code/Source/${Name}SystemComponent.cpp | 2 +- .../Code/Source/${Name}SystemComponent.h | 2 +- .../Template/Code/enabled_gems.cmake | 2 +- .../DefaultProject/Template/EngineFinder.cmake | 2 +- .../Platform/Android/android_project.cmake | 2 +- .../Platform/Linux/linux_project.cmake | 2 +- .../Template/Platform/Mac/mac_project.cmake | 2 +- .../Platform/Windows/windows_project.cmake | 2 +- .../Template/Platform/iOS/ios_project.cmake | 2 +- .../Template/ShaderLib/scenesrg.srgi | 2 +- .../Template/ShaderLib/viewsrg.srgi | 2 +- .../Template/Shaders/CommonVS.azsli | 2 +- .../ShaderResourceGroups/SceneSrg.azsli | 2 +- .../MinimalProject/Template/CMakeLists.txt | 2 +- .../Template/Code/${NameLower}_files.cmake | 2 +- .../Code/${NameLower}_shared_files.cmake | 2 +- .../Template/Code/CMakeLists.txt | 2 +- .../Template/Code/Include/${Name}/${Name}Bus.h | 2 +- .../Android/${NameLower}_android_files.cmake | 2 +- .../${NameLower}_shared_android_files.cmake | 2 +- .../Code/Platform/Android/PAL_android.cmake | 2 +- .../Linux/${NameLower}_linux_files.cmake | 2 +- .../${NameLower}_shared_linux_files.cmake | 2 +- .../Code/Platform/Linux/PAL_linux.cmake | 2 +- .../Platform/Mac/${NameLower}_mac_files.cmake | 2 +- .../Mac/${NameLower}_shared_mac_files.cmake | 2 +- .../Template/Code/Platform/Mac/PAL_mac.cmake | 2 +- .../${NameLower}_shared_windows_files.cmake | 2 +- .../Windows/${NameLower}_windows_files.cmake | 2 +- .../Code/Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/iOS/${NameLower}_ios_files.cmake | 2 +- .../iOS/${NameLower}_shared_ios_files.cmake | 2 +- .../Template/Code/Platform/iOS/PAL_ios.cmake | 2 +- .../Template/Code/Source/${Name}Module.cpp | 2 +- .../Code/Source/${Name}SystemComponent.cpp | 2 +- .../Code/Source/${Name}SystemComponent.h | 2 +- .../Template/Code/enabled_gems.cmake | 2 +- .../MinimalProject/Template/EngineFinder.cmake | 2 +- .../Platform/Android/android_project.cmake | 2 +- .../Platform/Linux/linux_project.cmake | 2 +- .../Template/Platform/Mac/mac_project.cmake | 2 +- .../Platform/Windows/windows_project.cmake | 2 +- .../Template/Platform/iOS/ios_project.cmake | 2 +- .../Template/ShaderLib/scenesrg.srgi | 2 +- .../Template/ShaderLib/viewsrg.srgi | 2 +- .../Template/Shaders/CommonVS.azsli | 2 +- .../ShaderResourceGroups/SceneSrg.azsli | 2 +- Tools/EventLogTools/EventLogger/Reader.py | 2 +- Tools/EventLogTools/EventLogger/Utils.py | 2 +- Tools/EventLogTools/EventLogger/__init__.py | 2 +- Tools/EventLogTools/MessagePrinter.py | 2 +- Tools/EventLogTools/TraceViewer.py | 2 +- Tools/LauncherTestTools/__init__.py | 2 +- .../device_farm_create_bundle.py | 2 +- .../device_farm_create_bundle_startergame.bat | 2 +- .../device_farm_schedule_run.py | 2 +- ...e_farm_schedule_run_android_startergame.bat | 2 +- ...device_farm_schedule_run_ios_startergame.sh | 2 +- Tools/LauncherTestTools/run_launcher_tests.py | 2 +- .../run_launcher_tests_android.py | 2 +- .../run_launcher_tests_ios.py | 2 +- .../run_launcher_tests_local_validation.py | 2 +- .../run_launcher_tests_win.py | 2 +- ...ocal_launcher_test_win_automatedtesting.bat | 2 +- Tools/LyTestTools/README.txt | 2 +- Tools/LyTestTools/__init__.py | 2 +- Tools/LyTestTools/ly_test_tools/__init__.py | 2 +- .../ly_test_tools/_internal/__init__.py | 2 +- .../ly_test_tools/_internal/log/__init__.py | 2 +- .../_internal/log/py_logging_util.py | 2 +- .../_internal/managers/__init__.py | 2 +- .../managers/abstract_resource_locator.py | 2 +- .../_internal/managers/artifact_manager.py | 2 +- .../_internal/managers/ly_process_killer.py | 2 +- .../_internal/managers/platforms/__init__.py | 2 +- .../_internal/managers/platforms/mac.py | 2 +- .../_internal/managers/platforms/windows.py | 2 +- .../_internal/managers/workspace.py | 2 +- .../_internal/pytest_plugin/__init__.py | 2 +- .../_internal/pytest_plugin/case_id.py | 2 +- .../pytest_plugin/failed_test_rerun_command.py | 2 +- .../_internal/pytest_plugin/terminal_report.py | 2 +- .../pytest_plugin/test_tools_fixtures.py | 2 +- .../ly_test_tools/builtin/__init__.py | 2 +- .../ly_test_tools/builtin/helpers.py | 2 +- .../ly_test_tools/environment/__init__.py | 2 +- .../ly_test_tools/environment/file_system.py | 2 +- .../ly_test_tools/environment/process_utils.py | 2 +- .../ly_test_tools/environment/reg_cleaner.py | 2 +- .../ly_test_tools/environment/waiter.py | 2 +- .../ly_test_tools/environment/watchdog.py | 2 +- .../ly_test_tools/image/__init__.py | 2 +- .../ly_test_tools/image/image_capture.py | 2 +- .../image/screenshot_compare_qssim.py | 2 +- .../ly_test_tools/launchers/__init__.py | 2 +- .../ly_test_tools/launchers/exceptions.py | 2 +- .../ly_test_tools/launchers/launcher_helper.py | 2 +- .../launchers/platforms/__init__.py | 2 +- .../launchers/platforms/android/__init__.py | 2 +- .../launchers/platforms/android/launcher.py | 2 +- .../ly_test_tools/launchers/platforms/base.py | 2 +- .../launchers/platforms/mac/__init__.py | 2 +- .../launchers/platforms/mac/launcher.py | 2 +- .../launchers/platforms/win/__init__.py | 2 +- .../launchers/platforms/win/launcher.py | 2 +- .../LyTestTools/ly_test_tools/log/__init__.py | 2 +- .../ly_test_tools/log/log_monitor.py | 2 +- .../ly_test_tools/mobile/__init__.py | 2 +- .../ly_test_tools/mobile/android.py | 2 +- .../LyTestTools/ly_test_tools/o3de/__init__.py | 2 +- .../ly_test_tools/o3de/ap_log_parser.py | 2 +- .../ly_test_tools/o3de/asset_processor.py | 2 +- .../o3de/asset_processor_config_util.py | 2 +- .../o3de/asset_processor_utils.py | 2 +- .../o3de/ini_configuration_util.py | 2 +- .../ly_test_tools/o3de/pipeline_utils.py | 2 +- .../LyTestTools/ly_test_tools/o3de/settings.py | 2 +- .../ly_test_tools/o3de/shader_compiler.py | 2 +- .../ly_test_tools/report/__init__.py | 2 +- .../ly_test_tools/report/rad_telemetry.py | 2 +- Tools/LyTestTools/setup.py | 2 +- Tools/LyTestTools/tests/CMakeLists.txt | 2 +- Tools/LyTestTools/tests/example/__init__.py | 2 +- .../tests/example/test_system_example.py | 2 +- Tools/LyTestTools/tests/integ/__init__.py | 2 +- Tools/LyTestTools/tests/integ/sanity_tests.py | 2 +- .../tests/integ/test_process_utils.py | 2 +- .../LyTestTools/tests/integ/test_regression.py | 2 +- Tools/LyTestTools/tests/unit/__init__.py | 2 +- .../unit/test_abstract_resource_locator.py | 2 +- .../tests/unit/test_artifact_manager.py | 2 +- .../tests/unit/test_asset_processor.py | 2 +- .../tests/unit/test_builtin_helpers.py | 2 +- Tools/LyTestTools/tests/unit/test_case_id.py | 2 +- .../tests/unit/test_failed_rerun_command.py | 2 +- .../LyTestTools/tests/unit/test_file_system.py | 2 +- Tools/LyTestTools/tests/unit/test_fixtures.py | 2 +- .../tests/unit/test_image_capture.py | 2 +- .../tests/unit/test_launcher_android.py | 2 +- .../tests/unit/test_launcher_base.py | 2 +- .../tests/unit/test_launcher_mac.py | 2 +- .../tests/unit/test_launcher_win.py | 2 +- .../LyTestTools/tests/unit/test_log_monitor.py | 2 +- .../tests/unit/test_ly_process_killer.py | 2 +- .../tests/unit/test_manager_platforms_mac.py | 2 +- .../unit/test_manager_platforms_windows.py | 2 +- .../tests/unit/test_process_utils.py | 2 +- .../tests/unit/test_py_logging_util.py | 2 +- .../tests/unit/test_rad_telemetry.py | 2 +- .../LyTestTools/tests/unit/test_reg_cleaner.py | 2 +- .../unit/test_screenshot_compare_qssim.py | 2 +- Tools/LyTestTools/tests/unit/test_settings.py | 2 +- .../tests/unit/test_shader_compiler.py | 2 +- .../tests/unit/test_terminal_report.py | 2 +- Tools/LyTestTools/tests/unit/test_waiter.py | 2 +- Tools/LyTestTools/tests/unit/test_watchdog.py | 2 +- Tools/LyTestTools/tests/unit/test_workspace.py | 2 +- .../RemoteConsole/ly_remote_console/README.txt | 2 +- .../ly_remote_console/__init__.py | 2 +- .../remote_console_commands.py | 2 +- Tools/RemoteConsole/ly_remote_console/setup.py | 2 +- .../ly_remote_console/tests/CMakeLists.txt | 2 +- .../tests/integ/test_remote_console.py | 2 +- .../tests/unit/test_remote_console_commands.py | 2 +- .../ConfluenceWiki_SerializeContext.jinja | 2 +- .../ConfluenceWiki_SystemComponents.jinja | 2 +- .../ConfluenceWiki_Utilities.jinja | 2 +- .../SerializeContextAnalyzer.py | 2 +- .../Text_EntityComponents.jinja | 2 +- .../Text_SerializeContext.jinja | 2 +- .../Text_SystemComponents.jinja | 2 +- .../SerializeContextAnalyzer/Text_Types.jinja | 2 +- .../Text_Utilities.jinja | 2 +- Tools/TestRailImporter/lib/__init__.py | 2 +- .../lib/testrail_importer/__init__.py | 2 +- .../lib/testrail_importer/testrail_importer.py | 2 +- .../testrail_tools/__init__.py | 2 +- .../testrail_tools/testrail_api_connector.py | 2 +- .../testrail_tools/testrail_connection.py | 2 +- .../testrail_report_converter.py | 2 +- .../testrail_tools/testrail_settings.py | 2 +- Tools/TestRailImporter/testrail_importer.cmd | 2 +- Tools/TestRailImporter/tests/__init__.py | 2 +- Tools/TestRailImporter/tests/unit/__init__.py | 2 +- .../tests/unit/test_testrail_api_connector.py | 2 +- .../tests/unit/test_testrail_connection.py | 2 +- .../tests/unit/test_testrail_importer.py | 2 +- .../unit/test_testrail_report_converter.py | 2 +- Tools/styleui/styleui.cmd | 2 +- Tools/styleui/styleui.py | 2 +- cmake/3rdParty.cmake | 2 +- cmake/3rdParty/BuiltInPackages.cmake | 2 +- cmake/3rdParty/FindOpenGLInterface.cmake | 2 +- cmake/3rdParty/FindRadTelemetry.cmake | 2 +- cmake/3rdParty/FindVkValidation.cmake | 2 +- cmake/3rdParty/FindWwise.cmake | 2 +- .../Android/BuiltInPackages_android.cmake | 2 +- .../Android/RadTelemetry_android.cmake | 2 +- .../Android/VkValidation_android.cmake | 2 +- .../Platform/Android/Wwise_android.cmake | 2 +- .../Platform/Android/cmake_android_files.cmake | 2 +- .../Platform/Linux/BuiltInPackages_linux.cmake | 2 +- .../3rdParty/Platform/Linux/Wwise_linux.cmake | 2 +- .../Platform/Linux/cmake_linux_files.cmake | 2 +- .../Platform/Linux/squish-ccr_linux.cmake | 2 +- .../Platform/Mac/BuiltInPackages_mac.cmake | 2 +- .../Platform/Mac/OpenGLInterface_mac.cmake | 2 +- .../Platform/Mac/RadTelemetry_mac.cmake | 2 +- cmake/3rdParty/Platform/Mac/Wwise_mac.cmake | 2 +- .../Platform/Mac/cmake_mac_files.cmake | 2 +- .../3rdParty/Platform/Mac/squish-ccr_mac.cmake | 2 +- .../Windows/BuiltInPackages_windows.cmake | 2 +- .../Windows/RadTelemetry_windows.cmake | 2 +- .../Platform/Windows/Wwise_windows.cmake | 2 +- .../Platform/Windows/cmake_windows_files.cmake | 2 +- .../Platform/Windows/squish-ccr_windows.cmake | 2 +- .../Platform/iOS/BuiltInPackages_ios.cmake | 2 +- .../Platform/iOS/RadTelemetry_ios.cmake | 2 +- cmake/3rdParty/Platform/iOS/Wwise_ios.cmake | 2 +- .../Platform/iOS/cmake_ios_files.cmake | 2 +- cmake/3rdParty/cmake_files.cmake | 2 +- cmake/3rdPartyPackages.cmake | 2 +- cmake/CMakeFiles.cmake | 2 +- cmake/CommandExecution.cmake | 2 +- cmake/Configurations.cmake | 2 +- cmake/Dependencies.cmake | 2 +- cmake/Deployment.cmake | 2 +- cmake/EngineJson.cmake | 2 +- cmake/FileUtil.cmake | 2 +- cmake/Findo3de.cmake | 2 +- cmake/Gems.cmake | 2 +- cmake/GeneralSettings.cmake | 2 +- cmake/Install.cmake | 2 +- cmake/LYPackage_S3Downloader.cmake | 2 +- cmake/LYPython.cmake | 2 +- cmake/LYTestWrappers.cmake | 2 +- cmake/LYWrappers.cmake | 2 +- cmake/LyAutoGen.cmake | 2 +- cmake/LySet.cmake | 2 +- cmake/Monolithic.cmake | 2 +- cmake/O3DEJson.cmake | 2 +- cmake/OutputDirectory.cmake | 2 +- cmake/PAL.cmake | 2 +- cmake/PALTools.cmake | 2 +- cmake/Packaging.cmake | 2 +- cmake/PackagingConfig.cmake | 2 +- .../Android/Configurations_android.cmake | 2 +- cmake/Platform/Android/Install_android.cmake | 2 +- .../Android/LYTestWrappers_android.cmake | 2 +- .../Platform/Android/LYWrappers_android.cmake | 2 +- .../Android/PALDetection_android.cmake | 2 +- cmake/Platform/Android/PAL_android.cmake | 2 +- .../Android/RuntimeDependencies_android.cmake | 2 +- cmake/Platform/Android/Toolchain_android.cmake | 2 +- .../Android/platform_android_files.cmake | 2 +- .../Common/Clang/Configurations_clang.cmake | 2 +- .../Common/Configurations_common.cmake | 2 +- cmake/Platform/Common/Directory.Build.props | 2 +- cmake/Platform/Common/Install_common.cmake | 2 +- cmake/Platform/Common/LYWrappers_default.cmake | 2 +- .../Common/MSVC/Configurations_msvc.cmake | 2 +- .../Common/RuntimeDependencies_common.cmake | 2 +- ...getIncludeSystemDirectories_supported.cmake | 2 +- ...tIncludeSystemDirectories_unsupported.cmake | 2 +- .../Platform/Common/VisualStudio_common.cmake | 2 +- .../runtime_dependencies_common.cmake.in | 2 +- .../Platform/Linux/Configurations_linux.cmake | 2 +- cmake/Platform/Linux/Install_linux.cmake | 2 +- .../Platform/Linux/LYTestWrappers_linux.cmake | 2 +- cmake/Platform/Linux/LYWrappers_linux.cmake | 2 +- cmake/Platform/Linux/PALDetection_linux.cmake | 2 +- cmake/Platform/Linux/PAL_linux.cmake | 2 +- cmake/Platform/Linux/RPathChange.cmake | 2 +- .../Linux/RuntimeDependencies_linux.cmake | 2 +- .../Platform/Linux/platform_linux_files.cmake | 2 +- cmake/Platform/Mac/Configurations_mac.cmake | 2 +- cmake/Platform/Mac/Install_mac.cmake | 2 +- cmake/Platform/Mac/LYTestWrappers_mac.cmake | 2 +- cmake/Platform/Mac/LYWrappers_mac.cmake | 2 +- cmake/Platform/Mac/PALDetection_mac.cmake | 2 +- cmake/Platform/Mac/PAL_mac.cmake | 2 +- cmake/Platform/Mac/RPathChange.cmake | 2 +- .../Platform/Mac/RuntimeDependencies_mac.cmake | 2 +- cmake/Platform/Mac/platform_mac_files.cmake | 2 +- .../Mac/runtime_dependencies_mac.cmake.in | 2 +- .../Windows/Configurations_windows.cmake | 2 +- cmake/Platform/Windows/Install_windows.cmake | 2 +- .../Windows/LYTestWrappers_windows.cmake | 2 +- .../Platform/Windows/LYWrappers_windows.cmake | 2 +- .../Windows/PALDetection_windows.cmake | 2 +- cmake/Platform/Windows/PAL_windows.cmake | 2 +- .../Platform/Windows/PackagingPostBuild.cmake | 2 +- cmake/Platform/Windows/Packaging_windows.cmake | 2 +- .../Windows/RuntimeDependencies_windows.cmake | 2 +- .../Windows/platform_windows_files.cmake | 2 +- cmake/Platform/iOS/Configurations_ios.cmake | 2 +- cmake/Platform/iOS/Install_ios.cmake | 2 +- cmake/Platform/iOS/LYTestWrappers_ios.cmake | 2 +- cmake/Platform/iOS/LYWrappers_ios.cmake | 2 +- cmake/Platform/iOS/PALDetection_ios.cmake | 2 +- cmake/Platform/iOS/PAL_ios.cmake | 2 +- .../Platform/iOS/RuntimeDependencies_ios.cmake | 2 +- cmake/Platform/iOS/SDK_ios.cmake | 2 +- cmake/Platform/iOS/Toolchain_ios.cmake | 2 +- cmake/Platform/iOS/platform_ios_files.cmake | 2 +- cmake/Projects.cmake | 2 +- cmake/RuntimeDependencies.cmake | 2 +- cmake/SettingsRegistry.cmake | 2 +- .../CMakeGraphVizOptions.cmake | 2 +- .../LYTestImpactFramework.cmake | 2 +- cmake/Tools/Platform/Android/__init__.py | 2 +- .../Platform/Android/android_deployment.py | 2 +- .../Tools/Platform/Android/android_support.py | 2 +- cmake/Tools/Platform/Android/deploy_android.py | 2 +- .../Android/generate_android_project.py | 2 +- .../Platform/Android/launch_android_test.py | 2 +- .../Android/unit_test_android_deployment.py | 2 +- .../unit_test_generate_android_project.py | 2 +- cmake/Tools/Platform/__init__.py | 2 +- cmake/Tools/Platform/iOS/build_ios_test.py | 2 +- cmake/Tools/Platform/iOS/launch_ios_test.py | 2 +- cmake/Tools/__init__.py | 2 +- cmake/Tools/common.py | 2 +- cmake/Tools/layout_tool.py | 2 +- cmake/Tools/unit_test_common.py | 2 +- cmake/Tools/unit_test_layout_tool.py | 2 +- cmake/UnitTest.cmake | 2 +- cmake/Version.cmake | 2 +- cmake/__init__.py | 2 +- cmake/cmake_files.cmake | 2 +- cmake/createplatformfiles.py | 4 ++-- cmake/gemcmake.py | 4 ++-- cmake/install/Copyright.in | 2 +- cmake/install/Findo3de.cmake.in | 2 +- cmake/mocfix.py | 2 +- cmake/projectcmake.py | 2 +- cmake/reroot.py | 2 +- cmake/run_epbtest.cmake | 2 +- cmake/waffiles2cmake.py | 4 ++-- cmake/warn_fix.py | 2 +- ctest_pytest.ini | 2 +- python/get_python.bat | 2 +- python/get_python.cmake | 2 +- python/get_python.sh | 2 +- python/pip.cmd | 2 +- python/pip.sh | 2 +- python/python.cmd | 2 +- python/python.sh | 2 +- scripts/CMakeLists.txt | 2 +- scripts/build/Jenkins/Jenkinsfile | 2 +- .../Jenkins/tools/jenkins_pipeline_metrics.py | 2 +- .../Android/build_and_run_unit_tests.cmd | 2 +- .../build/Platform/Android/gradle_windows.cmd | 2 +- .../Android/run_test_on_android_simulator.py | 2 +- scripts/build/Platform/Linux/asset_linux.sh | 2 +- .../build/Platform/Linux/build_asset_linux.sh | 2 +- scripts/build/Platform/Linux/build_linux.sh | 2 +- .../build/Platform/Linux/build_test_linux.sh | 2 +- scripts/build/Platform/Linux/clean_linux.sh | 2 +- scripts/build/Platform/Linux/env_linux.sh | 2 +- scripts/build/Platform/Linux/python_linux.sh | 2 +- scripts/build/Platform/Linux/test_linux.sh | 2 +- scripts/build/Platform/Mac/asset_mac.sh | 2 +- scripts/build/Platform/Mac/build_asset_mac.sh | 2 +- scripts/build/Platform/Mac/build_mac.sh | 2 +- scripts/build/Platform/Mac/build_test_mac.sh | 2 +- scripts/build/Platform/Mac/clean_mac.sh | 2 +- scripts/build/Platform/Mac/env_mac.sh | 2 +- scripts/build/Platform/Mac/python_mac.sh | 2 +- scripts/build/Platform/Mac/test_mac.sh | 2 +- .../build/Platform/Windows/asset_windows.cmd | 2 +- .../Platform/Windows/build_asset_windows.cmd | 2 +- .../Windows/build_installer_windows.cmd | 2 +- .../Platform/Windows/build_ninja_windows.cmd | 2 +- .../Platform/Windows/build_test_windows.cmd | 2 +- .../build/Platform/Windows/build_windows.cmd | 2 +- .../build/Platform/Windows/clean_windows.cmd | 2 +- scripts/build/Platform/Windows/env_windows.cmd | 2 +- .../Platform/Windows/installer_windows.cmd | 2 +- .../build/Platform/Windows/python_windows.cmd | 2 +- .../build/Platform/Windows/test_windows.cmd | 2 +- .../build/bootstrap/incremental_build_util.py | 2 +- .../Platform/Linux/install-ubuntu-awscli.sh | 2 +- .../Linux/install-ubuntu-build-tools.sh | 2 +- .../Platform/Linux/install-ubuntu-git.sh | 2 +- .../Platform/Linux/install-ubuntu-python3.sh | 2 +- .../Platform/Linux/install-ubuntu.sh | 2 +- .../build_node/Platform/Mac/init-setup.sh | 2 +- .../build_node/Platform/Mac/install-jdk.sh | 2 +- .../build_node/Platform/Mac/install-python.sh | 2 +- .../build_node/Platform/Mac/install-xcode.sh | 2 +- .../Platform/Mac/jenkins-self-register-mac.sh | 2 +- .../build_node/Platform/Windows/init_setup.ps1 | 2 +- .../Platform/Windows/install_android.ps1 | 2 +- .../Platform/Windows/install_cygwin.ps1 | 2 +- .../Platform/Windows/install_python.ps1 | 2 +- .../Platform/Windows/install_utiltools.ps1 | 2 +- .../Platform/Windows/install_vsbuildtools.ps1 | 2 +- .../build/build_node/Platform/Windows/setup.sh | 2 +- scripts/build/ci_build.py | 2 +- scripts/build/ci_build_metrics.py | 2 +- scripts/build/lambda/delete_branch_ebs.py | 2 +- .../build/lambda/delete_github_branch_ebs.py | 2 +- scripts/build/lambda/trigger_first_build.py | 2 +- scripts/build/package/PackageEnv.py | 2 +- scripts/build/package/Params.py | 2 +- scripts/build/package/glob3.py | 2 +- scripts/build/package/glob_to_regex.py | 2 +- scripts/build/package/package.py | 2 +- scripts/build/package/util.py | 2 +- scripts/build/submit_metrics.py | 2 +- scripts/build/tools/delete_inactive_ebs.py | 2 +- scripts/build/tools/delete_stale_ebs.py | 2 +- scripts/build/tools/download_from_s3.py | 2 +- scripts/build/tools/generate_build_tag.py | 2 +- scripts/build/tools/sync_repo.py | 2 +- scripts/build/tools/upload_to_s3.py | 2 +- .../bundler/BuildReleaseAuxiliaryContent.py | 2 +- scripts/bundler/gen_shaders.py | 2 +- scripts/bundler/get_shader_list.py | 2 +- scripts/bundler/pak_shaders.py | 2 +- scripts/commit_validation/CMakeLists.txt | 2 +- .../commit_validation/__init__.py | 2 +- .../commit_validation/commit_validation.py | 2 +- .../commit_validation/pal_allowedlist.py | 2 +- .../commit_validation/tests/__init__.py | 2 +- .../commit_validation/tests/mocks/__init__.py | 2 +- .../tests/mocks/mock_commit.py | 2 +- .../tests/test_pal_allowedlist.py | 2 +- .../tests/validators/__init__.py | 2 +- .../validators/test_az_platform_validator.py | 2 +- .../validators/test_az_trait_validator.py | 2 +- .../test_copyright_header_validator.py | 18 +++++++++++++----- .../test_diff_whitespace_validator.py | 2 +- .../test_generated_files_validator.py | 2 +- .../validators/test_git_conflict_validator.py | 2 +- .../tests/validators/test_newline_validator.py | 2 +- .../test_platform_macro_validator.py | 2 +- .../test_pragma_optimize_validator.py | 2 +- .../tests/validators/test_tabs_validator.py | 2 +- .../tests/validators/test_unicode_validator.py | 2 +- .../commit_validation/validators/__init__.py | 2 +- .../validators/az_platform_validator.py | 2 +- .../validators/az_trait_validator.py | 2 +- .../validators/copyright_header_validator.py | 13 +++++++++++-- .../validators/diff_whitespace_validator.py | 2 +- .../validators/generated_files_validator.py | 2 +- .../validators/git_conflict_validator.py | 2 +- .../validators/newline_validator.py | 2 +- .../validators/platform_macro_validator.py | 2 +- .../validators/pragma_optimize_validator.py | 2 +- .../validators/tabs_validator.py | 2 +- .../validators/unicode_validator.py | 2 +- .../commit_validation/fix_copyright_headers.py | 4 ++-- scripts/commit_validation/fix_tabs.py | 2 +- scripts/commit_validation/fix_unicode.py | 2 +- .../commit_validation/git_validate_branch.py | 2 +- scripts/commit_validation/p4.py | 2 +- .../p4_validate_changelist.py | 2 +- .../p4_validate_submitted_changelists.py | 2 +- .../validate_file_or_folder.py | 2 +- scripts/ctest/CMakeLists.txt | 2 +- scripts/ctest/ctest_driver.py | 2 +- scripts/ctest/ctest_driver_test.py | 2 +- scripts/ctest/ctest_entrypoint.cmd | 2 +- scripts/ctest/ctest_entrypoint.sh | 2 +- scripts/ctest/epb_sanity_test.py | 2 +- scripts/ctest/result_processing/__init__.py | 2 +- .../result_processing/result_processing.py | 2 +- scripts/ctest/sanity_test.py | 2 +- scripts/detect_file_changes/CMakeLists.txt | 2 +- .../detect_file_changes/compare_snapshots.py | 2 +- scripts/detect_file_changes/make_snapshot.py | 2 +- .../snapshot_folder/__init__.py | 2 +- .../snapshot_folder/snapshot_folder.py | 2 +- .../snapshot_folder/tests/__init__.py | 2 +- .../snapshot_folder/tests/test_snapshots.py | 2 +- scripts/migration/non_uniform_scale.py | 2 +- scripts/o3de.bat | 2 +- scripts/o3de.py | 2 +- scripts/o3de.sh | 2 +- scripts/o3de/CMakeLists.txt | 2 +- scripts/o3de/README.txt | 2 +- scripts/o3de/o3de/__init__.py | 2 +- scripts/o3de/o3de/cmake.py | 2 +- scripts/o3de/o3de/disable_gem.py | 2 +- scripts/o3de/o3de/download.py | 2 +- scripts/o3de/o3de/enable_gem.py | 2 +- scripts/o3de/o3de/engine_template.py | 6 +++--- scripts/o3de/o3de/get_registration.py | 2 +- scripts/o3de/o3de/global_project.py | 2 +- scripts/o3de/o3de/manifest.py | 2 +- scripts/o3de/o3de/print_registration.py | 2 +- scripts/o3de/o3de/project_properties.py | 2 +- scripts/o3de/o3de/register.py | 2 +- scripts/o3de/o3de/repo.py | 2 +- scripts/o3de/o3de/sha256.py | 2 +- scripts/o3de/o3de/utils.py | 2 +- scripts/o3de/o3de/validation.py | 2 +- scripts/o3de/setup.py | 2 +- scripts/o3de/tests/CMakeLists.txt | 2 +- scripts/o3de/tests/__init__.py | 2 +- scripts/o3de/tests/unit_test_cmake.py | 2 +- .../o3de/tests/unit_test_engine_template.py | 4 ++-- scripts/o3de/tests/unit_test_global_project.py | 2 +- scripts/o3de/tests/unit_test_manifest.py | 2 +- scripts/o3de/tests/unit_test_register.py | 2 +- scripts/o3de/tests/unit_test_utils.py | 2 +- scripts/scrubbing/scrubbing_job.py | 2 +- scripts/scrubbing/validator.py | 2 +- .../validator_data_LEGAL_REVIEW_REQUIRED.py | 2 +- 18020 files changed, 18059 insertions(+), 18042 deletions(-) diff --git a/Assets/Editor/LambdaFunctions/LwALambdaFunction.js b/Assets/Editor/LambdaFunctions/LwALambdaFunction.js index c57eb13253..562a7573a6 100644 --- a/Assets/Editor/LambdaFunctions/LwALambdaFunction.js +++ b/Assets/Editor/LambdaFunctions/LwALambdaFunction.js @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Assets/Editor/LambdaFunctions/LwFacebookLambdaFunction.js b/Assets/Editor/LambdaFunctions/LwFacebookLambdaFunction.js index 5235829e08..81e47bfb15 100644 --- a/Assets/Editor/LambdaFunctions/LwFacebookLambdaFunction.js +++ b/Assets/Editor/LambdaFunctions/LwFacebookLambdaFunction.js @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Assets/Editor/LambdaFunctions/LwGenericOpenIdConnectLambdaFunction.js b/Assets/Editor/LambdaFunctions/LwGenericOpenIdConnectLambdaFunction.js index 5b0d503e18..636b3a6b85 100644 --- a/Assets/Editor/LambdaFunctions/LwGenericOpenIdConnectLambdaFunction.js +++ b/Assets/Editor/LambdaFunctions/LwGenericOpenIdConnectLambdaFunction.js @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Assets/Editor/LambdaFunctions/LwGoogleLambdaFunction.js b/Assets/Editor/LambdaFunctions/LwGoogleLambdaFunction.js index 106b4b7208..2df17a9ac4 100644 --- a/Assets/Editor/LambdaFunctions/LwGoogleLambdaFunction.js +++ b/Assets/Editor/LambdaFunctions/LwGoogleLambdaFunction.js @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Assets/Editor/MissionTemplate.lua b/Assets/Editor/MissionTemplate.lua index 287d2ffb28..bdff5191ae 100644 --- a/Assets/Editor/MissionTemplate.lua +++ b/Assets/Editor/MissionTemplate.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Editor/Scripts/TrackView/example.py b/Assets/Editor/Scripts/TrackView/example.py index b8e13e4641..f60cfcc038 100755 --- a/Assets/Editor/Scripts/TrackView/example.py +++ b/Assets/Editor/Scripts/TrackView/example.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/Scripts/editor_script_validation.py b/Assets/Editor/Scripts/editor_script_validation.py index bb4ec0053e..d132484558 100755 --- a/Assets/Editor/Scripts/editor_script_validation.py +++ b/Assets/Editor/Scripts/editor_script_validation.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/Scripts/export_all_project_levels.py b/Assets/Editor/Scripts/export_all_project_levels.py index ab0789fe23..0f52d9250a 100755 --- a/Assets/Editor/Scripts/export_all_project_levels.py +++ b/Assets/Editor/Scripts/export_all_project_levels.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/Scripts/generatelod.py b/Assets/Editor/Scripts/generatelod.py index da9d0ffa81..32fd0a7b22 100755 --- a/Assets/Editor/Scripts/generatelod.py +++ b/Assets/Editor/Scripts/generatelod.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/Scripts/rename_cgf.py b/Assets/Editor/Scripts/rename_cgf.py index dff4d6c5cb..47d92bb61d 100755 --- a/Assets/Editor/Scripts/rename_cgf.py +++ b/Assets/Editor/Scripts/rename_cgf.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/Scripts/select_story_anim_objects.py b/Assets/Editor/Scripts/select_story_anim_objects.py index 4717799381..62ad25a0ea 100755 --- a/Assets/Editor/Scripts/select_story_anim_objects.py +++ b/Assets/Editor/Scripts/select_story_anim_objects.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/Scripts/tools_shelf_actions.py b/Assets/Editor/Scripts/tools_shelf_actions.py index a9ba4d56da..670082fa02 100755 --- a/Assets/Editor/Scripts/tools_shelf_actions.py +++ b/Assets/Editor/Scripts/tools_shelf_actions.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/UI/removeTranslationFiles.py b/Assets/Editor/UI/removeTranslationFiles.py index 245e5e0042..8f18587a70 100755 --- a/Assets/Editor/UI/removeTranslationFiles.py +++ b/Assets/Editor/UI/removeTranslationFiles.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Editor/UI/updateTranslatableText.py b/Assets/Editor/UI/updateTranslatableText.py index 374dd08889..b256e74e37 100755 --- a/Assets/Editor/UI/updateTranslatableText.py +++ b/Assets/Editor/UI/updateTranslatableText.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Assets/Engine/Scripts/EngineCommon.lua b/Assets/Engine/Scripts/EngineCommon.lua index 388ccdb139..32c54393a4 100644 --- a/Assets/Engine/Scripts/EngineCommon.lua +++ b/Assets/Engine/Scripts/EngineCommon.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/AI/NavigationSeedPoint.lua b/Assets/Engine/Scripts/Entities/AI/NavigationSeedPoint.lua index 634721ec82..a60b6d388f 100644 --- a/Assets/Engine/Scripts/Entities/AI/NavigationSeedPoint.lua +++ b/Assets/Engine/Scripts/Entities/AI/NavigationSeedPoint.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/AI/SmartObject.lua b/Assets/Engine/Scripts/Entities/AI/SmartObject.lua index f4233f154a..effd3ac23b 100644 --- a/Assets/Engine/Scripts/Entities/AI/SmartObject.lua +++ b/Assets/Engine/Scripts/Entities/AI/SmartObject.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/AI/TagPoint.lua b/Assets/Engine/Scripts/Entities/AI/TagPoint.lua index 37fe7b6ea9..0307463d24 100644 --- a/Assets/Engine/Scripts/Entities/AI/TagPoint.lua +++ b/Assets/Engine/Scripts/Entities/AI/TagPoint.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Actor/CActorWrapper.lua b/Assets/Engine/Scripts/Entities/Actor/CActorWrapper.lua index 27091bab64..2b6797435e 100644 --- a/Assets/Engine/Scripts/Entities/Actor/CActorWrapper.lua +++ b/Assets/Engine/Scripts/Entities/Actor/CActorWrapper.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Anim/MannequinObject.lua b/Assets/Engine/Scripts/Entities/Anim/MannequinObject.lua index 947d0553ee..b3c7838e12 100644 --- a/Assets/Engine/Scripts/Entities/Anim/MannequinObject.lua +++ b/Assets/Engine/Scripts/Entities/Anim/MannequinObject.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Default/GeomEntity.lua b/Assets/Engine/Scripts/Entities/Default/GeomEntity.lua index dfaef2bc14..a58af759b3 100644 --- a/Assets/Engine/Scripts/Entities/Default/GeomEntity.lua +++ b/Assets/Engine/Scripts/Entities/Default/GeomEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Default/RopeEntity.lua b/Assets/Engine/Scripts/Entities/Default/RopeEntity.lua index 12d83a2262..559538156f 100644 --- a/Assets/Engine/Scripts/Entities/Default/RopeEntity.lua +++ b/Assets/Engine/Scripts/Entities/Default/RopeEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Environment/WaterVolume.lua b/Assets/Engine/Scripts/Entities/Environment/WaterVolume.lua index 11b3d35c3e..2fd2836f9d 100644 --- a/Assets/Engine/Scripts/Entities/Environment/WaterVolume.lua +++ b/Assets/Engine/Scripts/Entities/Environment/WaterVolume.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Lights/EnvironmentLight.lua b/Assets/Engine/Scripts/Entities/Lights/EnvironmentLight.lua index 6d24ba1c05..9183d19e43 100644 --- a/Assets/Engine/Scripts/Entities/Lights/EnvironmentLight.lua +++ b/Assets/Engine/Scripts/Entities/Lights/EnvironmentLight.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Lights/Light.lua b/Assets/Engine/Scripts/Entities/Lights/Light.lua index 401880429c..daf323f9e8 100644 --- a/Assets/Engine/Scripts/Entities/Lights/Light.lua +++ b/Assets/Engine/Scripts/Entities/Lights/Light.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Others/CameraSource.lua b/Assets/Engine/Scripts/Entities/Others/CameraSource.lua index b17be8c446..01ac7a8989 100644 --- a/Assets/Engine/Scripts/Entities/Others/CameraSource.lua +++ b/Assets/Engine/Scripts/Entities/Others/CameraSource.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Others/CameraTarget.lua b/Assets/Engine/Scripts/Entities/Others/CameraTarget.lua index 913bc23d38..59ce9c82cb 100644 --- a/Assets/Engine/Scripts/Entities/Others/CameraTarget.lua +++ b/Assets/Engine/Scripts/Entities/Others/CameraTarget.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Others/Comment.lua b/Assets/Engine/Scripts/Entities/Others/Comment.lua index bb4978eedb..68c26b0571 100644 --- a/Assets/Engine/Scripts/Entities/Others/Comment.lua +++ b/Assets/Engine/Scripts/Entities/Others/Comment.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Others/ProceduralObject.lua b/Assets/Engine/Scripts/Entities/Others/ProceduralObject.lua index 5d2b946aad..baab0c0da9 100644 --- a/Assets/Engine/Scripts/Entities/Others/ProceduralObject.lua +++ b/Assets/Engine/Scripts/Entities/Others/ProceduralObject.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Others/RigidBody.lua b/Assets/Engine/Scripts/Entities/Others/RigidBody.lua index 451fe8e413..8651bed6a4 100644 --- a/Assets/Engine/Scripts/Entities/Others/RigidBody.lua +++ b/Assets/Engine/Scripts/Entities/Others/RigidBody.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Particle/ParticleEffect.lua b/Assets/Engine/Scripts/Entities/Particle/ParticleEffect.lua index 985ec72856..1a23ae2c5d 100644 --- a/Assets/Engine/Scripts/Entities/Particle/ParticleEffect.lua +++ b/Assets/Engine/Scripts/Entities/Particle/ParticleEffect.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Physics/AnimObject.lua b/Assets/Engine/Scripts/Entities/Physics/AnimObject.lua index 0e098353b8..c1786e6ec9 100644 --- a/Assets/Engine/Scripts/Entities/Physics/AnimObject.lua +++ b/Assets/Engine/Scripts/Entities/Physics/AnimObject.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Physics/AreaBezierVolume.lua b/Assets/Engine/Scripts/Entities/Physics/AreaBezierVolume.lua index a53e70e86e..7f9494577f 100644 --- a/Assets/Engine/Scripts/Entities/Physics/AreaBezierVolume.lua +++ b/Assets/Engine/Scripts/Entities/Physics/AreaBezierVolume.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Physics/BasicEntity.lua b/Assets/Engine/Scripts/Entities/Physics/BasicEntity.lua index 5516c081ca..7502473d72 100644 --- a/Assets/Engine/Scripts/Entities/Physics/BasicEntity.lua +++ b/Assets/Engine/Scripts/Entities/Physics/BasicEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Physics/LivingEntity.lua b/Assets/Engine/Scripts/Entities/Physics/LivingEntity.lua index d47f671b5e..aedd41d71b 100644 --- a/Assets/Engine/Scripts/Entities/Physics/LivingEntity.lua +++ b/Assets/Engine/Scripts/Entities/Physics/LivingEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Physics/RigidBodyEx.lua b/Assets/Engine/Scripts/Entities/Physics/RigidBodyEx.lua index 9484b9fb40..a48ef8fa87 100644 --- a/Assets/Engine/Scripts/Entities/Physics/RigidBodyEx.lua +++ b/Assets/Engine/Scripts/Entities/Physics/RigidBodyEx.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Render/FogVolume.lua b/Assets/Engine/Scripts/Entities/Render/FogVolume.lua index 0a2d1332a1..085f302e88 100644 --- a/Assets/Engine/Scripts/Entities/Render/FogVolume.lua +++ b/Assets/Engine/Scripts/Entities/Render/FogVolume.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Render/GeomCache.lua b/Assets/Engine/Scripts/Entities/Render/GeomCache.lua index 601372bb64..048d04e89c 100644 --- a/Assets/Engine/Scripts/Entities/Render/GeomCache.lua +++ b/Assets/Engine/Scripts/Entities/Render/GeomCache.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Sound/AudioAreaAmbience.lua b/Assets/Engine/Scripts/Entities/Sound/AudioAreaAmbience.lua index 4eef0e0be0..5981c3d301 100644 --- a/Assets/Engine/Scripts/Entities/Sound/AudioAreaAmbience.lua +++ b/Assets/Engine/Scripts/Entities/Sound/AudioAreaAmbience.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Sound/AudioAreaEntity.lua b/Assets/Engine/Scripts/Entities/Sound/AudioAreaEntity.lua index 477128ccb5..958b8e55ea 100644 --- a/Assets/Engine/Scripts/Entities/Sound/AudioAreaEntity.lua +++ b/Assets/Engine/Scripts/Entities/Sound/AudioAreaEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Sound/AudioAreaRandom.lua b/Assets/Engine/Scripts/Entities/Sound/AudioAreaRandom.lua index 75d4a301b4..a44a88870c 100644 --- a/Assets/Engine/Scripts/Entities/Sound/AudioAreaRandom.lua +++ b/Assets/Engine/Scripts/Entities/Sound/AudioAreaRandom.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Sound/AudioTriggerSpot.lua b/Assets/Engine/Scripts/Entities/Sound/AudioTriggerSpot.lua index 6dae66dd7c..f3f2f49577 100644 --- a/Assets/Engine/Scripts/Entities/Sound/AudioTriggerSpot.lua +++ b/Assets/Engine/Scripts/Entities/Sound/AudioTriggerSpot.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Sound/Shared/AudioUtils.lua b/Assets/Engine/Scripts/Entities/Sound/Shared/AudioUtils.lua index b75a0f5125..4a97342d2e 100644 --- a/Assets/Engine/Scripts/Entities/Sound/Shared/AudioUtils.lua +++ b/Assets/Engine/Scripts/Entities/Sound/Shared/AudioUtils.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Triggers/AreaTrigger.lua b/Assets/Engine/Scripts/Entities/Triggers/AreaTrigger.lua index 89c0a3e73f..0c21d6c187 100644 --- a/Assets/Engine/Scripts/Entities/Triggers/AreaTrigger.lua +++ b/Assets/Engine/Scripts/Entities/Triggers/AreaTrigger.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/Triggers/ProximityTrigger.lua b/Assets/Engine/Scripts/Entities/Triggers/ProximityTrigger.lua index cfa2cc1781..ec8e47388e 100644 --- a/Assets/Engine/Scripts/Entities/Triggers/ProximityTrigger.lua +++ b/Assets/Engine/Scripts/Entities/Triggers/ProximityTrigger.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Entities/UI/UiCanvasRefEntity.lua b/Assets/Engine/Scripts/Entities/UI/UiCanvasRefEntity.lua index d3702905fc..26724b8251 100644 --- a/Assets/Engine/Scripts/Entities/UI/UiCanvasRefEntity.lua +++ b/Assets/Engine/Scripts/Entities/UI/UiCanvasRefEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Utils/Components/GameplayUtils.lua b/Assets/Engine/Scripts/Utils/Components/GameplayUtils.lua index 33b9b1430a..62f606a413 100644 --- a/Assets/Engine/Scripts/Utils/Components/GameplayUtils.lua +++ b/Assets/Engine/Scripts/Utils/Components/GameplayUtils.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Utils/Components/InputUtils.lua b/Assets/Engine/Scripts/Utils/Components/InputUtils.lua index 2569befbf9..980bbda952 100644 --- a/Assets/Engine/Scripts/Utils/Components/InputUtils.lua +++ b/Assets/Engine/Scripts/Utils/Components/InputUtils.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Utils/Components/MultiHandlers.lua b/Assets/Engine/Scripts/Utils/Components/MultiHandlers.lua index 0db1ec9ab9..56596df39d 100644 --- a/Assets/Engine/Scripts/Utils/Components/MultiHandlers.lua +++ b/Assets/Engine/Scripts/Utils/Components/MultiHandlers.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Utils/Containers.lua b/Assets/Engine/Scripts/Utils/Containers.lua index 9014a63090..d2905b5399 100644 --- a/Assets/Engine/Scripts/Utils/Containers.lua +++ b/Assets/Engine/Scripts/Utils/Containers.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Utils/EntityUtils.lua b/Assets/Engine/Scripts/Utils/EntityUtils.lua index 36362f9919..0adc4bc281 100644 --- a/Assets/Engine/Scripts/Utils/EntityUtils.lua +++ b/Assets/Engine/Scripts/Utils/EntityUtils.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Assets/Engine/Scripts/Utils/Math.lua b/Assets/Engine/Scripts/Utils/Math.lua index 660fb17a92..57542dfee3 100644 --- a/Assets/Engine/Scripts/Utils/Math.lua +++ b/Assets/Engine/Scripts/Utils/Math.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/CMakeLists.txt b/AutomatedTesting/CMakeLists.txt index fb1f0320e4..7a7d2b3165 100644 --- a/AutomatedTesting/CMakeLists.txt +++ b/AutomatedTesting/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Editor/Scripts/SettingsRegistry/__init__.py b/AutomatedTesting/Editor/Scripts/SettingsRegistry/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/AutomatedTesting/Editor/Scripts/SettingsRegistry/__init__.py +++ b/AutomatedTesting/Editor/Scripts/SettingsRegistry/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Editor/Scripts/SettingsRegistry/settings_registry_example.py b/AutomatedTesting/Editor/Scripts/SettingsRegistry/settings_registry_example.py index 120a487341..0dec2669fe 100755 --- a/AutomatedTesting/Editor/Scripts/SettingsRegistry/settings_registry_example.py +++ b/AutomatedTesting/Editor/Scripts/SettingsRegistry/settings_registry_example.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Editor/Scripts/__init__.py b/AutomatedTesting/Editor/Scripts/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/AutomatedTesting/Editor/Scripts/__init__.py +++ b/AutomatedTesting/Editor/Scripts/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/EngineFinder.cmake b/AutomatedTesting/EngineFinder.cmake index 0fee5bf6fc..94460e7c11 100644 --- a/AutomatedTesting/EngineFinder.cmake +++ b/AutomatedTesting/EngineFinder.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/CMakeLists.txt b/AutomatedTesting/Gem/CMakeLists.txt index bd44ca518c..30974ac63d 100644 --- a/AutomatedTesting/Gem/CMakeLists.txt +++ b/AutomatedTesting/Gem/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/CMakeLists.txt b/AutomatedTesting/Gem/Code/CMakeLists.txt index 427ee7e66f..280c44fe8b 100644 --- a/AutomatedTesting/Gem/Code/CMakeLists.txt +++ b/AutomatedTesting/Gem/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Include/AutomatedTesting/AutomatedTestingBus.h b/AutomatedTesting/Gem/Code/Include/AutomatedTesting/AutomatedTestingBus.h index 945e135414..7a1a0db21b 100644 --- a/AutomatedTesting/Gem/Code/Include/AutomatedTesting/AutomatedTestingBus.h +++ b/AutomatedTesting/Gem/Code/Include/AutomatedTesting/AutomatedTestingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/Gem/Code/Platform/Android/platform_android_files.cmake b/AutomatedTesting/Gem/Code/Platform/Android/platform_android_files.cmake index 30503258bc..1fe051b062 100644 --- a/AutomatedTesting/Gem/Code/Platform/Android/platform_android_files.cmake +++ b/AutomatedTesting/Gem/Code/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Platform/Linux/platform_linux_files.cmake b/AutomatedTesting/Gem/Code/Platform/Linux/platform_linux_files.cmake index 30503258bc..1fe051b062 100644 --- a/AutomatedTesting/Gem/Code/Platform/Linux/platform_linux_files.cmake +++ b/AutomatedTesting/Gem/Code/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Platform/Mac/platform_mac_files.cmake b/AutomatedTesting/Gem/Code/Platform/Mac/platform_mac_files.cmake index 7a7c055518..b4e92ff6f5 100644 --- a/AutomatedTesting/Gem/Code/Platform/Mac/platform_mac_files.cmake +++ b/AutomatedTesting/Gem/Code/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Platform/Mac/runtime_dependencies.cmake b/AutomatedTesting/Gem/Code/Platform/Mac/runtime_dependencies.cmake index 3b5129225b..6faf6e663d 100644 --- a/AutomatedTesting/Gem/Code/Platform/Mac/runtime_dependencies.cmake +++ b/AutomatedTesting/Gem/Code/Platform/Mac/runtime_dependencies.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Platform/Mac/tool_dependencies.cmake b/AutomatedTesting/Gem/Code/Platform/Mac/tool_dependencies.cmake index 3b5129225b..6faf6e663d 100644 --- a/AutomatedTesting/Gem/Code/Platform/Mac/tool_dependencies.cmake +++ b/AutomatedTesting/Gem/Code/Platform/Mac/tool_dependencies.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Platform/Windows/platform_windows_files.cmake b/AutomatedTesting/Gem/Code/Platform/Windows/platform_windows_files.cmake index 30503258bc..1fe051b062 100644 --- a/AutomatedTesting/Gem/Code/Platform/Windows/platform_windows_files.cmake +++ b/AutomatedTesting/Gem/Code/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Platform/iOS/platform_ios_files.cmake b/AutomatedTesting/Gem/Code/Platform/iOS/platform_ios_files.cmake index d0f06b1753..d43675623c 100644 --- a/AutomatedTesting/Gem/Code/Platform/iOS/platform_ios_files.cmake +++ b/AutomatedTesting/Gem/Code/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/Source/AutomatedTestingModule.cpp b/AutomatedTesting/Gem/Code/Source/AutomatedTestingModule.cpp index b8c122ec8f..e4534870e2 100644 --- a/AutomatedTesting/Gem/Code/Source/AutomatedTestingModule.cpp +++ b/AutomatedTesting/Gem/Code/Source/AutomatedTestingModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.cpp b/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.cpp index dbe8faf12a..7bd2742d31 100644 --- a/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.cpp +++ b/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.h b/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.h index ff93c24d15..de9d9ab51d 100644 --- a/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.h +++ b/AutomatedTesting/Gem/Code/Source/AutomatedTestingSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/Gem/Code/automatedtesting_files.cmake b/AutomatedTesting/Gem/Code/automatedtesting_files.cmake index ed8551e7d8..f28ae27ca7 100644 --- a/AutomatedTesting/Gem/Code/automatedtesting_files.cmake +++ b/AutomatedTesting/Gem/Code/automatedtesting_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Code/enabled_gems.cmake b/AutomatedTesting/Gem/Code/enabled_gems.cmake index f27d61908a..fa421b8633 100644 --- a/AutomatedTesting/Gem/Code/enabled_gems.cmake +++ b/AutomatedTesting/Gem/Code/enabled_gems.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/Editor/Scripts/__init__.py b/AutomatedTesting/Gem/Editor/Scripts/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/AutomatedTesting/Gem/Editor/Scripts/__init__.py +++ b/AutomatedTesting/Gem/Editor/Scripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/Editor/Scripts/bootstrap.py b/AutomatedTesting/Gem/Editor/Scripts/bootstrap.py index 5f784b8b8d..ec639ca075 100644 --- a/AutomatedTesting/Gem/Editor/Scripts/bootstrap.py +++ b/AutomatedTesting/Gem/Editor/Scripts/bootstrap.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt index 8ba799d638..0d5c1d144a 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/AWS/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/__init__.py index 3a3549d485..5482b53e84 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/__init__.py index 487ceb9103..68fa386ecb 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_automation_test.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_automation_test.py index ccafb35900..902666ba10 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_automation_test.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_automation_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_utils.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_utils.py index f6b79e5690..814ec1546a 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_utils.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_waiters.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_waiters.py index da058eb0d9..c56844bbcd 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_waiters.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/aws_metrics/aws_metrics_waiters.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/__init__.py index 3a3549d485..5482b53e84 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/cdk_utils.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/cdk_utils.py index b2058b372b..532f39df4a 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/cdk_utils.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/cdk/cdk_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/__init__.py index 3a3549d485..5482b53e84 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_anonymous_credentials.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_anonymous_credentials.py index cf22ac6879..7ab84328fe 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_anonymous_credentials.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_anonymous_credentials.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_password_signin.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_password_signin.py index 4a964a5027..dafcb31751 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_password_signin.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/client_auth/test_password_signin.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/__init__.py index ce5bb8503d..99aac69543 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/resource_mappings.py b/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/resource_mappings.py index 871288702e..2d67b0abc7 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/resource_mappings.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/Windows/resource_mappings/resource_mappings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/__init__.py index 3a3549d485..5482b53e84 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/common/__init__.py b/AutomatedTesting/Gem/PythonTests/AWS/common/__init__.py index 3a3549d485..5482b53e84 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/common/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/common/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/common/aws_credentials.py b/AutomatedTesting/Gem/PythonTests/AWS/common/aws_credentials.py index 5a6f182b14..61523599a8 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/common/aws_credentials.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/common/aws_credentials.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/common/aws_utils.py b/AutomatedTesting/Gem/PythonTests/AWS/common/aws_utils.py index b6f2573497..ca0d14c67c 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/common/aws_utils.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/common/aws_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/common/custom_waiter.py b/AutomatedTesting/Gem/PythonTests/AWS/common/custom_waiter.py index 544a5e5394..6a41b53dfd 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/common/custom_waiter.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/common/custom_waiter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/AWS/conftest.py b/AutomatedTesting/Gem/PythonTests/AWS/conftest.py index 037b181dcb..15217d4620 100644 --- a/AutomatedTesting/Gem/PythonTests/AWS/conftest.py +++ b/AutomatedTesting/Gem/PythonTests/AWS/conftest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCapsuleDamage.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCapsuleDamage.py index 0c6a7fd7e2..55dec5e13d 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCapsuleDamage.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCapsuleDamage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCollision.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCollision.py index 0ecb9f2ff4..b9e78330d6 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCollision.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterCollision.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterDamage.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterDamage.py index 126a4d0c84..0f670fc779 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterDamage.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterDamage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterImpactSpreadDamage.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterImpactSpreadDamage.py index 466cc554cb..b18ac07dcb 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterImpactSpreadDamage.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterImpactSpreadDamage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterRadialDamage.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterRadialDamage.py index 31cde279d1..cc8f2185b6 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterRadialDamage.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterRadialDamage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterShearDamage.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterShearDamage.py index 6221225209..c31c26d928 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterShearDamage.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterShearDamage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterStressDamage.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterStressDamage.py index 6f2729d497..af82c5c3b8 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterStressDamage.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterStressDamage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterTriangleDamage.py b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterTriangleDamage.py index 55a65a57ff..8fba903e5e 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterTriangleDamage.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ActorSplitsAfterTriangleDamage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/BlastUtils.py b/AutomatedTesting/Gem/PythonTests/Blast/BlastUtils.py index bbc0409a14..95ba71ebb4 100644 --- a/AutomatedTesting/Gem/PythonTests/Blast/BlastUtils.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/BlastUtils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/Blast/CMakeLists.txt index 2ca3af95ff..14dc029c7b 100644 --- a/AutomatedTesting/Gem/PythonTests/Blast/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/Blast/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/Blast/ImportPathHelper.py b/AutomatedTesting/Gem/PythonTests/Blast/ImportPathHelper.py index 002553b096..fd068c3db2 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/ImportPathHelper.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/ImportPathHelper.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Active.py b/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Active.py index 925b08a272..d8b769e53f 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Active.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/TestSuite_Active.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/Blast/__init__.py b/AutomatedTesting/Gem/PythonTests/Blast/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/AutomatedTesting/Gem/PythonTests/Blast/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/Blast/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/CMakeLists.txt index 479db3230a..df21877cd4 100644 --- a/AutomatedTesting/Gem/PythonTests/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/CMakeLists.txt index 84b52b7ccc..638a54fa5d 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test.py index fdd545bb94..a55905f65b 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test_case.py index 46ec731bcb..598cb41342 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentAssetCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test.py index 916130bc91..d73946449c 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case.py index 4b86e18f0c..1a3c62ae98 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case_BuildComponentTypeNameList.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case_BuildComponentTypeNameList.py index ff6b65d495..7057606b7a 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case_BuildComponentTypeNameList.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentCommands_test_case_BuildComponentTypeNameList.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test.py index 0426334c81..f9b91e60b1 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case.py index 29d6aadcf1..0fed80420c 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_set_none.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_set_none.py index 11d776f70b..e8def81b02 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_set_none.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_set_none.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_visibility.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_visibility.py index e68ce36923..baf888aea1 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_visibility.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_case_visibility.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_containers.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_containers.py index c3f75fd902..f76e23dc46 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_containers.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_containers.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_enum.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_enum.py index b9fd437ccc..caceecce69 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_enum.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentPropertyCommands_test_enum.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py index af80a36460..1fd8a85259 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ComponentUpdateListProperty_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test.py index 070e2c8242..befa473149 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test_case.py index bbf268aa68..fed1e706da 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsBus_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test.py index 0593f16378..e8cc288ed7 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test_case.py index 7e8f61e703..712d37545b 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/DisplaySettingsCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test.py index 9edebf9aef..e2a2327057 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test_case.py index 6e12ffb0fb..933950a7be 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorCommandLine_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/ComponentUpdateListProperty_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/ComponentUpdateListProperty_test_case.py index 19b4c56111..bbf15e3ae4 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/ComponentUpdateListProperty_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/ComponentUpdateListProperty_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/__init__.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/__init__.py index ce5bb8503d..99aac69543 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorScripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_legacy_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_legacy_test_case.py index d1586d8947..cb9c57f8ee 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_legacy_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_legacy_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test.py index 4b037460e9..d4b3f93f59 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test_case.py index 1c886ce5cd..d6b72f6948 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorUtilityCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test.py index b010ef75bb..6f1ce58d14 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test_case.py index 1570b720f4..b80524cd55 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EditorViewCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test.py index 54d6666eec..23ee8cc74e 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test_case.py index 42fa3e4097..319113d3df 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCRUDCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test.py index e1aed00f90..c213bcb8bd 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test_case.py index db05dfb614..c2ed344888 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntityCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test.py index a1bb71b3c0..8689dd5685 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test_case.py index 9c6a6ce1de..8898916579 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySearchCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test.py index b5a5393028..504cdd45dc 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test_case.py index 78acc915eb..5307216409 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/EntitySelectionCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test.py index 5352965727..f5cd8b4903 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test_case.py index c4589bfe97..1aa83cbe82 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/GameModeCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test.py index 7bda88578f..c16aed368c 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test_case.py index 9d33273fef..b283c1b1b0 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test.py index 7ddd9ea7c6..9a4a769def 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test_case.py index e2fce7a83f..65cca678ec 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelComponentCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test.py index a9b8aa6642..fbe81a7222 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test_case.py index 522e234fc8..86149187a9 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/LevelPathsCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test.py index 8d21567a26..7a243f85c1 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test_case.py index 182e31a300..dc96a4b55f 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/MainWindowCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test.py index d09cba3c2f..b72e2f8461 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test_case.py index 6ce97cf84b..fee4f1f154 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectManagerCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test.py index 7053b03389..5d4c94d166 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test.py @@ -1,6 +1,6 @@ '' """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test_case.py index 9a465ab1d0..b3d3ad142b 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ObjectStringRepresentation_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test.py index 4f74d214f4..e3e0c7e0db 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test.py @@ -1,6 +1,6 @@ '' """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test_case.py index e65ea28895..d50bd872b8 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/PySide_Example_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test.py index 18592eb99f..4e7a8d7953 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test_case.py index 1226633061..d5d793b53b 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/TrackViewCommands_test_case.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test.py index 3895723177..80826bac33 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test_case.py index 2698996c55..b277074647 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewPaneCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test.py index 30c57c9e14..45ca1197b2 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test_case.py index 51109ca926..8dba9a1c16 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/ViewportTitleDlgCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test.py index d04a4f6e96..929db4cbcb 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test_case.py index 8052bb8dc7..63cdabb9c9 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/WaitCommands_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/__init__.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/hydra_utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/hydra_utils.py index 52f9ebb1c5..8d91534c59 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/hydra_utils.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/hydra_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test.py index 622d9844bf..51724ea509 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test_case.py b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test_case.py index f153ea3446..bd5265470c 100755 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonBindings/layerEntity_test_case.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt index b5c02fd67a..b8933bab6b 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/README.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/__init__.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/__init__.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/__init__.py index ce5bb8503d..99aac69543 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_entity_utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_entity_utils.py index f046a396f2..b452ad163d 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_entity_utils.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_entity_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_test_helper.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_test_helper.py index cdbefb6144..b6d05a11cc 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_test_helper.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/editor_test_helper.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_editor_utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_editor_utils.py index 0aa02c9b8b..2ce73a7dae 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_editor_utils.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/hydra_editor_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ 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 3f6eae8e94..0f7f438612 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 @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_component_utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_component_utils.py index c73acea7a9..f017872c58 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_component_utils.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_component_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_utils.py index f558577bca..8f57532a60 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_utils.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/pyside_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py index 93660d2ec3..35f07f99af 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/editor_python_test_tools/utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/setup.py b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/setup.py index 891d8c93c2..1100efcdc6 100644 --- a/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/setup.py +++ b/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools/setup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py index bd6fcc93cd..85abb9eff5 100755 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977329_NvCloth_AddClothSimulationToMesh.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py index cd741d26d3..fac5a6264c 100755 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/C18977330_NvCloth_AddClothSimulationToActor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt index cedae0a390..5b26424097 100644 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/ImportPathHelper.py b/AutomatedTesting/Gem/PythonTests/NvCloth/ImportPathHelper.py index 002553b096..fd068c3db2 100755 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/ImportPathHelper.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/ImportPathHelper.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Active.py b/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Active.py index 230d99d205..ce3f04b8f1 100755 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Active.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/TestSuite_Active.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/NvCloth/__init__.py b/AutomatedTesting/Gem/PythonTests/NvCloth/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/AutomatedTesting/Gem/PythonTests/NvCloth/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/NvCloth/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/Platform/Android/PAL_traits_android.cmake b/AutomatedTesting/Gem/PythonTests/Platform/Android/PAL_traits_android.cmake index b9f79c94e0..12a69f2243 100644 --- a/AutomatedTesting/Gem/PythonTests/Platform/Android/PAL_traits_android.cmake +++ b/AutomatedTesting/Gem/PythonTests/Platform/Android/PAL_traits_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/Platform/Linux/PAL_traits_linux.cmake b/AutomatedTesting/Gem/PythonTests/Platform/Linux/PAL_traits_linux.cmake index b9f79c94e0..12a69f2243 100644 --- a/AutomatedTesting/Gem/PythonTests/Platform/Linux/PAL_traits_linux.cmake +++ b/AutomatedTesting/Gem/PythonTests/Platform/Linux/PAL_traits_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/Platform/Mac/PAL_traits_mac.cmake b/AutomatedTesting/Gem/PythonTests/Platform/Mac/PAL_traits_mac.cmake index b9f79c94e0..12a69f2243 100644 --- a/AutomatedTesting/Gem/PythonTests/Platform/Mac/PAL_traits_mac.cmake +++ b/AutomatedTesting/Gem/PythonTests/Platform/Mac/PAL_traits_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/Platform/Windows/PAL_traits_windows.cmake b/AutomatedTesting/Gem/PythonTests/Platform/Windows/PAL_traits_windows.cmake index 8b3eeb5233..180fc1d1fd 100644 --- a/AutomatedTesting/Gem/PythonTests/Platform/Windows/PAL_traits_windows.cmake +++ b/AutomatedTesting/Gem/PythonTests/Platform/Windows/PAL_traits_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/Platform/iOS/PAL_traits_ios.cmake b/AutomatedTesting/Gem/PythonTests/Platform/iOS/PAL_traits_ios.cmake index b9f79c94e0..12a69f2243 100644 --- a/AutomatedTesting/Gem/PythonTests/Platform/iOS/PAL_traits_ios.cmake +++ b/AutomatedTesting/Gem/PythonTests/Platform/iOS/PAL_traits_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test.py b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test.py index c433215f83..f5bdb73a41 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test.py +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test_case.py b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test_case.py index c8f03ac2b0..6622c0de68 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test_case.py +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/AssetBuilder_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/CMakeLists.txt index c343f28d6f..a36f90d22e 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/__init__.py b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/__init__.py index ce5bb8503d..99aac69543 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/bootstrap_tests.py b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/bootstrap_tests.py index 577c7fa910..2d2169b309 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/bootstrap_tests.py +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/bootstrap_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/export_chunks_builder.py b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/export_chunks_builder.py index 46cac37d0c..f4c61ab29f 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/export_chunks_builder.py +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/export_chunks_builder.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py index 10c93bdd47..e46d57b3d7 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798177_WhiteBox_AddComponentToEntity.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798177_WhiteBox_AddComponentToEntity.py index 4c606ccb43..da98d20204 100755 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798177_WhiteBox_AddComponentToEntity.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798177_WhiteBox_AddComponentToEntity.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798205_WhiteBox_SetInvisible.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798205_WhiteBox_SetInvisible.py index 962f2a7168..ea1350d9ed 100755 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798205_WhiteBox_SetInvisible.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/C28798205_WhiteBox_SetInvisible.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/C29279329_WhiteBox_SetDefaultShape.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/C29279329_WhiteBox_SetDefaultShape.py index 2556214552..ab470f2f8f 100755 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/C29279329_WhiteBox_SetDefaultShape.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/C29279329_WhiteBox_SetDefaultShape.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/WhiteBox/CMakeLists.txt index fcf2f52e09..a6d5ef0956 100644 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/FileManagement.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/FileManagement.py index a0494b9915..5bab5983a9 100755 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/FileManagement.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/FileManagement.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/ImportPathHelper.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/ImportPathHelper.py index 002553b096..fd068c3db2 100755 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/ImportPathHelper.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/ImportPathHelper.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Active.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Active.py index 7cb1e21afb..26b7ee7fa4 100755 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Active.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/TestSuite_Active.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/WhiteBox/__init__.py b/AutomatedTesting/Gem/PythonTests/WhiteBox/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/AutomatedTesting/Gem/PythonTests/WhiteBox/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/WhiteBox/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/assetpipeline/CMakeLists.txt index ecc8f96f5a..29abc336bf 100644 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/__init__.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/__init__.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_all_platforms_setup_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_all_platforms_setup_fixture.py index 70eb8f200e..bb1afdb7b7 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_all_platforms_setup_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_all_platforms_setup_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_backup_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_backup_fixture.py index e73f737b9b..5a2837dae8 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_backup_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_backup_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_default_platform_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_default_platform_fixture.py index 33aaacb5f1..5b6492b0a0 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_default_platform_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_config_default_platform_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_external_project_setup_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_external_project_setup_fixture.py index 9c6cb4bf27..9bd03cc692 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_external_project_setup_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_external_project_setup_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_fast_scan_setting_backup_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_fast_scan_setting_backup_fixture.py index 66f0cb9ab7..9973f1ee10 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_fast_scan_setting_backup_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_fast_scan_setting_backup_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_idle_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_idle_fixture.py index 2a5fc18c08..5af3477e4f 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_idle_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_idle_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_missing_dependency_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_missing_dependency_fixture.py index 3a7e91b262..538efac531 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_missing_dependency_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_missing_dependency_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_setup_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_setup_fixture.py index 9d288d5985..7d458e0202 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_setup_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/ap_setup_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/asset_processor_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/asset_processor_fixture.py index 4dfb65f3b1..8750962049 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/asset_processor_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/asset_processor_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py index b2dc628c43..f82e197cb8 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/bundler_batch_setup_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py index 15cbecdfea..b0fd2d0992 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_moveoutput_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_testingAssets_dir.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_testingAssets_dir.py index 60b7437c71..631970b50c 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_testingAssets_dir.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_testingAssets_dir.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/one_time_log_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/one_time_log_fixture.py index 7f49ceb5c6..5c3713483b 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/one_time_log_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/one_time_log_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/timeout_option_fixture.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/timeout_option_fixture.py index 1dab821924..306f36d072 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/timeout_option_fixture.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/timeout_option_fixture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt index 1c8a4b17ad..f05aff6db3 100644 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/__init__.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_builder_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_builder_tests.py index 1ca2d51424..31e387e8a3 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_builder_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_builder_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_bundler_batch_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_bundler_batch_tests.py index 34051c0614..926f1cc602 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_bundler_batch_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_bundler_batch_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests.py index f771563937..618811cfda 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests2.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests2.py index 9897d67b37..9314c29571 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests2.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_dependency_tests2.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests.py index 4da409accd..bcf8221ce6 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests_2.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests_2.py index d0fe77c68d..0ea6d29380 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests_2.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_batch_tests_2.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests.py index ebddf6d5b6..a03351393a 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests_2.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests_2.py index 82070ecd58..4b03caba62 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests_2.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_processor_gui_tests_2.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py index 6b687c267d..f03eddf733 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/asset_relocator_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1571774/test_lua_print.lua b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1571774/test_lua_print.lua index d289ed4310..a156345563 100644 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1571774/test_lua_print.lua +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1571774/test_lua_print.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1591338/test_lua_print.lua b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1591338/test_lua_print.lua index d289ed4310..a156345563 100644 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1591338/test_lua_print.lua +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/C1591338/test_lua_print.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessAndDeleteCache_APBatchShouldReprocess/main.lua b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessAndDeleteCache_APBatchShouldReprocess/main.lua index 4ff6ccf76e..631a12422c 100644 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessAndDeleteCache_APBatchShouldReprocess/main.lua +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessAndDeleteCache_APBatchShouldReprocess/main.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessByBothApAndBatch_Md5ShouldMatch/main.lua b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessByBothApAndBatch_Md5ShouldMatch/main.lua index 4ff6ccf76e..631a12422c 100644 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessByBothApAndBatch_Md5ShouldMatch/main.lua +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/assets/test_ProcessByBothApAndBatch_Md5ShouldMatch/main.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/conftest.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/conftest.py index f04bcd9963..32b2910b2a 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/conftest.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/conftest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/missing_dependency_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/missing_dependency_tests.py index c0aa01964a..d1e51d7422 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/missing_dependency_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/asset_processor_tests/missing_dependency_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/__init__.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/conftest.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/conftest.py index a30d232b6a..dad417436d 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/conftest.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/conftest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/fbx_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/fbx_tests.py index 6460d04e48..4a9dbb51c8 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/fbx_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/fbx_tests/fbx_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/__init__.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/bank_info_parser_tests.py b/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/bank_info_parser_tests.py index d77aeb36a8..2906835386 100755 --- a/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/bank_info_parser_tests.py +++ b/AutomatedTesting/Gem/PythonTests/assetpipeline/wwise_bank_dependency_tests/bank_info_parser_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt index 13a5f5271b..f56276dc72 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/__init__.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/__init__.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomEditorComponents_AddedToEntity.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomEditorComponents_AddedToEntity.py index 10db402b9c..df1910b535 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomEditorComponents_AddedToEntity.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AtomEditorComponents_AddedToEntity.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py index d3e05e9c09..c5090937b8 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_SandboxSuite.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_SandboxSuite.py index 5d18cc6c6e..41859195ee 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_SandboxSuite.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_SandboxSuite.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/__init__.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_database_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_database_utils.py index 63e6f3b0b7..7df225590c 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_database_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_database_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_utils.py index a9cd280c31..83cf35e9f2 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/asset_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py index f44afcfa1f..41f3ebcfb4 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/base.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/file_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/file_utils.py index fbb694e938..44719a33f1 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/file_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/file_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/landscape_canvas_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/landscape_canvas_utils.py index 1d82995a6e..ff279ebc0a 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/landscape_canvas_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/landscape_canvas_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/network_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/network_utils.py index 773ab77ffb..f9981d2dac 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/network_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/network_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/platform_setting.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/platform_setting.py index 07dc9f26b7..f057bd7ffe 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/platform_setting.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/platform_setting.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py index 1c895c0cb0..6e2c13d794 100644 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/registry_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/report.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/report.py index 0f48863e75..4841a4ad79 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/report.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/report.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/screenshot_utils.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/screenshot_utils.py index c641b495c0..ac36be4d8c 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/screenshot_utils.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/screenshot_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/windows_registry_setting.py b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/windows_registry_setting.py index 4c3894e1ec..72731e2f1c 100755 --- a/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/windows_registry_setting.py +++ b/AutomatedTesting/Gem/PythonTests/automatedtesting_shared/windows_registry_setting.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt index 0c0d26a208..66cfa13ec3 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/editor/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py index cd7b33fc7b..dbed681f03 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_SearchFiltering.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py index 26597b2ff7..f934886f03 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetBrowser_TreeNavigation.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py index c0e6f0937f..30b774c88b 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/AssetPicker_UI_UX.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py index 08e4e8c7d2..c01b65eeab 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/BasicEditorWorkflows_LevelEntityComponentCRUD.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py index 2ca2fba6e4..5250dd6978 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/ComponentCRUD_Add_Delete_Components.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py index cfaf63ba4b..de0624fedb 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Docking_BasicDockedTools.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py index 145a3c2305..5b365dd229 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/InputBindings_Add_Remove_Input_Events.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py index 4ec4e95a8e..26110cd954 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_EditMenuOptions.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py index 127a061725..bc1a37541e 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_FileMenuOptions.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py index e66e271c71..7ed08867a9 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/Menus_ViewMenuOptions.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/__init__.py b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/editor/EditorScripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/editor/__init__.py b/AutomatedTesting/Gem/PythonTests/editor/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/editor/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/editor/conftest.py b/AutomatedTesting/Gem/PythonTests/editor/conftest.py index 6fbe88c5e3..73d974640f 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/conftest.py +++ b/AutomatedTesting/Gem/PythonTests/editor/conftest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_AssetBrowser.py b/AutomatedTesting/Gem/PythonTests/editor/test_AssetBrowser.py index addb59ec3b..3389e4087c 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/test_AssetBrowser.py +++ b/AutomatedTesting/Gem/PythonTests/editor/test_AssetBrowser.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_AssetPicker.py b/AutomatedTesting/Gem/PythonTests/editor/test_AssetPicker.py index df7b727af4..16150fcc21 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/test_AssetPicker.py +++ b/AutomatedTesting/Gem/PythonTests/editor/test_AssetPicker.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_BasicEditorWorkflows.py b/AutomatedTesting/Gem/PythonTests/editor/test_BasicEditorWorkflows.py index 72545fb98d..e290a7e3e9 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/test_BasicEditorWorkflows.py +++ b/AutomatedTesting/Gem/PythonTests/editor/test_BasicEditorWorkflows.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_ComponentCRUD.py b/AutomatedTesting/Gem/PythonTests/editor/test_ComponentCRUD.py index dac939a9de..847cc726dd 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/test_ComponentCRUD.py +++ b/AutomatedTesting/Gem/PythonTests/editor/test_ComponentCRUD.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_Docking.py b/AutomatedTesting/Gem/PythonTests/editor/test_Docking.py index c61651bf3d..f5f684e4e1 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/test_Docking.py +++ b/AutomatedTesting/Gem/PythonTests/editor/test_Docking.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_InputBindings.py b/AutomatedTesting/Gem/PythonTests/editor/test_InputBindings.py index 81efd6a056..ceb2933dd6 100755 --- a/AutomatedTesting/Gem/PythonTests/editor/test_InputBindings.py +++ b/AutomatedTesting/Gem/PythonTests/editor/test_InputBindings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/editor/test_Menus.py b/AutomatedTesting/Gem/PythonTests/editor/test_Menus.py index 94646fc65b..b45a087c79 100644 --- a/AutomatedTesting/Gem/PythonTests/editor/test_Menus.py +++ b/AutomatedTesting/Gem/PythonTests/editor/test_Menus.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt index 8a37e13e7d..9c16479b9b 100644 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/__init__.py b/AutomatedTesting/Gem/PythonTests/largeworlds/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ComponentAndOverrides_InstancesPlantAtSpecifiedAltitude.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ComponentAndOverrides_InstancesPlantAtSpecifiedAltitude.py index 87e0fc583f..b8b640071e 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ComponentAndOverrides_InstancesPlantAtSpecifiedAltitude.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ComponentAndOverrides_InstancesPlantAtSpecifiedAltitude.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_FilterStageToggle.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_FilterStageToggle.py index ebfd5c1a1c..bbdb925585 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_FilterStageToggle.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_FilterStageToggle.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ShapeSample_InstancesPlantAtSpecifiedAltitude.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ShapeSample_InstancesPlantAtSpecifiedAltitude.py index 8fe9d5bc6f..5f6c72f481 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ShapeSample_InstancesPlantAtSpecifiedAltitude.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AltitudeFilter_ShapeSample_InstancesPlantAtSpecifiedAltitude.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AreaComponentSlices_SliceCreationAndVisibilityToggle.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AreaComponentSlices_SliceCreationAndVisibilityToggle.py index 97257b7b04..c255476445 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AreaComponentSlices_SliceCreationAndVisibilityToggle.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AreaComponentSlices_SliceCreationAndVisibilityToggle.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetListCombiner_CombinedDescriptorsExpressInConfiguredArea.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetListCombiner_CombinedDescriptorsExpressInConfiguredArea.py index 7173d1c423..cea749dc46 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetListCombiner_CombinedDescriptorsExpressInConfiguredArea.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetListCombiner_CombinedDescriptorsExpressInConfiguredArea.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetWeightSelector_InstancesExpressBasedOnWeight.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetWeightSelector_InstancesExpressBasedOnWeight.py index 8f0c37e89e..cfd436792b 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetWeightSelector_InstancesExpressBasedOnWeight.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/AssetWeightSelector_InstancesExpressBasedOnWeight.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/Debugger_DebugCVarsWorks.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/Debugger_DebugCVarsWorks.py index 720db3960d..40fd67d957 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/Debugger_DebugCVarsWorks.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/Debugger_DebugCVarsWorks.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilterOverrides_InstancesPlantAtSpecifiedRadius.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilterOverrides_InstancesPlantAtSpecifiedRadius.py index 9b3b641bd8..f6270fac28 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilterOverrides_InstancesPlantAtSpecifiedRadius.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilterOverrides_InstancesPlantAtSpecifiedRadius.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilter_InstancesPlantAtSpecifiedRadius.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilter_InstancesPlantAtSpecifiedRadius.py index 1eaa440644..960d3a3015 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilter_InstancesPlantAtSpecifiedRadius.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DistanceBetweenFilter_InstancesPlantAtSpecifiedRadius.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks.py index 1edc392423..863c8935ba 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_DynamicSliceSpawnerWorks.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_Embedded_E2E.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_Embedded_E2E.py index 0e7b2bc7ad..4b0951acaf 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_Embedded_E2E.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_Embedded_E2E.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_External_E2E.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_External_E2E.py index 9deecc1208..892549d414 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_External_E2E.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/DynamicSliceInstanceSpawner_External_E2E.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/EmptyInstanceSpawner_EmptySpawnerWorks.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/EmptyInstanceSpawner_EmptySpawnerWorks.py index 11a2282935..963a97f3a3 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/EmptyInstanceSpawner_EmptySpawnerWorks.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/EmptyInstanceSpawner_EmptySpawnerWorks.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/InstanceSpawnerPriority_LayerAndSubPriority.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/InstanceSpawnerPriority_LayerAndSubPriority.py index 7d099a075b..3f915b5516 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/InstanceSpawnerPriority_LayerAndSubPriority.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/InstanceSpawnerPriority_LayerAndSubPriority.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlender_E2E_Editor.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlender_E2E_Editor.py index 71c81e5f36..c4dfbbf4fe 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlender_E2E_Editor.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlender_E2E_Editor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlocker_InstancesBlockedInConfiguredArea.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlocker_InstancesBlockedInConfiguredArea.py index 04f4cb6d4c..cb2d206f18 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlocker_InstancesBlockedInConfiguredArea.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerBlocker_InstancesBlockedInConfiguredArea.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_FilterStageToggle.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_FilterStageToggle.py index e3952a93ce..0224f6bc0a 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_FilterStageToggle.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_FilterStageToggle.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InheritBehaviorFlag.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InheritBehaviorFlag.py index f9a58c44e6..fc060151e9 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InheritBehaviorFlag.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InheritBehaviorFlag.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesPlantInAllSupportedShapes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesPlantInAllSupportedShapes.py index f3c916836c..e170d13360 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesPlantInAllSupportedShapes.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesPlantInAllSupportedShapes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesRefreshUsingCorrectViewportCamera.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesRefreshUsingCorrectViewportCamera.py index 654007ec14..c99d180253 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesRefreshUsingCorrectViewportCamera.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/LayerSpawner_InstancesRefreshUsingCorrectViewportCamera.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMesh.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMesh.py index c4098fc9cc..d23f811f58 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMesh.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMesh.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMeshHeightTuning.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMeshHeightTuning.py index 95ccc6ef8e..ad57f80776 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMeshHeightTuning.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshBlocker_InstancesBlockedByMeshHeightTuning.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_DependentOnMeshComponent.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_DependentOnMeshComponent.py index ff56ca936f..1d25121bf6 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_DependentOnMeshComponent.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_DependentOnMeshComponent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py index 8cb35ab6ca..a0b38ee277 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/MeshSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PhysXColliderSurfaceTagEmitter_E2E_Editor.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PhysXColliderSurfaceTagEmitter_E2E_Editor.py index bd18d0e850..6af05b8d70 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PhysXColliderSurfaceTagEmitter_E2E_Editor.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PhysXColliderSurfaceTagEmitter_E2E_Editor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_AutoSnapToSurfaceWorks.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_AutoSnapToSurfaceWorks.py index addc2feaf1..bbb869ff7f 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_AutoSnapToSurfaceWorks.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_AutoSnapToSurfaceWorks.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_ComponentAndOverrides_InstancesPlantAtSpecifiedOffsets.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_ComponentAndOverrides_InstancesPlantAtSpecifiedOffsets.py index 594bddffa2..87e6d3b9b3 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_ComponentAndOverrides_InstancesPlantAtSpecifiedOffsets.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/PositionModifier_ComponentAndOverrides_InstancesPlantAtSpecifiedOffsets.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifierOverrides_InstancesRotateWithinRange.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifierOverrides_InstancesRotateWithinRange.py index 75448d360f..a21031abbe 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifierOverrides_InstancesRotateWithinRange.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifierOverrides_InstancesRotateWithinRange.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifier_InstancesRotateWithinRange.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifier_InstancesRotateWithinRange.py index 0c7f52ce7b..78353ef090 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifier_InstancesRotateWithinRange.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/RotationModifier_InstancesRotateWithinRange.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifierOverrides_InstancesProperlyScale.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifierOverrides_InstancesProperlyScale.py index 8b85e13f61..b475c56e5e 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifierOverrides_InstancesProperlyScale.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifierOverrides_InstancesProperlyScale.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifier_InstancesProperlyScale.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifier_InstancesProperlyScale.py index a69ae4d393..2c9380ccbe 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifier_InstancesProperlyScale.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ScaleModifier_InstancesProperlyScale.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ShapeIntersectionFilter_InstancesPlantInAssignedShape.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ShapeIntersectionFilter_InstancesPlantInAssignedShape.py index f1f3bed629..9624ccdc34 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ShapeIntersectionFilter_InstancesPlantInAssignedShape.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/ShapeIntersectionFilter_InstancesPlantInAssignedShape.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifierOverrides_InstanceSurfaceAlignment.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifierOverrides_InstanceSurfaceAlignment.py index ce1f18983a..8607aece64 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifierOverrides_InstanceSurfaceAlignment.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifierOverrides_InstanceSurfaceAlignment.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifier_InstanceSurfaceAlignment.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifier_InstanceSurfaceAlignment.py index 813897047d..f252a13c2a 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifier_InstanceSurfaceAlignment.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeAlignmentModifier_InstanceSurfaceAlignment.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_ComponentAndOverrides_InstancesPlantOnValidSlope.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_ComponentAndOverrides_InstancesPlantOnValidSlope.py index 0bfaeabb45..593591c84b 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_ComponentAndOverrides_InstancesPlantOnValidSlope.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_ComponentAndOverrides_InstancesPlantOnValidSlope.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_FilterStageToggle.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_FilterStageToggle.py index fe57316ec1..c8523dd798 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_FilterStageToggle.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SlopeFilter_FilterStageToggle.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceDataRefreshes_RemainsStable.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceDataRefreshes_RemainsStable.py index c7203b8614..b930ab6acc 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceDataRefreshes_RemainsStable.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceDataRefreshes_RemainsStable.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilterOverrides_MultipleDescriptorOverridesPlantAsExpected.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilterOverrides_MultipleDescriptorOverridesPlantAsExpected.py index a541090762..76021d9f83 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilterOverrides_MultipleDescriptorOverridesPlantAsExpected.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilterOverrides_MultipleDescriptorOverridesPlantAsExpected.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_BasicSurfaceTagCreation.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_BasicSurfaceTagCreation.py index ed17c9d017..ddf2f30e89 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_BasicSurfaceTagCreation.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_BasicSurfaceTagCreation.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_ExclusionList.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_ExclusionList.py index ab7fa9ec46..613778cbb3 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_ExclusionList.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_ExclusionList.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_InclusionList.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_InclusionList.py index 441072a2ca..55a6d815e3 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_InclusionList.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SurfaceMaskFilter_InclusionList.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorPointDensity.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorPointDensity.py index 87831fc0f1..e4a57916d7 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorPointDensity.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorPointDensity.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorSize.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorSize.py index 04adb48c16..53ee7d6105 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorSize.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/SystemSettings_SectorSize.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/VegetationInstances_DespawnWhenOutOfRange.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/VegetationInstances_DespawnWhenOutOfRange.py index 4296a4342b..df42b9e821 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/VegetationInstances_DespawnWhenOutOfRange.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/VegetationInstances_DespawnWhenOutOfRange.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/__init__.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/EditorScripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/__init__.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AltitudeFilter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AltitudeFilter.py index 9e140d74d7..36a8307c88 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AltitudeFilter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AltitudeFilter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AreaComponentSlices.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AreaComponentSlices.py index 6c0fd66b20..ffea660a63 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AreaComponentSlices.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AreaComponentSlices.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetListCombiner.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetListCombiner.py index 2c3e5ec10a..f5d239771f 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetListCombiner.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetListCombiner.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetWeightSelector.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetWeightSelector.py index 917fcd44fc..9f6302cd82 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetWeightSelector.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_AssetWeightSelector.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_Debugger.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_Debugger.py index cdaa6f47ad..ed979136e0 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_Debugger.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_Debugger.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DistanceBetweenFilter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DistanceBetweenFilter.py index e2ad2031a4..3c53c51a3c 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DistanceBetweenFilter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DistanceBetweenFilter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynVeg_Regressions.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynVeg_Regressions.py index 9f7b8770da..207aa40f90 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynVeg_Regressions.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynVeg_Regressions.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynamicSliceInstanceSpawner.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynamicSliceInstanceSpawner.py index 3d6a113031..053c4ccbfd 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynamicSliceInstanceSpawner.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_DynamicSliceInstanceSpawner.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_EmptyInstanceSpawner.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_EmptyInstanceSpawner.py index 5a33ffacb7..88b056445f 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_EmptyInstanceSpawner.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_EmptyInstanceSpawner.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_InstanceSpawnerPriority.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_InstanceSpawnerPriority.py index d0d2bdc2f6..ddbccd751a 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_InstanceSpawnerPriority.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_InstanceSpawnerPriority.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlender.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlender.py index a1944eff4d..3c16420a30 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlender.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlender.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlocker.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlocker.py index 90cdc04313..2902291b9a 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlocker.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerBlocker.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerSpawner.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerSpawner.py index 9e060300ad..410bdbafed 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerSpawner.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_LayerSpawner.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshBlocker.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshBlocker.py index 49e720d3a2..e6ef7f53c5 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshBlocker.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshBlocker.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshSurfaceTagEmitter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshSurfaceTagEmitter.py index 1ba2b93b21..b8036bb724 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshSurfaceTagEmitter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_MeshSurfaceTagEmitter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PhysXColliderSurfaceTagEmitter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PhysXColliderSurfaceTagEmitter.py index 3551f91b00..8a1523f37c 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PhysXColliderSurfaceTagEmitter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PhysXColliderSurfaceTagEmitter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PositionModifier.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PositionModifier.py index bd151197d7..c2a873dffc 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PositionModifier.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_PositionModifier.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_RotationModifier.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_RotationModifier.py index b79277f0f4..1d892a781b 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_RotationModifier.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_RotationModifier.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ScaleModifier.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ScaleModifier.py index 5018da8f73..f05199d2d0 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ScaleModifier.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ScaleModifier.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ShapeIntersectionFilter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ShapeIntersectionFilter.py index 8c32e6c8e4..dd4c4b8943 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ShapeIntersectionFilter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_ShapeIntersectionFilter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeAlignmentModifier.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeAlignmentModifier.py index 74b265e1a1..d7ab40af35 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeAlignmentModifier.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeAlignmentModifier.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeFilter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeFilter.py index 8cb5a82cbc..5c1f79aaf3 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeFilter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SlopeFilter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SurfaceMaskFilter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SurfaceMaskFilter.py index f46d5758e2..dbff206b43 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SurfaceMaskFilter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SurfaceMaskFilter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SystemSettings.py b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SystemSettings.py index fdf27e2beb..644c748da0 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SystemSettings.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/dyn_veg/test_SystemSettings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientGenerators_Incompatibilities.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientGenerators_Incompatibilities.py index a52b6eff09..32b2466aa7 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientGenerators_Incompatibilities.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientGenerators_Incompatibilities.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientModifiers_Incompatibilities.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientModifiers_Incompatibilities.py index 880f5ea04c..8ca5fed6eb 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientModifiers_Incompatibilities.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientModifiers_Incompatibilities.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin.py index 006e257cdd..0ca5fc2b9e 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_DefaultPinnedEntityIsSelf.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_DefaultPinnedEntityIsSelf.py index 9e078543a5..417441a92f 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_DefaultPinnedEntityIsSelf.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientPreviewSettings_DefaultPinnedEntityIsSelf.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSampling_GradientReferencesAddRemoveSuccessfully.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSampling_GradientReferencesAddRemoveSuccessfully.py index 4d3f9d324f..e8c7433e43 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSampling_GradientReferencesAddRemoveSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSampling_GradientReferencesAddRemoveSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_ComponentDependencies.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_ComponentDependencies.py index 6696b1d83c..1d07917588 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_ComponentDependencies.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_ComponentDependencies.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py index 23a7bb9335..e54a3695d8 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithExpectedGradients.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithExpectedGradients.py index 11ef85591f..fa1630a012 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithExpectedGradients.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithExpectedGradients.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithSpawners.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithSpawners.py index 5f080c001e..1b97deaf17 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithSpawners.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_ComponentIncompatibleWithSpawners.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange.py index ec77933424..7535c27010 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_RequiresShape.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_RequiresShape.py index 2c47d8306b..b5b9496d1e 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_RequiresShape.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/GradientTransform_RequiresShape.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_ProcessedImageAssignedSuccessfully.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_ProcessedImageAssignedSuccessfully.py index 76a977f9eb..c9e9d0504e 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_ProcessedImageAssignedSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_ProcessedImageAssignedSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_RequiresShape.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_RequiresShape.py index 83c8798ecd..8a57c3107b 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_RequiresShape.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/EditorScripts/ImageGradient_RequiresShape.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/__init__.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientIncompatibilities.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientIncompatibilities.py index 4fa705f808..2187990ca4 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientIncompatibilities.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientIncompatibilities.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientPreviewSettings.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientPreviewSettings.py index 8c681afd5e..caaa480910 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientPreviewSettings.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientPreviewSettings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSampling.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSampling.py index b760bdb7a2..4aeb8c170e 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSampling.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSampling.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSurfaceTagEmitter.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSurfaceTagEmitter.py index ee377de2e7..473d0170d8 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSurfaceTagEmitter.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientSurfaceTagEmitter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientTransform.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientTransform.py index bea751998b..e71592ea58 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientTransform.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_GradientTransform.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_ImageGradient.py b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_ImageGradient.py index 93497766c9..07807c7dd5 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_ImageGradient.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/gradient_signal/test_ImageGradient.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_DependentComponentsAdded.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_DependentComponentsAdded.py index 08401213dc..a772e070f1 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_DependentComponentsAdded.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_DependentComponentsAdded.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityCreatedOnNodeAdd.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityCreatedOnNodeAdd.py index 132c57eb80..4c99ea63c2 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityCreatedOnNodeAdd.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityCreatedOnNodeAdd.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityRemovedOnNodeDelete.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityRemovedOnNodeDelete.py index 0843bac3f8..3a01684979 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityRemovedOnNodeDelete.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/AreaNodes_EntityRemovedOnNodeDelete.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ComponentUpdates_UpdateGraph.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ComponentUpdates_UpdateGraph.py index 0797e5f005..9a6689a548 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ComponentUpdates_UpdateGraph.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ComponentUpdates_UpdateGraph.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/CreateNewGraph.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/CreateNewGraph.py index c01b2552c6..a6d43821e3 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/CreateNewGraph.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/CreateNewGraph.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_DisabledNodeDuplication.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_DisabledNodeDuplication.py index 2593e7413e..63e5e7558f 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_DisabledNodeDuplication.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_DisabledNodeDuplication.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_UndoNodeDelete_SliceEntity.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_UndoNodeDelete_SliceEntity.py index aa641cb722..71ec206b7f 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_UndoNodeDelete_SliceEntity.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/Edit_UndoNodeDelete_SliceEntity.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientMixer_NodeConstruction.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientMixer_NodeConstruction.py index c79cc92fd1..ba48796251 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientMixer_NodeConstruction.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientMixer_NodeConstruction.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityCreatedOnNodeAdd.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityCreatedOnNodeAdd.py index dafedc07d1..c57f3a0e67 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityCreatedOnNodeAdd.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityCreatedOnNodeAdd.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityRemovedOnNodeDelete.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityRemovedOnNodeDelete.py index 9938fcb1f5..0e1538ac7c 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityRemovedOnNodeDelete.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientModifierNodes_EntityRemovedOnNodeDelete.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_DependentComponentsAdded.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_DependentComponentsAdded.py index a931d253db..0a25d60819 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_DependentComponentsAdded.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_DependentComponentsAdded.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityCreatedOnNodeAdd.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityCreatedOnNodeAdd.py index 9fe3f6f68b..17e23db160 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityCreatedOnNodeAdd.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityCreatedOnNodeAdd.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityRemovedOnNodeDelete.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityRemovedOnNodeDelete.py index a0f9745aa1..dc59938fea 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityRemovedOnNodeDelete.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GradientNodes_EntityRemovedOnNodeDelete.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnEntityDelete.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnEntityDelete.py index 136ce16735..b536c2daa3 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnEntityDelete.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnEntityDelete.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnLevelChange.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnLevelChange.py index 3f3317869c..2d6d5c0937 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnLevelChange.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_OnLevelChange.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_TabbedGraph.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_TabbedGraph.py index 8d7eb3bee7..2452101d21 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_TabbedGraph.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphClosed_TabbedGraph.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphUpdates_UpdateComponents.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphUpdates_UpdateComponents.py index d2b8727663..780ac1ca7a 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphUpdates_UpdateComponents.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/GraphUpdates_UpdateComponents.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvasComponent_AddedRemoved.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvasComponent_AddedRemoved.py index 5d20577fa9..ac12d84914 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvasComponent_AddedRemoved.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvasComponent_AddedRemoved.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvas_SliceCreateInstantiate.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvas_SliceCreateInstantiate.py index f8ec6650b4..0996c832fe 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvas_SliceCreateInstantiate.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LandscapeCanvas_SliceCreateInstantiate.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerBlender_NodeConstruction.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerBlender_NodeConstruction.py index 7b1126e548..9ee23b58ff 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerBlender_NodeConstruction.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerBlender_NodeConstruction.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerExtenderNodes_ComponentEntitySync.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerExtenderNodes_ComponentEntitySync.py index f2e132e821..5a4bbed8dc 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerExtenderNodes_ComponentEntitySync.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/LayerExtenderNodes_ComponentEntitySync.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityCreatedOnNodeAdd.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityCreatedOnNodeAdd.py index 5efea232f1..559ba91a25 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityCreatedOnNodeAdd.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityCreatedOnNodeAdd.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityRemovedOnNodeDelete.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityRemovedOnNodeDelete.py index 586119c6f5..f2bb5da674 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityRemovedOnNodeDelete.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/ShapeNodes_EntityRemovedOnNodeDelete.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/SlotConnections_UpdateComponentReferences.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/SlotConnections_UpdateComponentReferences.py index 98c58d6eb6..1f6ffc5926 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/SlotConnections_UpdateComponentReferences.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/SlotConnections_UpdateComponentReferences.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/__init__.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/EditorScripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/__init__.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_AreaNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_AreaNodes.py index 23f2ad0b79..633999205c 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_AreaNodes.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_AreaNodes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_EditFunctionality.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_EditFunctionality.py index 8619a2dcf4..bb3e1ea81c 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_EditFunctionality.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_EditFunctionality.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GeneralGraphFunctionality.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GeneralGraphFunctionality.py index 0edafe731a..bbca71461c 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GeneralGraphFunctionality.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GeneralGraphFunctionality.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientModifierNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientModifierNodes.py index 3335cc5229..7f5e0625c5 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientModifierNodes.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientModifierNodes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientNodes.py index 8aa1da1ff5..b66203c2e2 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientNodes.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GradientNodes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GraphComponentSync.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GraphComponentSync.py index bcb023a830..d5036b24bf 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GraphComponentSync.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_GraphComponentSync.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_ShapeNodes.py b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_ShapeNodes.py index d5a0530903..fceba3de20 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_ShapeNodes.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/landscape_canvas/test_ShapeNodes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/__init__.py b/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/editor_dynveg_test_helper.py b/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/editor_dynveg_test_helper.py index 99d9717707..515009cb3a 100755 --- a/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/editor_dynveg_test_helper.py +++ b/AutomatedTesting/Gem/PythonTests/largeworlds/large_worlds_utils/editor_dynveg_test_helper.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/physics/AddModifyDelete_Utils.py b/AutomatedTesting/Gem/PythonTests/physics/AddModifyDelete_Utils.py index f812347602..aa62b365c6 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/AddModifyDelete_Utils.py +++ b/AutomatedTesting/Gem/PythonTests/physics/AddModifyDelete_Utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C100000_RigidBody_EnablingGravityWorksPoC.py b/AutomatedTesting/Gem/PythonTests/physics/C100000_RigidBody_EnablingGravityWorksPoC.py index 5b07b285ce..2784e10bb8 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C100000_RigidBody_EnablingGravityWorksPoC.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C100000_RigidBody_EnablingGravityWorksPoC.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py b/AutomatedTesting/Gem/PythonTests/physics/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py index aff3a6f0c6..bec80b64d0 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C111111_RigidBody_EnablingGravityWorksUsingNotificationsPoC.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712452_ScriptCanvas_CollisionEvents.py b/AutomatedTesting/Gem/PythonTests/physics/C12712452_ScriptCanvas_CollisionEvents.py index 89f74c8d5c..b6d2b4db99 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12712452_ScriptCanvas_CollisionEvents.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12712452_ScriptCanvas_CollisionEvents.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712453_ScriptCanvas_MultipleRaycastNode.py b/AutomatedTesting/Gem/PythonTests/physics/C12712453_ScriptCanvas_MultipleRaycastNode.py index 0baa1869ed..33b8688555 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12712453_ScriptCanvas_MultipleRaycastNode.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12712453_ScriptCanvas_MultipleRaycastNode.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712454_ScriptCanvas_OverlapNodeVerification.py b/AutomatedTesting/Gem/PythonTests/physics/C12712454_ScriptCanvas_OverlapNodeVerification.py index f8c0ad5401..ad90d3520a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12712454_ScriptCanvas_OverlapNodeVerification.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12712454_ScriptCanvas_OverlapNodeVerification.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12712455_ScriptCanvas_ShapeCastVerification.py b/AutomatedTesting/Gem/PythonTests/physics/C12712455_ScriptCanvas_ShapeCastVerification.py index 6a95371f4c..4554c1035e 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12712455_ScriptCanvas_ShapeCastVerification.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12712455_ScriptCanvas_ShapeCastVerification.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py b/AutomatedTesting/Gem/PythonTests/physics/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py index e28261feac..fb3f31f070 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12868578_ForceRegion_DirectionHasNoAffectOnMagnitude.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12868580_ForceRegion_SplineModifiedTransform.py b/AutomatedTesting/Gem/PythonTests/physics/C12868580_ForceRegion_SplineModifiedTransform.py index d037e81ac9..94b4643d9d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12868580_ForceRegion_SplineModifiedTransform.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12868580_ForceRegion_SplineModifiedTransform.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12905527_ForceRegion_MagnitudeDeviation.py b/AutomatedTesting/Gem/PythonTests/physics/C12905527_ForceRegion_MagnitudeDeviation.py index 88210bf007..655952c797 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12905527_ForceRegion_MagnitudeDeviation.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12905527_ForceRegion_MagnitudeDeviation.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C12905528_ForceRegion_WithNonTriggerCollider.py b/AutomatedTesting/Gem/PythonTests/physics/C12905528_ForceRegion_WithNonTriggerCollider.py index 106b0db99f..2fc72f6a3b 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C12905528_ForceRegion_WithNonTriggerCollider.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C12905528_ForceRegion_WithNonTriggerCollider.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13351703_COM_NotIncludeTriggerShapes.py b/AutomatedTesting/Gem/PythonTests/physics/C13351703_COM_NotIncludeTriggerShapes.py index 81a786f8ff..25a875ff08 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C13351703_COM_NotIncludeTriggerShapes.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C13351703_COM_NotIncludeTriggerShapes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13352089_RigidBodies_MaxAngularVelocity.py b/AutomatedTesting/Gem/PythonTests/physics/C13352089_RigidBodies_MaxAngularVelocity.py index 38578cbdba..27dbb33f29 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C13352089_RigidBodies_MaxAngularVelocity.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C13352089_RigidBodies_MaxAngularVelocity.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13508019_Terrain_TerrainTexturePainterWorks.py b/AutomatedTesting/Gem/PythonTests/physics/C13508019_Terrain_TerrainTexturePainterWorks.py index fb135cd332..f4c6c635be 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C13508019_Terrain_TerrainTexturePainterWorks.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C13508019_Terrain_TerrainTexturePainterWorks.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C13895144_Ragdoll_ChangeLevel.py b/AutomatedTesting/Gem/PythonTests/physics/C13895144_Ragdoll_ChangeLevel.py index c21c22f054..21ad19b7db 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C13895144_Ragdoll_ChangeLevel.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C13895144_Ragdoll_ChangeLevel.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14195074_ScriptCanvas_PostUpdateEvent.py b/AutomatedTesting/Gem/PythonTests/physics/C14195074_ScriptCanvas_PostUpdateEvent.py index a07e5a87df..0d5cc6c5b1 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14195074_ScriptCanvas_PostUpdateEvent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14195074_ScriptCanvas_PostUpdateEvent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14654881_CharacterController_SwitchLevels.py b/AutomatedTesting/Gem/PythonTests/physics/C14654881_CharacterController_SwitchLevels.py index a3f0eec073..be6480cd17 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14654881_CharacterController_SwitchLevels.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14654881_CharacterController_SwitchLevels.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14654882_Ragdoll_ragdollAPTest.py b/AutomatedTesting/Gem/PythonTests/physics/C14654882_Ragdoll_ragdollAPTest.py index a5d3935e05..bccd7fd232 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14654882_Ragdoll_ragdollAPTest.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14654882_Ragdoll_ragdollAPTest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861498_ConfirmError_NoPxMesh.py b/AutomatedTesting/Gem/PythonTests/physics/C14861498_ConfirmError_NoPxMesh.py index d12b1e2efc..0506390409 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14861498_ConfirmError_NoPxMesh.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14861498_ConfirmError_NoPxMesh.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861500_DefaultSetting_ColliderShape.py b/AutomatedTesting/Gem/PythonTests/physics/C14861500_DefaultSetting_ColliderShape.py index 5525883839..f9e410f926 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14861500_DefaultSetting_ColliderShape.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14861500_DefaultSetting_ColliderShape.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861501_PhysXCollider_RenderMeshAutoAssigned.py b/AutomatedTesting/Gem/PythonTests/physics/C14861501_PhysXCollider_RenderMeshAutoAssigned.py index 3c99f35870..afa0173583 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14861501_PhysXCollider_RenderMeshAutoAssigned.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14861501_PhysXCollider_RenderMeshAutoAssigned.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861502_PhysXCollider_AssetAutoAssigned.py b/AutomatedTesting/Gem/PythonTests/physics/C14861502_PhysXCollider_AssetAutoAssigned.py index 6e7afc6e13..bd35678b07 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14861502_PhysXCollider_AssetAutoAssigned.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14861502_PhysXCollider_AssetAutoAssigned.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14861504_RenderMeshAsset_WithNoPxAsset.py b/AutomatedTesting/Gem/PythonTests/physics/C14861504_RenderMeshAsset_WithNoPxAsset.py index 4d5413a93c..ba7512db0d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14861504_RenderMeshAsset_WithNoPxAsset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14861504_RenderMeshAsset_WithNoPxAsset.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14902097_ScriptCanvas_PreUpdateEvent.py b/AutomatedTesting/Gem/PythonTests/physics/C14902097_ScriptCanvas_PreUpdateEvent.py index 119de51ca1..e04d744314 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14902097_ScriptCanvas_PreUpdateEvent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14902097_ScriptCanvas_PreUpdateEvent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14902098_ScriptCanvas_PostPhysicsUpdate.py b/AutomatedTesting/Gem/PythonTests/physics/C14902098_ScriptCanvas_PostPhysicsUpdate.py index 05fd44cfe0..c3bd1207ec 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14902098_ScriptCanvas_PostPhysicsUpdate.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14902098_ScriptCanvas_PostPhysicsUpdate.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14976307_Gravity_SetGravityWorks.py b/AutomatedTesting/Gem/PythonTests/physics/C14976307_Gravity_SetGravityWorks.py index a72091942d..6255a0403a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14976307_Gravity_SetGravityWorks.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14976307_Gravity_SetGravityWorks.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C14976308_ScriptCanvas_SetKinematicTargetTransform.py b/AutomatedTesting/Gem/PythonTests/physics/C14976308_ScriptCanvas_SetKinematicTargetTransform.py index b9fd33f178..f0c53968a8 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C14976308_ScriptCanvas_SetKinematicTargetTransform.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C14976308_ScriptCanvas_SetKinematicTargetTransform.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py b/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py index dcd789a697..ec71dbb8a3 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_after.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py b/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py index ef1351f32a..b774932802 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15096732_Material_DefaultLibraryUpdatedAcrossLevels_before.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096735_Materials_DefaultLibraryConsistency.py b/AutomatedTesting/Gem/PythonTests/physics/C15096735_Materials_DefaultLibraryConsistency.py index eac8a5080e..10a47058d7 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15096735_Materials_DefaultLibraryConsistency.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15096735_Materials_DefaultLibraryConsistency.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096737_Materials_DefaultMaterialLibraryChanges.py b/AutomatedTesting/Gem/PythonTests/physics/C15096737_Materials_DefaultMaterialLibraryChanges.py index 76bf1f5db8..6614e8b0da 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15096737_Materials_DefaultMaterialLibraryChanges.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15096737_Materials_DefaultMaterialLibraryChanges.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15096740_Material_LibraryUpdatedCorrectly.py b/AutomatedTesting/Gem/PythonTests/physics/C15096740_Material_LibraryUpdatedCorrectly.py index d60aa4e467..21b345e6be 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15096740_Material_LibraryUpdatedCorrectly.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15096740_Material_LibraryUpdatedCorrectly.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15308217_NoCrash_LevelSwitch.py b/AutomatedTesting/Gem/PythonTests/physics/C15308217_NoCrash_LevelSwitch.py index 23344bbbd6..f0a40aadb5 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15308217_NoCrash_LevelSwitch.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15308217_NoCrash_LevelSwitch.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15308221_Material_ComponentsInSyncWithLibrary.py b/AutomatedTesting/Gem/PythonTests/physics/C15308221_Material_ComponentsInSyncWithLibrary.py index 5e7143ea2d..1ff9659eff 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15308221_Material_ComponentsInSyncWithLibrary.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15308221_Material_ComponentsInSyncWithLibrary.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15425929_Undo_Redo.py b/AutomatedTesting/Gem/PythonTests/physics/C15425929_Undo_Redo.py index 8978194da7..d8044fed85 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15425929_Undo_Redo.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15425929_Undo_Redo.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15425935_Material_LibraryUpdatedAcrossLevels.py b/AutomatedTesting/Gem/PythonTests/physics/C15425935_Material_LibraryUpdatedAcrossLevels.py index 1093c04b72..689319e767 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15425935_Material_LibraryUpdatedAcrossLevels.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15425935_Material_LibraryUpdatedAcrossLevels.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py b/AutomatedTesting/Gem/PythonTests/physics/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py index 0e088451fa..4ee2969bfd 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15556261_PhysXMaterials_CharacterControllerMaterialAssignment.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15563573_Material_AddModifyDeleteOnCharacterController.py b/AutomatedTesting/Gem/PythonTests/physics/C15563573_Material_AddModifyDeleteOnCharacterController.py index 3363d27a72..bc2fc7855a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15563573_Material_AddModifyDeleteOnCharacterController.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15563573_Material_AddModifyDeleteOnCharacterController.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C15845879_ForceRegion_HighLinearDampingForce.py b/AutomatedTesting/Gem/PythonTests/physics/C15845879_ForceRegion_HighLinearDampingForce.py index 990acb3a9e..63bf163bb8 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C15845879_ForceRegion_HighLinearDampingForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C15845879_ForceRegion_HighLinearDampingForce.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C17411467_AddPhysxRagdollComponent.py b/AutomatedTesting/Gem/PythonTests/physics/C17411467_AddPhysxRagdollComponent.py index 147c447514..b5a74ecb26 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C17411467_AddPhysxRagdollComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C17411467_AddPhysxRagdollComponent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243580_Joints_Fixed2BodiesConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243580_Joints_Fixed2BodiesConstrained.py index 181e60c00c..82887a58bb 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243580_Joints_Fixed2BodiesConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243580_Joints_Fixed2BodiesConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243581_Joints_FixedBreakable.py b/AutomatedTesting/Gem/PythonTests/physics/C18243581_Joints_FixedBreakable.py index 9125ae3c77..645468ea07 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243581_Joints_FixedBreakable.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243581_Joints_FixedBreakable.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243582_Joints_FixedLeadFollowerCollide.py b/AutomatedTesting/Gem/PythonTests/physics/C18243582_Joints_FixedLeadFollowerCollide.py index afa146be29..3f26bd398b 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243582_Joints_FixedLeadFollowerCollide.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243582_Joints_FixedLeadFollowerCollide.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243583_Joints_Hinge2BodiesConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243583_Joints_Hinge2BodiesConstrained.py index 4aa2a62513..34876aa2ba 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243583_Joints_Hinge2BodiesConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243583_Joints_Hinge2BodiesConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243584_Joints_HingeSoftLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243584_Joints_HingeSoftLimitsConstrained.py index 9353704b2c..a00f5f05d2 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243584_Joints_HingeSoftLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243584_Joints_HingeSoftLimitsConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243585_Joints_HingeNoLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243585_Joints_HingeNoLimitsConstrained.py index 34ed26a1f8..c9c5b57d7f 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243585_Joints_HingeNoLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243585_Joints_HingeNoLimitsConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243586_Joints_HingeLeadFollowerCollide.py b/AutomatedTesting/Gem/PythonTests/physics/C18243586_Joints_HingeLeadFollowerCollide.py index 434fe933f0..173b8a4206 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243586_Joints_HingeLeadFollowerCollide.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243586_Joints_HingeLeadFollowerCollide.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243587_Joints_HingeBreakable.py b/AutomatedTesting/Gem/PythonTests/physics/C18243587_Joints_HingeBreakable.py index 4bd97bd154..0a26ac4255 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243587_Joints_HingeBreakable.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243587_Joints_HingeBreakable.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243588_Joints_Ball2BodiesConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243588_Joints_Ball2BodiesConstrained.py index 500d6bd66e..67aba58945 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243588_Joints_Ball2BodiesConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243588_Joints_Ball2BodiesConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243589_Joints_BallSoftLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243589_Joints_BallSoftLimitsConstrained.py index ec23149478..4ef72d982a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243589_Joints_BallSoftLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243589_Joints_BallSoftLimitsConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243590_Joints_BallNoLimitsConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243590_Joints_BallNoLimitsConstrained.py index b27a5cb8e9..396dc590e3 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243590_Joints_BallNoLimitsConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243590_Joints_BallNoLimitsConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243591_Joints_BallLeadFollowerCollide.py b/AutomatedTesting/Gem/PythonTests/physics/C18243591_Joints_BallLeadFollowerCollide.py index 9a335f556b..9f5cf46c05 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243591_Joints_BallLeadFollowerCollide.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243591_Joints_BallLeadFollowerCollide.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243592_Joints_BallBreakable.py b/AutomatedTesting/Gem/PythonTests/physics/C18243592_Joints_BallBreakable.py index 312d0f3dbe..5d41ca47bd 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243592_Joints_BallBreakable.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243592_Joints_BallBreakable.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18243593_Joints_GlobalFrameConstrained.py b/AutomatedTesting/Gem/PythonTests/physics/C18243593_Joints_GlobalFrameConstrained.py index ceecb0644e..d282e131bb 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18243593_Joints_GlobalFrameConstrained.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18243593_Joints_GlobalFrameConstrained.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18977601_Material_FrictionCombinePriority.py b/AutomatedTesting/Gem/PythonTests/physics/C18977601_Material_FrictionCombinePriority.py index 5a25b447da..ff3dc73435 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18977601_Material_FrictionCombinePriority.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18977601_Material_FrictionCombinePriority.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C18981526_Material_RestitutionCombinePriority.py b/AutomatedTesting/Gem/PythonTests/physics/C18981526_Material_RestitutionCombinePriority.py index 9c91812f44..76396a6f44 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C18981526_Material_RestitutionCombinePriority.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C18981526_Material_RestitutionCombinePriority.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19536274_GetCollisionName_PrintsName.py b/AutomatedTesting/Gem/PythonTests/physics/C19536274_GetCollisionName_PrintsName.py index 40c3edf578..350b2d5114 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C19536274_GetCollisionName_PrintsName.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C19536274_GetCollisionName_PrintsName.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19536277_GetCollisionName_PrintsNothing.py b/AutomatedTesting/Gem/PythonTests/physics/C19536277_GetCollisionName_PrintsNothing.py index 6d6cf7c700..ad4245c53a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C19536277_GetCollisionName_PrintsNothing.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C19536277_GetCollisionName_PrintsNothing.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19578018_ShapeColliderWithNoShapeComponent.py b/AutomatedTesting/Gem/PythonTests/physics/C19578018_ShapeColliderWithNoShapeComponent.py index 3fcb8921be..b58d2a657e 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C19578018_ShapeColliderWithNoShapeComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C19578018_ShapeColliderWithNoShapeComponent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19578021_ShapeCollider_CanBeAdded.py b/AutomatedTesting/Gem/PythonTests/physics/C19578021_ShapeCollider_CanBeAdded.py index 47d916a4bf..a793e453f5 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C19578021_ShapeCollider_CanBeAdded.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C19578021_ShapeCollider_CanBeAdded.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C19723164_ShapeColliders_WontCrashEditor.py b/AutomatedTesting/Gem/PythonTests/physics/C19723164_ShapeColliders_WontCrashEditor.py index 12f900b297..89fd62a147 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C19723164_ShapeColliders_WontCrashEditor.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C19723164_ShapeColliders_WontCrashEditor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py index bb2d0821cb..940a6d3bca 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C24308873_CylinderShapeCollider_CollidesWithPhysXTerrain.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C28978033_Ragdoll_WorldBodyBusTests.py b/AutomatedTesting/Gem/PythonTests/physics/C28978033_Ragdoll_WorldBodyBusTests.py index 5016d78b46..3ecde5cc51 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C28978033_Ragdoll_WorldBodyBusTests.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C28978033_Ragdoll_WorldBodyBusTests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C29032500_EditorComponents_WorldBodyBusWorks.py b/AutomatedTesting/Gem/PythonTests/physics/C29032500_EditorComponents_WorldBodyBusWorks.py index 000223e26d..96f4c70643 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C29032500_EditorComponents_WorldBodyBusWorks.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C29032500_EditorComponents_WorldBodyBusWorks.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C3510642_Terrain_NotCollideWithTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/C3510642_Terrain_NotCollideWithTerrain.py index 66d6131ad0..f225ee1422 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C3510642_Terrain_NotCollideWithTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C3510642_Terrain_NotCollideWithTerrain.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C3510644_Collider_CollisionGroups.py b/AutomatedTesting/Gem/PythonTests/physics/C3510644_Collider_CollisionGroups.py index 4a2c6e0704..76cb34a1eb 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C3510644_Collider_CollisionGroups.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C3510644_Collider_CollisionGroups.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044455_Material_libraryChangesInstantly.py b/AutomatedTesting/Gem/PythonTests/physics/C4044455_Material_libraryChangesInstantly.py index 0a1b0b9f2f..b15999a1ae 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044455_Material_libraryChangesInstantly.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044455_Material_libraryChangesInstantly.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044456_Material_FrictionCombine.py b/AutomatedTesting/Gem/PythonTests/physics/C4044456_Material_FrictionCombine.py index badf00832b..0ee96b1818 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044456_Material_FrictionCombine.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044456_Material_FrictionCombine.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044457_Material_RestitutionCombine.py b/AutomatedTesting/Gem/PythonTests/physics/C4044457_Material_RestitutionCombine.py index a9dbcc0259..6c411d6227 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044457_Material_RestitutionCombine.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044457_Material_RestitutionCombine.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044459_Material_DynamicFriction.py b/AutomatedTesting/Gem/PythonTests/physics/C4044459_Material_DynamicFriction.py index 0702de1758..54a7deb30e 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044459_Material_DynamicFriction.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044459_Material_DynamicFriction.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044460_Material_StaticFriction.py b/AutomatedTesting/Gem/PythonTests/physics/C4044460_Material_StaticFriction.py index 5050504782..646ccfebad 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044460_Material_StaticFriction.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044460_Material_StaticFriction.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044461_Material_Restitution.py b/AutomatedTesting/Gem/PythonTests/physics/C4044461_Material_Restitution.py index a115e4f3ee..38f0122e7d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044461_Material_Restitution.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044461_Material_Restitution.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044694_Material_EmptyLibraryUsesDefault.py b/AutomatedTesting/Gem/PythonTests/physics/C4044694_Material_EmptyLibraryUsesDefault.py index cfc1e706e4..afee06a4e5 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044694_Material_EmptyLibraryUsesDefault.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044694_Material_EmptyLibraryUsesDefault.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py b/AutomatedTesting/Gem/PythonTests/physics/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py index 450763ba1e..b562201e73 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044695_PhysXCollider_AddMultipleSurfaceFbx.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4044697_Material_PerfaceMaterialValidation.py b/AutomatedTesting/Gem/PythonTests/physics/C4044697_Material_PerfaceMaterialValidation.py index a4b2c2f5cd..f95f8a5230 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4044697_Material_PerfaceMaterialValidation.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4044697_Material_PerfaceMaterialValidation.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4888315_Material_AddModifyDeleteOnCollider.py b/AutomatedTesting/Gem/PythonTests/physics/C4888315_Material_AddModifyDeleteOnCollider.py index 52f62f0d0c..8481548735 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4888315_Material_AddModifyDeleteOnCollider.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4888315_Material_AddModifyDeleteOnCollider.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925577_Materials_MaterialAssignedToTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/C4925577_Materials_MaterialAssignedToTerrain.py index e30f640d48..9d18131504 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4925577_Materials_MaterialAssignedToTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4925577_Materials_MaterialAssignedToTerrain.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925579_Material_AddModifyDeleteOnTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/C4925579_Material_AddModifyDeleteOnTerrain.py index fe44d124a6..f37c1d065e 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4925579_Material_AddModifyDeleteOnTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4925579_Material_AddModifyDeleteOnTerrain.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925580_Material_RagdollBonesMaterial.py b/AutomatedTesting/Gem/PythonTests/physics/C4925580_Material_RagdollBonesMaterial.py index c44a606cfc..477648da4c 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4925580_Material_RagdollBonesMaterial.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4925580_Material_RagdollBonesMaterial.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4925582_Material_AddModifyDeleteOnRagdollBones.py b/AutomatedTesting/Gem/PythonTests/physics/C4925582_Material_AddModifyDeleteOnRagdollBones.py index dd68521df9..4f661886d3 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4925582_Material_AddModifyDeleteOnRagdollBones.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4925582_Material_AddModifyDeleteOnRagdollBones.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976194_RigidBody_PhysXComponentIsValid.py b/AutomatedTesting/Gem/PythonTests/physics/C4976194_RigidBody_PhysXComponentIsValid.py index 53ece4ab19..d633207d7f 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976194_RigidBody_PhysXComponentIsValid.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976194_RigidBody_PhysXComponentIsValid.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976195_RigidBodies_InitialLinearVelocity.py b/AutomatedTesting/Gem/PythonTests/physics/C4976195_RigidBodies_InitialLinearVelocity.py index 27b024eb8a..7123ac66d6 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976195_RigidBodies_InitialLinearVelocity.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976195_RigidBodies_InitialLinearVelocity.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976197_RigidBodies_InitialAngularVelocity.py b/AutomatedTesting/Gem/PythonTests/physics/C4976197_RigidBodies_InitialAngularVelocity.py index 0ebd4ae010..cc24bc8390 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976197_RigidBodies_InitialAngularVelocity.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976197_RigidBodies_InitialAngularVelocity.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976199_RigidBodies_LinearDampingObjectMotion.py b/AutomatedTesting/Gem/PythonTests/physics/C4976199_RigidBodies_LinearDampingObjectMotion.py index 82e5a4fc63..2dba8d174a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976199_RigidBodies_LinearDampingObjectMotion.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976199_RigidBodies_LinearDampingObjectMotion.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976200_RigidBody_AngularDampingObjectRotation.py b/AutomatedTesting/Gem/PythonTests/physics/C4976200_RigidBody_AngularDampingObjectRotation.py index 5b525a4ebd..f7c88f0645 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976200_RigidBody_AngularDampingObjectRotation.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976200_RigidBody_AngularDampingObjectRotation.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976201_RigidBody_MassIsAssigned.py b/AutomatedTesting/Gem/PythonTests/physics/C4976201_RigidBody_MassIsAssigned.py index fd6c9a9647..3b17283309 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976201_RigidBody_MassIsAssigned.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976201_RigidBody_MassIsAssigned.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py b/AutomatedTesting/Gem/PythonTests/physics/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py index 30a43f34a6..13d06a3599 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976202_RigidBody_StopsWhenBelowKineticThreshold.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976204_Verify_Start_Asleep_Condition.py b/AutomatedTesting/Gem/PythonTests/physics/C4976204_Verify_Start_Asleep_Condition.py index 8c2ae7cb8b..8193aa4440 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976204_Verify_Start_Asleep_Condition.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976204_Verify_Start_Asleep_Condition.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976206_RigidBodies_GravityEnabledActive.py b/AutomatedTesting/Gem/PythonTests/physics/C4976206_RigidBodies_GravityEnabledActive.py index 1adeeb45dc..394c8466e7 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976206_RigidBodies_GravityEnabledActive.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976206_RigidBodies_GravityEnabledActive.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976207_PhysXRigidBodies_KinematicBehavior.py b/AutomatedTesting/Gem/PythonTests/physics/C4976207_PhysXRigidBodies_KinematicBehavior.py index 1e52521e0d..ddd87a1800 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976207_PhysXRigidBodies_KinematicBehavior.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976207_PhysXRigidBodies_KinematicBehavior.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976209_RigidBody_ComputesCOM.py b/AutomatedTesting/Gem/PythonTests/physics/C4976209_RigidBody_ComputesCOM.py index cc72f7dc89..9591f88175 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976209_RigidBody_ComputesCOM.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976209_RigidBody_ComputesCOM.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976210_COM_ManualSetting.py b/AutomatedTesting/Gem/PythonTests/physics/C4976210_COM_ManualSetting.py index 2950cebcaa..5769f5af09 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976210_COM_ManualSetting.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976210_COM_ManualSetting.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976218_RigidBodies_InertiaObjectsNotComputed.py b/AutomatedTesting/Gem/PythonTests/physics/C4976218_RigidBodies_InertiaObjectsNotComputed.py index f6ee61e63f..02b676a56d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976218_RigidBodies_InertiaObjectsNotComputed.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976218_RigidBodies_InertiaObjectsNotComputed.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976227_Collider_NewGroup.py b/AutomatedTesting/Gem/PythonTests/physics/C4976227_Collider_NewGroup.py index 0ea4881198..24a15cf656 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976227_Collider_NewGroup.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976227_Collider_NewGroup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976236_AddPhysxColliderComponent.py b/AutomatedTesting/Gem/PythonTests/physics/C4976236_AddPhysxColliderComponent.py index baef392352..238d2cd346 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976236_AddPhysxColliderComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976236_AddPhysxColliderComponent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py b/AutomatedTesting/Gem/PythonTests/physics/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py index 9a2f0bd7ad..e89c9fc605 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976242_Collision_SameCollisionlayerSameCollisiongroup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py b/AutomatedTesting/Gem/PythonTests/physics/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py index 196efd0be0..33b9060032 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976243_Collision_SameCollisionGroupDiffCollisionLayers.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976244_Collider_SameGroupSameLayerCollision.py b/AutomatedTesting/Gem/PythonTests/physics/C4976244_Collider_SameGroupSameLayerCollision.py index 50f7ceacea..643bf3fe52 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976244_Collider_SameGroupSameLayerCollision.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976244_Collider_SameGroupSameLayerCollision.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4976245_PhysXCollider_CollisionLayerTest.py b/AutomatedTesting/Gem/PythonTests/physics/C4976245_PhysXCollider_CollisionLayerTest.py index 6701fdba06..5b8c23f702 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4976245_PhysXCollider_CollisionLayerTest.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4976245_PhysXCollider_CollisionLayerTest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982593_PhysXCollider_CollisionLayerTest.py b/AutomatedTesting/Gem/PythonTests/physics/C4982593_PhysXCollider_CollisionLayerTest.py index 29d9e372bb..8d18f5adb9 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982593_PhysXCollider_CollisionLayerTest.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982593_PhysXCollider_CollisionLayerTest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982595_Collider_TriggerDisablesCollision.py b/AutomatedTesting/Gem/PythonTests/physics/C4982595_Collider_TriggerDisablesCollision.py index 08f0f0ca58..094db2350a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982595_Collider_TriggerDisablesCollision.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982595_Collider_TriggerDisablesCollision.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982797_Collider_ColliderOffset.py b/AutomatedTesting/Gem/PythonTests/physics/C4982797_Collider_ColliderOffset.py index 61480afa51..d5b3ef2235 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982797_Collider_ColliderOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982797_Collider_ColliderOffset.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982798_Collider_ColliderRotationOffset.py b/AutomatedTesting/Gem/PythonTests/physics/C4982798_Collider_ColliderRotationOffset.py index 3c7c4939ba..9a90d9487d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982798_Collider_ColliderRotationOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982798_Collider_ColliderRotationOffset.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982800_PhysXColliderShape_CanBeSelected.py b/AutomatedTesting/Gem/PythonTests/physics/C4982800_PhysXColliderShape_CanBeSelected.py index 2cebd5f195..f7a033e71b 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982800_PhysXColliderShape_CanBeSelected.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982800_PhysXColliderShape_CanBeSelected.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982801_PhysXColliderShape_CanBeSelected.py b/AutomatedTesting/Gem/PythonTests/physics/C4982801_PhysXColliderShape_CanBeSelected.py index b231b68e62..dc07dd9b5b 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982801_PhysXColliderShape_CanBeSelected.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982801_PhysXColliderShape_CanBeSelected.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982802_PhysXColliderShape_CanBeSelected.py b/AutomatedTesting/Gem/PythonTests/physics/C4982802_PhysXColliderShape_CanBeSelected.py index 2a22460a02..3995adeb23 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982802_PhysXColliderShape_CanBeSelected.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982802_PhysXColliderShape_CanBeSelected.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C4982803_Enable_PxMesh_Option.py b/AutomatedTesting/Gem/PythonTests/physics/C4982803_Enable_PxMesh_Option.py index 2b0ab6e118..3ddf222fa3 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C4982803_Enable_PxMesh_Option.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C4982803_Enable_PxMesh_Option.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5296614_PhysXMaterial_ColliderShape.py b/AutomatedTesting/Gem/PythonTests/physics/C5296614_PhysXMaterial_ColliderShape.py index 28c5f71f2e..f758c75f2b 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5296614_PhysXMaterial_ColliderShape.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5296614_PhysXMaterial_ColliderShape.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5340400_RigidBody_ManualMomentOfInertia.py b/AutomatedTesting/Gem/PythonTests/physics/C5340400_RigidBody_ManualMomentOfInertia.py index e81c3cfe26..b8694efe2d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5340400_RigidBody_ManualMomentOfInertia.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5340400_RigidBody_ManualMomentOfInertia.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py b/AutomatedTesting/Gem/PythonTests/physics/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py index 0bc268d8ee..31ece7beae 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5689518_PhysXTerrain_CollidesWithPhysXTerrain.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py b/AutomatedTesting/Gem/PythonTests/physics/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py index 00eff5722c..b4a9115626 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5689522_Physxterrain_AddPhysxterrainNoEditorCrash.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689524_MultipleTerrains_CheckWarningInConsole.py b/AutomatedTesting/Gem/PythonTests/physics/C5689524_MultipleTerrains_CheckWarningInConsole.py index 03c18ae017..b4c7901c52 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689524_MultipleTerrains_CheckWarningInConsole.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5689524_MultipleTerrains_CheckWarningInConsole.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689528_Terrain_MultipleTerrainComponents.py b/AutomatedTesting/Gem/PythonTests/physics/C5689528_Terrain_MultipleTerrainComponents.py index 47ea3b94b6..c0d245075e 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689528_Terrain_MultipleTerrainComponents.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5689528_Terrain_MultipleTerrainComponents.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py b/AutomatedTesting/Gem/PythonTests/physics/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py index d2da06af69..b3ed10c69f 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5689529_Verify_Terrain_RigidBody_Collider_Mesh.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5689531_Warning_TerrainSliceTerrainComponent.py b/AutomatedTesting/Gem/PythonTests/physics/C5689531_Warning_TerrainSliceTerrainComponent.py index cc43338e66..3935d213b4 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5689531_Warning_TerrainSliceTerrainComponent.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5689531_Warning_TerrainSliceTerrainComponent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932040_ForceRegion_CubeExertsWorldForce.py b/AutomatedTesting/Gem/PythonTests/physics/C5932040_ForceRegion_CubeExertsWorldForce.py index 4fc70612e4..ba4836eda1 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932040_ForceRegion_CubeExertsWorldForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5932040_ForceRegion_CubeExertsWorldForce.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py index f54ba0a891..0cbd82303d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5932041_PhysXForceRegion_LocalSpaceForceOnRigidBodies.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932042_PhysXForceRegion_LinearDamping.py b/AutomatedTesting/Gem/PythonTests/physics/C5932042_PhysXForceRegion_LinearDamping.py index cc15b23b07..e48a8d3ef0 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932042_PhysXForceRegion_LinearDamping.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5932042_PhysXForceRegion_LinearDamping.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932043_ForceRegion_SimpleDragOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/C5932043_ForceRegion_SimpleDragOnRigidBodies.py index c5cb305563..7975eaf036 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932043_ForceRegion_SimpleDragOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5932043_ForceRegion_SimpleDragOnRigidBodies.py @@ -1,6 +1,6 @@ # coding=utf-8 """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932044_ForceRegion_PointForceOnRigidBody.py b/AutomatedTesting/Gem/PythonTests/physics/C5932044_ForceRegion_PointForceOnRigidBody.py index ad104b2289..22c8fabb53 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932044_ForceRegion_PointForceOnRigidBody.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5932044_ForceRegion_PointForceOnRigidBody.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5932045_ForceRegion_Spline.py b/AutomatedTesting/Gem/PythonTests/physics/C5932045_ForceRegion_Spline.py index cbc65529fc..4bec128c58 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5932045_ForceRegion_Spline.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5932045_ForceRegion_Spline.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959759_RigidBody_ForceRegionSpherePointForce.py b/AutomatedTesting/Gem/PythonTests/physics/C5959759_RigidBody_ForceRegionSpherePointForce.py index 45eab62c8b..146a7bf456 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959759_RigidBody_ForceRegionSpherePointForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959759_RigidBody_ForceRegionSpherePointForce.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959760_PhysXForceRegion_PointForceExertion.py b/AutomatedTesting/Gem/PythonTests/physics/C5959760_PhysXForceRegion_PointForceExertion.py index db341d0985..013edee626 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959760_PhysXForceRegion_PointForceExertion.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959760_PhysXForceRegion_PointForceExertion.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959761_ForceRegion_PhysAssetExertsPointForce.py b/AutomatedTesting/Gem/PythonTests/physics/C5959761_ForceRegion_PhysAssetExertsPointForce.py index 2aa1584799..0e118d43a6 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959761_ForceRegion_PhysAssetExertsPointForce.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959761_ForceRegion_PhysAssetExertsPointForce.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959763_ForceRegion_ForceRegionImpulsesCube.py b/AutomatedTesting/Gem/PythonTests/physics/C5959763_ForceRegion_ForceRegionImpulsesCube.py index 90e974e6d1..eb87e05c4d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959763_ForceRegion_ForceRegionImpulsesCube.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959763_ForceRegion_ForceRegionImpulsesCube.py @@ -1,6 +1,6 @@ # coding=utf-8 """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py b/AutomatedTesting/Gem/PythonTests/physics/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py index 35742175c8..9a5271836d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959764_ForceRegion_ForceRegionImpulsesCapsule.py @@ -1,6 +1,6 @@ # coding=utf-8 """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959765_ForceRegion_AssetGetsImpulsed.py b/AutomatedTesting/Gem/PythonTests/physics/C5959765_ForceRegion_AssetGetsImpulsed.py index 43e27d8467..ad198e346a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959765_ForceRegion_AssetGetsImpulsed.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959765_ForceRegion_AssetGetsImpulsed.py @@ -1,6 +1,6 @@ # coding=utf-8 """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959808_ForceRegion_PositionOffset.py b/AutomatedTesting/Gem/PythonTests/physics/C5959808_ForceRegion_PositionOffset.py index c7f336fe28..1b7962160a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959808_ForceRegion_PositionOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959808_ForceRegion_PositionOffset.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959809_ForceRegion_RotationalOffset.py b/AutomatedTesting/Gem/PythonTests/physics/C5959809_ForceRegion_RotationalOffset.py index 53f1fa2bc6..bdcd128412 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959809_ForceRegion_RotationalOffset.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959809_ForceRegion_RotationalOffset.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5959810_ForceRegion_ForceRegionCombinesForces.py b/AutomatedTesting/Gem/PythonTests/physics/C5959810_ForceRegion_ForceRegionCombinesForces.py index 1879465576..4ee29d3d1a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5959810_ForceRegion_ForceRegionCombinesForces.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5959810_ForceRegion_ForceRegionCombinesForces.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py b/AutomatedTesting/Gem/PythonTests/physics/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py index da6ef46e71..74a2a3e46e 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5968759_ForceRegion_ExertsSeveralForcesOnRigidBody.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C5968760_ForceRegion_CheckNetForceChange.py b/AutomatedTesting/Gem/PythonTests/physics/C5968760_ForceRegion_CheckNetForceChange.py index f10da33537..ed4019abe0 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C5968760_ForceRegion_CheckNetForceChange.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C5968760_ForceRegion_CheckNetForceChange.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6032082_Terrain_MultipleResolutionsValid.py b/AutomatedTesting/Gem/PythonTests/physics/C6032082_Terrain_MultipleResolutionsValid.py index 2e7c132444..e4e6a8276c 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6032082_Terrain_MultipleResolutionsValid.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6032082_Terrain_MultipleResolutionsValid.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090546_ForceRegion_SliceFileInstantiates.py b/AutomatedTesting/Gem/PythonTests/physics/C6090546_ForceRegion_SliceFileInstantiates.py index ba73153fd0..9fdcd08d8f 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090546_ForceRegion_SliceFileInstantiates.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090546_ForceRegion_SliceFileInstantiates.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090547_ForceRegion_ParentChildForceRegions.py b/AutomatedTesting/Gem/PythonTests/physics/C6090547_ForceRegion_ParentChildForceRegions.py index 4a0cedcde6..5c3f2c240a 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090547_ForceRegion_ParentChildForceRegions.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090547_ForceRegion_ParentChildForceRegions.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090550_ForceRegion_WorldSpaceForceNegative.py b/AutomatedTesting/Gem/PythonTests/physics/C6090550_ForceRegion_WorldSpaceForceNegative.py index de698a5d2d..036ca37d00 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090550_ForceRegion_WorldSpaceForceNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090550_ForceRegion_WorldSpaceForceNegative.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090551_ForceRegion_LocalSpaceForceNegative.py b/AutomatedTesting/Gem/PythonTests/physics/C6090551_ForceRegion_LocalSpaceForceNegative.py index 7ab32a8563..b883de48c9 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090551_ForceRegion_LocalSpaceForceNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090551_ForceRegion_LocalSpaceForceNegative.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090552_ForceRegion_LinearDampingNegative.py b/AutomatedTesting/Gem/PythonTests/physics/C6090552_ForceRegion_LinearDampingNegative.py index 7e72a4277a..eab28df6aa 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090552_ForceRegion_LinearDampingNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090552_ForceRegion_LinearDampingNegative.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py index 411dcec5e1..78a08664cf 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090553_ForceRegion_SimpleDragForceOnRigidBodies.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090554_ForceRegion_PointForceNegative.py b/AutomatedTesting/Gem/PythonTests/physics/C6090554_ForceRegion_PointForceNegative.py index 147b561f11..1ac781fdda 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090554_ForceRegion_PointForceNegative.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090554_ForceRegion_PointForceNegative.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6090555_ForceRegion_SplineFollowOnRigidBodies.py b/AutomatedTesting/Gem/PythonTests/physics/C6090555_ForceRegion_SplineFollowOnRigidBodies.py index 66adf2a20c..6f4d600c31 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6090555_ForceRegion_SplineFollowOnRigidBodies.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6090555_ForceRegion_SplineFollowOnRigidBodies.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6131473_StaticSlice_OnDynamicSliceSpawn.py b/AutomatedTesting/Gem/PythonTests/physics/C6131473_StaticSlice_OnDynamicSliceSpawn.py index 3f113c5c19..1053944513 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6131473_StaticSlice_OnDynamicSliceSpawn.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6131473_StaticSlice_OnDynamicSliceSpawn.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6224408_ScriptCanvas_EntitySpawn.py b/AutomatedTesting/Gem/PythonTests/physics/C6224408_ScriptCanvas_EntitySpawn.py index 31afbbcd8c..122c8d51aa 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6224408_ScriptCanvas_EntitySpawn.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6224408_ScriptCanvas_EntitySpawn.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6274125_ScriptCanvas_TriggerEvents.py b/AutomatedTesting/Gem/PythonTests/physics/C6274125_ScriptCanvas_TriggerEvents.py index b347442c6f..86c3929cd2 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6274125_ScriptCanvas_TriggerEvents.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6274125_ScriptCanvas_TriggerEvents.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/C6321601_Force_HighValuesDirectionAxes.py b/AutomatedTesting/Gem/PythonTests/physics/C6321601_Force_HighValuesDirectionAxes.py index fc780ec721..282d2a7a2f 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/C6321601_Force_HighValuesDirectionAxes.py +++ b/AutomatedTesting/Gem/PythonTests/physics/C6321601_Force_HighValuesDirectionAxes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt index 334f0c2eaa..a49ca2633b 100644 --- a/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/physics/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/physics/FileManagement.py b/AutomatedTesting/Gem/PythonTests/physics/FileManagement.py index a0494b9915..5bab5983a9 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/FileManagement.py +++ b/AutomatedTesting/Gem/PythonTests/physics/FileManagement.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/ImportPathHelper.py b/AutomatedTesting/Gem/PythonTests/physics/ImportPathHelper.py index 002553b096..fd068c3db2 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/ImportPathHelper.py +++ b/AutomatedTesting/Gem/PythonTests/physics/ImportPathHelper.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/JointsHelper.py b/AutomatedTesting/Gem/PythonTests/physics/JointsHelper.py index 0450eb6ba5..0461d8fbc0 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/JointsHelper.py +++ b/AutomatedTesting/Gem/PythonTests/physics/JointsHelper.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/Physmaterial_Editor.py b/AutomatedTesting/Gem/PythonTests/physics/Physmaterial_Editor.py index 8a96d5a5f8..f28908dc3b 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/Physmaterial_Editor.py +++ b/AutomatedTesting/Gem/PythonTests/physics/Physmaterial_Editor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py index a04372c30d..fba35bae03 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_InDevelopment.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py index d8796a5116..1895571fa5 100644 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Main.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py index 3bc8d80659..445b098f0e 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Periodic.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py index c7b085b6cb..a934702904 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Sandbox.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py index 8d5a4b239f..f26afa834c 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py +++ b/AutomatedTesting/Gem/PythonTests/physics/TestSuite_Utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Managed_Files.py b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Managed_Files.py index 038c41a6f6..9db106a82d 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Managed_Files.py +++ b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Managed_Files.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Physmaterial_Editor.py b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Physmaterial_Editor.py index 386028cd8c..3c43cecdb2 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Physmaterial_Editor.py +++ b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Physmaterial_Editor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Default.py b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Default.py index 75bf4415ee..ed193ecca8 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Default.py +++ b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Default.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Override.py b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Override.py index 75bf4415ee..ed193ecca8 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Override.py +++ b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_PhysxConfig_Override.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Tracer_PicksErrorsAndWarnings.py b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Tracer_PicksErrorsAndWarnings.py index 0a1e1596c3..1a29cd1522 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Tracer_PicksErrorsAndWarnings.py +++ b/AutomatedTesting/Gem/PythonTests/physics/UtilTest_Tracer_PicksErrorsAndWarnings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/physics/__init__.py b/AutomatedTesting/Gem/PythonTests/physics/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/AutomatedTesting/Gem/PythonTests/physics/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/physics/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/prefab/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/prefab/CMakeLists.txt index 0184a8b6d4..94ea4aa481 100644 --- a/AutomatedTesting/Gem/PythonTests/prefab/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/prefab/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/prefab/PrefabLevel_OpensLevelWithEntities.py b/AutomatedTesting/Gem/PythonTests/prefab/PrefabLevel_OpensLevelWithEntities.py index c367c7e531..73288a3249 100644 --- a/AutomatedTesting/Gem/PythonTests/prefab/PrefabLevel_OpensLevelWithEntities.py +++ b/AutomatedTesting/Gem/PythonTests/prefab/PrefabLevel_OpensLevelWithEntities.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/prefab/TestSuite_Main.py b/AutomatedTesting/Gem/PythonTests/prefab/TestSuite_Main.py index 15df6705e9..ee8dcf8956 100644 --- a/AutomatedTesting/Gem/PythonTests/prefab/TestSuite_Main.py +++ b/AutomatedTesting/Gem/PythonTests/prefab/TestSuite_Main.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/prefab/__init__.py b/AutomatedTesting/Gem/PythonTests/prefab/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/AutomatedTesting/Gem/PythonTests/prefab/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/prefab/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/scripting/CMakeLists.txt index 37c37595e9..4ebef2e77c 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/scripting/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleEntities.py b/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleEntities.py index 13b86900c1..b0e3570632 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleEntities.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleEntities.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleGraphs.py b/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleGraphs.py index 492d79bd10..909f7438ce 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleGraphs.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Debugger_HappyPath_TargetMultipleGraphs.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/EditMenu_Default_UndoRedo.py b/AutomatedTesting/Gem/PythonTests/scripting/EditMenu_Default_UndoRedo.py index 229fe7237e..1c2241f49b 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/EditMenu_Default_UndoRedo.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/EditMenu_Default_UndoRedo.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Entity_HappyPath_AddScriptCanvasComponent.py b/AutomatedTesting/Gem/PythonTests/scripting/Entity_HappyPath_AddScriptCanvasComponent.py index 88282ddc1c..13cb6ccf68 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Entity_HappyPath_AddScriptCanvasComponent.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Entity_HappyPath_AddScriptCanvasComponent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/FileMenu_Default_NewAndOpen.py b/AutomatedTesting/Gem/PythonTests/scripting/FileMenu_Default_NewAndOpen.py index 99e91ae7dc..b6ef00486b 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/FileMenu_Default_NewAndOpen.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/FileMenu_Default_NewAndOpen.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/GraphClose_Default_SavePrompt.py b/AutomatedTesting/Gem/PythonTests/scripting/GraphClose_Default_SavePrompt.py index 23d185c1da..0961c2b4fd 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/GraphClose_Default_SavePrompt.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/GraphClose_Default_SavePrompt.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Graph_HappyPath_ZoomInZoomOut.py b/AutomatedTesting/Gem/PythonTests/scripting/Graph_HappyPath_ZoomInZoomOut.py index b50626a6e3..1b2b5e9e27 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Graph_HappyPath_ZoomInZoomOut.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Graph_HappyPath_ZoomInZoomOut.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ImportPathHelper.py b/AutomatedTesting/Gem/PythonTests/scripting/ImportPathHelper.py index ec3f6c9a55..5dbfc92e10 100755 --- a/AutomatedTesting/Gem/PythonTests/scripting/ImportPathHelper.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ImportPathHelper.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/NewScriptEventButton_HappyPath_ContainsSCCategory.py b/AutomatedTesting/Gem/PythonTests/scripting/NewScriptEventButton_HappyPath_ContainsSCCategory.py index 6fc4ef2d4c..67949ed18d 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/NewScriptEventButton_HappyPath_ContainsSCCategory.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/NewScriptEventButton_HappyPath_ContainsSCCategory.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/NodeCategory_ExpandOnClick.py b/AutomatedTesting/Gem/PythonTests/scripting/NodeCategory_ExpandOnClick.py index 2efd0cd7db..642e9f135a 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/NodeCategory_ExpandOnClick.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/NodeCategory_ExpandOnClick.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/NodeInspector_HappyPath_VariableRenames.py b/AutomatedTesting/Gem/PythonTests/scripting/NodeInspector_HappyPath_VariableRenames.py index f9054b645c..4dbac1d214 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/NodeInspector_HappyPath_VariableRenames.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/NodeInspector_HappyPath_VariableRenames.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_CanSelectNode.py b/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_CanSelectNode.py index 60c09095ff..5cd6a37a79 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_CanSelectNode.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_CanSelectNode.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_ClearSelection.py b/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_ClearSelection.py index 56c98ee40d..b3bc12b9b5 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_ClearSelection.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_HappyPath_ClearSelection.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_SearchText_Deletion.py b/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_SearchText_Deletion.py index 9d2cdee6d9..9c241083ae 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_SearchText_Deletion.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/NodePalette_SearchText_Deletion.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Node_HappyPath_DuplicateNode.py b/AutomatedTesting/Gem/PythonTests/scripting/Node_HappyPath_DuplicateNode.py index 49a79ba8a3..cb112ee370 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Node_HappyPath_DuplicateNode.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Node_HappyPath_DuplicateNode.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Pane_Default_RetainOnSCRestart.py b/AutomatedTesting/Gem/PythonTests/scripting/Pane_Default_RetainOnSCRestart.py index 5ebc43419c..87c867d1d2 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Pane_Default_RetainOnSCRestart.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Pane_Default_RetainOnSCRestart.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_DocksProperly.py b/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_DocksProperly.py index ef9efa2208..4952eefc01 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_DocksProperly.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_DocksProperly.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_OpenCloseSuccessfully.py b/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_OpenCloseSuccessfully.py index 1c408d8107..223d1d0b0c 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_OpenCloseSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_OpenCloseSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_ResizesProperly.py b/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_ResizesProperly.py index edddd7b817..9eee529ad2 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_ResizesProperly.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Pane_HappyPath_ResizesProperly.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Pane_PropertiesChanged_RetainsOnRestart.py b/AutomatedTesting/Gem/PythonTests/scripting/Pane_PropertiesChanged_RetainsOnRestart.py index 8f2b1d3b64..78a925e9a6 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Pane_PropertiesChanged_RetainsOnRestart.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Pane_PropertiesChanged_RetainsOnRestart.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/Pane_Undocked_ClosesSuccessfully.py b/AutomatedTesting/Gem/PythonTests/scripting/Pane_Undocked_ClosesSuccessfully.py index f8d72d1189..cf9546f61f 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/Pane_Undocked_ClosesSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/Pane_Undocked_ClosesSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasComponent_OnEntityActivatedDeactivated_PrintMessage.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasComponent_OnEntityActivatedDeactivated_PrintMessage.py index 1ec780e707..601d71d01d 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasComponent_OnEntityActivatedDeactivated_PrintMessage.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasComponent_OnEntityActivatedDeactivated_PrintMessage.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasTools_Toggle_OpenCloseSuccess.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasTools_Toggle_OpenCloseSuccess.py index 5e5c045320..1f2994677a 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasTools_Toggle_OpenCloseSuccess.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvasTools_Toggle_OpenCloseSuccess.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_ChangingAssets_ComponentStable.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_ChangingAssets_ComponentStable.py index 1d381c2b29..ce7817e986 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_ChangingAssets_ComponentStable.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_ChangingAssets_ComponentStable.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoComponents_InteractSuccessfully.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoComponents_InteractSuccessfully.py index 2fd72972c0..fb189f8308 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoComponents_InteractSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoComponents_InteractSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoEntities_UseSimultaneously.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoEntities_UseSimultaneously.py index 9256d9b4a0..a547b78e86 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoEntities_UseSimultaneously.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptCanvas_TwoEntities_UseSimultaneously.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveMethod_UpdatesInSC.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveMethod_UpdatesInSC.py index 34fe71caa2..9ddd81e4e7 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveMethod_UpdatesInSC.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveMethod_UpdatesInSC.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveParameter_ActionsSuccessful.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveParameter_ActionsSuccessful.py index e7b7bba29c..9feefaa41a 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveParameter_ActionsSuccessful.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_AddRemoveParameter_ActionsSuccessful.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_HappyPath_CreatedWithoutError.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_HappyPath_CreatedWithoutError.py index f3c2ccb54b..a74ebb8cb0 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_HappyPath_CreatedWithoutError.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvent_HappyPath_CreatedWithoutError.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_AllParamDatatypes_CreationSuccess.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_AllParamDatatypes_CreationSuccess.py index 07dc27543d..ee7ec5ebc1 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_AllParamDatatypes_CreationSuccess.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_AllParamDatatypes_CreationSuccess.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_Default_SendReceiveSuccessfully.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_Default_SendReceiveSuccessfully.py index 2f5b73a067..d5897ba09e 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_Default_SendReceiveSuccessfully.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_Default_SendReceiveSuccessfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_HappyPath_SendReceiveAcrossMultiple.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_HappyPath_SendReceiveAcrossMultiple.py index eb0edee3da..3dc8b0bd24 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_HappyPath_SendReceiveAcrossMultiple.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_HappyPath_SendReceiveAcrossMultiple.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_ReturnSetType_Successfully.py b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_ReturnSetType_Successfully.py index 5d4edb94f3..aaca779575 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_ReturnSetType_Successfully.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/ScriptEvents_ReturnSetType_Successfully.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py index 783b8a3abc..ab22d06eb5 100755 --- a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py index 94e648e049..9d82b3c8db 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Sandbox.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_Default_CreateDeleteVars.py b/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_Default_CreateDeleteVars.py index b53d2a677c..163cf81812 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_Default_CreateDeleteVars.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_Default_CreateDeleteVars.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_UnpinVariableType_Works.py b/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_UnpinVariableType_Works.py index b0277aa042..c66febab25 100644 --- a/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_UnpinVariableType_Works.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/VariableManager_UnpinVariableType_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/scripting/__init__.py b/AutomatedTesting/Gem/PythonTests/scripting/__init__.py index ce5bb8503d..99aac69543 100755 --- a/AutomatedTesting/Gem/PythonTests/scripting/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt index 0c6baff6b6..6e91ae4ea4 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/smoke/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/smoke/Editor_NewExistingLevels_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/Editor_NewExistingLevels_Works.py index 98f08ab9fa..656bca0323 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/Editor_NewExistingLevels_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/Editor_NewExistingLevels_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/__init__.py b/AutomatedTesting/Gem/PythonTests/smoke/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBuilder_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBuilder_Works.py index 37b1a80f1c..02e36c93f3 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBuilder_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBuilder_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBundlerBatch_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBundlerBatch_Works.py index f03a56e489..48092accc7 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBundlerBatch_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetBundlerBatch_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetProcessorBatch_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetProcessorBatch_Works.py index dbb08f8150..ee8da64638 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetProcessorBatch_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AssetProcessorBatch_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AzTestRunner_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AzTestRunner_Works.py index 6d47ba87e7..98955fdfcb 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AzTestRunner_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_AzTestRunner_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_PythonBindingsExample_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_PythonBindingsExample_Works.py index f7b209d5f7..9d9b4fbefe 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_PythonBindingsExample_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_PythonBindingsExample_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py index 715754f229..525598a6dc 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py index 394a6c8336..ae14edcae5 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py index bcb78b9c8e..80da990332 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_RemoteConsole_LoadLevel_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_StaticTools_GenPakShaders_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_StaticTools_GenPakShaders_Works.py index db61f5e031..ec79bb4a15 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_StaticTools_GenPakShaders_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_StaticTools_GenPakShaders_Works.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_UIApps_AssetProcessor_CheckIdle.py b/AutomatedTesting/Gem/PythonTests/smoke/test_UIApps_AssetProcessor_CheckIdle.py index e26b1a3558..d4e11e20cf 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_UIApps_AssetProcessor_CheckIdle.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_UIApps_AssetProcessor_CheckIdle.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/AutomatedTesting/Gem/PythonTests/streaming/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/streaming/CMakeLists.txt index 4639aff70e..d6f3f30ba9 100644 --- a/AutomatedTesting/Gem/PythonTests/streaming/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/streaming/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/AutomatedTesting/Gem/PythonTests/streaming/__init__.py b/AutomatedTesting/Gem/PythonTests/streaming/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/AutomatedTesting/Gem/PythonTests/streaming/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/streaming/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/streaming/benchmark/__init__.py b/AutomatedTesting/Gem/PythonTests/streaming/benchmark/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/AutomatedTesting/Gem/PythonTests/streaming/benchmark/__init__.py +++ b/AutomatedTesting/Gem/PythonTests/streaming/benchmark/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Gem/PythonTests/streaming/benchmark/asset_load_benchmark_test.py b/AutomatedTesting/Gem/PythonTests/streaming/benchmark/asset_load_benchmark_test.py index 8fd20145fc..a2c41f1073 100755 --- a/AutomatedTesting/Gem/PythonTests/streaming/benchmark/asset_load_benchmark_test.py +++ b/AutomatedTesting/Gem/PythonTests/streaming/benchmark/asset_load_benchmark_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/Levels/AI/NavigationComponentTest/NavigationAgent.lua b/AutomatedTesting/Levels/AI/NavigationComponentTest/NavigationAgent.lua index e0c4d60578..4008a9987c 100644 --- a/AutomatedTesting/Levels/AI/NavigationComponentTest/NavigationAgent.lua +++ b/AutomatedTesting/Levels/AI/NavigationComponentTest/NavigationAgent.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/Levels/AWS/Metrics/Script/Metrics.lua b/AutomatedTesting/Levels/AWS/Metrics/Script/Metrics.lua index dce6522eda..feb806b43f 100644 --- a/AutomatedTesting/Levels/AWS/Metrics/Script/Metrics.lua +++ b/AutomatedTesting/Levels/AWS/Metrics/Script/Metrics.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/LuaScripts/instance_counter_blender.lua b/AutomatedTesting/LuaScripts/instance_counter_blender.lua index 49cf68e67f..efb267b949 100644 --- a/AutomatedTesting/LuaScripts/instance_counter_blender.lua +++ b/AutomatedTesting/LuaScripts/instance_counter_blender.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/Materials/UVs.azsl b/AutomatedTesting/Materials/UVs.azsl index 2894d4de85..8a818bf4d3 100644 --- a/AutomatedTesting/Materials/UVs.azsl +++ b/AutomatedTesting/Materials/UVs.azsl @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/ShaderLib/scenesrg.srgi b/AutomatedTesting/ShaderLib/scenesrg.srgi index 77a95b2ba6..00ff9d3ce0 100644 --- a/AutomatedTesting/ShaderLib/scenesrg.srgi +++ b/AutomatedTesting/ShaderLib/scenesrg.srgi @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/ShaderLib/viewsrg.srgi b/AutomatedTesting/ShaderLib/viewsrg.srgi index 014b0a271d..f765abf5b0 100644 --- a/AutomatedTesting/ShaderLib/viewsrg.srgi +++ b/AutomatedTesting/ShaderLib/viewsrg.srgi @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/Shaders/CommonVS.azsli b/AutomatedTesting/Shaders/CommonVS.azsli index d138970aa8..129800b66d 100644 --- a/AutomatedTesting/Shaders/CommonVS.azsli +++ b/AutomatedTesting/Shaders/CommonVS.azsli @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/AutomatedTesting/TestAssets/test_chunks_builder.py b/AutomatedTesting/TestAssets/test_chunks_builder.py index d8134fb259..ab9422ebbf 100755 --- a/AutomatedTesting/TestAssets/test_chunks_builder.py +++ b/AutomatedTesting/TestAssets/test_chunks_builder.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/AutomatedTesting/test1.lua b/AutomatedTesting/test1.lua index 6846eda0a7..b98529b28e 100644 --- a/AutomatedTesting/test1.lua +++ b/AutomatedTesting/test1.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/AutomatedTesting/test2.lua b/AutomatedTesting/test2.lua index c76d79397d..0a678f256d 100644 --- a/AutomatedTesting/test2.lua +++ b/AutomatedTesting/test2.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/CMakeLists.txt b/CMakeLists.txt index 497f56f56d..282b8c03b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/CMakeLists.txt b/Code/CMakeLists.txt index 16984a2a4a..6dcb99edb4 100644 --- a/Code/CMakeLists.txt +++ b/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/2DViewport.cpp b/Code/Editor/2DViewport.cpp index 999baddf95..2c256237e3 100644 --- a/Code/Editor/2DViewport.cpp +++ b/Code/Editor/2DViewport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/2DViewport.h b/Code/Editor/2DViewport.h index 3196dc7c5d..208984c275 100644 --- a/Code/Editor/2DViewport.h +++ b/Code/Editor/2DViewport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AboutDialog.cpp b/Code/Editor/AboutDialog.cpp index 88b4d0bdbb..f7385b39b7 100644 --- a/Code/Editor/AboutDialog.cpp +++ b/Code/Editor/AboutDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AboutDialog.h b/Code/Editor/AboutDialog.h index 74b4c491f2..0c5fb2c158 100644 --- a/Code/Editor/AboutDialog.h +++ b/Code/Editor/AboutDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ActionManager.cpp b/Code/Editor/ActionManager.cpp index b0e589df01..9611e23d87 100644 --- a/Code/Editor/ActionManager.cpp +++ b/Code/Editor/ActionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ActionManager.h b/Code/Editor/ActionManager.h index 01044c4b00..49f38ec255 100644 --- a/Code/Editor/ActionManager.h +++ b/Code/Editor/ActionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/AnimationBipedBoneNames.cpp b/Code/Editor/Animation/AnimationBipedBoneNames.cpp index 89be5ecaf1..14823f6923 100644 --- a/Code/Editor/Animation/AnimationBipedBoneNames.cpp +++ b/Code/Editor/Animation/AnimationBipedBoneNames.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/AnimationBipedBoneNames.h b/Code/Editor/Animation/AnimationBipedBoneNames.h index e733a02e6e..fd5918c936 100644 --- a/Code/Editor/Animation/AnimationBipedBoneNames.h +++ b/Code/Editor/Animation/AnimationBipedBoneNames.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/SkeletonHierarchy.cpp b/Code/Editor/Animation/SkeletonHierarchy.cpp index 67387d998b..b0bb9fc05b 100644 --- a/Code/Editor/Animation/SkeletonHierarchy.cpp +++ b/Code/Editor/Animation/SkeletonHierarchy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/SkeletonHierarchy.h b/Code/Editor/Animation/SkeletonHierarchy.h index 99f54e1b84..bd2978b972 100644 --- a/Code/Editor/Animation/SkeletonHierarchy.h +++ b/Code/Editor/Animation/SkeletonHierarchy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/SkeletonMapper.cpp b/Code/Editor/Animation/SkeletonMapper.cpp index 610e707a01..63206cb56f 100644 --- a/Code/Editor/Animation/SkeletonMapper.cpp +++ b/Code/Editor/Animation/SkeletonMapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/SkeletonMapper.h b/Code/Editor/Animation/SkeletonMapper.h index cc5a2ec69d..8c990b9d73 100644 --- a/Code/Editor/Animation/SkeletonMapper.h +++ b/Code/Editor/Animation/SkeletonMapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/SkeletonMapperOperator.cpp b/Code/Editor/Animation/SkeletonMapperOperator.cpp index f528d336c4..6245f0e3b6 100644 --- a/Code/Editor/Animation/SkeletonMapperOperator.cpp +++ b/Code/Editor/Animation/SkeletonMapperOperator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Animation/SkeletonMapperOperator.h b/Code/Editor/Animation/SkeletonMapperOperator.h index 42e979bcaf..4435c2b291 100644 --- a/Code/Editor/Animation/SkeletonMapperOperator.h +++ b/Code/Editor/Animation/SkeletonMapperOperator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AnimationContext.cpp b/Code/Editor/AnimationContext.cpp index 3d740fca2c..f7d3e4191c 100644 --- a/Code/Editor/AnimationContext.cpp +++ b/Code/Editor/AnimationContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AnimationContext.h b/Code/Editor/AnimationContext.h index 8abe061d1f..411f7ed479 100644 --- a/Code/Editor/AnimationContext.h +++ b/Code/Editor/AnimationContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp b/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp index 495b5e38e1..21ef4bb999 100644 --- a/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp +++ b/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.h b/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.h index 7f3b5221b6..07385ad4b3 100644 --- a/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.h +++ b/Code/Editor/AssetDatabase/AssetDatabaseLocationListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetEditor/AssetEditorRequestsHandler.cpp b/Code/Editor/AssetEditor/AssetEditorRequestsHandler.cpp index 783f385294..9f663dbcb3 100644 --- a/Code/Editor/AssetEditor/AssetEditorRequestsHandler.cpp +++ b/Code/Editor/AssetEditor/AssetEditorRequestsHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetEditor/AssetEditorRequestsHandler.h b/Code/Editor/AssetEditor/AssetEditorRequestsHandler.h index 0c7080b250..0f5c61f687 100644 --- a/Code/Editor/AssetEditor/AssetEditorRequestsHandler.h +++ b/Code/Editor/AssetEditor/AssetEditorRequestsHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetEditor/AssetEditorWindow.cpp b/Code/Editor/AssetEditor/AssetEditorWindow.cpp index 98cf12a1f9..5af816d28f 100644 --- a/Code/Editor/AssetEditor/AssetEditorWindow.cpp +++ b/Code/Editor/AssetEditor/AssetEditorWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetEditor/AssetEditorWindow.h b/Code/Editor/AssetEditor/AssetEditorWindow.h index 8ae4413029..3b8695f8d4 100644 --- a/Code/Editor/AssetEditor/AssetEditorWindow.h +++ b/Code/Editor/AssetEditor/AssetEditorWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp index d476a0e0d0..f1637f2d46 100644 --- a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp +++ b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h index c3e4f3bd53..949459b6ee 100644 --- a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h +++ b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterDragAndDropHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp index 4ef45c36c5..43074c9c02 100644 --- a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp +++ b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h index b95db3d6e4..ba67dade3f 100644 --- a/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h +++ b/Code/Editor/AssetImporter/AssetImporterManager/AssetImporterManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp b/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp index 9a1af081ac..bbd3d6239f 100644 --- a/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp +++ b/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h b/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h index 82380437b0..c2cff5ec44 100644 --- a/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h +++ b/Code/Editor/AssetImporter/UI/FilesAlreadyExistDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp b/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp index 9c2caee7ab..759a28179e 100644 --- a/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp +++ b/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.h b/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.h index 3d7cf0f592..5c9c0e69c1 100644 --- a/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.h +++ b/Code/Editor/AssetImporter/UI/ProcessingAssetsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/UI/SelectDestinationDialog.cpp b/Code/Editor/AssetImporter/UI/SelectDestinationDialog.cpp index 03c10e4e9b..34723a6747 100644 --- a/Code/Editor/AssetImporter/UI/SelectDestinationDialog.cpp +++ b/Code/Editor/AssetImporter/UI/SelectDestinationDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AssetImporter/UI/SelectDestinationDialog.h b/Code/Editor/AssetImporter/UI/SelectDestinationDialog.h index ecb7c4f277..119244ac55 100644 --- a/Code/Editor/AssetImporter/UI/SelectDestinationDialog.h +++ b/Code/Editor/AssetImporter/UI/SelectDestinationDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AzAssetBrowser/AssetBrowserWindow.cpp b/Code/Editor/AzAssetBrowser/AssetBrowserWindow.cpp index 452e30f762..885d3583c4 100644 --- a/Code/Editor/AzAssetBrowser/AssetBrowserWindow.cpp +++ b/Code/Editor/AzAssetBrowser/AssetBrowserWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AzAssetBrowser/AssetBrowserWindow.h b/Code/Editor/AzAssetBrowser/AssetBrowserWindow.h index fe0f58629d..9a4b7f17ad 100644 --- a/Code/Editor/AzAssetBrowser/AssetBrowserWindow.h +++ b/Code/Editor/AzAssetBrowser/AssetBrowserWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp index 4a604c3fd1..ae061e5b35 100644 --- a/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp +++ b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h index f7f7d54fb9..59507483bc 100644 --- a/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h +++ b/Code/Editor/AzAssetBrowser/AzAssetBrowserRequestHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp index 52673d70d2..8d48e48a64 100644 --- a/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp +++ b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.h b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.h index fa6179a269..079286cddd 100644 --- a/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.h +++ b/Code/Editor/AzAssetBrowser/AzAssetBrowserWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/BaseLibrary.cpp b/Code/Editor/BaseLibrary.cpp index 25e72e1604..f048001fb1 100644 --- a/Code/Editor/BaseLibrary.cpp +++ b/Code/Editor/BaseLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/BaseLibrary.h b/Code/Editor/BaseLibrary.h index ce18af55ee..74ee4267bf 100644 --- a/Code/Editor/BaseLibrary.h +++ b/Code/Editor/BaseLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/BaseLibraryItem.cpp b/Code/Editor/BaseLibraryItem.cpp index 65b46c2e8a..ffb3dea74b 100644 --- a/Code/Editor/BaseLibraryItem.cpp +++ b/Code/Editor/BaseLibraryItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/BaseLibraryItem.h b/Code/Editor/BaseLibraryItem.h index 5579cea67f..d41439dce8 100644 --- a/Code/Editor/BaseLibraryItem.h +++ b/Code/Editor/BaseLibraryItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/BaseLibraryManager.cpp b/Code/Editor/BaseLibraryManager.cpp index 925bcd0868..038af3eca7 100644 --- a/Code/Editor/BaseLibraryManager.cpp +++ b/Code/Editor/BaseLibraryManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/BaseLibraryManager.h b/Code/Editor/BaseLibraryManager.h index 3ec3412d01..50c7c2b3bd 100644 --- a/Code/Editor/BaseLibraryManager.h +++ b/Code/Editor/BaseLibraryManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CMakeLists.txt b/Code/Editor/CMakeLists.txt index 8efe83be3d..8a5f35fb92 100644 --- a/Code/Editor/CMakeLists.txt +++ b/Code/Editor/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/CVarMenu.cpp b/Code/Editor/CVarMenu.cpp index 1e8da671f0..db34031337 100644 --- a/Code/Editor/CVarMenu.cpp +++ b/Code/Editor/CVarMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CVarMenu.h b/Code/Editor/CVarMenu.h index 24562e6d6d..dd51e4c4ac 100644 --- a/Code/Editor/CVarMenu.h +++ b/Code/Editor/CVarMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CheckOutDialog.cpp b/Code/Editor/CheckOutDialog.cpp index 7af48b83c2..b744cd9d2e 100644 --- a/Code/Editor/CheckOutDialog.cpp +++ b/Code/Editor/CheckOutDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CheckOutDialog.h b/Code/Editor/CheckOutDialog.h index ae6be16159..d986a42c77 100644 --- a/Code/Editor/CheckOutDialog.h +++ b/Code/Editor/CheckOutDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Clipboard.cpp b/Code/Editor/Clipboard.cpp index 47be284c6d..3b50dd4510 100644 --- a/Code/Editor/Clipboard.cpp +++ b/Code/Editor/Clipboard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Clipboard.h b/Code/Editor/Clipboard.h index 6cf1fb1cc8..ccca0db028 100644 --- a/Code/Editor/Clipboard.h +++ b/Code/Editor/Clipboard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Commands/CommandManager.cpp b/Code/Editor/Commands/CommandManager.cpp index 1cef044afb..cda76eb152 100644 --- a/Code/Editor/Commands/CommandManager.cpp +++ b/Code/Editor/Commands/CommandManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Commands/CommandManager.h b/Code/Editor/Commands/CommandManager.h index 21ffc85d0f..96808ee59f 100644 --- a/Code/Editor/Commands/CommandManager.h +++ b/Code/Editor/Commands/CommandManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Commands/CommandManagerBus.h b/Code/Editor/Commands/CommandManagerBus.h index 6c37259c98..ee9eaf7be2 100644 --- a/Code/Editor/Commands/CommandManagerBus.h +++ b/Code/Editor/Commands/CommandManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ConfigGroup.cpp b/Code/Editor/ConfigGroup.cpp index a802bb92a5..fd1a18a36c 100644 --- a/Code/Editor/ConfigGroup.cpp +++ b/Code/Editor/ConfigGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ConfigGroup.h b/Code/Editor/ConfigGroup.h index 71d90cbfd0..de970f16f7 100644 --- a/Code/Editor/ConfigGroup.h +++ b/Code/Editor/ConfigGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ConsoleDialog.cpp b/Code/Editor/ConsoleDialog.cpp index 1875ad2f4a..42afc02b96 100644 --- a/Code/Editor/ConsoleDialog.cpp +++ b/Code/Editor/ConsoleDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ConsoleDialog.h b/Code/Editor/ConsoleDialog.h index 24bc78b677..717334e460 100644 --- a/Code/Editor/ConsoleDialog.h +++ b/Code/Editor/ConsoleDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ControlMRU.cpp b/Code/Editor/ControlMRU.cpp index 17ff481101..9254965805 100644 --- a/Code/Editor/ControlMRU.cpp +++ b/Code/Editor/ControlMRU.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ControlMRU.h b/Code/Editor/ControlMRU.h index 11fe5d08e8..4adf769942 100644 --- a/Code/Editor/ControlMRU.h +++ b/Code/Editor/ControlMRU.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/BitmapToolTip.cpp b/Code/Editor/Controls/BitmapToolTip.cpp index 120d2106dd..e60a845d14 100644 --- a/Code/Editor/Controls/BitmapToolTip.cpp +++ b/Code/Editor/Controls/BitmapToolTip.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/BitmapToolTip.h b/Code/Editor/Controls/BitmapToolTip.h index 917b459abf..291ca59073 100644 --- a/Code/Editor/Controls/BitmapToolTip.h +++ b/Code/Editor/Controls/BitmapToolTip.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ColorGradientCtrl.cpp b/Code/Editor/Controls/ColorGradientCtrl.cpp index be838eb5d3..e7abbdc647 100644 --- a/Code/Editor/Controls/ColorGradientCtrl.cpp +++ b/Code/Editor/Controls/ColorGradientCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ColorGradientCtrl.h b/Code/Editor/Controls/ColorGradientCtrl.h index 7c11c639b1..9e127062ef 100644 --- a/Code/Editor/Controls/ColorGradientCtrl.h +++ b/Code/Editor/Controls/ColorGradientCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ConsoleSCB.cpp b/Code/Editor/Controls/ConsoleSCB.cpp index 98346e44d3..32ec6506b1 100644 --- a/Code/Editor/Controls/ConsoleSCB.cpp +++ b/Code/Editor/Controls/ConsoleSCB.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ConsoleSCB.h b/Code/Editor/Controls/ConsoleSCB.h index 2230495ac9..faa8c06124 100644 --- a/Code/Editor/Controls/ConsoleSCB.h +++ b/Code/Editor/Controls/ConsoleSCB.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ConsoleSCBMFC.cpp b/Code/Editor/Controls/ConsoleSCBMFC.cpp index 351e99190b..d61bee554d 100644 --- a/Code/Editor/Controls/ConsoleSCBMFC.cpp +++ b/Code/Editor/Controls/ConsoleSCBMFC.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ConsoleSCBMFC.h b/Code/Editor/Controls/ConsoleSCBMFC.h index 421e3a4e95..faaaf4f626 100644 --- a/Code/Editor/Controls/ConsoleSCBMFC.h +++ b/Code/Editor/Controls/ConsoleSCBMFC.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/FolderTreeCtrl.cpp b/Code/Editor/Controls/FolderTreeCtrl.cpp index a53299c2fe..afb9244bb5 100644 --- a/Code/Editor/Controls/FolderTreeCtrl.cpp +++ b/Code/Editor/Controls/FolderTreeCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/FolderTreeCtrl.h b/Code/Editor/Controls/FolderTreeCtrl.h index 886fd54885..e43c4cd224 100644 --- a/Code/Editor/Controls/FolderTreeCtrl.h +++ b/Code/Editor/Controls/FolderTreeCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/HotTrackingTreeCtrl.cpp b/Code/Editor/Controls/HotTrackingTreeCtrl.cpp index c85cacd0e8..79e9ce837d 100644 --- a/Code/Editor/Controls/HotTrackingTreeCtrl.cpp +++ b/Code/Editor/Controls/HotTrackingTreeCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/HotTrackingTreeCtrl.h b/Code/Editor/Controls/HotTrackingTreeCtrl.h index fb29e1f843..643a721d9e 100644 --- a/Code/Editor/Controls/HotTrackingTreeCtrl.h +++ b/Code/Editor/Controls/HotTrackingTreeCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ImageHistogramCtrl.cpp b/Code/Editor/Controls/ImageHistogramCtrl.cpp index 9ba0bcc001..76b2bc8b6c 100644 --- a/Code/Editor/Controls/ImageHistogramCtrl.cpp +++ b/Code/Editor/Controls/ImageHistogramCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ImageHistogramCtrl.h b/Code/Editor/Controls/ImageHistogramCtrl.h index 8a82225dac..d5be6a42f2 100644 --- a/Code/Editor/Controls/ImageHistogramCtrl.h +++ b/Code/Editor/Controls/ImageHistogramCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ImageListCtrl.cpp b/Code/Editor/Controls/ImageListCtrl.cpp index e550540697..f41d4d0517 100644 --- a/Code/Editor/Controls/ImageListCtrl.cpp +++ b/Code/Editor/Controls/ImageListCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ImageListCtrl.h b/Code/Editor/Controls/ImageListCtrl.h index e62eea98be..f55c667491 100644 --- a/Code/Editor/Controls/ImageListCtrl.h +++ b/Code/Editor/Controls/ImageListCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/MultiMonHelper.cpp b/Code/Editor/Controls/MultiMonHelper.cpp index e093012488..9c5b29ac78 100644 --- a/Code/Editor/Controls/MultiMonHelper.cpp +++ b/Code/Editor/Controls/MultiMonHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/MultiMonHelper.h b/Code/Editor/Controls/MultiMonHelper.h index 1ff360cd72..3295346842 100644 --- a/Code/Editor/Controls/MultiMonHelper.h +++ b/Code/Editor/Controls/MultiMonHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/NumberCtrl.cpp b/Code/Editor/Controls/NumberCtrl.cpp index 90a6027424..d89ad3e84e 100644 --- a/Code/Editor/Controls/NumberCtrl.cpp +++ b/Code/Editor/Controls/NumberCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/NumberCtrl.h b/Code/Editor/Controls/NumberCtrl.h index 7383a348d0..e36177925b 100644 --- a/Code/Editor/Controls/NumberCtrl.h +++ b/Code/Editor/Controls/NumberCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/QBitmapPreviewDialog.cpp b/Code/Editor/Controls/QBitmapPreviewDialog.cpp index cc4cfe45ab..9ad6103f31 100644 --- a/Code/Editor/Controls/QBitmapPreviewDialog.cpp +++ b/Code/Editor/Controls/QBitmapPreviewDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/QBitmapPreviewDialog.h b/Code/Editor/Controls/QBitmapPreviewDialog.h index a77c755ec8..5766dd4727 100644 --- a/Code/Editor/Controls/QBitmapPreviewDialog.h +++ b/Code/Editor/Controls/QBitmapPreviewDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/QBitmapPreviewDialogImp.cpp b/Code/Editor/Controls/QBitmapPreviewDialogImp.cpp index 36502f21e6..0943737599 100644 --- a/Code/Editor/Controls/QBitmapPreviewDialogImp.cpp +++ b/Code/Editor/Controls/QBitmapPreviewDialogImp.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/QBitmapPreviewDialogImp.h b/Code/Editor/Controls/QBitmapPreviewDialogImp.h index 47039a7694..d4c466d8d8 100644 --- a/Code/Editor/Controls/QBitmapPreviewDialogImp.h +++ b/Code/Editor/Controls/QBitmapPreviewDialogImp.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/QToolTipWidget.cpp b/Code/Editor/Controls/QToolTipWidget.cpp index 166f2bf1fa..7ef3a519bc 100644 --- a/Code/Editor/Controls/QToolTipWidget.cpp +++ b/Code/Editor/Controls/QToolTipWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/QToolTipWidget.h b/Code/Editor/Controls/QToolTipWidget.h index 1142b85ad4..c5347c6a5f 100644 --- a/Code/Editor/Controls/QToolTipWidget.h +++ b/Code/Editor/Controls/QToolTipWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp index 094d546c44..73e649b72a 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h index 251e2abd4d..a5154978e6 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyAnimationCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp index d2640e1c55..8281837b4a 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h index cbbaf3c432..2414492fd8 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp index 0afefbb1f7..d989a3d878 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h index d60cbe77ee..d13316a1cd 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyGenericCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp index 9cdf28a951..058d3aa70f 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h index 32c1d64118..e6637e2d4c 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMiscCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp index c7d1288249..c8a52b0cd0 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h index be1f0200bb..4e91992412 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyMotionCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp index 08367faf48..2d095ab1db 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h index 44c4e2cfc2..e48370d92c 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/PropertyResourceCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp index 7d9f3ed62d..72328f5661 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h index f8a83322a5..5e78542398 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertiesPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp index c3bc965620..36b9c6296a 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h index 30f242915f..4f6c8c754e 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp index 6bfafcf69b..48e986c905 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h index 07bed16039..2dcf5a2d9a 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedPropertyItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp index 3cbf743522..2044e78eda 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h index b38f535e8b..ac6a07d424 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp index 33fc4b5d43..ebeef23175 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h index aac4e0ef42..c04bc6431c 100644 --- a/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h +++ b/Code/Editor/Controls/ReflectedPropertyControl/ReflectedVarWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/SplineCtrl.cpp b/Code/Editor/Controls/SplineCtrl.cpp index e2321eb6c9..851e38576b 100644 --- a/Code/Editor/Controls/SplineCtrl.cpp +++ b/Code/Editor/Controls/SplineCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/SplineCtrl.h b/Code/Editor/Controls/SplineCtrl.h index 2ba330f028..5d08c45117 100644 --- a/Code/Editor/Controls/SplineCtrl.h +++ b/Code/Editor/Controls/SplineCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/SplineCtrlEx.cpp b/Code/Editor/Controls/SplineCtrlEx.cpp index a0bdbc804f..4c9e243bf0 100644 --- a/Code/Editor/Controls/SplineCtrlEx.cpp +++ b/Code/Editor/Controls/SplineCtrlEx.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/SplineCtrlEx.h b/Code/Editor/Controls/SplineCtrlEx.h index 7be346b976..f99dcaa270 100644 --- a/Code/Editor/Controls/SplineCtrlEx.h +++ b/Code/Editor/Controls/SplineCtrlEx.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/TextEditorCtrl.cpp b/Code/Editor/Controls/TextEditorCtrl.cpp index ae4252ab3f..964a952064 100644 --- a/Code/Editor/Controls/TextEditorCtrl.cpp +++ b/Code/Editor/Controls/TextEditorCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/TextEditorCtrl.h b/Code/Editor/Controls/TextEditorCtrl.h index 8f8599a3b2..23a17a059c 100644 --- a/Code/Editor/Controls/TextEditorCtrl.h +++ b/Code/Editor/Controls/TextEditorCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/TimelineCtrl.cpp b/Code/Editor/Controls/TimelineCtrl.cpp index 36580e676e..e6b21725e5 100644 --- a/Code/Editor/Controls/TimelineCtrl.cpp +++ b/Code/Editor/Controls/TimelineCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/TimelineCtrl.h b/Code/Editor/Controls/TimelineCtrl.h index 4f3dbe29a7..dd6620410e 100644 --- a/Code/Editor/Controls/TimelineCtrl.h +++ b/Code/Editor/Controls/TimelineCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/TreeCtrlUtils.h b/Code/Editor/Controls/TreeCtrlUtils.h index 2ece91f07f..5dcc477f85 100644 --- a/Code/Editor/Controls/TreeCtrlUtils.h +++ b/Code/Editor/Controls/TreeCtrlUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Controls/WndGridHelper.h b/Code/Editor/Controls/WndGridHelper.h index df27f4dd9b..62cba4f8a2 100644 --- a/Code/Editor/Controls/WndGridHelper.h +++ b/Code/Editor/Controls/WndGridHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp b/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp index ddbd0352cf..4a9bc84f6d 100644 --- a/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp +++ b/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.h b/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.h index 98e12c0325..5e82fee4ac 100644 --- a/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.h +++ b/Code/Editor/Core/EditorMetricsPlainTextNameRegistration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/LevelEditorMenuHandler.cpp b/Code/Editor/Core/LevelEditorMenuHandler.cpp index 4af1d2c5e2..33c630e605 100644 --- a/Code/Editor/Core/LevelEditorMenuHandler.cpp +++ b/Code/Editor/Core/LevelEditorMenuHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/LevelEditorMenuHandler.h b/Code/Editor/Core/LevelEditorMenuHandler.h index b08684ca5e..bb23314419 100644 --- a/Code/Editor/Core/LevelEditorMenuHandler.h +++ b/Code/Editor/Core/LevelEditorMenuHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/QtEditorApplication.cpp b/Code/Editor/Core/QtEditorApplication.cpp index 5c342772a8..f5c886761c 100644 --- a/Code/Editor/Core/QtEditorApplication.cpp +++ b/Code/Editor/Core/QtEditorApplication.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/QtEditorApplication.h b/Code/Editor/Core/QtEditorApplication.h index 1eb10ae46a..7baaae8e28 100644 --- a/Code/Editor/Core/QtEditorApplication.h +++ b/Code/Editor/Core/QtEditorApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/QtEditorApplication_linux.cpp b/Code/Editor/Core/QtEditorApplication_linux.cpp index 0b8ddd487e..844240bcb8 100644 --- a/Code/Editor/Core/QtEditorApplication_linux.cpp +++ b/Code/Editor/Core/QtEditorApplication_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/QtEditorApplication_mac.mm b/Code/Editor/Core/QtEditorApplication_mac.mm index 8eef39a30a..f9d1bc8b29 100644 --- a/Code/Editor/Core/QtEditorApplication_mac.mm +++ b/Code/Editor/Core/QtEditorApplication_mac.mm @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/Tests/test_Archive.cpp b/Code/Editor/Core/Tests/test_Archive.cpp index d5e3cbe925..e5ac6c8e78 100644 --- a/Code/Editor/Core/Tests/test_Archive.cpp +++ b/Code/Editor/Core/Tests/test_Archive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/Tests/test_Main.cpp b/Code/Editor/Core/Tests/test_Main.cpp index 8543977e26..d62fc1e18c 100644 --- a/Code/Editor/Core/Tests/test_Main.cpp +++ b/Code/Editor/Core/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Core/Tests/test_PathUtil.cpp b/Code/Editor/Core/Tests/test_PathUtil.cpp index 58a6f3d7ac..50cfb70ddb 100644 --- a/Code/Editor/Core/Tests/test_PathUtil.cpp +++ b/Code/Editor/Core/Tests/test_PathUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CrtDebug.cpp b/Code/Editor/CrtDebug.cpp index 66639a86f9..df9b8cd1a1 100644 --- a/Code/Editor/CrtDebug.cpp +++ b/Code/Editor/CrtDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CryEdit.cpp b/Code/Editor/CryEdit.cpp index a0e37bd4a8..75e6e8cb9a 100644 --- a/Code/Editor/CryEdit.cpp +++ b/Code/Editor/CryEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CryEdit.h b/Code/Editor/CryEdit.h index 870d659068..4ed98313b4 100644 --- a/Code/Editor/CryEdit.h +++ b/Code/Editor/CryEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CryEditDoc.cpp b/Code/Editor/CryEditDoc.cpp index b9c3d437ed..0072f4e010 100644 --- a/Code/Editor/CryEditDoc.cpp +++ b/Code/Editor/CryEditDoc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CryEditDoc.h b/Code/Editor/CryEditDoc.h index fca0bea7ae..2a6bf8bc63 100644 --- a/Code/Editor/CryEditDoc.h +++ b/Code/Editor/CryEditDoc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CryEditPy.cpp b/Code/Editor/CryEditPy.cpp index f989e82d0d..027c507176 100644 --- a/Code/Editor/CryEditPy.cpp +++ b/Code/Editor/CryEditPy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CustomAspectRatioDlg.cpp b/Code/Editor/CustomAspectRatioDlg.cpp index 6976b0399a..47ae4711b5 100644 --- a/Code/Editor/CustomAspectRatioDlg.cpp +++ b/Code/Editor/CustomAspectRatioDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CustomAspectRatioDlg.h b/Code/Editor/CustomAspectRatioDlg.h index 5e4eb5aa28..c2ec694ad7 100644 --- a/Code/Editor/CustomAspectRatioDlg.h +++ b/Code/Editor/CustomAspectRatioDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CustomResolutionDlg.cpp b/Code/Editor/CustomResolutionDlg.cpp index a62fcf6aac..f16ea82b81 100644 --- a/Code/Editor/CustomResolutionDlg.cpp +++ b/Code/Editor/CustomResolutionDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CustomResolutionDlg.h b/Code/Editor/CustomResolutionDlg.h index b2f6e18268..11a21104a4 100644 --- a/Code/Editor/CustomResolutionDlg.h +++ b/Code/Editor/CustomResolutionDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CustomizeKeyboardDialog.cpp b/Code/Editor/CustomizeKeyboardDialog.cpp index d87b0dbbb4..a0eb58bb59 100644 --- a/Code/Editor/CustomizeKeyboardDialog.cpp +++ b/Code/Editor/CustomizeKeyboardDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/CustomizeKeyboardDialog.h b/Code/Editor/CustomizeKeyboardDialog.h index 645dad7f26..6f66b8c7d4 100644 --- a/Code/Editor/CustomizeKeyboardDialog.h +++ b/Code/Editor/CustomizeKeyboardDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Dialogs/ErrorsDlg.cpp b/Code/Editor/Dialogs/ErrorsDlg.cpp index 86f535512e..db3f4febbc 100644 --- a/Code/Editor/Dialogs/ErrorsDlg.cpp +++ b/Code/Editor/Dialogs/ErrorsDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Dialogs/ErrorsDlg.h b/Code/Editor/Dialogs/ErrorsDlg.h index 4f33fd54cb..be1dcd1598 100644 --- a/Code/Editor/Dialogs/ErrorsDlg.h +++ b/Code/Editor/Dialogs/ErrorsDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Dialogs/Generic/UserOptions.cpp b/Code/Editor/Dialogs/Generic/UserOptions.cpp index 1b3e4b8350..c7e574e963 100644 --- a/Code/Editor/Dialogs/Generic/UserOptions.cpp +++ b/Code/Editor/Dialogs/Generic/UserOptions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Dialogs/Generic/UserOptions.h b/Code/Editor/Dialogs/Generic/UserOptions.h index 22be9373d6..d198753f02 100644 --- a/Code/Editor/Dialogs/Generic/UserOptions.h +++ b/Code/Editor/Dialogs/Generic/UserOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Dialogs/PythonScriptsDialog.cpp b/Code/Editor/Dialogs/PythonScriptsDialog.cpp index b04e57853e..ef9c812296 100644 --- a/Code/Editor/Dialogs/PythonScriptsDialog.cpp +++ b/Code/Editor/Dialogs/PythonScriptsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Dialogs/PythonScriptsDialog.h b/Code/Editor/Dialogs/PythonScriptsDialog.h index ad2ac61aff..40c53e48bd 100644 --- a/Code/Editor/Dialogs/PythonScriptsDialog.h +++ b/Code/Editor/Dialogs/PythonScriptsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/DimensionsDialog.cpp b/Code/Editor/DimensionsDialog.cpp index a4638ffad1..004ed4acbb 100644 --- a/Code/Editor/DimensionsDialog.cpp +++ b/Code/Editor/DimensionsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/DimensionsDialog.h b/Code/Editor/DimensionsDialog.h index 613a496521..d362f41eeb 100644 --- a/Code/Editor/DimensionsDialog.h +++ b/Code/Editor/DimensionsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/DisplaySettings.cpp b/Code/Editor/DisplaySettings.cpp index c46007a21f..18373a8bfc 100644 --- a/Code/Editor/DisplaySettings.cpp +++ b/Code/Editor/DisplaySettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/DisplaySettings.h b/Code/Editor/DisplaySettings.h index 0eb25522a0..64136050c7 100644 --- a/Code/Editor/DisplaySettings.h +++ b/Code/Editor/DisplaySettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/DisplaySettingsPythonFuncs.cpp b/Code/Editor/DisplaySettingsPythonFuncs.cpp index 01ad63027c..85806d2c0c 100644 --- a/Code/Editor/DisplaySettingsPythonFuncs.cpp +++ b/Code/Editor/DisplaySettingsPythonFuncs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/DisplaySettingsPythonFuncs.h b/Code/Editor/DisplaySettingsPythonFuncs.h index 860be42ca4..400c8b156c 100644 --- a/Code/Editor/DisplaySettingsPythonFuncs.h +++ b/Code/Editor/DisplaySettingsPythonFuncs.h @@ -1,6 +1,6 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/DocMultiArchive.h b/Code/Editor/DocMultiArchive.h index e0b8144fd0..f4c51a5cf2 100644 --- a/Code/Editor/DocMultiArchive.h +++ b/Code/Editor/DocMultiArchive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditMode/DeepSelection.cpp b/Code/Editor/EditMode/DeepSelection.cpp index 04096a1958..8d1c6d741e 100644 --- a/Code/Editor/EditMode/DeepSelection.cpp +++ b/Code/Editor/EditMode/DeepSelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditMode/DeepSelection.h b/Code/Editor/EditMode/DeepSelection.h index 8f15ba4772..9f716cf81c 100644 --- a/Code/Editor/EditMode/DeepSelection.h +++ b/Code/Editor/EditMode/DeepSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp index be479b00c9..4763ec74f7 100644 --- a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp +++ b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h index 0a28a79548..bb449e203f 100644 --- a/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h +++ b/Code/Editor/EditMode/SubObjectSelectionReferenceFrameCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorDefs.h b/Code/Editor/EditorDefs.h index ac17cc926b..30c1ed4381 100644 --- a/Code/Editor/EditorDefs.h +++ b/Code/Editor/EditorDefs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorEnvironment.cpp b/Code/Editor/EditorEnvironment.cpp index 6a08437d9e..45b0ceb573 100644 --- a/Code/Editor/EditorEnvironment.cpp +++ b/Code/Editor/EditorEnvironment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorEnvironment.h b/Code/Editor/EditorEnvironment.h index 45ba43a63c..3b1c60b3e4 100644 --- a/Code/Editor/EditorEnvironment.h +++ b/Code/Editor/EditorEnvironment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorFileMonitor.cpp b/Code/Editor/EditorFileMonitor.cpp index 77b3093142..b1ab20c24f 100644 --- a/Code/Editor/EditorFileMonitor.cpp +++ b/Code/Editor/EditorFileMonitor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorFileMonitor.h b/Code/Editor/EditorFileMonitor.h index bb2696a646..0fe6bfb9cf 100644 --- a/Code/Editor/EditorFileMonitor.h +++ b/Code/Editor/EditorFileMonitor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPanelUtils.cpp b/Code/Editor/EditorPanelUtils.cpp index 0369a117b5..9df6091748 100644 --- a/Code/Editor/EditorPanelUtils.cpp +++ b/Code/Editor/EditorPanelUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPanelUtils.h b/Code/Editor/EditorPanelUtils.h index 80d83fe554..e0dcf91916 100644 --- a/Code/Editor/EditorPanelUtils.h +++ b/Code/Editor/EditorPanelUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesBus.h b/Code/Editor/EditorPreferencesBus.h index a854a94411..01dc778213 100644 --- a/Code/Editor/EditorPreferencesBus.h +++ b/Code/Editor/EditorPreferencesBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesDialog.cpp b/Code/Editor/EditorPreferencesDialog.cpp index ffcd4f241d..148e115607 100644 --- a/Code/Editor/EditorPreferencesDialog.cpp +++ b/Code/Editor/EditorPreferencesDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesDialog.h b/Code/Editor/EditorPreferencesDialog.h index 651055a50a..ce595012b0 100644 --- a/Code/Editor/EditorPreferencesDialog.h +++ b/Code/Editor/EditorPreferencesDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageAWS.cpp b/Code/Editor/EditorPreferencesPageAWS.cpp index 6db7daa92e..24dff8676d 100644 --- a/Code/Editor/EditorPreferencesPageAWS.cpp +++ b/Code/Editor/EditorPreferencesPageAWS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageAWS.h b/Code/Editor/EditorPreferencesPageAWS.h index c74b62e5a1..23495b7dd0 100644 --- a/Code/Editor/EditorPreferencesPageAWS.h +++ b/Code/Editor/EditorPreferencesPageAWS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageExperimentalLighting.cpp b/Code/Editor/EditorPreferencesPageExperimentalLighting.cpp index 7e11a8a802..48ddd261d9 100644 --- a/Code/Editor/EditorPreferencesPageExperimentalLighting.cpp +++ b/Code/Editor/EditorPreferencesPageExperimentalLighting.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageExperimentalLighting.h b/Code/Editor/EditorPreferencesPageExperimentalLighting.h index 9ba058f8e8..be070673ae 100644 --- a/Code/Editor/EditorPreferencesPageExperimentalLighting.h +++ b/Code/Editor/EditorPreferencesPageExperimentalLighting.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageFiles.cpp b/Code/Editor/EditorPreferencesPageFiles.cpp index c09c3441df..6948ff31c0 100644 --- a/Code/Editor/EditorPreferencesPageFiles.cpp +++ b/Code/Editor/EditorPreferencesPageFiles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageFiles.h b/Code/Editor/EditorPreferencesPageFiles.h index 44bcb3ba8d..211f2de261 100644 --- a/Code/Editor/EditorPreferencesPageFiles.h +++ b/Code/Editor/EditorPreferencesPageFiles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageGeneral.cpp b/Code/Editor/EditorPreferencesPageGeneral.cpp index 5942f47e8d..861ef10c23 100644 --- a/Code/Editor/EditorPreferencesPageGeneral.cpp +++ b/Code/Editor/EditorPreferencesPageGeneral.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageGeneral.h b/Code/Editor/EditorPreferencesPageGeneral.h index 45b0145fa0..ca315c2d01 100644 --- a/Code/Editor/EditorPreferencesPageGeneral.h +++ b/Code/Editor/EditorPreferencesPageGeneral.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportDebug.cpp b/Code/Editor/EditorPreferencesPageViewportDebug.cpp index 5bef2d487b..be329d0172 100644 --- a/Code/Editor/EditorPreferencesPageViewportDebug.cpp +++ b/Code/Editor/EditorPreferencesPageViewportDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportDebug.h b/Code/Editor/EditorPreferencesPageViewportDebug.h index 87f3e0b66e..ee339d51c2 100644 --- a/Code/Editor/EditorPreferencesPageViewportDebug.h +++ b/Code/Editor/EditorPreferencesPageViewportDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportGeneral.cpp b/Code/Editor/EditorPreferencesPageViewportGeneral.cpp index 9e60285b2c..5a7538322a 100644 --- a/Code/Editor/EditorPreferencesPageViewportGeneral.cpp +++ b/Code/Editor/EditorPreferencesPageViewportGeneral.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportGeneral.h b/Code/Editor/EditorPreferencesPageViewportGeneral.h index 219e5597d0..2988b544e7 100644 --- a/Code/Editor/EditorPreferencesPageViewportGeneral.h +++ b/Code/Editor/EditorPreferencesPageViewportGeneral.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportGizmo.cpp b/Code/Editor/EditorPreferencesPageViewportGizmo.cpp index f6d60c975b..9822a99835 100644 --- a/Code/Editor/EditorPreferencesPageViewportGizmo.cpp +++ b/Code/Editor/EditorPreferencesPageViewportGizmo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportGizmo.h b/Code/Editor/EditorPreferencesPageViewportGizmo.h index b5d5b9d46b..d71370cf36 100644 --- a/Code/Editor/EditorPreferencesPageViewportGizmo.h +++ b/Code/Editor/EditorPreferencesPageViewportGizmo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportMovement.cpp b/Code/Editor/EditorPreferencesPageViewportMovement.cpp index 64a5dbc199..5c09fab10d 100644 --- a/Code/Editor/EditorPreferencesPageViewportMovement.cpp +++ b/Code/Editor/EditorPreferencesPageViewportMovement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesPageViewportMovement.h b/Code/Editor/EditorPreferencesPageViewportMovement.h index bd49b891de..ea0c2fa8cc 100644 --- a/Code/Editor/EditorPreferencesPageViewportMovement.h +++ b/Code/Editor/EditorPreferencesPageViewportMovement.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesTreeWidgetItem.cpp b/Code/Editor/EditorPreferencesTreeWidgetItem.cpp index 3188a7a53e..dda1949c84 100644 --- a/Code/Editor/EditorPreferencesTreeWidgetItem.cpp +++ b/Code/Editor/EditorPreferencesTreeWidgetItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesTreeWidgetItem.h b/Code/Editor/EditorPreferencesTreeWidgetItem.h index f22c61bae6..1808903d24 100644 --- a/Code/Editor/EditorPreferencesTreeWidgetItem.h +++ b/Code/Editor/EditorPreferencesTreeWidgetItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp b/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp index 843572b8cc..3dd2f44b14 100644 --- a/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp +++ b/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.h b/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.h index 589cc5dfac..a71113872a 100644 --- a/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.h +++ b/Code/Editor/EditorPreferencesTreeWidgetItemDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorToolsApplication.cpp b/Code/Editor/EditorToolsApplication.cpp index f9fdde6c4e..381cdf12cb 100644 --- a/Code/Editor/EditorToolsApplication.cpp +++ b/Code/Editor/EditorToolsApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorToolsApplication.h b/Code/Editor/EditorToolsApplication.h index 71da0ee124..240adc636f 100644 --- a/Code/Editor/EditorToolsApplication.h +++ b/Code/Editor/EditorToolsApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorToolsApplicationAPI.h b/Code/Editor/EditorToolsApplicationAPI.h index ab1d867394..1462198f02 100644 --- a/Code/Editor/EditorToolsApplicationAPI.h +++ b/Code/Editor/EditorToolsApplicationAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorViewportSettings.cpp b/Code/Editor/EditorViewportSettings.cpp index 1072ed81eb..dbc9189278 100644 --- a/Code/Editor/EditorViewportSettings.cpp +++ b/Code/Editor/EditorViewportSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorViewportSettings.h b/Code/Editor/EditorViewportSettings.h index a090f31e47..cc61584c82 100644 --- a/Code/Editor/EditorViewportSettings.h +++ b/Code/Editor/EditorViewportSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorViewportWidget.cpp b/Code/Editor/EditorViewportWidget.cpp index 017d6876d1..fca698e88a 100644 --- a/Code/Editor/EditorViewportWidget.cpp +++ b/Code/Editor/EditorViewportWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/EditorViewportWidget.h b/Code/Editor/EditorViewportWidget.h index 029bdef284..682d37199c 100644 --- a/Code/Editor/EditorViewportWidget.h +++ b/Code/Editor/EditorViewportWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorDialog.cpp b/Code/Editor/ErrorDialog.cpp index 4dd8899cfd..182552ac0a 100644 --- a/Code/Editor/ErrorDialog.cpp +++ b/Code/Editor/ErrorDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorDialog.h b/Code/Editor/ErrorDialog.h index 1e939bdf3f..a2a807aa49 100644 --- a/Code/Editor/ErrorDialog.h +++ b/Code/Editor/ErrorDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorRecorder.cpp b/Code/Editor/ErrorRecorder.cpp index f43f0a1008..549aaf813f 100644 --- a/Code/Editor/ErrorRecorder.cpp +++ b/Code/Editor/ErrorRecorder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorRecorder.h b/Code/Editor/ErrorRecorder.h index 2b0c1c9e2a..365c520725 100644 --- a/Code/Editor/ErrorRecorder.h +++ b/Code/Editor/ErrorRecorder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorReport.cpp b/Code/Editor/ErrorReport.cpp index 5d7daba57a..95d1fcd386 100644 --- a/Code/Editor/ErrorReport.cpp +++ b/Code/Editor/ErrorReport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorReport.h b/Code/Editor/ErrorReport.h index cb7ca2a2f1..747c8c269c 100644 --- a/Code/Editor/ErrorReport.h +++ b/Code/Editor/ErrorReport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorReportDialog.cpp b/Code/Editor/ErrorReportDialog.cpp index ab93cc98a1..df90b6eb1b 100644 --- a/Code/Editor/ErrorReportDialog.cpp +++ b/Code/Editor/ErrorReportDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorReportDialog.h b/Code/Editor/ErrorReportDialog.h index 20d7b55bf2..a1637b7eb2 100644 --- a/Code/Editor/ErrorReportDialog.h +++ b/Code/Editor/ErrorReportDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorReportTableModel.cpp b/Code/Editor/ErrorReportTableModel.cpp index 05253d4134..405c9985ee 100644 --- a/Code/Editor/ErrorReportTableModel.cpp +++ b/Code/Editor/ErrorReportTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ErrorReportTableModel.h b/Code/Editor/ErrorReportTableModel.h index e87cadf5a5..694a89794a 100644 --- a/Code/Editor/ErrorReportTableModel.h +++ b/Code/Editor/ErrorReportTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Export/ExportManager.cpp b/Code/Editor/Export/ExportManager.cpp index 4aa711a6e6..de1d123463 100644 --- a/Code/Editor/Export/ExportManager.cpp +++ b/Code/Editor/Export/ExportManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Export/ExportManager.h b/Code/Editor/Export/ExportManager.h index 32275823b6..489ac542d1 100644 --- a/Code/Editor/Export/ExportManager.h +++ b/Code/Editor/Export/ExportManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Export/OBJExporter.cpp b/Code/Editor/Export/OBJExporter.cpp index aed6c37ba7..e3efab3647 100644 --- a/Code/Editor/Export/OBJExporter.cpp +++ b/Code/Editor/Export/OBJExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Export/OBJExporter.h b/Code/Editor/Export/OBJExporter.h index 68522d1f8e..420535f8de 100644 --- a/Code/Editor/Export/OBJExporter.h +++ b/Code/Editor/Export/OBJExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Export/OCMExporter.cpp b/Code/Editor/Export/OCMExporter.cpp index 81bbe8c335..7b809742e0 100644 --- a/Code/Editor/Export/OCMExporter.cpp +++ b/Code/Editor/Export/OCMExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Export/OCMExporter.h b/Code/Editor/Export/OCMExporter.h index 77cd6731f5..3dc8b15ff9 100644 --- a/Code/Editor/Export/OCMExporter.h +++ b/Code/Editor/Export/OCMExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/FBXExporterDialog.cpp b/Code/Editor/FBXExporterDialog.cpp index 5cdf8e3de9..a79172a0e4 100644 --- a/Code/Editor/FBXExporterDialog.cpp +++ b/Code/Editor/FBXExporterDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/FBXExporterDialog.h b/Code/Editor/FBXExporterDialog.h index 1075fdd8dd..41168e437e 100644 --- a/Code/Editor/FBXExporterDialog.h +++ b/Code/Editor/FBXExporterDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/FileTypeUtils.cpp b/Code/Editor/FileTypeUtils.cpp index ae47ab23fa..937671e136 100644 --- a/Code/Editor/FileTypeUtils.cpp +++ b/Code/Editor/FileTypeUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/FileTypeUtils.h b/Code/Editor/FileTypeUtils.h index 3dca778057..4d8a8f3c21 100644 --- a/Code/Editor/FileTypeUtils.h +++ b/Code/Editor/FileTypeUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GameEngine.cpp b/Code/Editor/GameEngine.cpp index 34f938fdf8..f613da2934 100644 --- a/Code/Editor/GameEngine.cpp +++ b/Code/Editor/GameEngine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GameEngine.h b/Code/Editor/GameEngine.h index 749670261e..4d3655dfb8 100644 --- a/Code/Editor/GameEngine.h +++ b/Code/Editor/GameEngine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GameExporter.cpp b/Code/Editor/GameExporter.cpp index 77583246d7..98c9baeeef 100644 --- a/Code/Editor/GameExporter.cpp +++ b/Code/Editor/GameExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GameExporter.h b/Code/Editor/GameExporter.h index da9d754f6f..ed97011737 100644 --- a/Code/Editor/GameExporter.h +++ b/Code/Editor/GameExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GameResourcesExporter.cpp b/Code/Editor/GameResourcesExporter.cpp index 2d53e29548..6d3bc059f0 100644 --- a/Code/Editor/GameResourcesExporter.cpp +++ b/Code/Editor/GameResourcesExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GameResourcesExporter.h b/Code/Editor/GameResourcesExporter.h index 2d6cc86a0a..97a557e655 100644 --- a/Code/Editor/GameResourcesExporter.h +++ b/Code/Editor/GameResourcesExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GenericSelectItemDialog.cpp b/Code/Editor/GenericSelectItemDialog.cpp index 6b527bc81b..bec23d0559 100644 --- a/Code/Editor/GenericSelectItemDialog.cpp +++ b/Code/Editor/GenericSelectItemDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GenericSelectItemDialog.h b/Code/Editor/GenericSelectItemDialog.h index aa39a4529f..05402359cb 100644 --- a/Code/Editor/GenericSelectItemDialog.h +++ b/Code/Editor/GenericSelectItemDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Geometry/TriMesh.cpp b/Code/Editor/Geometry/TriMesh.cpp index f76703bae9..452f056ecf 100644 --- a/Code/Editor/Geometry/TriMesh.cpp +++ b/Code/Editor/Geometry/TriMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Geometry/TriMesh.h b/Code/Editor/Geometry/TriMesh.h index 433e2fa3d7..f0e01e253e 100644 --- a/Code/Editor/Geometry/TriMesh.h +++ b/Code/Editor/Geometry/TriMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GotoPositionDlg.cpp b/Code/Editor/GotoPositionDlg.cpp index 5380336912..1e6574bb9a 100644 --- a/Code/Editor/GotoPositionDlg.cpp +++ b/Code/Editor/GotoPositionDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GotoPositionDlg.h b/Code/Editor/GotoPositionDlg.h index 0c3ec3a1af..ebd1838305 100644 --- a/Code/Editor/GotoPositionDlg.h +++ b/Code/Editor/GotoPositionDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GraphicsSettingsDialog.cpp b/Code/Editor/GraphicsSettingsDialog.cpp index 9236a3b205..dbd7a7fc1a 100644 --- a/Code/Editor/GraphicsSettingsDialog.cpp +++ b/Code/Editor/GraphicsSettingsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GraphicsSettingsDialog.h b/Code/Editor/GraphicsSettingsDialog.h index 6852ff2d75..66a498cd10 100644 --- a/Code/Editor/GraphicsSettingsDialog.h +++ b/Code/Editor/GraphicsSettingsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/GridUtils.h b/Code/Editor/GridUtils.h index d66a0ff1dc..745d115f2c 100644 --- a/Code/Editor/GridUtils.h +++ b/Code/Editor/GridUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/IEditor.h b/Code/Editor/IEditor.h index ef20395a44..4c76d76b7a 100644 --- a/Code/Editor/IEditor.h +++ b/Code/Editor/IEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/IEditorImpl.cpp b/Code/Editor/IEditorImpl.cpp index fc0ae12016..d9e07f0ec4 100644 --- a/Code/Editor/IEditorImpl.cpp +++ b/Code/Editor/IEditorImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/IEditorImpl.h b/Code/Editor/IEditorImpl.h index de5e5320dc..9dc79cadda 100644 --- a/Code/Editor/IEditorImpl.h +++ b/Code/Editor/IEditorImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/IEditorPanelUtils.h b/Code/Editor/IEditorPanelUtils.h index 1f65ad43af..20ef2d3ee8 100644 --- a/Code/Editor/IEditorPanelUtils.h +++ b/Code/Editor/IEditorPanelUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 */ diff --git a/Code/Editor/IObservable.h b/Code/Editor/IObservable.h index f01e92f93a..2e3d7c8c69 100644 --- a/Code/Editor/IObservable.h +++ b/Code/Editor/IObservable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/IPostRenderer.h b/Code/Editor/IPostRenderer.h index 5f5d41f4f5..353b662f0d 100644 --- a/Code/Editor/IPostRenderer.h +++ b/Code/Editor/IPostRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/IconManager.cpp b/Code/Editor/IconManager.cpp index 3607e545b5..a1cb587f00 100644 --- a/Code/Editor/IconManager.cpp +++ b/Code/Editor/IconManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/IconManager.h b/Code/Editor/IconManager.h index 979dfd07eb..40e1ef8aa9 100644 --- a/Code/Editor/IconManager.h +++ b/Code/Editor/IconManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/Command.h b/Code/Editor/Include/Command.h index 9116388eec..fe30c56aa3 100644 --- a/Code/Editor/Include/Command.h +++ b/Code/Editor/Include/Command.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/EditorCoreAPI.cpp b/Code/Editor/Include/EditorCoreAPI.cpp index af69e7a73a..89cc00aebf 100644 --- a/Code/Editor/Include/EditorCoreAPI.cpp +++ b/Code/Editor/Include/EditorCoreAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/EditorCoreAPI.h b/Code/Editor/Include/EditorCoreAPI.h index ddecaf6c88..7de2aa366d 100644 --- a/Code/Editor/Include/EditorCoreAPI.h +++ b/Code/Editor/Include/EditorCoreAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/HitContext.h b/Code/Editor/Include/HitContext.h index 9787cfef85..15f41cc5aa 100644 --- a/Code/Editor/Include/HitContext.h +++ b/Code/Editor/Include/HitContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IAnimationCompressionManager.h b/Code/Editor/Include/IAnimationCompressionManager.h index 21244e78d7..e17a594288 100644 --- a/Code/Editor/Include/IAnimationCompressionManager.h +++ b/Code/Editor/Include/IAnimationCompressionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IAssetItem.h b/Code/Editor/Include/IAssetItem.h index 9e97f8b6e1..212ae84da5 100644 --- a/Code/Editor/Include/IAssetItem.h +++ b/Code/Editor/Include/IAssetItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IAssetItemDatabase.h b/Code/Editor/Include/IAssetItemDatabase.h index 4609a05ec9..421d61e6f1 100644 --- a/Code/Editor/Include/IAssetItemDatabase.h +++ b/Code/Editor/Include/IAssetItemDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IAssetViewer.h b/Code/Editor/Include/IAssetViewer.h index 1fc137489f..33585d3102 100644 --- a/Code/Editor/Include/IAssetViewer.h +++ b/Code/Editor/Include/IAssetViewer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IBaseLibraryManager.h b/Code/Editor/Include/IBaseLibraryManager.h index 260f672a46..5321ebc9b3 100644 --- a/Code/Editor/Include/IBaseLibraryManager.h +++ b/Code/Editor/Include/IBaseLibraryManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/ICommandManager.h b/Code/Editor/Include/ICommandManager.h index 4267991ac4..d5df081e57 100644 --- a/Code/Editor/Include/ICommandManager.h +++ b/Code/Editor/Include/ICommandManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IConsoleConnectivity.h b/Code/Editor/Include/IConsoleConnectivity.h index ad4d88d30a..0c5e32ae9a 100644 --- a/Code/Editor/Include/IConsoleConnectivity.h +++ b/Code/Editor/Include/IConsoleConnectivity.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IDataBaseItem.h b/Code/Editor/Include/IDataBaseItem.h index 3671d9c8ce..8f4851631c 100644 --- a/Code/Editor/Include/IDataBaseItem.h +++ b/Code/Editor/Include/IDataBaseItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IDataBaseLibrary.h b/Code/Editor/Include/IDataBaseLibrary.h index c9b880f594..1e55c476b9 100644 --- a/Code/Editor/Include/IDataBaseLibrary.h +++ b/Code/Editor/Include/IDataBaseLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IDataBaseManager.h b/Code/Editor/Include/IDataBaseManager.h index 72d2d270b8..f1ef372e6c 100644 --- a/Code/Editor/Include/IDataBaseManager.h +++ b/Code/Editor/Include/IDataBaseManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IDisplayViewport.h b/Code/Editor/Include/IDisplayViewport.h index 70069cd0db..d53e1cfca0 100644 --- a/Code/Editor/Include/IDisplayViewport.h +++ b/Code/Editor/Include/IDisplayViewport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IEditorClassFactory.h b/Code/Editor/Include/IEditorClassFactory.h index ab3bb56ccf..bbd0979b72 100644 --- a/Code/Editor/Include/IEditorClassFactory.h +++ b/Code/Editor/Include/IEditorClassFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IEditorFileMonitor.h b/Code/Editor/Include/IEditorFileMonitor.h index 20e668cdaa..3bf2fc72da 100644 --- a/Code/Editor/Include/IEditorFileMonitor.h +++ b/Code/Editor/Include/IEditorFileMonitor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IEditorMaterial.h b/Code/Editor/Include/IEditorMaterial.h index bd21e66080..59aa19a17a 100644 --- a/Code/Editor/Include/IEditorMaterial.h +++ b/Code/Editor/Include/IEditorMaterial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IEditorMaterialManager.h b/Code/Editor/Include/IEditorMaterialManager.h index cf2bc5dc0e..1e6b585221 100644 --- a/Code/Editor/Include/IEditorMaterialManager.h +++ b/Code/Editor/Include/IEditorMaterialManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IErrorReport.h b/Code/Editor/Include/IErrorReport.h index 25f959a6ed..dd0400b61c 100644 --- a/Code/Editor/Include/IErrorReport.h +++ b/Code/Editor/Include/IErrorReport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IEventLoopHook.h b/Code/Editor/Include/IEventLoopHook.h index 93411b1399..aae7c01d7d 100644 --- a/Code/Editor/Include/IEventLoopHook.h +++ b/Code/Editor/Include/IEventLoopHook.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IExportManager.h b/Code/Editor/Include/IExportManager.h index 98957ef660..76e8727e47 100644 --- a/Code/Editor/Include/IExportManager.h +++ b/Code/Editor/Include/IExportManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IFacialEditor.h b/Code/Editor/Include/IFacialEditor.h index c803c248c4..da282553d1 100644 --- a/Code/Editor/Include/IFacialEditor.h +++ b/Code/Editor/Include/IFacialEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IFileUtil.h b/Code/Editor/Include/IFileUtil.h index e75aab3da7..5981963133 100644 --- a/Code/Editor/Include/IFileUtil.h +++ b/Code/Editor/Include/IFileUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IGizmoManager.h b/Code/Editor/Include/IGizmoManager.h index c6c951d79b..825d049d02 100644 --- a/Code/Editor/Include/IGizmoManager.h +++ b/Code/Editor/Include/IGizmoManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IIconManager.h b/Code/Editor/Include/IIconManager.h index 72a676dcca..3248a2c67e 100644 --- a/Code/Editor/Include/IIconManager.h +++ b/Code/Editor/Include/IIconManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IImageUtil.h b/Code/Editor/Include/IImageUtil.h index 50e5b18b4a..2a32861d75 100644 --- a/Code/Editor/Include/IImageUtil.h +++ b/Code/Editor/Include/IImageUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IKeyTimeSet.h b/Code/Editor/Include/IKeyTimeSet.h index 9a4ff1f507..d1edf87dc6 100644 --- a/Code/Editor/Include/IKeyTimeSet.h +++ b/Code/Editor/Include/IKeyTimeSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/ILogFile.h b/Code/Editor/Include/ILogFile.h index 82fb42fa58..9886a7c906 100644 --- a/Code/Editor/Include/ILogFile.h +++ b/Code/Editor/Include/ILogFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IObjectManager.h b/Code/Editor/Include/IObjectManager.h index 3fa4a56a60..7d4856bd33 100644 --- a/Code/Editor/Include/IObjectManager.h +++ b/Code/Editor/Include/IObjectManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IPlugin.h b/Code/Editor/Include/IPlugin.h index 35cc3e74af..b992da27a4 100644 --- a/Code/Editor/Include/IPlugin.h +++ b/Code/Editor/Include/IPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IPreferencesPage.h b/Code/Editor/Include/IPreferencesPage.h index e0f2f3b28f..611e97d7f4 100644 --- a/Code/Editor/Include/IPreferencesPage.h +++ b/Code/Editor/Include/IPreferencesPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IRenderListener.h b/Code/Editor/Include/IRenderListener.h index eb9656b8ac..ef961c4b2f 100644 --- a/Code/Editor/Include/IRenderListener.h +++ b/Code/Editor/Include/IRenderListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IResourceSelectorHost.h b/Code/Editor/Include/IResourceSelectorHost.h index d960a0ae3d..8fb5b2bce0 100644 --- a/Code/Editor/Include/IResourceSelectorHost.h +++ b/Code/Editor/Include/IResourceSelectorHost.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/ISourceControl.h b/Code/Editor/Include/ISourceControl.h index 61332c5806..48ec6ba8fe 100644 --- a/Code/Editor/Include/ISourceControl.h +++ b/Code/Editor/Include/ISourceControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h b/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h index 80e9a325c2..551bbdb136 100644 --- a/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h +++ b/Code/Editor/Include/ISubObjectSelectionReferenceFrameCalculator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/ITextureDatabaseUpdater.h b/Code/Editor/Include/ITextureDatabaseUpdater.h index a49966892a..235c94761d 100644 --- a/Code/Editor/Include/ITextureDatabaseUpdater.h +++ b/Code/Editor/Include/ITextureDatabaseUpdater.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/ITransformManipulator.h b/Code/Editor/Include/ITransformManipulator.h index 5524c59828..3294980ed0 100644 --- a/Code/Editor/Include/ITransformManipulator.h +++ b/Code/Editor/Include/ITransformManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/IViewPane.h b/Code/Editor/Include/IViewPane.h index e16086f9b7..2b2e400c11 100644 --- a/Code/Editor/Include/IViewPane.h +++ b/Code/Editor/Include/IViewPane.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/ObjectEvent.h b/Code/Editor/Include/ObjectEvent.h index 529d624cdc..8604d146f7 100644 --- a/Code/Editor/Include/ObjectEvent.h +++ b/Code/Editor/Include/ObjectEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Include/SandboxAPI.h b/Code/Editor/Include/SandboxAPI.h index ab22adcfb7..954c41f05e 100644 --- a/Code/Editor/Include/SandboxAPI.h +++ b/Code/Editor/Include/SandboxAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/KeyboardCustomizationSettings.cpp b/Code/Editor/KeyboardCustomizationSettings.cpp index e2825ec3cc..24b16df3c7 100644 --- a/Code/Editor/KeyboardCustomizationSettings.cpp +++ b/Code/Editor/KeyboardCustomizationSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/KeyboardCustomizationSettings.h b/Code/Editor/KeyboardCustomizationSettings.h index 98e25df34c..1cc04e9f6a 100644 --- a/Code/Editor/KeyboardCustomizationSettings.h +++ b/Code/Editor/KeyboardCustomizationSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Launcher/resource.h b/Code/Editor/Launcher/resource.h index 97452dfab6..672618c3cf 100644 --- a/Code/Editor/Launcher/resource.h +++ b/Code/Editor/Launcher/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LayoutConfigDialog.cpp b/Code/Editor/LayoutConfigDialog.cpp index 22e21ef434..b5d1abfdc2 100644 --- a/Code/Editor/LayoutConfigDialog.cpp +++ b/Code/Editor/LayoutConfigDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LayoutConfigDialog.h b/Code/Editor/LayoutConfigDialog.h index 6b3521d30a..430b5a7484 100644 --- a/Code/Editor/LayoutConfigDialog.h +++ b/Code/Editor/LayoutConfigDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LayoutWnd.cpp b/Code/Editor/LayoutWnd.cpp index 90e1a50b4c..bd1f24dd92 100644 --- a/Code/Editor/LayoutWnd.cpp +++ b/Code/Editor/LayoutWnd.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LayoutWnd.h b/Code/Editor/LayoutWnd.h index 16f8ff1be1..79a9bddb68 100644 --- a/Code/Editor/LayoutWnd.h +++ b/Code/Editor/LayoutWnd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LegacyViewportCameraController.cpp b/Code/Editor/LegacyViewportCameraController.cpp index 3dbb650469..0750db8d97 100644 --- a/Code/Editor/LegacyViewportCameraController.cpp +++ b/Code/Editor/LegacyViewportCameraController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LegacyViewportCameraController.h b/Code/Editor/LegacyViewportCameraController.h index d9598e5719..d3ff439b16 100644 --- a/Code/Editor/LegacyViewportCameraController.h +++ b/Code/Editor/LegacyViewportCameraController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelFileDialog.cpp b/Code/Editor/LevelFileDialog.cpp index 4445a07458..d7b964c4bd 100644 --- a/Code/Editor/LevelFileDialog.cpp +++ b/Code/Editor/LevelFileDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelFileDialog.h b/Code/Editor/LevelFileDialog.h index 47ba06e1fc..4db25e76e0 100644 --- a/Code/Editor/LevelFileDialog.h +++ b/Code/Editor/LevelFileDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelIndependentFileMan.cpp b/Code/Editor/LevelIndependentFileMan.cpp index f0552d06d7..005bf8638d 100644 --- a/Code/Editor/LevelIndependentFileMan.cpp +++ b/Code/Editor/LevelIndependentFileMan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelIndependentFileMan.h b/Code/Editor/LevelIndependentFileMan.h index 5dcd1c9d60..2ce0539456 100644 --- a/Code/Editor/LevelIndependentFileMan.h +++ b/Code/Editor/LevelIndependentFileMan.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelInfo.cpp b/Code/Editor/LevelInfo.cpp index 30158cbd13..0cf627208d 100644 --- a/Code/Editor/LevelInfo.cpp +++ b/Code/Editor/LevelInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelInfo.h b/Code/Editor/LevelInfo.h index 37dfa93dc0..ded5e7dd60 100644 --- a/Code/Editor/LevelInfo.h +++ b/Code/Editor/LevelInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelTreeModel.cpp b/Code/Editor/LevelTreeModel.cpp index 2042091413..b8c8d450bf 100644 --- a/Code/Editor/LevelTreeModel.cpp +++ b/Code/Editor/LevelTreeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LevelTreeModel.h b/Code/Editor/LevelTreeModel.h index e824520187..0fd88ed50c 100644 --- a/Code/Editor/LevelTreeModel.h +++ b/Code/Editor/LevelTreeModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/IEditorMock.h b/Code/Editor/Lib/Tests/IEditorMock.h index 07ef96c5c5..54bec9f02a 100644 --- a/Code/Editor/Lib/Tests/IEditorMock.h +++ b/Code/Editor/Lib/Tests/IEditorMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_ClickableLabel.cpp b/Code/Editor/Lib/Tests/test_ClickableLabel.cpp index dffd4bbc4e..70ed985f0f 100644 --- a/Code/Editor/Lib/Tests/test_ClickableLabel.cpp +++ b/Code/Editor/Lib/Tests/test_ClickableLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp b/Code/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp index 06e9f3aae9..d7f5caefd1 100644 --- a/Code/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_CryEditDocPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_CryEditPythonBindings.cpp b/Code/Editor/Lib/Tests/test_CryEditPythonBindings.cpp index be6bd4151e..722d30ce86 100644 --- a/Code/Editor/Lib/Tests/test_CryEditPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_CryEditPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp b/Code/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp index b1d962bd38..74ac28cccd 100644 --- a/Code/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_DisplaySettingsPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_EditorPythonBindings.cpp b/Code/Editor/Lib/Tests/test_EditorPythonBindings.cpp index 36e47afb39..b958b8c7f5 100644 --- a/Code/Editor/Lib/Tests/test_EditorPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_EditorPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_EditorUtils.cpp b/Code/Editor/Lib/Tests/test_EditorUtils.cpp index 94257551c4..da9424eded 100644 --- a/Code/Editor/Lib/Tests/test_EditorUtils.cpp +++ b/Code/Editor/Lib/Tests/test_EditorUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_Main.cpp b/Code/Editor/Lib/Tests/test_Main.cpp index 4325cd39e7..60cd739b78 100644 --- a/Code/Editor/Lib/Tests/test_Main.cpp +++ b/Code/Editor/Lib/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp b/Code/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp index fa9631b566..1a2e7cc124 100644 --- a/Code/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_MainWindowPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp b/Code/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp index e421ac9ef4..3ffb96cd0a 100644 --- a/Code/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_ObjectManagerPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp index 8f261c3f6b..3792b8ddec 100644 --- a/Code/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_TerrainHoleToolPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp index 7472786244..063e88111e 100644 --- a/Code/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_TerrainLayerPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp index e19badc5a9..6e3135ee2e 100644 --- a/Code/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_TerrainModifyPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp index 3d1ae43405..1917553fb9 100644 --- a/Code/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_TerrainPainterPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_TerrainPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainPythonBindings.cpp index dbc756fa7a..a7411eb3d6 100644 --- a/Code/Editor/Lib/Tests/test_TerrainPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_TerrainPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp b/Code/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp index c53a3a569f..b355d12ad1 100644 --- a/Code/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_TerrainTexturePythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp b/Code/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp index 3e701bce06..2d9f815137 100644 --- a/Code/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_TrackViewPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp b/Code/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp index 19a66cb2cc..d243718695 100644 --- a/Code/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_ViewPanePythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp b/Code/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp index 9242952c35..778cdad484 100644 --- a/Code/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp +++ b/Code/Editor/Lib/Tests/test_ViewportTitleDlgPythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp b/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp index 0e3dcbdaa4..813df7d0ce 100644 --- a/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp +++ b/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.h b/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.h index 2f4aa3abe8..6527cc2bd7 100644 --- a/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.h +++ b/Code/Editor/LightmapCompiler/SimpleTriangleRasterizer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LogFile.cpp b/Code/Editor/LogFile.cpp index 3fea03233d..1f28272fc1 100644 --- a/Code/Editor/LogFile.cpp +++ b/Code/Editor/LogFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LogFile.h b/Code/Editor/LogFile.h index d1952e8798..d1eed5bcbd 100644 --- a/Code/Editor/LogFile.h +++ b/Code/Editor/LogFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LogFileImpl.cpp b/Code/Editor/LogFileImpl.cpp index 5437a5c9aa..0d488c7ef1 100644 --- a/Code/Editor/LogFileImpl.cpp +++ b/Code/Editor/LogFileImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LogFileImpl.h b/Code/Editor/LogFileImpl.h index 4c7426e8c6..ab1b08d5d8 100644 --- a/Code/Editor/LogFileImpl.h +++ b/Code/Editor/LogFileImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LogFile_mac.mm b/Code/Editor/LogFile_mac.mm index 1cfbf89abe..1549a96124 100644 --- a/Code/Editor/LogFile_mac.mm +++ b/Code/Editor/LogFile_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/LyViewPaneNames.h b/Code/Editor/LyViewPaneNames.h index 70d13150d2..bc0238d06b 100644 --- a/Code/Editor/LyViewPaneNames.h +++ b/Code/Editor/LyViewPaneNames.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/MainStatusBar.cpp b/Code/Editor/MainStatusBar.cpp index daa9d2c6c2..723345909f 100644 --- a/Code/Editor/MainStatusBar.cpp +++ b/Code/Editor/MainStatusBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/MainStatusBar.h b/Code/Editor/MainStatusBar.h index f40413f908..f04c7ecfeb 100644 --- a/Code/Editor/MainStatusBar.h +++ b/Code/Editor/MainStatusBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/MainStatusBarItems.h b/Code/Editor/MainStatusBarItems.h index 04fabcc839..91d7aac048 100644 --- a/Code/Editor/MainStatusBarItems.h +++ b/Code/Editor/MainStatusBarItems.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/MainWindow.cpp b/Code/Editor/MainWindow.cpp index a997aa06b9..249949573f 100644 --- a/Code/Editor/MainWindow.cpp +++ b/Code/Editor/MainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/MainWindow.h b/Code/Editor/MainWindow.h index bbabe00739..34b121537d 100644 --- a/Code/Editor/MainWindow.h +++ b/Code/Editor/MainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/MainWindow_mac.mm b/Code/Editor/MainWindow_mac.mm index 19d62295ee..81548c8d6a 100644 --- a/Code/Editor/MainWindow_mac.mm +++ b/Code/Editor/MainWindow_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/NewLevelDialog.cpp b/Code/Editor/NewLevelDialog.cpp index 7dc3e93208..3c60fbc6cf 100644 --- a/Code/Editor/NewLevelDialog.cpp +++ b/Code/Editor/NewLevelDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/NewLevelDialog.h b/Code/Editor/NewLevelDialog.h index d4f033d490..0c1330c36b 100644 --- a/Code/Editor/NewLevelDialog.h +++ b/Code/Editor/NewLevelDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/NewTerrainDialog.cpp b/Code/Editor/NewTerrainDialog.cpp index 1673660658..39f94985f5 100644 --- a/Code/Editor/NewTerrainDialog.cpp +++ b/Code/Editor/NewTerrainDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/NewTerrainDialog.h b/Code/Editor/NewTerrainDialog.h index ef4723b0c0..e92026e483 100644 --- a/Code/Editor/NewTerrainDialog.h +++ b/Code/Editor/NewTerrainDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/AxisGizmo.cpp b/Code/Editor/Objects/AxisGizmo.cpp index a4f160d081..26ee2c7390 100644 --- a/Code/Editor/Objects/AxisGizmo.cpp +++ b/Code/Editor/Objects/AxisGizmo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/AxisGizmo.h b/Code/Editor/Objects/AxisGizmo.h index 4e5b09f4c0..cc31ca910e 100644 --- a/Code/Editor/Objects/AxisGizmo.h +++ b/Code/Editor/Objects/AxisGizmo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/BaseObject.cpp b/Code/Editor/Objects/BaseObject.cpp index c1ee9dc894..f5a79759ea 100644 --- a/Code/Editor/Objects/BaseObject.cpp +++ b/Code/Editor/Objects/BaseObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/BaseObject.h b/Code/Editor/Objects/BaseObject.h index f03c3b5a2e..fc6392767e 100644 --- a/Code/Editor/Objects/BaseObject.h +++ b/Code/Editor/Objects/BaseObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ClassDesc.cpp b/Code/Editor/Objects/ClassDesc.cpp index fc60ad3a85..d68c1c9c2e 100644 --- a/Code/Editor/Objects/ClassDesc.cpp +++ b/Code/Editor/Objects/ClassDesc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ClassDesc.h b/Code/Editor/Objects/ClassDesc.h index 83cdc39823..65a3a16865 100644 --- a/Code/Editor/Objects/ClassDesc.h +++ b/Code/Editor/Objects/ClassDesc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/DisplayContext.cpp b/Code/Editor/Objects/DisplayContext.cpp index 0e9b1c19f6..576f04b15f 100644 --- a/Code/Editor/Objects/DisplayContext.cpp +++ b/Code/Editor/Objects/DisplayContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/DisplayContext.h b/Code/Editor/Objects/DisplayContext.h index 1741614b3a..498b96c540 100644 --- a/Code/Editor/Objects/DisplayContext.h +++ b/Code/Editor/Objects/DisplayContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/DisplayContextShared.inl b/Code/Editor/Objects/DisplayContextShared.inl index e4ffedef8c..e122f68be7 100644 --- a/Code/Editor/Objects/DisplayContextShared.inl +++ b/Code/Editor/Objects/DisplayContextShared.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/EntityObject.cpp b/Code/Editor/Objects/EntityObject.cpp index 3fcc4abae0..6530947096 100644 --- a/Code/Editor/Objects/EntityObject.cpp +++ b/Code/Editor/Objects/EntityObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/EntityObject.h b/Code/Editor/Objects/EntityObject.h index ab4a43b897..8df5ab75ee 100644 --- a/Code/Editor/Objects/EntityObject.h +++ b/Code/Editor/Objects/EntityObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/Gizmo.cpp b/Code/Editor/Objects/Gizmo.cpp index 37ead864b4..f9b11c20be 100644 --- a/Code/Editor/Objects/Gizmo.cpp +++ b/Code/Editor/Objects/Gizmo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/Gizmo.h b/Code/Editor/Objects/Gizmo.h index 90f1ce997f..3e9058b77e 100644 --- a/Code/Editor/Objects/Gizmo.h +++ b/Code/Editor/Objects/Gizmo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/GizmoManager.cpp b/Code/Editor/Objects/GizmoManager.cpp index d770886bc4..662fadad74 100644 --- a/Code/Editor/Objects/GizmoManager.cpp +++ b/Code/Editor/Objects/GizmoManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/GizmoManager.h b/Code/Editor/Objects/GizmoManager.h index c32a48f657..8e7b3c6234 100644 --- a/Code/Editor/Objects/GizmoManager.h +++ b/Code/Editor/Objects/GizmoManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/IEntityObjectListener.h b/Code/Editor/Objects/IEntityObjectListener.h index 0642f0b729..06d8d18837 100644 --- a/Code/Editor/Objects/IEntityObjectListener.h +++ b/Code/Editor/Objects/IEntityObjectListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/LineGizmo.cpp b/Code/Editor/Objects/LineGizmo.cpp index 558e361f5c..ec8d3f9d7b 100644 --- a/Code/Editor/Objects/LineGizmo.cpp +++ b/Code/Editor/Objects/LineGizmo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/LineGizmo.h b/Code/Editor/Objects/LineGizmo.h index 9afd5a3636..1b03bdba31 100644 --- a/Code/Editor/Objects/LineGizmo.h +++ b/Code/Editor/Objects/LineGizmo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ObjectLoader.cpp b/Code/Editor/Objects/ObjectLoader.cpp index f8c1a99cf1..972ab987a2 100644 --- a/Code/Editor/Objects/ObjectLoader.cpp +++ b/Code/Editor/Objects/ObjectLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ObjectLoader.h b/Code/Editor/Objects/ObjectLoader.h index 401fdcb8d1..3d2bfa9633 100644 --- a/Code/Editor/Objects/ObjectLoader.h +++ b/Code/Editor/Objects/ObjectLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ObjectManager.cpp b/Code/Editor/Objects/ObjectManager.cpp index a7d470e852..5b8b497f2f 100644 --- a/Code/Editor/Objects/ObjectManager.cpp +++ b/Code/Editor/Objects/ObjectManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ObjectManager.h b/Code/Editor/Objects/ObjectManager.h index 8902337345..a82741e532 100644 --- a/Code/Editor/Objects/ObjectManager.h +++ b/Code/Editor/Objects/ObjectManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ObjectManagerEventBus.h b/Code/Editor/Objects/ObjectManagerEventBus.h index c837dc2fab..eba6fbde93 100644 --- a/Code/Editor/Objects/ObjectManagerEventBus.h +++ b/Code/Editor/Objects/ObjectManagerEventBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp b/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp index 7cc2bc679c..920bd74b04 100644 --- a/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp +++ b/Code/Editor/Objects/ObjectManagerLegacyUndo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/ObjectManagerLegacyUndo.h b/Code/Editor/Objects/ObjectManagerLegacyUndo.h index 3f9c5da168..d8259625ce 100644 --- a/Code/Editor/Objects/ObjectManagerLegacyUndo.h +++ b/Code/Editor/Objects/ObjectManagerLegacyUndo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/SelectionGroup.cpp b/Code/Editor/Objects/SelectionGroup.cpp index 2446b8323d..97deca493f 100644 --- a/Code/Editor/Objects/SelectionGroup.cpp +++ b/Code/Editor/Objects/SelectionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/SelectionGroup.h b/Code/Editor/Objects/SelectionGroup.h index 9910a5ae2e..818a49b84c 100644 --- a/Code/Editor/Objects/SelectionGroup.h +++ b/Code/Editor/Objects/SelectionGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/SubObjSelection.cpp b/Code/Editor/Objects/SubObjSelection.cpp index 09f1b35d0a..a989daccc8 100644 --- a/Code/Editor/Objects/SubObjSelection.cpp +++ b/Code/Editor/Objects/SubObjSelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/SubObjSelection.h b/Code/Editor/Objects/SubObjSelection.h index 83471fea6a..7db548bde6 100644 --- a/Code/Editor/Objects/SubObjSelection.h +++ b/Code/Editor/Objects/SubObjSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/TrackGizmo.cpp b/Code/Editor/Objects/TrackGizmo.cpp index 211db51e0d..006e94be6e 100644 --- a/Code/Editor/Objects/TrackGizmo.cpp +++ b/Code/Editor/Objects/TrackGizmo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Objects/TrackGizmo.h b/Code/Editor/Objects/TrackGizmo.h index 046cb614ac..f76f62d032 100644 --- a/Code/Editor/Objects/TrackGizmo.h +++ b/Code/Editor/Objects/TrackGizmo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Platform/Android/editor_android.cmake b/Code/Editor/Platform/Android/editor_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Editor/Platform/Android/editor_android.cmake +++ b/Code/Editor/Platform/Android/editor_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Android/editor_lib_android.cmake b/Code/Editor/Platform/Android/editor_lib_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Editor/Platform/Android/editor_lib_android.cmake +++ b/Code/Editor/Platform/Android/editor_lib_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Common/Clang/editor_lib_clang.cmake b/Code/Editor/Platform/Common/Clang/editor_lib_clang.cmake index cd5ac335ed..098c83c0f5 100644 --- a/Code/Editor/Platform/Common/Clang/editor_lib_clang.cmake +++ b/Code/Editor/Platform/Common/Clang/editor_lib_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake b/Code/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake index 245ceb198b..23bca6f33d 100644 --- a/Code/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake +++ b/Code/Editor/Platform/Common/MSVC/editor_lib_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp b/Code/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp index 3d152e93c2..95a1177a84 100644 --- a/Code/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp +++ b/Code/Editor/Platform/Common/Unimplemented/Util/Mailer_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Platform/Linux/editor_core_files_linux.cmake b/Code/Editor/Platform/Linux/editor_core_files_linux.cmake index c438d42e11..7d7f211531 100644 --- a/Code/Editor/Platform/Linux/editor_core_files_linux.cmake +++ b/Code/Editor/Platform/Linux/editor_core_files_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Linux/editor_lib_linux.cmake b/Code/Editor/Platform/Linux/editor_lib_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Editor/Platform/Linux/editor_lib_linux.cmake +++ b/Code/Editor/Platform/Linux/editor_lib_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Linux/editor_linux.cmake b/Code/Editor/Platform/Linux/editor_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Editor/Platform/Linux/editor_linux.cmake +++ b/Code/Editor/Platform/Linux/editor_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Linux/platform_linux_files.cmake b/Code/Editor/Platform/Linux/platform_linux_files.cmake index 5293b5b7df..c84d157abe 100644 --- a/Code/Editor/Platform/Linux/platform_linux_files.cmake +++ b/Code/Editor/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Mac/editor_core_files_mac.cmake b/Code/Editor/Platform/Mac/editor_core_files_mac.cmake index 49b128b2c2..82459b1433 100644 --- a/Code/Editor/Platform/Mac/editor_core_files_mac.cmake +++ b/Code/Editor/Platform/Mac/editor_core_files_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Mac/editor_lib_mac.cmake b/Code/Editor/Platform/Mac/editor_lib_mac.cmake index 0363e17774..1a20e11221 100644 --- a/Code/Editor/Platform/Mac/editor_lib_mac.cmake +++ b/Code/Editor/Platform/Mac/editor_lib_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Mac/editor_mac.cmake b/Code/Editor/Platform/Mac/editor_mac.cmake index 523c180397..33e7a7662d 100644 --- a/Code/Editor/Platform/Mac/editor_mac.cmake +++ b/Code/Editor/Platform/Mac/editor_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Mac/platform_mac_files.cmake b/Code/Editor/Platform/Mac/platform_mac_files.cmake index 09845ae3d4..55872c7b46 100644 --- a/Code/Editor/Platform/Mac/platform_mac_files.cmake +++ b/Code/Editor/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Windows/Util/Mailer_Windows.cpp b/Code/Editor/Platform/Windows/Util/Mailer_Windows.cpp index e97cd5d1cc..c91bbfdf29 100644 --- a/Code/Editor/Platform/Windows/Util/Mailer_Windows.cpp +++ b/Code/Editor/Platform/Windows/Util/Mailer_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Platform/Windows/editor_core_files_windows.cmake b/Code/Editor/Platform/Windows/editor_core_files_windows.cmake index c438d42e11..7d7f211531 100644 --- a/Code/Editor/Platform/Windows/editor_core_files_windows.cmake +++ b/Code/Editor/Platform/Windows/editor_core_files_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Windows/editor_lib_windows.cmake b/Code/Editor/Platform/Windows/editor_lib_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Editor/Platform/Windows/editor_lib_windows.cmake +++ b/Code/Editor/Platform/Windows/editor_lib_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Windows/editor_windows.cmake b/Code/Editor/Platform/Windows/editor_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Editor/Platform/Windows/editor_windows.cmake +++ b/Code/Editor/Platform/Windows/editor_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/Windows/platform_windows_files.cmake b/Code/Editor/Platform/Windows/platform_windows_files.cmake index 70e7d818a3..3c22bf237a 100644 --- a/Code/Editor/Platform/Windows/platform_windows_files.cmake +++ b/Code/Editor/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/iOS/editor_ios.cmake b/Code/Editor/Platform/iOS/editor_ios.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Editor/Platform/iOS/editor_ios.cmake +++ b/Code/Editor/Platform/iOS/editor_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Platform/iOS/editor_lib_ios.cmake b/Code/Editor/Platform/iOS/editor_lib_ios.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Editor/Platform/iOS/editor_lib_ios.cmake +++ b/Code/Editor/Platform/iOS/editor_lib_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugin.cpp b/Code/Editor/Plugin.cpp index f6724d1e44..ae2ccc5806 100644 --- a/Code/Editor/Plugin.cpp +++ b/Code/Editor/Plugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugin.h b/Code/Editor/Plugin.h index f7e46d979f..c5811d96de 100644 --- a/Code/Editor/Plugin.h +++ b/Code/Editor/Plugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/PluginManager.cpp b/Code/Editor/PluginManager.cpp index 4093440366..de09d90b78 100644 --- a/Code/Editor/PluginManager.cpp +++ b/Code/Editor/PluginManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/PluginManager.h b/Code/Editor/PluginManager.h index 5f0600ec88..c4542bc742 100644 --- a/Code/Editor/PluginManager.h +++ b/Code/Editor/PluginManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/CMakeLists.txt b/Code/Editor/Plugins/CMakeLists.txt index 43c6c3ad8c..bfa52f0c0d 100644 --- a/Code/Editor/Plugins/CMakeLists.txt +++ b/Code/Editor/Plugins/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt b/Code/Editor/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt index adb02ba55e..4744b4e174 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp index 2bb39043b2..e26b49af32 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h index 6f67cd0854..27479ff9b3 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h index 04c10efa40..a80ca3ace2 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/ComponentEntityEditorPlugin_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp index ab8455c4ae..e18909d9bc 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h index 5330537f26..644ac575c2 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Objects/ComponentEntityObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp index 05b6bf86f1..77d51194bd 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h index ffe69326a8..a738edcb0e 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/SandboxIntegration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp index 42e055f36c..c033d7f3d5 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/ComponentEntityObjectStateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp index 460f7c8d0b..d44a1cb318 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp index b6e2805151..2f22bb57cc 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h index 593418c82d..74f779efcc 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/AssetCatalogModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp index d58ddb5746..44f1a23b73 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h index d33a3a1ee4..5fa24f1fa9 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/CategoriesList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp index fd70b4198f..6e0d6a5450 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h index 661094e728..6c93f8c06c 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentDataModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h index ea419498e3..30e7f93160 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp index b5923aed29..a899a0f864 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h index 5ddaef49c6..106732e843 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/ComponentPaletteWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp index e63eab4184..b61f384a13 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h index 0621e24e07..44d343d89c 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FavoriteComponentList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp index 82fee98ccb..5bf84fd61b 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h index 4603018d8b..a1fae7ceea 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/FilteredComponentList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp index 0c85566ed9..a8f2090226 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h index 4dbf0e0867..294a43b39a 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentPalette/InformationPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss index 93c8faa6f1..e3dadf6f22 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h index b9f5c3d9af..872db578ee 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerCacheBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp index 2c868e98d9..edc3950336 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h index 95ec8ae7b4..455e9f54f5 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp index f72ab6d572..3f62acda62 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx index 77b9cbeca0..09f3ea2c9b 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerListModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp index 0674b042cd..ed65d609c9 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h index be13755b05..f1c4ca227a 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp index 3fd562ce4b..660ea137cf 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx index e8f877ef79..bf5d95bebe 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSortFilterProxyModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp index 97f9c2e516..9df6f4eac0 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx index e85582cf78..cf05001184 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerTreeView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp index 3e87443eed..d69480b169 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx index ea28892847..75991424bb 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp index 7ebab4b05b..ad9bf00e79 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h index d79700963d..d5da6135f2 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp index 6d23b719c5..c58ec25cc4 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h index 911a671d45..5b33d2a4d7 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentEntityEditorOutlinerWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp index 05e582a6be..471ca7dad3 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h index 7f3ad51d83..20d59d190a 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/QComponentLevelEntityEditorMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake index 989c482dfd..c22385dd80 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake index 3bbd9d1789..dd41f570b4 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp index dd47a57a87..8e648bced8 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/dllmain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp index 27db7e1ddf..44bd87994c 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h index 42b525492c..8399da1f62 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetBrowserContextProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp index e1df9b01d8..adf4105807 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.h b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.h index 409f2bdb53..a35f3cd641 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.h +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterDocument.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp index 2e59e43c4a..260d8714a5 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.h b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.h index 1491532ad3..8c59cc138b 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.h +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterPlugin.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp index 4fced9b535..b72516876b 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h index ffa1fc267e..6d4d64ce80 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h +++ b/Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/CMakeLists.txt b/Code/Editor/Plugins/EditorAssetImporter/CMakeLists.txt index 26d8e5093b..c3db5f32ea 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/CMakeLists.txt +++ b/Code/Editor/Plugins/EditorAssetImporter/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h b/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h index aa9b430dc0..d01e8f3560 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h +++ b/Code/Editor/Plugins/EditorAssetImporter/EditorAssetImporter_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp index 567db6ba56..0a821b1779 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.h b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.h index f98614fb6d..8d9c25bc69 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.h +++ b/Code/Editor/Plugins/EditorAssetImporter/ImporterRootDisplay.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/Main.cpp b/Code/Editor/Plugins/EditorAssetImporter/Main.cpp index bfb1df732a..70a1c74776 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/Main.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp index df46507809..787da7fd3b 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp +++ b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.h b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.h index 717fe600a0..40bfbbb3c4 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.h +++ b/Code/Editor/Plugins/EditorAssetImporter/SceneSerializationHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake b/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake index 7180de932a..ad6ec4ffc7 100644 --- a/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake +++ b/Code/Editor/Plugins/EditorAssetImporter/editorassetimporter_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp b/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp index fc297b550b..81a1f82d4e 100644 --- a/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp +++ b/Code/Editor/Plugins/EditorCommon/ActionOutput.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/ActionOutput.h b/Code/Editor/Plugins/EditorCommon/ActionOutput.h index 83842622c0..67ae9bb297 100644 --- a/Code/Editor/Plugins/EditorCommon/ActionOutput.h +++ b/Code/Editor/Plugins/EditorCommon/ActionOutput.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp b/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp index ae03e43476..e54afc369d 100644 --- a/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp +++ b/Code/Editor/Plugins/EditorCommon/AxisHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/CMakeLists.txt b/Code/Editor/Plugins/EditorCommon/CMakeLists.txt index 4dfe9efe9a..96d9cce5b7 100644 --- a/Code/Editor/Plugins/EditorCommon/CMakeLists.txt +++ b/Code/Editor/Plugins/EditorCommon/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/EditorCommon/Cry_LegacyPhysUtils.h b/Code/Editor/Plugins/EditorCommon/Cry_LegacyPhysUtils.h index bee078f602..9309068974 100644 --- a/Code/Editor/Plugins/EditorCommon/Cry_LegacyPhysUtils.h +++ b/Code/Editor/Plugins/EditorCommon/Cry_LegacyPhysUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.cpp b/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.cpp index e788275436..ca281301dd 100644 --- a/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.cpp +++ b/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.h b/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.h index 8590da093b..b795bf47d8 100644 --- a/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.h +++ b/Code/Editor/Plugins/EditorCommon/DeepFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp b/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp index fdeaad17e9..87d0b47d1b 100644 --- a/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp +++ b/Code/Editor/Plugins/EditorCommon/DisplayContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.cpp b/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.cpp index 9e48e9f988..424cad7eb4 100644 --- a/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.cpp +++ b/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.h b/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.h index 8dc0246013..c3a8b52f06 100644 --- a/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.h +++ b/Code/Editor/Plugins/EditorCommon/DockTitleBarWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp index 545c0327ba..0d2d35bd04 100644 --- a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp +++ b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.h b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.h index bd747f1c05..d3f9fbfd24 100644 --- a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.h +++ b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/Ruler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp index 909d935aa7..45f5dc7e96 100644 --- a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp +++ b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h index e2e7c442f8..d1570feca3 100644 --- a/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h +++ b/Code/Editor/Plugins/EditorCommon/DrawingPrimitives/TimeSlider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp b/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp index 03cbcfeb07..f8f29f0c23 100644 --- a/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp +++ b/Code/Editor/Plugins/EditorCommon/EditorCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/EditorCommon.h b/Code/Editor/Plugins/EditorCommon/EditorCommon.h index 6a60ddd934..4f8dfea668 100644 --- a/Code/Editor/Plugins/EditorCommon/EditorCommon.h +++ b/Code/Editor/Plugins/EditorCommon/EditorCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/EditorCommonAPI.h b/Code/Editor/Plugins/EditorCommon/EditorCommonAPI.h index f1a406f96a..017a045419 100644 --- a/Code/Editor/Plugins/EditorCommon/EditorCommonAPI.h +++ b/Code/Editor/Plugins/EditorCommon/EditorCommonAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h b/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h index 2d1a9e9285..0fa561651c 100644 --- a/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h +++ b/Code/Editor/Plugins/EditorCommon/EditorCommon_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp b/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp index 70b5a68561..cbe849905a 100644 --- a/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp +++ b/Code/Editor/Plugins/EditorCommon/QtViewPane.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/Resource.h b/Code/Editor/Plugins/EditorCommon/Resource.h index fba44530f6..97ea9a320e 100644 --- a/Code/Editor/Plugins/EditorCommon/Resource.h +++ b/Code/Editor/Plugins/EditorCommon/Resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp index edc90bbd26..72d4b43249 100644 --- a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp +++ b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h index bc8aa0027a..63dd91d8e6 100644 --- a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h +++ b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/UiEditorDLLBus.h b/Code/Editor/Plugins/EditorCommon/UiEditorDLLBus.h index d5f93f8133..dc47efc290 100644 --- a/Code/Editor/Plugins/EditorCommon/UiEditorDLLBus.h +++ b/Code/Editor/Plugins/EditorCommon/UiEditorDLLBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidget.h b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidget.h index 608aa44556..9adce6eb5c 100644 --- a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidget.h +++ b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp index 8bafee313b..aa1cc71040 100644 --- a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp +++ b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h index 02236bfda6..ee46e99bbf 100644 --- a/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h +++ b/Code/Editor/Plugins/EditorCommon/WinWidget/WinWidgetManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake b/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake index 087a60adb1..5277f2456a 100644 --- a/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake +++ b/Code/Editor/Plugins/EditorCommon/editorcommon_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/EditorCommon/stdafx.cpp b/Code/Editor/Plugins/EditorCommon/stdafx.cpp index 06d0311a38..23e4c68c56 100644 --- a/Code/Editor/Plugins/EditorCommon/stdafx.cpp +++ b/Code/Editor/Plugins/EditorCommon/stdafx.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/FFMPEGPlugin/CMakeLists.txt b/Code/Editor/Plugins/FFMPEGPlugin/CMakeLists.txt index dd52fda360..342151f24a 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/CMakeLists.txt +++ b/Code/Editor/Plugins/FFMPEGPlugin/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp index 2c11ca60a8..8ebbc8cc9b 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp +++ b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.h b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.h index 07119c6d6f..604b5f36a3 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.h +++ b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h index 63b56c133d..3b015dd9a5 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h +++ b/Code/Editor/Plugins/FFMPEGPlugin/FFMPEGPlugin_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake b/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake index 150cff82fc..e6a3397606 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake +++ b/Code/Editor/Plugins/FFMPEGPlugin/ffmpegplugin_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/FFMPEGPlugin/main.cpp b/Code/Editor/Plugins/FFMPEGPlugin/main.cpp index 3efb69fa84..b3b2d7149b 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/main.cpp +++ b/Code/Editor/Plugins/FFMPEGPlugin/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/FFMPEGPlugin/resource.h b/Code/Editor/Plugins/FFMPEGPlugin/resource.h index 432df62428..1de830b499 100644 --- a/Code/Editor/Plugins/FFMPEGPlugin/resource.h +++ b/Code/Editor/Plugins/FFMPEGPlugin/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/CMakeLists.txt b/Code/Editor/Plugins/PerforcePlugin/CMakeLists.txt index 0b2db1afed..15a1147166 100644 --- a/Code/Editor/Plugins/PerforcePlugin/CMakeLists.txt +++ b/Code/Editor/Plugins/PerforcePlugin/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp index b043c12150..bcf256d6c0 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.h b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.h index accf23a485..478946577d 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.h +++ b/Code/Editor/Plugins/PerforcePlugin/PasswordDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp index 6dc9a19d4f..e69cd23832 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.h b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.h index 9f83e237d4..06fd2f0267 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.h +++ b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h index 091263f843..a3e0bc2f81 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h +++ b/Code/Editor/Plugins/PerforcePlugin/PerforcePlugin_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp index 0fa164a40c..735fb06d2e 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h index f951ae0eea..e0b9a63a0f 100644 --- a/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h +++ b/Code/Editor/Plugins/PerforcePlugin/PerforceSourceControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake b/Code/Editor/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake index 95bb1bbe1f..af3213209e 100644 --- a/Code/Editor/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake +++ b/Code/Editor/Plugins/PerforcePlugin/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake b/Code/Editor/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake index 160d454295..9156df0932 100644 --- a/Code/Editor/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake +++ b/Code/Editor/Plugins/PerforcePlugin/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake b/Code/Editor/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake index 160d454295..9156df0932 100644 --- a/Code/Editor/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake +++ b/Code/Editor/Plugins/PerforcePlugin/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/PerforcePlugin/main.cpp b/Code/Editor/Plugins/PerforcePlugin/main.cpp index 1f232d6f39..13861e60b1 100644 --- a/Code/Editor/Plugins/PerforcePlugin/main.cpp +++ b/Code/Editor/Plugins/PerforcePlugin/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake b/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake index f86e1b4fd9..c584511e66 100644 --- a/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake +++ b/Code/Editor/Plugins/PerforcePlugin/perforceplugin_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/PerforcePlugin/resource.h b/Code/Editor/Plugins/PerforcePlugin/resource.h index f1e8c222a9..1acf96abee 100644 --- a/Code/Editor/Plugins/PerforcePlugin/resource.h +++ b/Code/Editor/Plugins/PerforcePlugin/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/CMakeLists.txt b/Code/Editor/Plugins/ProjectSettingsTool/CMakeLists.txt index 312f4699b3..0906487ad6 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/CMakeLists.txt +++ b/Code/Editor/Plugins/ProjectSettingsTool/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp index edd6623382..68df8aa5e6 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.h b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.h index 500dfc2b53..e8e392f576 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/DefaultImageValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp index 59345756bd..bd01589700 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.h b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.h index 03da188570..df77717c4c 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/FunctorValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h b/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h index 7a4375d6da..2e3f370a92 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/LastPathBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings.h index aca6ebf2be..a6ab4f80db 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp index c2b1685dbb..146c2fc3d6 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.h index 60fac39149..52776d3ce3 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp index 25b95bc368..724e47c87b 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.h index 8773d78c9d..b104721b71 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp index bc54719f50..d29376cfa7 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h index 6691842bf1..976ed3ec4f 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_Ios.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_common.h b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_common.h index 266655aa1b..6ac48d518f 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_common.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlatformSettings_common.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Platforms.h b/Code/Editor/Plugins/ProjectSettingsTool/Platforms.h index cfa3e8a633..8516367657 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Platforms.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/Platforms.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp index bc54d0703b..fe8c643b89 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.h b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.h index ceea9416fb..4a41550b2a 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PlistDictionary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp index b2d354a91c..15193b1aa4 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h index feadafbba0..b994ab1d72 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp index 9110a7e826..107d0829ba 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h index 7586381966..91bb9ea902 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsSerialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp index bc685d9d2d..f1a2aafd1e 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h index 4e05216cf2..8979672f99 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsToolWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h index e1e5f5b1dc..49b28d9834 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsTool_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp index 635847b5ed..a38ae10faf 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h index 8f0bf15e6d..9dc65ef6fd 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ProjectSettingsValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp index e75b546493..725ae718b6 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.h index ae09bb92bd..973526e951 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFileSelect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp index f732167cdc..635d7058f2 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h index bd85b88b97..16f4a51a42 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValBrowseEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp index 13f7ac5f92..dd0d8f69fb 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h index 9f62e1e856..91d7495aee 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyFuncValLineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp index d60c30ad80..a47c8c3dc4 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.h index b0054b59b7..df61a423aa 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyImagePreview.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp index c4078a51b9..ea13b00a8e 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.h b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.h index 05f5bb6459..4ebd23dda2 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/PropertyLinked.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp b/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp index c056696fe0..b8b92e5197 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Utils.h b/Code/Editor/Plugins/ProjectSettingsTool/Utils.h index 7b21ccc2f1..6101491711 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Utils.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp index 6ecde10d9f..c873b58a0b 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.h b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.h index a02ab29c75..fb3407faee 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ValidationHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/ValidatorBus.h b/Code/Editor/Plugins/ProjectSettingsTool/ValidatorBus.h index fde91c2e7f..634f9d21e1 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/ValidatorBus.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/ValidatorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp b/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp index 51525d5d96..8484a2937a 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/Validators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Validators.h b/Code/Editor/Plugins/ProjectSettingsTool/Validators.h index 9013ae30f3..887195b611 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Validators.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/Validators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/Validators_impl.h b/Code/Editor/Plugins/ProjectSettingsTool/Validators_impl.h index 577eb4b4f4..3671e7bcc8 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/Validators_impl.h +++ b/Code/Editor/Plugins/ProjectSettingsTool/Validators_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/main.cpp b/Code/Editor/Plugins/ProjectSettingsTool/main.cpp index c4fa47f684..a348f81f2b 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/main.cpp +++ b/Code/Editor/Plugins/ProjectSettingsTool/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake b/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake index ddeac31150..5d418e9926 100644 --- a/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake +++ b/Code/Editor/Plugins/ProjectSettingsTool/projectsettingstool_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/PreferencesStdPages.cpp b/Code/Editor/PreferencesStdPages.cpp index f15dc02595..c2197c0857 100644 --- a/Code/Editor/PreferencesStdPages.cpp +++ b/Code/Editor/PreferencesStdPages.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/PreferencesStdPages.h b/Code/Editor/PreferencesStdPages.h index e3b0779d0c..01a087e18c 100644 --- a/Code/Editor/PreferencesStdPages.h +++ b/Code/Editor/PreferencesStdPages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ProcessInfo.cpp b/Code/Editor/ProcessInfo.cpp index c7298ed07e..f038e3af31 100644 --- a/Code/Editor/ProcessInfo.cpp +++ b/Code/Editor/ProcessInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ProcessInfo.h b/Code/Editor/ProcessInfo.h index 4fa7487323..26a3a6c15c 100644 --- a/Code/Editor/ProcessInfo.h +++ b/Code/Editor/ProcessInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/PythonEditorEventsBus.h b/Code/Editor/PythonEditorEventsBus.h index 49a18b69f2..d72487bf59 100644 --- a/Code/Editor/PythonEditorEventsBus.h +++ b/Code/Editor/PythonEditorEventsBus.h @@ -1,6 +1,6 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/PythonEditorFuncs.cpp b/Code/Editor/PythonEditorFuncs.cpp index da5bf73552..41ae614492 100644 --- a/Code/Editor/PythonEditorFuncs.cpp +++ b/Code/Editor/PythonEditorFuncs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/PythonEditorFuncs.h b/Code/Editor/PythonEditorFuncs.h index a37a8e946b..1b3a7115b6 100644 --- a/Code/Editor/PythonEditorFuncs.h +++ b/Code/Editor/PythonEditorFuncs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/ClickableLabel.cpp b/Code/Editor/QtUI/ClickableLabel.cpp index 5e35223b76..2780f584c4 100644 --- a/Code/Editor/QtUI/ClickableLabel.cpp +++ b/Code/Editor/QtUI/ClickableLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/ClickableLabel.h b/Code/Editor/QtUI/ClickableLabel.h index 4eebc853b0..a3e2edfeaa 100644 --- a/Code/Editor/QtUI/ClickableLabel.h +++ b/Code/Editor/QtUI/ClickableLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/ColorButton.cpp b/Code/Editor/QtUI/ColorButton.cpp index 9fc6c77d85..7d700fbbfe 100644 --- a/Code/Editor/QtUI/ColorButton.cpp +++ b/Code/Editor/QtUI/ColorButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/ColorButton.h b/Code/Editor/QtUI/ColorButton.h index 8bfda2bb22..8e445a4b64 100644 --- a/Code/Editor/QtUI/ColorButton.h +++ b/Code/Editor/QtUI/ColorButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/ColorButton_mac.mm b/Code/Editor/QtUI/ColorButton_mac.mm index d76e6717f2..963a3dac66 100644 --- a/Code/Editor/QtUI/ColorButton_mac.mm +++ b/Code/Editor/QtUI/ColorButton_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/PixmapLabelPreview.cpp b/Code/Editor/QtUI/PixmapLabelPreview.cpp index 3944aaf4a5..f5983bce2b 100644 --- a/Code/Editor/QtUI/PixmapLabelPreview.cpp +++ b/Code/Editor/QtUI/PixmapLabelPreview.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/PixmapLabelPreview.h b/Code/Editor/QtUI/PixmapLabelPreview.h index 8690b3472c..38206b70ff 100644 --- a/Code/Editor/QtUI/PixmapLabelPreview.h +++ b/Code/Editor/QtUI/PixmapLabelPreview.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/QCollapsibleGroupBox.cpp b/Code/Editor/QtUI/QCollapsibleGroupBox.cpp index 3b5a4d72aa..6a9edacdbe 100644 --- a/Code/Editor/QtUI/QCollapsibleGroupBox.cpp +++ b/Code/Editor/QtUI/QCollapsibleGroupBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/QCollapsibleGroupBox.h b/Code/Editor/QtUI/QCollapsibleGroupBox.h index 8bd356b3c4..a1d31bc1b3 100644 --- a/Code/Editor/QtUI/QCollapsibleGroupBox.h +++ b/Code/Editor/QtUI/QCollapsibleGroupBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/WaitCursor.cpp b/Code/Editor/QtUI/WaitCursor.cpp index dcd4ca59e6..6b7b395f15 100644 --- a/Code/Editor/QtUI/WaitCursor.cpp +++ b/Code/Editor/QtUI/WaitCursor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUI/WaitCursor.h b/Code/Editor/QtUI/WaitCursor.h index 67a497116a..7adad2dbb8 100644 --- a/Code/Editor/QtUI/WaitCursor.h +++ b/Code/Editor/QtUI/WaitCursor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUtil.h b/Code/Editor/QtUtil.h index b01a9a938f..5ba8476ba3 100644 --- a/Code/Editor/QtUtil.h +++ b/Code/Editor/QtUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtUtilWin.h b/Code/Editor/QtUtilWin.h index 6139f68f46..db1c897039 100644 --- a/Code/Editor/QtUtilWin.h +++ b/Code/Editor/QtUtilWin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtViewPane.h b/Code/Editor/QtViewPane.h index 3ba95101cb..8367af3675 100644 --- a/Code/Editor/QtViewPane.h +++ b/Code/Editor/QtViewPane.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtViewPaneManager.cpp b/Code/Editor/QtViewPaneManager.cpp index 57ef840f2a..35b2160a1f 100644 --- a/Code/Editor/QtViewPaneManager.cpp +++ b/Code/Editor/QtViewPaneManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QtViewPaneManager.h b/Code/Editor/QtViewPaneManager.h index d106329be3..aa382c41c0 100644 --- a/Code/Editor/QtViewPaneManager.h +++ b/Code/Editor/QtViewPaneManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QuickAccessBar.cpp b/Code/Editor/QuickAccessBar.cpp index d63980a4e9..c9604d894f 100644 --- a/Code/Editor/QuickAccessBar.cpp +++ b/Code/Editor/QuickAccessBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/QuickAccessBar.h b/Code/Editor/QuickAccessBar.h index 5859c86869..2011b166e6 100644 --- a/Code/Editor/QuickAccessBar.h +++ b/Code/Editor/QuickAccessBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/RenderHelpers/AxisHelper.cpp b/Code/Editor/RenderHelpers/AxisHelper.cpp index 0df1e42720..a10604d16b 100644 --- a/Code/Editor/RenderHelpers/AxisHelper.cpp +++ b/Code/Editor/RenderHelpers/AxisHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/RenderHelpers/AxisHelper.h b/Code/Editor/RenderHelpers/AxisHelper.h index f05d58712f..5d07cb246e 100644 --- a/Code/Editor/RenderHelpers/AxisHelper.h +++ b/Code/Editor/RenderHelpers/AxisHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/RenderHelpers/AxisHelperShared.inl b/Code/Editor/RenderHelpers/AxisHelperShared.inl index 35ed2dd133..e161534f7b 100644 --- a/Code/Editor/RenderHelpers/AxisHelperShared.inl +++ b/Code/Editor/RenderHelpers/AxisHelperShared.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/RenderViewport.cpp b/Code/Editor/RenderViewport.cpp index 88d24a068b..8d6bcf021b 100644 --- a/Code/Editor/RenderViewport.cpp +++ b/Code/Editor/RenderViewport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/RenderViewport.h b/Code/Editor/RenderViewport.h index d98a149a56..1764028dd6 100644 --- a/Code/Editor/RenderViewport.h +++ b/Code/Editor/RenderViewport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/RenderViewport_mac.mm b/Code/Editor/RenderViewport_mac.mm index 664e7d90a6..d078ad03dd 100644 --- a/Code/Editor/RenderViewport_mac.mm +++ b/Code/Editor/RenderViewport_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Report.h b/Code/Editor/Report.h index 5ca8b98f60..e2f13b38a0 100644 --- a/Code/Editor/Report.h +++ b/Code/Editor/Report.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ResizeResolutionDialog.cpp b/Code/Editor/ResizeResolutionDialog.cpp index db580e9214..97e1b35c28 100644 --- a/Code/Editor/ResizeResolutionDialog.cpp +++ b/Code/Editor/ResizeResolutionDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ResizeResolutionDialog.h b/Code/Editor/ResizeResolutionDialog.h index c0593c0d24..0655bc0026 100644 --- a/Code/Editor/ResizeResolutionDialog.h +++ b/Code/Editor/ResizeResolutionDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Resource.h b/Code/Editor/Resource.h index 9759c5c3a6..e7f3f7898f 100644 --- a/Code/Editor/Resource.h +++ b/Code/Editor/Resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ResourceSelectorHost.cpp b/Code/Editor/ResourceSelectorHost.cpp index 8196d60d31..06d6c484ad 100644 --- a/Code/Editor/ResourceSelectorHost.cpp +++ b/Code/Editor/ResourceSelectorHost.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ResourceSelectorHost.h b/Code/Editor/ResourceSelectorHost.h index a150c6cf05..ab4eb15d22 100644 --- a/Code/Editor/ResourceSelectorHost.h +++ b/Code/Editor/ResourceSelectorHost.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SelectEAXPresetDlg.cpp b/Code/Editor/SelectEAXPresetDlg.cpp index 6f61032b2d..93b8eac42b 100644 --- a/Code/Editor/SelectEAXPresetDlg.cpp +++ b/Code/Editor/SelectEAXPresetDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SelectEAXPresetDlg.h b/Code/Editor/SelectEAXPresetDlg.h index a524726302..5443c03c27 100644 --- a/Code/Editor/SelectEAXPresetDlg.h +++ b/Code/Editor/SelectEAXPresetDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SelectLightAnimationDialog.cpp b/Code/Editor/SelectLightAnimationDialog.cpp index 8ba66693bb..210205f364 100644 --- a/Code/Editor/SelectLightAnimationDialog.cpp +++ b/Code/Editor/SelectLightAnimationDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SelectLightAnimationDialog.h b/Code/Editor/SelectLightAnimationDialog.h index 8184856cf6..5fd908dbf7 100644 --- a/Code/Editor/SelectLightAnimationDialog.h +++ b/Code/Editor/SelectLightAnimationDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SelectSequenceDialog.cpp b/Code/Editor/SelectSequenceDialog.cpp index 3d6e194dd8..627d9ad8e4 100644 --- a/Code/Editor/SelectSequenceDialog.cpp +++ b/Code/Editor/SelectSequenceDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SelectSequenceDialog.h b/Code/Editor/SelectSequenceDialog.h index 60408f6bfd..90cc948723 100644 --- a/Code/Editor/SelectSequenceDialog.h +++ b/Code/Editor/SelectSequenceDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Settings.cpp b/Code/Editor/Settings.cpp index e039b50707..ab79dc212a 100644 --- a/Code/Editor/Settings.cpp +++ b/Code/Editor/Settings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Settings.h b/Code/Editor/Settings.h index a4cfdf1163..cef77de6a7 100644 --- a/Code/Editor/Settings.h +++ b/Code/Editor/Settings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SettingsManager.cpp b/Code/Editor/SettingsManager.cpp index 43291f21eb..66b610aa2e 100644 --- a/Code/Editor/SettingsManager.cpp +++ b/Code/Editor/SettingsManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SettingsManager.h b/Code/Editor/SettingsManager.h index a67599959b..93a00f0066 100644 --- a/Code/Editor/SettingsManager.h +++ b/Code/Editor/SettingsManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SettingsManagerDialog.cpp b/Code/Editor/SettingsManagerDialog.cpp index de85a2e798..f1a8a9cfc7 100644 --- a/Code/Editor/SettingsManagerDialog.cpp +++ b/Code/Editor/SettingsManagerDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SettingsManagerDialog.h b/Code/Editor/SettingsManagerDialog.h index dd09db112a..3e04dbc7fd 100644 --- a/Code/Editor/SettingsManagerDialog.h +++ b/Code/Editor/SettingsManagerDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ShortcutDispatcher.cpp b/Code/Editor/ShortcutDispatcher.cpp index 2c8d3114ed..519d7e8a79 100644 --- a/Code/Editor/ShortcutDispatcher.cpp +++ b/Code/Editor/ShortcutDispatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ShortcutDispatcher.h b/Code/Editor/ShortcutDispatcher.h index aa51290743..219e42ce43 100644 --- a/Code/Editor/ShortcutDispatcher.h +++ b/Code/Editor/ShortcutDispatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/StartupLogoDialog.cpp b/Code/Editor/StartupLogoDialog.cpp index 8faeee2531..d26f174821 100644 --- a/Code/Editor/StartupLogoDialog.cpp +++ b/Code/Editor/StartupLogoDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/StartupLogoDialog.h b/Code/Editor/StartupLogoDialog.h index e3c32cc9aa..693c93ee63 100644 --- a/Code/Editor/StartupLogoDialog.h +++ b/Code/Editor/StartupLogoDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/StartupTraceHandler.cpp b/Code/Editor/StartupTraceHandler.cpp index 77ba96fbee..03c2a4b0bd 100644 --- a/Code/Editor/StartupTraceHandler.cpp +++ b/Code/Editor/StartupTraceHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/StartupTraceHandler.h b/Code/Editor/StartupTraceHandler.h index 53a7745418..4591c683c5 100644 --- a/Code/Editor/StartupTraceHandler.h +++ b/Code/Editor/StartupTraceHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/StringDlg.cpp b/Code/Editor/StringDlg.cpp index b0bfeead9b..06af1837c9 100644 --- a/Code/Editor/StringDlg.cpp +++ b/Code/Editor/StringDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/StringDlg.h b/Code/Editor/StringDlg.h index 905b66d3fc..4fb69e40a7 100644 --- a/Code/Editor/StringDlg.h +++ b/Code/Editor/StringDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Style/Editor.qss b/Code/Editor/Style/Editor.qss index ded554664c..d917cce79b 100644 --- a/Code/Editor/Style/Editor.qss +++ b/Code/Editor/Style/Editor.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Style/EditorPreferencesDialog.qss b/Code/Editor/Style/EditorPreferencesDialog.qss index a70659c9f9..c315629787 100644 --- a/Code/Editor/Style/EditorPreferencesDialog.qss +++ b/Code/Editor/Style/EditorPreferencesDialog.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Style/GraphicsSettingsDialog.qss b/Code/Editor/Style/GraphicsSettingsDialog.qss index 2bef28766e..3af8c4c05b 100644 --- a/Code/Editor/Style/GraphicsSettingsDialog.qss +++ b/Code/Editor/Style/GraphicsSettingsDialog.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SurfaceTypeValidator.cpp b/Code/Editor/SurfaceTypeValidator.cpp index be598a14fc..39c5f6ff7e 100644 --- a/Code/Editor/SurfaceTypeValidator.cpp +++ b/Code/Editor/SurfaceTypeValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/SurfaceTypeValidator.h b/Code/Editor/SurfaceTypeValidator.h index cbfb6aa847..340d1acf79 100644 --- a/Code/Editor/SurfaceTypeValidator.h +++ b/Code/Editor/SurfaceTypeValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolBox.cpp b/Code/Editor/ToolBox.cpp index c202e5aa6c..1dd22f678d 100644 --- a/Code/Editor/ToolBox.cpp +++ b/Code/Editor/ToolBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolBox.h b/Code/Editor/ToolBox.h index 39f3cbe695..84bf1d583c 100644 --- a/Code/Editor/ToolBox.h +++ b/Code/Editor/ToolBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolbarCustomizationDialog.cpp b/Code/Editor/ToolbarCustomizationDialog.cpp index 93183b3064..4eb948cb51 100644 --- a/Code/Editor/ToolbarCustomizationDialog.cpp +++ b/Code/Editor/ToolbarCustomizationDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolbarCustomizationDialog.h b/Code/Editor/ToolbarCustomizationDialog.h index e2f33cfc0a..fd807efabe 100644 --- a/Code/Editor/ToolbarCustomizationDialog.h +++ b/Code/Editor/ToolbarCustomizationDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolbarManager.cpp b/Code/Editor/ToolbarManager.cpp index f4009c5bbd..5a0ba33c02 100644 --- a/Code/Editor/ToolbarManager.cpp +++ b/Code/Editor/ToolbarManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolbarManager.h b/Code/Editor/ToolbarManager.h index 681b0ee389..0ab1085a7a 100644 --- a/Code/Editor/ToolbarManager.h +++ b/Code/Editor/ToolbarManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolsConfigPage.cpp b/Code/Editor/ToolsConfigPage.cpp index 2cb904d393..cae3a99c73 100644 --- a/Code/Editor/ToolsConfigPage.cpp +++ b/Code/Editor/ToolsConfigPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ToolsConfigPage.h b/Code/Editor/ToolsConfigPage.h index b79c5f71c1..cc8f7f4ccb 100644 --- a/Code/Editor/ToolsConfigPage.h +++ b/Code/Editor/ToolsConfigPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TopRendererWnd.cpp b/Code/Editor/TopRendererWnd.cpp index cb5d3069b2..d9d5b02b2a 100644 --- a/Code/Editor/TopRendererWnd.cpp +++ b/Code/Editor/TopRendererWnd.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TopRendererWnd.h b/Code/Editor/TopRendererWnd.h index b47913caa9..099d191bf5 100644 --- a/Code/Editor/TopRendererWnd.h +++ b/Code/Editor/TopRendererWnd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/2DBezierKeyUIControls.cpp b/Code/Editor/TrackView/2DBezierKeyUIControls.cpp index 8f00f66097..daabb17bea 100644 --- a/Code/Editor/TrackView/2DBezierKeyUIControls.cpp +++ b/Code/Editor/TrackView/2DBezierKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/AssetBlendKeyUIControls.cpp b/Code/Editor/TrackView/AssetBlendKeyUIControls.cpp index c51cded20b..74bc7945a6 100644 --- a/Code/Editor/TrackView/AssetBlendKeyUIControls.cpp +++ b/Code/Editor/TrackView/AssetBlendKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/AtomOutputFrameCapture.cpp b/Code/Editor/TrackView/AtomOutputFrameCapture.cpp index f68260f46f..d5ceeae9b2 100644 --- a/Code/Editor/TrackView/AtomOutputFrameCapture.cpp +++ b/Code/Editor/TrackView/AtomOutputFrameCapture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/AtomOutputFrameCapture.h b/Code/Editor/TrackView/AtomOutputFrameCapture.h index afc379465b..b34ddf1eb1 100644 --- a/Code/Editor/TrackView/AtomOutputFrameCapture.h +++ b/Code/Editor/TrackView/AtomOutputFrameCapture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/CaptureKeyUIControls.cpp b/Code/Editor/TrackView/CaptureKeyUIControls.cpp index 0125a0a845..d01e9f3260 100644 --- a/Code/Editor/TrackView/CaptureKeyUIControls.cpp +++ b/Code/Editor/TrackView/CaptureKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/CharacterKeyUIControls.cpp b/Code/Editor/TrackView/CharacterKeyUIControls.cpp index 797c1fdf82..d1e2a838ba 100644 --- a/Code/Editor/TrackView/CharacterKeyUIControls.cpp +++ b/Code/Editor/TrackView/CharacterKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/CommentKeyUIControls.cpp b/Code/Editor/TrackView/CommentKeyUIControls.cpp index 106c0120b9..8864b60d78 100644 --- a/Code/Editor/TrackView/CommentKeyUIControls.cpp +++ b/Code/Editor/TrackView/CommentKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/CommentNodeAnimator.cpp b/Code/Editor/TrackView/CommentNodeAnimator.cpp index b60b17ceea..0224006aef 100644 --- a/Code/Editor/TrackView/CommentNodeAnimator.cpp +++ b/Code/Editor/TrackView/CommentNodeAnimator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/CommentNodeAnimator.h b/Code/Editor/TrackView/CommentNodeAnimator.h index d6f2b033f7..fe7a407e93 100644 --- a/Code/Editor/TrackView/CommentNodeAnimator.h +++ b/Code/Editor/TrackView/CommentNodeAnimator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/ConsoleKeyUIControls.cpp b/Code/Editor/TrackView/ConsoleKeyUIControls.cpp index 4caeed0625..6f472bf733 100644 --- a/Code/Editor/TrackView/ConsoleKeyUIControls.cpp +++ b/Code/Editor/TrackView/ConsoleKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/DirectorNodeAnimator.cpp b/Code/Editor/TrackView/DirectorNodeAnimator.cpp index cc764af9e3..dad6794e72 100644 --- a/Code/Editor/TrackView/DirectorNodeAnimator.cpp +++ b/Code/Editor/TrackView/DirectorNodeAnimator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/DirectorNodeAnimator.h b/Code/Editor/TrackView/DirectorNodeAnimator.h index a661ed2ef3..fba1a09bbd 100644 --- a/Code/Editor/TrackView/DirectorNodeAnimator.h +++ b/Code/Editor/TrackView/DirectorNodeAnimator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/EditorTrackViewEventsBus.h b/Code/Editor/TrackView/EditorTrackViewEventsBus.h index 20630e1ad0..707d4e3dac 100644 --- a/Code/Editor/TrackView/EditorTrackViewEventsBus.h +++ b/Code/Editor/TrackView/EditorTrackViewEventsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/EventKeyUIControls.cpp b/Code/Editor/TrackView/EventKeyUIControls.cpp index 9ec5b9cc00..8b95cd26de 100644 --- a/Code/Editor/TrackView/EventKeyUIControls.cpp +++ b/Code/Editor/TrackView/EventKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/GotoKeyUIControls.cpp b/Code/Editor/TrackView/GotoKeyUIControls.cpp index 7e3fc22fee..3de90f19d8 100644 --- a/Code/Editor/TrackView/GotoKeyUIControls.cpp +++ b/Code/Editor/TrackView/GotoKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/ScreenFaderKeyUIControls.cpp b/Code/Editor/TrackView/ScreenFaderKeyUIControls.cpp index 1a1c3f7e2f..251991f891 100644 --- a/Code/Editor/TrackView/ScreenFaderKeyUIControls.cpp +++ b/Code/Editor/TrackView/ScreenFaderKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/SelectKeyUIControls.cpp b/Code/Editor/TrackView/SelectKeyUIControls.cpp index ab7c310f64..40956039f3 100644 --- a/Code/Editor/TrackView/SelectKeyUIControls.cpp +++ b/Code/Editor/TrackView/SelectKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/SequenceBatchRenderDialog.cpp b/Code/Editor/TrackView/SequenceBatchRenderDialog.cpp index e4ca619446..e5a51051a2 100644 --- a/Code/Editor/TrackView/SequenceBatchRenderDialog.cpp +++ b/Code/Editor/TrackView/SequenceBatchRenderDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/SequenceBatchRenderDialog.h b/Code/Editor/TrackView/SequenceBatchRenderDialog.h index d2f4b9ac76..4ad0e75b3c 100644 --- a/Code/Editor/TrackView/SequenceBatchRenderDialog.h +++ b/Code/Editor/TrackView/SequenceBatchRenderDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/SequenceKeyUIControls.cpp b/Code/Editor/TrackView/SequenceKeyUIControls.cpp index 11023b3c06..8eb3ed30b8 100644 --- a/Code/Editor/TrackView/SequenceKeyUIControls.cpp +++ b/Code/Editor/TrackView/SequenceKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/SoundKeyUIControls.cpp b/Code/Editor/TrackView/SoundKeyUIControls.cpp index a4bbb23a61..4b1a04013b 100644 --- a/Code/Editor/TrackView/SoundKeyUIControls.cpp +++ b/Code/Editor/TrackView/SoundKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp index 67cac584be..f0e89e54f3 100644 --- a/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp +++ b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.h b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.h index 678a4ff244..9d47069f36 100644 --- a/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.h +++ b/Code/Editor/TrackView/TVCustomizeTrackColorsDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TVEventsDialog.cpp b/Code/Editor/TrackView/TVEventsDialog.cpp index 72849cedc4..e551c4dacb 100644 --- a/Code/Editor/TrackView/TVEventsDialog.cpp +++ b/Code/Editor/TrackView/TVEventsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TVEventsDialog.h b/Code/Editor/TrackView/TVEventsDialog.h index d0651994b9..6a27d1ef85 100644 --- a/Code/Editor/TrackView/TVEventsDialog.h +++ b/Code/Editor/TrackView/TVEventsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TVSequenceProps.cpp b/Code/Editor/TrackView/TVSequenceProps.cpp index 0fbb5668c2..f97a9453e0 100644 --- a/Code/Editor/TrackView/TVSequenceProps.cpp +++ b/Code/Editor/TrackView/TVSequenceProps.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TVSequenceProps.h b/Code/Editor/TrackView/TVSequenceProps.h index 775a3f624a..7ebf35a913 100644 --- a/Code/Editor/TrackView/TVSequenceProps.h +++ b/Code/Editor/TrackView/TVSequenceProps.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TimeRangeKeyUIControls.cpp b/Code/Editor/TrackView/TimeRangeKeyUIControls.cpp index 5208c4f1fe..3170edb9f0 100644 --- a/Code/Editor/TrackView/TimeRangeKeyUIControls.cpp +++ b/Code/Editor/TrackView/TimeRangeKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackEventKeyUIControls.cpp b/Code/Editor/TrackView/TrackEventKeyUIControls.cpp index 7faf1989f8..fc37dd1b1b 100644 --- a/Code/Editor/TrackView/TrackEventKeyUIControls.cpp +++ b/Code/Editor/TrackView/TrackEventKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewAnimNode.cpp b/Code/Editor/TrackView/TrackViewAnimNode.cpp index 52dcedea6c..67beaa2369 100644 --- a/Code/Editor/TrackView/TrackViewAnimNode.cpp +++ b/Code/Editor/TrackView/TrackViewAnimNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewAnimNode.h b/Code/Editor/TrackView/TrackViewAnimNode.h index e09312a147..1dc6e786b2 100644 --- a/Code/Editor/TrackView/TrackViewAnimNode.h +++ b/Code/Editor/TrackView/TrackViewAnimNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewCurveEditor.cpp b/Code/Editor/TrackView/TrackViewCurveEditor.cpp index 1f81274abb..5aecfcbbae 100644 --- a/Code/Editor/TrackView/TrackViewCurveEditor.cpp +++ b/Code/Editor/TrackView/TrackViewCurveEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewCurveEditor.h b/Code/Editor/TrackView/TrackViewCurveEditor.h index 379bdf9942..3d58b87be2 100644 --- a/Code/Editor/TrackView/TrackViewCurveEditor.h +++ b/Code/Editor/TrackView/TrackViewCurveEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewDialog.cpp b/Code/Editor/TrackView/TrackViewDialog.cpp index 161936228b..351ea12621 100644 --- a/Code/Editor/TrackView/TrackViewDialog.cpp +++ b/Code/Editor/TrackView/TrackViewDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewDialog.h b/Code/Editor/TrackView/TrackViewDialog.h index 43821de5be..67b8418a1e 100644 --- a/Code/Editor/TrackView/TrackViewDialog.h +++ b/Code/Editor/TrackView/TrackViewDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp b/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp index 5a2cdb3d84..aacab5c382 100644 --- a/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp +++ b/Code/Editor/TrackView/TrackViewDopeSheetBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewDopeSheetBase.h b/Code/Editor/TrackView/TrackViewDopeSheetBase.h index 0097c88c59..3a5c414c45 100644 --- a/Code/Editor/TrackView/TrackViewDopeSheetBase.h +++ b/Code/Editor/TrackView/TrackViewDopeSheetBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewDoubleSpinBox.cpp b/Code/Editor/TrackView/TrackViewDoubleSpinBox.cpp index 443d9083c1..c77348e4f6 100644 --- a/Code/Editor/TrackView/TrackViewDoubleSpinBox.cpp +++ b/Code/Editor/TrackView/TrackViewDoubleSpinBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewDoubleSpinBox.h b/Code/Editor/TrackView/TrackViewDoubleSpinBox.h index 5d5b89758e..61e4faa765 100644 --- a/Code/Editor/TrackView/TrackViewDoubleSpinBox.h +++ b/Code/Editor/TrackView/TrackViewDoubleSpinBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewEventNode.cpp b/Code/Editor/TrackView/TrackViewEventNode.cpp index a6bb756e53..3646000551 100644 --- a/Code/Editor/TrackView/TrackViewEventNode.cpp +++ b/Code/Editor/TrackView/TrackViewEventNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewEventNode.h b/Code/Editor/TrackView/TrackViewEventNode.h index d8a9f49b8c..5105021eba 100644 --- a/Code/Editor/TrackView/TrackViewEventNode.h +++ b/Code/Editor/TrackView/TrackViewEventNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewFindDlg.cpp b/Code/Editor/TrackView/TrackViewFindDlg.cpp index 4b21949971..0a3c7c122c 100644 --- a/Code/Editor/TrackView/TrackViewFindDlg.cpp +++ b/Code/Editor/TrackView/TrackViewFindDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewFindDlg.h b/Code/Editor/TrackView/TrackViewFindDlg.h index 96ebc248a0..91ffba80cf 100644 --- a/Code/Editor/TrackView/TrackViewFindDlg.h +++ b/Code/Editor/TrackView/TrackViewFindDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp b/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp index 8299960c80..8c00883020 100644 --- a/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp +++ b/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.h b/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.h index 925bb5db02..57dc4e18cc 100644 --- a/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.h +++ b/Code/Editor/TrackView/TrackViewKeyPropertiesDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewNode.cpp b/Code/Editor/TrackView/TrackViewNode.cpp index 320d16568d..3d9bde7e65 100644 --- a/Code/Editor/TrackView/TrackViewNode.cpp +++ b/Code/Editor/TrackView/TrackViewNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewNode.h b/Code/Editor/TrackView/TrackViewNode.h index 273e04de4b..046894c5b0 100644 --- a/Code/Editor/TrackView/TrackViewNode.h +++ b/Code/Editor/TrackView/TrackViewNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewNodeFactories.cpp b/Code/Editor/TrackView/TrackViewNodeFactories.cpp index b7439385a2..7bdcb4b608 100644 --- a/Code/Editor/TrackView/TrackViewNodeFactories.cpp +++ b/Code/Editor/TrackView/TrackViewNodeFactories.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewNodeFactories.h b/Code/Editor/TrackView/TrackViewNodeFactories.h index 5bfbabfe17..832c30e6a1 100644 --- a/Code/Editor/TrackView/TrackViewNodeFactories.h +++ b/Code/Editor/TrackView/TrackViewNodeFactories.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewNodes.cpp b/Code/Editor/TrackView/TrackViewNodes.cpp index 94f5eb2053..54d852bc57 100644 --- a/Code/Editor/TrackView/TrackViewNodes.cpp +++ b/Code/Editor/TrackView/TrackViewNodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewNodes.h b/Code/Editor/TrackView/TrackViewNodes.h index ac35ddf77c..251aeeadcf 100644 --- a/Code/Editor/TrackView/TrackViewNodes.h +++ b/Code/Editor/TrackView/TrackViewNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewPythonFuncs.cpp b/Code/Editor/TrackView/TrackViewPythonFuncs.cpp index af8c0f2186..04c5a179ba 100644 --- a/Code/Editor/TrackView/TrackViewPythonFuncs.cpp +++ b/Code/Editor/TrackView/TrackViewPythonFuncs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewPythonFuncs.h b/Code/Editor/TrackView/TrackViewPythonFuncs.h index e69e562e56..addae4c858 100644 --- a/Code/Editor/TrackView/TrackViewPythonFuncs.h +++ b/Code/Editor/TrackView/TrackViewPythonFuncs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewSequence.cpp b/Code/Editor/TrackView/TrackViewSequence.cpp index ff2b35d6fa..35924bbe6a 100644 --- a/Code/Editor/TrackView/TrackViewSequence.cpp +++ b/Code/Editor/TrackView/TrackViewSequence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewSequence.h b/Code/Editor/TrackView/TrackViewSequence.h index b25b810a84..f28b22c2c1 100644 --- a/Code/Editor/TrackView/TrackViewSequence.h +++ b/Code/Editor/TrackView/TrackViewSequence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewSequenceManager.cpp b/Code/Editor/TrackView/TrackViewSequenceManager.cpp index 78e54ea673..3906cd273f 100644 --- a/Code/Editor/TrackView/TrackViewSequenceManager.cpp +++ b/Code/Editor/TrackView/TrackViewSequenceManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewSequenceManager.h b/Code/Editor/TrackView/TrackViewSequenceManager.h index f7ad3f0812..9c5618bae3 100644 --- a/Code/Editor/TrackView/TrackViewSequenceManager.h +++ b/Code/Editor/TrackView/TrackViewSequenceManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewSplineCtrl.cpp b/Code/Editor/TrackView/TrackViewSplineCtrl.cpp index 452c731cbf..123d084c9b 100644 --- a/Code/Editor/TrackView/TrackViewSplineCtrl.cpp +++ b/Code/Editor/TrackView/TrackViewSplineCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewSplineCtrl.h b/Code/Editor/TrackView/TrackViewSplineCtrl.h index 6ed55a45e7..eecab088b1 100644 --- a/Code/Editor/TrackView/TrackViewSplineCtrl.h +++ b/Code/Editor/TrackView/TrackViewSplineCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewTimeline.cpp b/Code/Editor/TrackView/TrackViewTimeline.cpp index 5cb7d04483..56544786ab 100644 --- a/Code/Editor/TrackView/TrackViewTimeline.cpp +++ b/Code/Editor/TrackView/TrackViewTimeline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewTimeline.h b/Code/Editor/TrackView/TrackViewTimeline.h index bb3ddc4996..30e985996f 100644 --- a/Code/Editor/TrackView/TrackViewTimeline.h +++ b/Code/Editor/TrackView/TrackViewTimeline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewTrack.cpp b/Code/Editor/TrackView/TrackViewTrack.cpp index 20e9829e94..e95e64b840 100644 --- a/Code/Editor/TrackView/TrackViewTrack.cpp +++ b/Code/Editor/TrackView/TrackViewTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewTrack.h b/Code/Editor/TrackView/TrackViewTrack.h index dba6631164..d2045c2ccb 100644 --- a/Code/Editor/TrackView/TrackViewTrack.h +++ b/Code/Editor/TrackView/TrackViewTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewUndo.cpp b/Code/Editor/TrackView/TrackViewUndo.cpp index 64ce02036d..5f1e39ff6a 100644 --- a/Code/Editor/TrackView/TrackViewUndo.cpp +++ b/Code/Editor/TrackView/TrackViewUndo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackView/TrackViewUndo.h b/Code/Editor/TrackView/TrackViewUndo.h index 93cd9ba4c2..f94436962c 100644 --- a/Code/Editor/TrackView/TrackViewUndo.h +++ b/Code/Editor/TrackView/TrackViewUndo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackViewExportKeyTimeDlg.cpp b/Code/Editor/TrackViewExportKeyTimeDlg.cpp index 004d9d5c94..71e1aa0ae5 100644 --- a/Code/Editor/TrackViewExportKeyTimeDlg.cpp +++ b/Code/Editor/TrackViewExportKeyTimeDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackViewExportKeyTimeDlg.h b/Code/Editor/TrackViewExportKeyTimeDlg.h index 0ec9a07a47..0bbb990fa3 100644 --- a/Code/Editor/TrackViewExportKeyTimeDlg.h +++ b/Code/Editor/TrackViewExportKeyTimeDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackViewFBXImportPreviewDialog.cpp b/Code/Editor/TrackViewFBXImportPreviewDialog.cpp index 2ce9667082..de9099dc08 100644 --- a/Code/Editor/TrackViewFBXImportPreviewDialog.cpp +++ b/Code/Editor/TrackViewFBXImportPreviewDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackViewFBXImportPreviewDialog.h b/Code/Editor/TrackViewFBXImportPreviewDialog.h index 87118aa55b..4dc77a051a 100644 --- a/Code/Editor/TrackViewFBXImportPreviewDialog.h +++ b/Code/Editor/TrackViewFBXImportPreviewDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackViewNewSequenceDialog.cpp b/Code/Editor/TrackViewNewSequenceDialog.cpp index 17940c5fb5..2b65af1e88 100644 --- a/Code/Editor/TrackViewNewSequenceDialog.cpp +++ b/Code/Editor/TrackViewNewSequenceDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/TrackViewNewSequenceDialog.h b/Code/Editor/TrackViewNewSequenceDialog.h index b38c00a47c..5551f0b32f 100644 --- a/Code/Editor/TrackViewNewSequenceDialog.h +++ b/Code/Editor/TrackViewNewSequenceDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UIEnumsDatabase.cpp b/Code/Editor/UIEnumsDatabase.cpp index bc7d27ccb1..4df77e90fb 100644 --- a/Code/Editor/UIEnumsDatabase.cpp +++ b/Code/Editor/UIEnumsDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UIEnumsDatabase.h b/Code/Editor/UIEnumsDatabase.h index 4ed200d2ae..42c5457ed3 100644 --- a/Code/Editor/UIEnumsDatabase.h +++ b/Code/Editor/UIEnumsDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Undo/IUndoManagerListener.h b/Code/Editor/Undo/IUndoManagerListener.h index 9b9b2a894b..6c797a5298 100644 --- a/Code/Editor/Undo/IUndoManagerListener.h +++ b/Code/Editor/Undo/IUndoManagerListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Undo/IUndoObject.h b/Code/Editor/Undo/IUndoObject.h index cf125b7244..90b42fba96 100644 --- a/Code/Editor/Undo/IUndoObject.h +++ b/Code/Editor/Undo/IUndoObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Undo/Undo.cpp b/Code/Editor/Undo/Undo.cpp index fd1dbd4608..59be11c0df 100644 --- a/Code/Editor/Undo/Undo.cpp +++ b/Code/Editor/Undo/Undo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Undo/Undo.h b/Code/Editor/Undo/Undo.h index 8d38f2f028..c523035963 100644 --- a/Code/Editor/Undo/Undo.h +++ b/Code/Editor/Undo/Undo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Undo/UndoVariableChange.h b/Code/Editor/Undo/UndoVariableChange.h index eb643b699d..ae655369c1 100644 --- a/Code/Editor/Undo/UndoVariableChange.h +++ b/Code/Editor/Undo/UndoVariableChange.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoConfigSpec.cpp b/Code/Editor/UndoConfigSpec.cpp index 77746daac9..a8d8f96026 100644 --- a/Code/Editor/UndoConfigSpec.cpp +++ b/Code/Editor/UndoConfigSpec.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoConfigSpec.h b/Code/Editor/UndoConfigSpec.h index f81ab9fc26..2f29721f19 100644 --- a/Code/Editor/UndoConfigSpec.h +++ b/Code/Editor/UndoConfigSpec.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoDropDown.cpp b/Code/Editor/UndoDropDown.cpp index e7cffce0b9..7f8457ce5d 100644 --- a/Code/Editor/UndoDropDown.cpp +++ b/Code/Editor/UndoDropDown.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoDropDown.h b/Code/Editor/UndoDropDown.h index 015c0369bb..8c08a2be8a 100644 --- a/Code/Editor/UndoDropDown.h +++ b/Code/Editor/UndoDropDown.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoViewPosition.cpp b/Code/Editor/UndoViewPosition.cpp index dc2e54f98e..972dbb467b 100644 --- a/Code/Editor/UndoViewPosition.cpp +++ b/Code/Editor/UndoViewPosition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoViewPosition.h b/Code/Editor/UndoViewPosition.h index 4feb295117..1d48ba4196 100644 --- a/Code/Editor/UndoViewPosition.h +++ b/Code/Editor/UndoViewPosition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoViewRotation.cpp b/Code/Editor/UndoViewRotation.cpp index 35c7be2e40..7d470d0f04 100644 --- a/Code/Editor/UndoViewRotation.cpp +++ b/Code/Editor/UndoViewRotation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UndoViewRotation.h b/Code/Editor/UndoViewRotation.h index c9e32addd1..242cb91ed6 100644 --- a/Code/Editor/UndoViewRotation.h +++ b/Code/Editor/UndoViewRotation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UsedResources.cpp b/Code/Editor/UsedResources.cpp index 4239e8d467..b9ae63d8f1 100644 --- a/Code/Editor/UsedResources.cpp +++ b/Code/Editor/UsedResources.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UsedResources.h b/Code/Editor/UsedResources.h index 93b42429c2..5bf174c4e1 100644 --- a/Code/Editor/UsedResources.h +++ b/Code/Editor/UsedResources.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/UserMessageDefines.h b/Code/Editor/UserMessageDefines.h index 5cf9a14e4c..1c2593c7b7 100644 --- a/Code/Editor/UserMessageDefines.h +++ b/Code/Editor/UserMessageDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/3DConnexionDriver.cpp b/Code/Editor/Util/3DConnexionDriver.cpp index 64047383d8..7b03ce36e0 100644 --- a/Code/Editor/Util/3DConnexionDriver.cpp +++ b/Code/Editor/Util/3DConnexionDriver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/3DConnexionDriver.h b/Code/Editor/Util/3DConnexionDriver.h index 8f90c9c3b8..a00d2af6aa 100644 --- a/Code/Editor/Util/3DConnexionDriver.h +++ b/Code/Editor/Util/3DConnexionDriver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AbstractGroupProxyModel.cpp b/Code/Editor/Util/AbstractGroupProxyModel.cpp index 58840b505d..fada7481e9 100644 --- a/Code/Editor/Util/AbstractGroupProxyModel.cpp +++ b/Code/Editor/Util/AbstractGroupProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AbstractGroupProxyModel.h b/Code/Editor/Util/AbstractGroupProxyModel.h index 1532f144ce..ae690237d7 100644 --- a/Code/Editor/Util/AbstractGroupProxyModel.h +++ b/Code/Editor/Util/AbstractGroupProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AbstractSortModel.cpp b/Code/Editor/Util/AbstractSortModel.cpp index c5b6f5c535..0222901a8b 100644 --- a/Code/Editor/Util/AbstractSortModel.cpp +++ b/Code/Editor/Util/AbstractSortModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AbstractSortModel.h b/Code/Editor/Util/AbstractSortModel.h index cec5401754..3ea8682bd6 100644 --- a/Code/Editor/Util/AbstractSortModel.h +++ b/Code/Editor/Util/AbstractSortModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AffineParts.cpp b/Code/Editor/Util/AffineParts.cpp index 1cbac25d6d..ef68476446 100644 --- a/Code/Editor/Util/AffineParts.cpp +++ b/Code/Editor/Util/AffineParts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AffineParts.h b/Code/Editor/Util/AffineParts.h index 3c27c8a5da..975befc175 100644 --- a/Code/Editor/Util/AffineParts.h +++ b/Code/Editor/Util/AffineParts.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AutoDirectoryRestoreFileDialog.cpp b/Code/Editor/Util/AutoDirectoryRestoreFileDialog.cpp index b16b2d2106..2d5be106d6 100644 --- a/Code/Editor/Util/AutoDirectoryRestoreFileDialog.cpp +++ b/Code/Editor/Util/AutoDirectoryRestoreFileDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AutoDirectoryRestoreFileDialog.h b/Code/Editor/Util/AutoDirectoryRestoreFileDialog.h index 60b85570f1..60633774dd 100644 --- a/Code/Editor/Util/AutoDirectoryRestoreFileDialog.h +++ b/Code/Editor/Util/AutoDirectoryRestoreFileDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AutoLogTime.cpp b/Code/Editor/Util/AutoLogTime.cpp index 71d24ca079..17fbfb4999 100644 --- a/Code/Editor/Util/AutoLogTime.cpp +++ b/Code/Editor/Util/AutoLogTime.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/AutoLogTime.h b/Code/Editor/Util/AutoLogTime.h index 01aa7a6cf9..051e160185 100644 --- a/Code/Editor/Util/AutoLogTime.h +++ b/Code/Editor/Util/AutoLogTime.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColorUtils.cpp b/Code/Editor/Util/ColorUtils.cpp index 6fef5f5e85..9aa4536cde 100644 --- a/Code/Editor/Util/ColorUtils.cpp +++ b/Code/Editor/Util/ColorUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColorUtils.h b/Code/Editor/Util/ColorUtils.h index 9f322db678..86383009a4 100644 --- a/Code/Editor/Util/ColorUtils.h +++ b/Code/Editor/Util/ColorUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupHeaderView.cpp b/Code/Editor/Util/ColumnGroupHeaderView.cpp index ec4406f758..7b42646b59 100644 --- a/Code/Editor/Util/ColumnGroupHeaderView.cpp +++ b/Code/Editor/Util/ColumnGroupHeaderView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupHeaderView.h b/Code/Editor/Util/ColumnGroupHeaderView.h index 4d91e96329..995c93c696 100644 --- a/Code/Editor/Util/ColumnGroupHeaderView.h +++ b/Code/Editor/Util/ColumnGroupHeaderView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupItemDelegate.cpp b/Code/Editor/Util/ColumnGroupItemDelegate.cpp index 20bd64a9c1..83212c4809 100644 --- a/Code/Editor/Util/ColumnGroupItemDelegate.cpp +++ b/Code/Editor/Util/ColumnGroupItemDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupItemDelegate.h b/Code/Editor/Util/ColumnGroupItemDelegate.h index 2535a14c03..fd7da36aa3 100644 --- a/Code/Editor/Util/ColumnGroupItemDelegate.h +++ b/Code/Editor/Util/ColumnGroupItemDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupProxyModel.cpp b/Code/Editor/Util/ColumnGroupProxyModel.cpp index b2553e7ac1..effc558483 100644 --- a/Code/Editor/Util/ColumnGroupProxyModel.cpp +++ b/Code/Editor/Util/ColumnGroupProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupProxyModel.h b/Code/Editor/Util/ColumnGroupProxyModel.h index bc8988f544..4f3b95e16b 100644 --- a/Code/Editor/Util/ColumnGroupProxyModel.h +++ b/Code/Editor/Util/ColumnGroupProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupTreeView.cpp b/Code/Editor/Util/ColumnGroupTreeView.cpp index 769b5f64f6..7665f60c5e 100644 --- a/Code/Editor/Util/ColumnGroupTreeView.cpp +++ b/Code/Editor/Util/ColumnGroupTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnGroupTreeView.h b/Code/Editor/Util/ColumnGroupTreeView.h index a5b559dfdd..07f8f091d0 100644 --- a/Code/Editor/Util/ColumnGroupTreeView.h +++ b/Code/Editor/Util/ColumnGroupTreeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnSortProxyModel.cpp b/Code/Editor/Util/ColumnSortProxyModel.cpp index 6d41fead42..a5dc7c1ba7 100644 --- a/Code/Editor/Util/ColumnSortProxyModel.cpp +++ b/Code/Editor/Util/ColumnSortProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ColumnSortProxyModel.h b/Code/Editor/Util/ColumnSortProxyModel.h index 5508cc1240..877b2500f1 100644 --- a/Code/Editor/Util/ColumnSortProxyModel.h +++ b/Code/Editor/Util/ColumnSortProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Contrib/NvFloatMath.inl b/Code/Editor/Util/Contrib/NvFloatMath.inl index c6fa3bdabc..7088a36f02 100644 --- a/Code/Editor/Util/Contrib/NvFloatMath.inl +++ b/Code/Editor/Util/Contrib/NvFloatMath.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/CryMemFile.h b/Code/Editor/Util/CryMemFile.h index b2897e5914..2df6e68c13 100644 --- a/Code/Editor/Util/CryMemFile.h +++ b/Code/Editor/Util/CryMemFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/DynamicArray2D.cpp b/Code/Editor/Util/DynamicArray2D.cpp index 884dfe6863..63ee4755d7 100644 --- a/Code/Editor/Util/DynamicArray2D.cpp +++ b/Code/Editor/Util/DynamicArray2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/DynamicArray2D.h b/Code/Editor/Util/DynamicArray2D.h index 8aa6581e20..90d5767dae 100644 --- a/Code/Editor/Util/DynamicArray2D.h +++ b/Code/Editor/Util/DynamicArray2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/EditorAutoLevelLoadTest.cpp b/Code/Editor/Util/EditorAutoLevelLoadTest.cpp index 9917e93d53..e87dcc968e 100644 --- a/Code/Editor/Util/EditorAutoLevelLoadTest.cpp +++ b/Code/Editor/Util/EditorAutoLevelLoadTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/EditorAutoLevelLoadTest.h b/Code/Editor/Util/EditorAutoLevelLoadTest.h index 8d1189a35d..5908d96278 100644 --- a/Code/Editor/Util/EditorAutoLevelLoadTest.h +++ b/Code/Editor/Util/EditorAutoLevelLoadTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/EditorUtils.cpp b/Code/Editor/Util/EditorUtils.cpp index 0763a83aad..408338a04b 100644 --- a/Code/Editor/Util/EditorUtils.cpp +++ b/Code/Editor/Util/EditorUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/EditorUtils.h b/Code/Editor/Util/EditorUtils.h index ed327f3b51..b9110be17d 100644 --- a/Code/Editor/Util/EditorUtils.h +++ b/Code/Editor/Util/EditorUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileChangeMonitor.cpp b/Code/Editor/Util/FileChangeMonitor.cpp index cc37015eaa..6c036eac5a 100644 --- a/Code/Editor/Util/FileChangeMonitor.cpp +++ b/Code/Editor/Util/FileChangeMonitor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileChangeMonitor.h b/Code/Editor/Util/FileChangeMonitor.h index aa5155ac9d..81949f36c3 100644 --- a/Code/Editor/Util/FileChangeMonitor.h +++ b/Code/Editor/Util/FileChangeMonitor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileEnum.cpp b/Code/Editor/Util/FileEnum.cpp index 89e6c9448c..df554bf6ba 100644 --- a/Code/Editor/Util/FileEnum.cpp +++ b/Code/Editor/Util/FileEnum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileEnum.h b/Code/Editor/Util/FileEnum.h index bc356b031f..a9cad4da79 100644 --- a/Code/Editor/Util/FileEnum.h +++ b/Code/Editor/Util/FileEnum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileUtil.cpp b/Code/Editor/Util/FileUtil.cpp index ecd71f9865..5d4e7a5bfc 100644 --- a/Code/Editor/Util/FileUtil.cpp +++ b/Code/Editor/Util/FileUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileUtil.h b/Code/Editor/Util/FileUtil.h index 909b6eecf5..7513bd723e 100644 --- a/Code/Editor/Util/FileUtil.h +++ b/Code/Editor/Util/FileUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileUtil_impl.cpp b/Code/Editor/Util/FileUtil_impl.cpp index f323d3794c..f9ce37212a 100644 --- a/Code/Editor/Util/FileUtil_impl.cpp +++ b/Code/Editor/Util/FileUtil_impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/FileUtil_impl.h b/Code/Editor/Util/FileUtil_impl.h index 9acc152974..6a1e50f374 100644 --- a/Code/Editor/Util/FileUtil_impl.h +++ b/Code/Editor/Util/FileUtil_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/GdiUtil.cpp b/Code/Editor/Util/GdiUtil.cpp index 8dd46d8f1f..a9d9208dba 100644 --- a/Code/Editor/Util/GdiUtil.cpp +++ b/Code/Editor/Util/GdiUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/GdiUtil.h b/Code/Editor/Util/GdiUtil.h index d8890cbaca..89f107f9a8 100644 --- a/Code/Editor/Util/GdiUtil.h +++ b/Code/Editor/Util/GdiUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/GeometryUtil.cpp b/Code/Editor/Util/GeometryUtil.cpp index f26b000ec4..21ef4adc98 100644 --- a/Code/Editor/Util/GeometryUtil.cpp +++ b/Code/Editor/Util/GeometryUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/GeometryUtil.h b/Code/Editor/Util/GeometryUtil.h index a97ceb2c54..a680243ab4 100644 --- a/Code/Editor/Util/GeometryUtil.h +++ b/Code/Editor/Util/GeometryUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/GuidUtil.cpp b/Code/Editor/Util/GuidUtil.cpp index 13f0526531..2b3237125d 100644 --- a/Code/Editor/Util/GuidUtil.cpp +++ b/Code/Editor/Util/GuidUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/GuidUtil.h b/Code/Editor/Util/GuidUtil.h index 5fec45779b..e88dfe1854 100644 --- a/Code/Editor/Util/GuidUtil.h +++ b/Code/Editor/Util/GuidUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/IObservable.h b/Code/Editor/Util/IObservable.h index 81188909ec..9ce69a6151 100644 --- a/Code/Editor/Util/IObservable.h +++ b/Code/Editor/Util/IObservable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/IXmlHistoryManager.h b/Code/Editor/Util/IXmlHistoryManager.h index d98658967d..3e22d8fa09 100644 --- a/Code/Editor/Util/IXmlHistoryManager.h +++ b/Code/Editor/Util/IXmlHistoryManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Image.cpp b/Code/Editor/Util/Image.cpp index 781eb6aaa6..7767fb70d7 100644 --- a/Code/Editor/Util/Image.cpp +++ b/Code/Editor/Util/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Image.h b/Code/Editor/Util/Image.h index c87f0dc03f..d23eefac9d 100644 --- a/Code/Editor/Util/Image.h +++ b/Code/Editor/Util/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageASC.cpp b/Code/Editor/Util/ImageASC.cpp index 46f53fd07b..1b4c185703 100644 --- a/Code/Editor/Util/ImageASC.cpp +++ b/Code/Editor/Util/ImageASC.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageASC.h b/Code/Editor/Util/ImageASC.h index a9ff707f18..6c28e1b9f8 100644 --- a/Code/Editor/Util/ImageASC.h +++ b/Code/Editor/Util/ImageASC.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageBT.cpp b/Code/Editor/Util/ImageBT.cpp index 9aef6c48a2..a351a5c2f1 100644 --- a/Code/Editor/Util/ImageBT.cpp +++ b/Code/Editor/Util/ImageBT.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageBT.h b/Code/Editor/Util/ImageBT.h index 48fd3cd117..89eea7c029 100644 --- a/Code/Editor/Util/ImageBT.h +++ b/Code/Editor/Util/ImageBT.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageGif.cpp b/Code/Editor/Util/ImageGif.cpp index 524c36855d..2fff41e4c8 100644 --- a/Code/Editor/Util/ImageGif.cpp +++ b/Code/Editor/Util/ImageGif.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageGif.h b/Code/Editor/Util/ImageGif.h index 2c16916e6e..3a0e9a7780 100644 --- a/Code/Editor/Util/ImageGif.h +++ b/Code/Editor/Util/ImageGif.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageHistogram.cpp b/Code/Editor/Util/ImageHistogram.cpp index 3ad5777f49..267a697ba9 100644 --- a/Code/Editor/Util/ImageHistogram.cpp +++ b/Code/Editor/Util/ImageHistogram.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageHistogram.h b/Code/Editor/Util/ImageHistogram.h index aa22985598..3166f951ab 100644 --- a/Code/Editor/Util/ImageHistogram.h +++ b/Code/Editor/Util/ImageHistogram.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImagePainter.cpp b/Code/Editor/Util/ImagePainter.cpp index 3d14684593..43e67723df 100644 --- a/Code/Editor/Util/ImagePainter.cpp +++ b/Code/Editor/Util/ImagePainter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImagePainter.h b/Code/Editor/Util/ImagePainter.h index f91c04c4a1..a07d3329f5 100644 --- a/Code/Editor/Util/ImagePainter.h +++ b/Code/Editor/Util/ImagePainter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageTIF.cpp b/Code/Editor/Util/ImageTIF.cpp index 988bc8cf27..2e1dbe9bec 100644 --- a/Code/Editor/Util/ImageTIF.cpp +++ b/Code/Editor/Util/ImageTIF.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageTIF.h b/Code/Editor/Util/ImageTIF.h index 26132aec92..91d1f23437 100644 --- a/Code/Editor/Util/ImageTIF.h +++ b/Code/Editor/Util/ImageTIF.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageUtil.cpp b/Code/Editor/Util/ImageUtil.cpp index fa2631342d..c6380fd653 100644 --- a/Code/Editor/Util/ImageUtil.cpp +++ b/Code/Editor/Util/ImageUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageUtil.h b/Code/Editor/Util/ImageUtil.h index 38fd0c0df6..6fa8519d3f 100644 --- a/Code/Editor/Util/ImageUtil.h +++ b/Code/Editor/Util/ImageUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageUtil_impl.cpp b/Code/Editor/Util/ImageUtil_impl.cpp index 367045955e..0612f6defe 100644 --- a/Code/Editor/Util/ImageUtil_impl.cpp +++ b/Code/Editor/Util/ImageUtil_impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ImageUtil_impl.h b/Code/Editor/Util/ImageUtil_impl.h index 01d9f06629..7e3f7c4f13 100644 --- a/Code/Editor/Util/ImageUtil_impl.h +++ b/Code/Editor/Util/ImageUtil_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/IndexedFiles.cpp b/Code/Editor/Util/IndexedFiles.cpp index f36801cd17..ea50cf6423 100644 --- a/Code/Editor/Util/IndexedFiles.cpp +++ b/Code/Editor/Util/IndexedFiles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/IndexedFiles.h b/Code/Editor/Util/IndexedFiles.h index 844dd35bd5..a0328b0837 100644 --- a/Code/Editor/Util/IndexedFiles.h +++ b/Code/Editor/Util/IndexedFiles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/KDTree.cpp b/Code/Editor/Util/KDTree.cpp index 486f0cc177..138176f152 100644 --- a/Code/Editor/Util/KDTree.cpp +++ b/Code/Editor/Util/KDTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/KDTree.h b/Code/Editor/Util/KDTree.h index 89b2d3b4df..9a24d89560 100644 --- a/Code/Editor/Util/KDTree.h +++ b/Code/Editor/Util/KDTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Mailer.h b/Code/Editor/Util/Mailer.h index 73b0280a30..7a3bc1682a 100644 --- a/Code/Editor/Util/Mailer.h +++ b/Code/Editor/Util/Mailer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Math.h b/Code/Editor/Util/Math.h index eec3ccecfe..4f900b80ed 100644 --- a/Code/Editor/Util/Math.h +++ b/Code/Editor/Util/Math.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/MemoryBlock.cpp b/Code/Editor/Util/MemoryBlock.cpp index 6fe579a717..d60e7fde59 100644 --- a/Code/Editor/Util/MemoryBlock.cpp +++ b/Code/Editor/Util/MemoryBlock.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/MemoryBlock.h b/Code/Editor/Util/MemoryBlock.h index da7b076114..ecdc522557 100644 --- a/Code/Editor/Util/MemoryBlock.h +++ b/Code/Editor/Util/MemoryBlock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ModalWindowDismisser.cpp b/Code/Editor/Util/ModalWindowDismisser.cpp index f6325903c6..1d380f5901 100644 --- a/Code/Editor/Util/ModalWindowDismisser.cpp +++ b/Code/Editor/Util/ModalWindowDismisser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/ModalWindowDismisser.h b/Code/Editor/Util/ModalWindowDismisser.h index d825dab597..1c497bc7f8 100644 --- a/Code/Editor/Util/ModalWindowDismisser.h +++ b/Code/Editor/Util/ModalWindowDismisser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/NamedData.cpp b/Code/Editor/Util/NamedData.cpp index 44f7f5342b..c36bac6c27 100644 --- a/Code/Editor/Util/NamedData.cpp +++ b/Code/Editor/Util/NamedData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/NamedData.h b/Code/Editor/Util/NamedData.h index c4c08d3bbf..11daec4e95 100644 --- a/Code/Editor/Util/NamedData.h +++ b/Code/Editor/Util/NamedData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Observable.h b/Code/Editor/Util/Observable.h index 8e0b561033..9cdb4d1e20 100644 --- a/Code/Editor/Util/Observable.h +++ b/Code/Editor/Util/Observable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/PakFile.cpp b/Code/Editor/Util/PakFile.cpp index 073b4c710e..5f26f25149 100644 --- a/Code/Editor/Util/PakFile.cpp +++ b/Code/Editor/Util/PakFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/PakFile.h b/Code/Editor/Util/PakFile.h index 60dd2752bc..14575b25f4 100644 --- a/Code/Editor/Util/PakFile.h +++ b/Code/Editor/Util/PakFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/PathUtil.cpp b/Code/Editor/Util/PathUtil.cpp index 6d7be423ea..c99f93d323 100644 --- a/Code/Editor/Util/PathUtil.cpp +++ b/Code/Editor/Util/PathUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/PathUtil.h b/Code/Editor/Util/PathUtil.h index 45c701b937..14c71e88fb 100644 --- a/Code/Editor/Util/PathUtil.h +++ b/Code/Editor/Util/PathUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/PredefinedAspectRatios.cpp b/Code/Editor/Util/PredefinedAspectRatios.cpp index f6892e1791..76879fa42b 100644 --- a/Code/Editor/Util/PredefinedAspectRatios.cpp +++ b/Code/Editor/Util/PredefinedAspectRatios.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/PredefinedAspectRatios.h b/Code/Editor/Util/PredefinedAspectRatios.h index 2967f6ec53..c65cdf6f5a 100644 --- a/Code/Editor/Util/PredefinedAspectRatios.h +++ b/Code/Editor/Util/PredefinedAspectRatios.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/RefCountBase.h b/Code/Editor/Util/RefCountBase.h index 24e5999c19..d375b45a0b 100644 --- a/Code/Editor/Util/RefCountBase.h +++ b/Code/Editor/Util/RefCountBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/StringHelpers.cpp b/Code/Editor/Util/StringHelpers.cpp index e8d51b71fa..8b8ca62609 100644 --- a/Code/Editor/Util/StringHelpers.cpp +++ b/Code/Editor/Util/StringHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/StringHelpers.h b/Code/Editor/Util/StringHelpers.h index e0eb8550a3..a5706ff195 100644 --- a/Code/Editor/Util/StringHelpers.h +++ b/Code/Editor/Util/StringHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/StringNoCasePredicate.h b/Code/Editor/Util/StringNoCasePredicate.h index d6fd46e25a..f1b9fb1a67 100644 --- a/Code/Editor/Util/StringNoCasePredicate.h +++ b/Code/Editor/Util/StringNoCasePredicate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/TRefCountBase.h b/Code/Editor/Util/TRefCountBase.h index bcd7f44fbd..376863b9d9 100644 --- a/Code/Editor/Util/TRefCountBase.h +++ b/Code/Editor/Util/TRefCountBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Triangulate.cpp b/Code/Editor/Util/Triangulate.cpp index ba533c8d56..92d72683e2 100644 --- a/Code/Editor/Util/Triangulate.cpp +++ b/Code/Editor/Util/Triangulate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Triangulate.h b/Code/Editor/Util/Triangulate.h index 6ac05fed3e..32a6222c74 100644 --- a/Code/Editor/Util/Triangulate.h +++ b/Code/Editor/Util/Triangulate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/UIEnumerations.cpp b/Code/Editor/Util/UIEnumerations.cpp index ebd4952ad1..e6af405372 100644 --- a/Code/Editor/Util/UIEnumerations.cpp +++ b/Code/Editor/Util/UIEnumerations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/UIEnumerations.h b/Code/Editor/Util/UIEnumerations.h index e6346d8c0e..18505e4232 100644 --- a/Code/Editor/Util/UIEnumerations.h +++ b/Code/Editor/Util/UIEnumerations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/UndoUtil.cpp b/Code/Editor/Util/UndoUtil.cpp index b474afb8e5..03d9184f9d 100644 --- a/Code/Editor/Util/UndoUtil.cpp +++ b/Code/Editor/Util/UndoUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/UndoUtil.h b/Code/Editor/Util/UndoUtil.h index 4a04d931e8..61144298c0 100644 --- a/Code/Editor/Util/UndoUtil.h +++ b/Code/Editor/Util/UndoUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Util.h b/Code/Editor/Util/Util.h index a096160ec5..83c612de0a 100644 --- a/Code/Editor/Util/Util.h +++ b/Code/Editor/Util/Util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Variable.cpp b/Code/Editor/Util/Variable.cpp index 07e372556e..3041977df4 100644 --- a/Code/Editor/Util/Variable.cpp +++ b/Code/Editor/Util/Variable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/Variable.h b/Code/Editor/Util/Variable.h index d5beab1cda..402934a166 100644 --- a/Code/Editor/Util/Variable.h +++ b/Code/Editor/Util/Variable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/VariablePropertyType.cpp b/Code/Editor/Util/VariablePropertyType.cpp index 25eef2d3c2..568725d01b 100644 --- a/Code/Editor/Util/VariablePropertyType.cpp +++ b/Code/Editor/Util/VariablePropertyType.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/VariablePropertyType.h b/Code/Editor/Util/VariablePropertyType.h index dc41db8f8a..7c1608ab06 100644 --- a/Code/Editor/Util/VariablePropertyType.h +++ b/Code/Editor/Util/VariablePropertyType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/XmlArchive.cpp b/Code/Editor/Util/XmlArchive.cpp index dc13a3d8d7..3447ff1e27 100644 --- a/Code/Editor/Util/XmlArchive.cpp +++ b/Code/Editor/Util/XmlArchive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/XmlArchive.h b/Code/Editor/Util/XmlArchive.h index d3e41d47d8..26707a78fa 100644 --- a/Code/Editor/Util/XmlArchive.h +++ b/Code/Editor/Util/XmlArchive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/XmlHistoryManager.cpp b/Code/Editor/Util/XmlHistoryManager.cpp index fc932c96d8..1a71015e4d 100644 --- a/Code/Editor/Util/XmlHistoryManager.cpp +++ b/Code/Editor/Util/XmlHistoryManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/XmlHistoryManager.h b/Code/Editor/Util/XmlHistoryManager.h index 4783bce085..4983100ee1 100644 --- a/Code/Editor/Util/XmlHistoryManager.h +++ b/Code/Editor/Util/XmlHistoryManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/XmlTemplate.cpp b/Code/Editor/Util/XmlTemplate.cpp index 3d788e17e9..fa5269ea1a 100644 --- a/Code/Editor/Util/XmlTemplate.cpp +++ b/Code/Editor/Util/XmlTemplate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/XmlTemplate.h b/Code/Editor/Util/XmlTemplate.h index 73ed46b766..061a9d9ead 100644 --- a/Code/Editor/Util/XmlTemplate.h +++ b/Code/Editor/Util/XmlTemplate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/bitarray.h b/Code/Editor/Util/bitarray.h index 4d929ddb8b..73628d6dd9 100644 --- a/Code/Editor/Util/bitarray.h +++ b/Code/Editor/Util/bitarray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/fastlib.h b/Code/Editor/Util/fastlib.h index cc3816e55f..832982d879 100644 --- a/Code/Editor/Util/fastlib.h +++ b/Code/Editor/Util/fastlib.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Util/smartptr.h b/Code/Editor/Util/smartptr.h index b29de14df7..6f3ed6fe31 100644 --- a/Code/Editor/Util/smartptr.h +++ b/Code/Editor/Util/smartptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewManager.cpp b/Code/Editor/ViewManager.cpp index 2a3702bc33..5ce7f5490e 100644 --- a/Code/Editor/ViewManager.cpp +++ b/Code/Editor/ViewManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewManager.h b/Code/Editor/ViewManager.h index 4c4558a5ad..e0369809ec 100644 --- a/Code/Editor/ViewManager.h +++ b/Code/Editor/ViewManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewPane.cpp b/Code/Editor/ViewPane.cpp index fc4a4a3b58..d4ff77acad 100644 --- a/Code/Editor/ViewPane.cpp +++ b/Code/Editor/ViewPane.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewPane.h b/Code/Editor/ViewPane.h index 1618fcb7b8..4bdd56c22a 100644 --- a/Code/Editor/ViewPane.h +++ b/Code/Editor/ViewPane.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Viewport.cpp b/Code/Editor/Viewport.cpp index 69325808a5..15af52484d 100644 --- a/Code/Editor/Viewport.cpp +++ b/Code/Editor/Viewport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/Viewport.h b/Code/Editor/Viewport.h index 2b66b0a6d6..a7f03edc3f 100644 --- a/Code/Editor/Viewport.h +++ b/Code/Editor/Viewport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewportManipulatorController.cpp b/Code/Editor/ViewportManipulatorController.cpp index 6a8189b668..c7d2885cb2 100644 --- a/Code/Editor/ViewportManipulatorController.cpp +++ b/Code/Editor/ViewportManipulatorController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewportManipulatorController.h b/Code/Editor/ViewportManipulatorController.h index 0a5350c6e4..90f048295c 100644 --- a/Code/Editor/ViewportManipulatorController.h +++ b/Code/Editor/ViewportManipulatorController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewportTitleDlg.cpp b/Code/Editor/ViewportTitleDlg.cpp index d600da7076..9b40041d64 100644 --- a/Code/Editor/ViewportTitleDlg.cpp +++ b/Code/Editor/ViewportTitleDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/ViewportTitleDlg.h b/Code/Editor/ViewportTitleDlg.h index efbb60ceea..cbdd9676ac 100644 --- a/Code/Editor/ViewportTitleDlg.h +++ b/Code/Editor/ViewportTitleDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WaitProgress.cpp b/Code/Editor/WaitProgress.cpp index 2ebfe81663..bca0de3eac 100644 --- a/Code/Editor/WaitProgress.cpp +++ b/Code/Editor/WaitProgress.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WaitProgress.h b/Code/Editor/WaitProgress.h index e4e3a30873..241d8657ed 100644 --- a/Code/Editor/WaitProgress.h +++ b/Code/Editor/WaitProgress.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp index 5a037c8a98..a444b95132 100644 --- a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp +++ b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.h b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.h index 363fac57f8..4338a8250f 100644 --- a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.h +++ b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WinWidgetId.h b/Code/Editor/WinWidgetId.h index c6b65e4d61..5c9d147a7f 100644 --- a/Code/Editor/WinWidgetId.h +++ b/Code/Editor/WinWidgetId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WindowObserver_mac.h b/Code/Editor/WindowObserver_mac.h index 6832fef2f0..e72ecec45b 100644 --- a/Code/Editor/WindowObserver_mac.h +++ b/Code/Editor/WindowObserver_mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WindowObserver_mac.mm b/Code/Editor/WindowObserver_mac.mm index 3a8276f967..daeaaa2ec6 100644 --- a/Code/Editor/WindowObserver_mac.mm +++ b/Code/Editor/WindowObserver_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WipFeatureManager.cpp b/Code/Editor/WipFeatureManager.cpp index f060064c1b..9cd737c258 100644 --- a/Code/Editor/WipFeatureManager.cpp +++ b/Code/Editor/WipFeatureManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WipFeatureManager.h b/Code/Editor/WipFeatureManager.h index 5c563e4664..b6e43dcd88 100644 --- a/Code/Editor/WipFeatureManager.h +++ b/Code/Editor/WipFeatureManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WipFeaturesDlg.cpp b/Code/Editor/WipFeaturesDlg.cpp index aae1073955..a50282ecfe 100644 --- a/Code/Editor/WipFeaturesDlg.cpp +++ b/Code/Editor/WipFeaturesDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/WipFeaturesDlg.h b/Code/Editor/WipFeaturesDlg.h index 966df27033..d352875ecc 100644 --- a/Code/Editor/WipFeaturesDlg.h +++ b/Code/Editor/WipFeaturesDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Editor/editor_core_files.cmake b/Code/Editor/editor_core_files.cmake index 360d23e9fd..3719e2f498 100644 --- a/Code/Editor/editor_core_files.cmake +++ b/Code/Editor/editor_core_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_core_test_files.cmake b/Code/Editor/editor_core_test_files.cmake index 77ea029565..1f13168fe9 100644 --- a/Code/Editor/editor_core_test_files.cmake +++ b/Code/Editor/editor_core_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_darwin_files.cmake b/Code/Editor/editor_darwin_files.cmake index 8b4af2cbe2..6901f0e298 100644 --- a/Code/Editor/editor_darwin_files.cmake +++ b/Code/Editor/editor_darwin_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_files.cmake b/Code/Editor/editor_files.cmake index 3d1da74d3c..18df7dccf0 100644 --- a/Code/Editor/editor_files.cmake +++ b/Code/Editor/editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_headers_files.cmake b/Code/Editor/editor_headers_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Code/Editor/editor_headers_files.cmake +++ b/Code/Editor/editor_headers_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_lib_files.cmake b/Code/Editor/editor_lib_files.cmake index 15e2bc6478..dcb169f783 100644 --- a/Code/Editor/editor_lib_files.cmake +++ b/Code/Editor/editor_lib_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_lib_terrain_files.cmake b/Code/Editor/editor_lib_terrain_files.cmake index bf94391707..7a48957af0 100644 --- a/Code/Editor/editor_lib_terrain_files.cmake +++ b/Code/Editor/editor_lib_terrain_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_lib_test_files.cmake b/Code/Editor/editor_lib_test_files.cmake index c7361c46cb..919ebfbbb7 100644 --- a/Code/Editor/editor_lib_test_files.cmake +++ b/Code/Editor/editor_lib_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_lib_test_terrain_files.cmake b/Code/Editor/editor_lib_test_terrain_files.cmake index 9eb47bcd46..4f7a74f29a 100644 --- a/Code/Editor/editor_lib_test_terrain_files.cmake +++ b/Code/Editor/editor_lib_test_terrain_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/editor_win_files.cmake b/Code/Editor/editor_win_files.cmake index c278ce4e78..2754f933ef 100644 --- a/Code/Editor/editor_win_files.cmake +++ b/Code/Editor/editor_win_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Editor/main.cpp b/Code/Editor/main.cpp index cfd7db05a3..aee1239de1 100644 --- a/Code/Editor/main.cpp +++ b/Code/Editor/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Instance/Instance.h b/Code/Framework/AtomCore/AtomCore/Instance/Instance.h index d334b9fd2d..562c980e6f 100644 --- a/Code/Framework/AtomCore/AtomCore/Instance/Instance.h +++ b/Code/Framework/AtomCore/AtomCore/Instance/Instance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.cpp b/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.cpp index 4492581b2d..aec220b92d 100644 --- a/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.cpp +++ b/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.h b/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.h index 19e4b2e37d..6a0973e652 100644 --- a/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.h +++ b/Code/Framework/AtomCore/AtomCore/Instance/InstanceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Instance/InstanceDatabase.h b/Code/Framework/AtomCore/AtomCore/Instance/InstanceDatabase.h index d7afcac23b..d5926ed270 100644 --- a/Code/Framework/AtomCore/AtomCore/Instance/InstanceDatabase.h +++ b/Code/Framework/AtomCore/AtomCore/Instance/InstanceDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.cpp b/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.cpp index 3e319f792d..f875e0022e 100644 --- a/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.cpp +++ b/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.h b/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.h index 3a15ea9d29..047f3490ef 100644 --- a/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.h +++ b/Code/Framework/AtomCore/AtomCore/Instance/InstanceId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.cpp b/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.cpp index e31497854b..3d47d6b74e 100644 --- a/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.cpp +++ b/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.h b/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.h index d37e5ad0b5..3ba7a69190 100644 --- a/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.h +++ b/Code/Framework/AtomCore/AtomCore/Serialization/Json/JsonUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake b/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake index 01c68d1668..11278a4c56 100644 --- a/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake +++ b/Code/Framework/AtomCore/AtomCore/atomcore_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AtomCore/AtomCore/std/containers/array_view.h b/Code/Framework/AtomCore/AtomCore/std/containers/array_view.h index b7654d79b3..8bfcb6d423 100644 --- a/Code/Framework/AtomCore/AtomCore/std/containers/array_view.h +++ b/Code/Framework/AtomCore/AtomCore/std/containers/array_view.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/std/containers/fixed_vector_set.h b/Code/Framework/AtomCore/AtomCore/std/containers/fixed_vector_set.h index 4c84847c3b..88e47a0e65 100644 --- a/Code/Framework/AtomCore/AtomCore/std/containers/fixed_vector_set.h +++ b/Code/Framework/AtomCore/AtomCore/std/containers/fixed_vector_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/std/containers/lru_cache.h b/Code/Framework/AtomCore/AtomCore/std/containers/lru_cache.h index 5c3e727515..a8394d6142 100644 --- a/Code/Framework/AtomCore/AtomCore/std/containers/lru_cache.h +++ b/Code/Framework/AtomCore/AtomCore/std/containers/lru_cache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/std/containers/vector_set.h b/Code/Framework/AtomCore/AtomCore/std/containers/vector_set.h index a37f85254f..0759c9e9ff 100644 --- a/Code/Framework/AtomCore/AtomCore/std/containers/vector_set.h +++ b/Code/Framework/AtomCore/AtomCore/std/containers/vector_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/std/containers/vector_set_base.h b/Code/Framework/AtomCore/AtomCore/std/containers/vector_set_base.h index 9144a4fb92..d276460c87 100644 --- a/Code/Framework/AtomCore/AtomCore/std/containers/vector_set_base.h +++ b/Code/Framework/AtomCore/AtomCore/std/containers/vector_set_base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/AtomCore/std/parallel/concurrency_checker.h b/Code/Framework/AtomCore/AtomCore/std/parallel/concurrency_checker.h index a6727fa649..1697c4a333 100644 --- a/Code/Framework/AtomCore/AtomCore/std/parallel/concurrency_checker.h +++ b/Code/Framework/AtomCore/AtomCore/std/parallel/concurrency_checker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/CMakeLists.txt b/Code/Framework/AtomCore/CMakeLists.txt index a116cc665a..31fd938096 100644 --- a/Code/Framework/AtomCore/CMakeLists.txt +++ b/Code/Framework/AtomCore/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AtomCore/Tests/ArrayView.cpp b/Code/Framework/AtomCore/Tests/ArrayView.cpp index a1004d58cc..81a9ba770d 100644 --- a/Code/Framework/AtomCore/Tests/ArrayView.cpp +++ b/Code/Framework/AtomCore/Tests/ArrayView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/Tests/ConcurrencyCheckerTests.cpp b/Code/Framework/AtomCore/Tests/ConcurrencyCheckerTests.cpp index a7a5f8f73c..3a8f1f1c1e 100644 --- a/Code/Framework/AtomCore/Tests/ConcurrencyCheckerTests.cpp +++ b/Code/Framework/AtomCore/Tests/ConcurrencyCheckerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp b/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp index 9add4608c2..cccccae190 100644 --- a/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp +++ b/Code/Framework/AtomCore/Tests/InstanceDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/Tests/JsonSerializationUtilsTests.cpp b/Code/Framework/AtomCore/Tests/JsonSerializationUtilsTests.cpp index 5d5461034f..08b5820fba 100644 --- a/Code/Framework/AtomCore/Tests/JsonSerializationUtilsTests.cpp +++ b/Code/Framework/AtomCore/Tests/JsonSerializationUtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/Tests/Main.cpp b/Code/Framework/AtomCore/Tests/Main.cpp index 8d9cdcd71d..25c9fe11e2 100644 --- a/Code/Framework/AtomCore/Tests/Main.cpp +++ b/Code/Framework/AtomCore/Tests/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/Tests/NameSetTests.cpp b/Code/Framework/AtomCore/Tests/NameSetTests.cpp index c3e1713740..f69d7f3085 100644 --- a/Code/Framework/AtomCore/Tests/NameSetTests.cpp +++ b/Code/Framework/AtomCore/Tests/NameSetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake b/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake index 28c6fc17b6..5e6c9e2d3a 100644 --- a/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake +++ b/Code/Framework/AtomCore/Tests/atomcore_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AtomCore/Tests/lru_cache.cpp b/Code/Framework/AtomCore/Tests/lru_cache.cpp index ef9e42d3d8..acf587fd3e 100644 --- a/Code/Framework/AtomCore/Tests/lru_cache.cpp +++ b/Code/Framework/AtomCore/Tests/lru_cache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AtomCore/Tests/vector_set.cpp b/Code/Framework/AtomCore/Tests/vector_set.cpp index 246bac55e4..c9e0c6d9b4 100644 --- a/Code/Framework/AtomCore/Tests/vector_set.cpp +++ b/Code/Framework/AtomCore/Tests/vector_set.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/ActivityResultsListener.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/ActivityResultsListener.java index 8c8b514379..576f5b7eb5 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/ActivityResultsListener.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/ActivityResultsListener.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/AndroidDeviceManager.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/AndroidDeviceManager.java index d2850c8643..266154270c 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/AndroidDeviceManager.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/AndroidDeviceManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/LumberyardActivity.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/LumberyardActivity.java index 02a5b7ecf1..a64cf02da6 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/LumberyardActivity.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/LumberyardActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/NativeUI/LumberyardNativeUI.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/NativeUI/LumberyardNativeUI.java index 37179aa1c7..d49e351dc5 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/NativeUI/LumberyardNativeUI.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/NativeUI/LumberyardNativeUI.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/KeyboardHandler.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/KeyboardHandler.java index b12d144527..09ec06b17b 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/KeyboardHandler.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/KeyboardHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MotionSensorManager.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MotionSensorManager.java index 2190ad421c..5bdc32bee4 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MotionSensorManager.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MotionSensorManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MouseDevice.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MouseDevice.java index d590dafcbe..9c8d1d6018 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MouseDevice.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/input/MouseDevice.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/APKHandler.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/APKHandler.java index 4b24f259d9..01883aea25 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/APKHandler.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/APKHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderActivity.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderActivity.java index 292eaff7b7..9316d24d6f 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderActivity.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderAlarmReceiver.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderAlarmReceiver.java index 25c0a3c06d..641b1fbba7 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderAlarmReceiver.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderAlarmReceiver.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderService.java b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderService.java index 86baeb0bf0..a3fd799547 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderService.java +++ b/Code/Framework/AzAndroid/java/com/amazon/lumberyard/io/obb/ObbDownloaderService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAndroid/java/com/amazon/test/SimpleObject.java b/Code/Framework/AzAndroid/java/com/amazon/test/SimpleObject.java index 14667731b1..c77e3519a1 100644 --- a/Code/Framework/AzAndroid/java/com/amazon/test/SimpleObject.java +++ b/Code/Framework/AzAndroid/java/com/amazon/test/SimpleObject.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzAutoGen/AzAutoGen.py b/Code/Framework/AzAutoGen/AzAutoGen.py index 5266dc7b3f..b97552d091 100755 --- a/Code/Framework/AzAutoGen/AzAutoGen.py +++ b/Code/Framework/AzAutoGen/AzAutoGen.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 @@ -164,7 +164,7 @@ def ProcessTemplateConversion(dataInputSet, dataInputFiles, templateFile, output outputExtension = os.path.splitext(outputFile)[1] if outputExtension == ".xml" or outputExtension == ".xhtml" or outputExtension == ".xsd": compareFD.write('\n') - compareFD.write('\n') + compareFD.write('\n') compareFD.write('\n') compareFD.write('\n') compareFD.write('\n') @@ -172,7 +172,7 @@ def ProcessTemplateConversion(dataInputSet, dataInputFiles, templateFile, output compareFD.write('\n'.format(templateFile, ', '.join(dataInputFiles))) compareFD.write('\n') elif outputExtension == ".lua": - compareFD.write('-- Copyright (c) Contributors to the Open 3D Engine Project.\n') + compareFD.write('-- 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..\n') compareFD.write('\n') compareFD.write('-- SPDX-License-Identifier: Apache-2.0 OR MIT\n') compareFD.write('\n') @@ -181,7 +181,7 @@ def ProcessTemplateConversion(dataInputSet, dataInputFiles, templateFile, output compareFD.write('\n') elif outputExtension == ".h" or outputExtension == ".hpp" or outputExtension == ".inl" or outputExtension == ".c" or outputExtension == ".cpp": compareFD.write('/*\n') - compareFD.write(' * Copyright (c) Contributors to the Open 3D Engine Project.\n') + compareFD.write(' * 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..\n') compareFD.write(' *\n') compareFD.write(' * SPDX-License-Identifier: Apache-2.0 OR MIT\n') compareFD.write(' *\n') diff --git a/Code/Framework/AzAutoGen/CMakeLists.txt b/Code/Framework/AzAutoGen/CMakeLists.txt index 7eacafd22b..0251d1c448 100644 --- a/Code/Framework/AzAutoGen/CMakeLists.txt +++ b/Code/Framework/AzAutoGen/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzAutoGen/azautogen_files.cmake b/Code/Framework/AzAutoGen/azautogen_files.cmake index 2ea26ae7d7..c16a7a51f3 100644 --- a/Code/Framework/AzAutoGen/azautogen_files.cmake +++ b/Code/Framework/AzAutoGen/azautogen_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/AzCore/Android/APKFileHandler.cpp b/Code/Framework/AzCore/AzCore/Android/APKFileHandler.cpp index 621b826316..6dbf4ad2d8 100644 --- a/Code/Framework/AzCore/AzCore/Android/APKFileHandler.cpp +++ b/Code/Framework/AzCore/AzCore/Android/APKFileHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/APKFileHandler.h b/Code/Framework/AzCore/AzCore/Android/APKFileHandler.h index 2b623cae1e..ff460cc9cc 100644 --- a/Code/Framework/AzCore/AzCore/Android/APKFileHandler.h +++ b/Code/Framework/AzCore/AzCore/Android/APKFileHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/AndroidEnv.cpp b/Code/Framework/AzCore/AzCore/Android/AndroidEnv.cpp index 6eb0ec77dc..d0fe19cace 100644 --- a/Code/Framework/AzCore/AzCore/Android/AndroidEnv.cpp +++ b/Code/Framework/AzCore/AzCore/Android/AndroidEnv.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/AndroidEnv.h b/Code/Framework/AzCore/AzCore/Android/AndroidEnv.h index 24b3e93b99..2a962a9c95 100644 --- a/Code/Framework/AzCore/AzCore/Android/AndroidEnv.h +++ b/Code/Framework/AzCore/AzCore/Android/AndroidEnv.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/ApiLevel.h b/Code/Framework/AzCore/AzCore/Android/ApiLevel.h index 7c056c7f0e..200833e1aa 100644 --- a/Code/Framework/AzCore/AzCore/Android/ApiLevel.h +++ b/Code/Framework/AzCore/AzCore/Android/ApiLevel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/ClassName.h b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/ClassName.h index ce8af36e9c..7d67072000 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/ClassName.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/ClassName.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils.h b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils.h index 64c59575ad..0a7fb7853d 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils_impl.h b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils_impl.h index 4ef7ae528a..9cae0172a8 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils_impl.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/JStringUtils_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Object_impl.h b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Object_impl.h index 3ed5cc545f..e1e7518f43 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Object_impl.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Object_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Signature_impl.h b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Signature_impl.h index 3ae5014ad8..e6846abf96 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Signature_impl.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Internal/Signature_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/JNI.cpp b/Code/Framework/AzCore/AzCore/Android/JNI/JNI.cpp index 07fa1e005a..302e95463f 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/JNI.cpp +++ b/Code/Framework/AzCore/AzCore/Android/JNI/JNI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/JNI.h b/Code/Framework/AzCore/AzCore/Android/JNI/JNI.h index a53ff8736c..c125c5af21 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/JNI.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/JNI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Object.h b/Code/Framework/AzCore/AzCore/Android/JNI/Object.h index 59597bbd76..4eacbc1869 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Object.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Object.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Object_fwd.h b/Code/Framework/AzCore/AzCore/Android/JNI/Object_fwd.h index 1c17cb3aaa..83b981728f 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Object_fwd.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Object_fwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/Signature.h b/Code/Framework/AzCore/AzCore/Android/JNI/Signature.h index 05bf68b710..82b42c67e0 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/Signature.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/Signature.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/scoped_ref.h b/Code/Framework/AzCore/AzCore/Android/JNI/scoped_ref.h index ce56457128..dc28c48725 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/scoped_ref.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/scoped_ref.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/JNI/shared_ref.h b/Code/Framework/AzCore/AzCore/Android/JNI/shared_ref.h index df537e5d5b..dd2c80733f 100644 --- a/Code/Framework/AzCore/AzCore/Android/JNI/shared_ref.h +++ b/Code/Framework/AzCore/AzCore/Android/JNI/shared_ref.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/Tests/JNI/Signature_tests.cpp b/Code/Framework/AzCore/AzCore/Android/Tests/JNI/Signature_tests.cpp index e9baaf8acc..b958a1e894 100644 --- a/Code/Framework/AzCore/AzCore/Android/Tests/JNI/Signature_tests.cpp +++ b/Code/Framework/AzCore/AzCore/Android/Tests/JNI/Signature_tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/Tests/JNI/shared_ref_tests.cpp b/Code/Framework/AzCore/AzCore/Android/Tests/JNI/shared_ref_tests.cpp index 5226efdba0..0aec779825 100644 --- a/Code/Framework/AzCore/AzCore/Android/Tests/JNI/shared_ref_tests.cpp +++ b/Code/Framework/AzCore/AzCore/Android/Tests/JNI/shared_ref_tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/Utils.cpp b/Code/Framework/AzCore/AzCore/Android/Utils.cpp index 10ff4c0b1d..72f02ed925 100644 --- a/Code/Framework/AzCore/AzCore/Android/Utils.cpp +++ b/Code/Framework/AzCore/AzCore/Android/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Android/Utils.h b/Code/Framework/AzCore/AzCore/Android/Utils.h index ae9ffbe6e8..68ef0b1cad 100644 --- a/Code/Framework/AzCore/AzCore/Android/Utils.h +++ b/Code/Framework/AzCore/AzCore/Android/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp index a727809339..27bbcbb9f0 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetCommon.h b/Code/Framework/AzCore/AzCore/Asset/AssetCommon.h index 3c6ac21555..78b42fd9ef 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetCommon.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp index 3a5c7b672c..7421fe995d 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetContainer.h b/Code/Framework/AzCore/AzCore/Asset/AssetContainer.h index 2548460b02..de451a27ed 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetContainer.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.cpp index 140fc02755..bce06db098 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.h b/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.h index d269eb629d..8fe5c5f266 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetDataStream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetInternal/WeakAsset.h b/Code/Framework/AzCore/AzCore/Asset/AssetInternal/WeakAsset.h index 49f0c0d60c..d294def781 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetInternal/WeakAsset.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetInternal/WeakAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.cpp index 078def9ad6..dbc5394a19 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.h b/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.h index 77ccbb51ea..ec7908e8ac 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetJsonSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp index 56ed6dd32b..df9a8aac77 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetManager.h b/Code/Framework/AzCore/AzCore/Asset/AssetManager.h index 9eab332a62..2c24ff0756 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetManager.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetManagerBus.h b/Code/Framework/AzCore/AzCore/Asset/AssetManagerBus.h index 52a193f4c8..a5fd0f36f4 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetManagerBus.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.cpp index 2b710ee4b5..0cc02ac9ef 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.h b/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.h index 7599ed54c8..0a1ce2bf4a 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetManagerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetManager_private.h b/Code/Framework/AzCore/AzCore/Asset/AssetManager_private.h index 7b84eb77ca..42b57dd19c 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetManager_private.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetManager_private.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.cpp b/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.cpp index cd3f0a0a87..698710d5a0 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.h b/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.h index e8e12f7964..8b5f586476 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Asset/AssetTypeInfoBus.h b/Code/Framework/AzCore/AzCore/Asset/AssetTypeInfoBus.h index 65e4d37faf..2750071891 100644 --- a/Code/Framework/AzCore/AzCore/Asset/AssetTypeInfoBus.h +++ b/Code/Framework/AzCore/AzCore/Asset/AssetTypeInfoBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/AzCoreModule.cpp b/Code/Framework/AzCore/AzCore/AzCoreModule.cpp index 2a1ec5213a..0614ca95e7 100644 --- a/Code/Framework/AzCore/AzCore/AzCoreModule.cpp +++ b/Code/Framework/AzCore/AzCore/AzCoreModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/AzCoreModule.h b/Code/Framework/AzCore/AzCore/AzCoreModule.h index 8efed6e2bb..04e0002e6a 100644 --- a/Code/Framework/AzCore/AzCore/AzCoreModule.h +++ b/Code/Framework/AzCore/AzCore/AzCoreModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/BuildInfo.h b/Code/Framework/AzCore/AzCore/BuildInfo.h index 0ea5470b2a..e048b97d0f 100644 --- a/Code/Framework/AzCore/AzCore/BuildInfo.h +++ b/Code/Framework/AzCore/AzCore/BuildInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Casting/lossy_cast.h b/Code/Framework/AzCore/AzCore/Casting/lossy_cast.h index e9cfa2b6b8..e15871c89d 100644 --- a/Code/Framework/AzCore/AzCore/Casting/lossy_cast.h +++ b/Code/Framework/AzCore/AzCore/Casting/lossy_cast.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Casting/numeric_cast.h b/Code/Framework/AzCore/AzCore/Casting/numeric_cast.h index 659d7ba246..313f34e7b9 100644 --- a/Code/Framework/AzCore/AzCore/Casting/numeric_cast.h +++ b/Code/Framework/AzCore/AzCore/Casting/numeric_cast.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/Component.cpp b/Code/Framework/AzCore/AzCore/Component/Component.cpp index 9f20d75fcd..a97d294548 100644 --- a/Code/Framework/AzCore/AzCore/Component/Component.cpp +++ b/Code/Framework/AzCore/AzCore/Component/Component.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/Component.h b/Code/Framework/AzCore/AzCore/Component/Component.h index 23a44543c6..a323613e47 100644 --- a/Code/Framework/AzCore/AzCore/Component/Component.h +++ b/Code/Framework/AzCore/AzCore/Component/Component.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp index 8be8fbcd25..4a14a37e10 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp +++ b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h index 3264cfcd92..91212372af 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h +++ b/Code/Framework/AzCore/AzCore/Component/ComponentApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h b/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h index e1587ae7ff..041cf3690b 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h +++ b/Code/Framework/AzCore/AzCore/Component/ComponentApplicationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentBus.cpp b/Code/Framework/AzCore/AzCore/Component/ComponentBus.cpp index 4d48179a3e..5e54007c83 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentBus.cpp +++ b/Code/Framework/AzCore/AzCore/Component/ComponentBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentBus.h b/Code/Framework/AzCore/AzCore/Component/ComponentBus.h index 82c2b82314..850ccbb567 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentBus.h +++ b/Code/Framework/AzCore/AzCore/Component/ComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/ComponentExport.h b/Code/Framework/AzCore/AzCore/Component/ComponentExport.h index cc986a8eb1..de2b53d375 100644 --- a/Code/Framework/AzCore/AzCore/Component/ComponentExport.h +++ b/Code/Framework/AzCore/AzCore/Component/ComponentExport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/Entity.cpp b/Code/Framework/AzCore/AzCore/Component/Entity.cpp index a6a7d4899d..c9b8c39f3e 100644 --- a/Code/Framework/AzCore/AzCore/Component/Entity.cpp +++ b/Code/Framework/AzCore/AzCore/Component/Entity.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/Entity.h b/Code/Framework/AzCore/AzCore/Component/Entity.h index d874b21cea..182527a663 100644 --- a/Code/Framework/AzCore/AzCore/Component/Entity.h +++ b/Code/Framework/AzCore/AzCore/Component/Entity.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntityBus.h b/Code/Framework/AzCore/AzCore/Component/EntityBus.h index e2e5d07341..68c7a50446 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntityBus.h +++ b/Code/Framework/AzCore/AzCore/Component/EntityBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntityId.h b/Code/Framework/AzCore/AzCore/Component/EntityId.h index 495eab4a6f..5b6aae29bd 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntityId.h +++ b/Code/Framework/AzCore/AzCore/Component/EntityId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.cpp b/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.cpp index 3a6b0cc941..88eb487f92 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.h b/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.h index 39eb9cc4fa..ccb12d3edd 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.h +++ b/Code/Framework/AzCore/AzCore/Component/EntityIdSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp b/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp index d328875f7f..b4e919a0d8 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Component/EntitySerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntitySerializer.h b/Code/Framework/AzCore/AzCore/Component/EntitySerializer.h index 4c8384dec6..de1f2885c8 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntitySerializer.h +++ b/Code/Framework/AzCore/AzCore/Component/EntitySerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp b/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp index 63979f3191..4452029397 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Component/EntityUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/EntityUtils.h b/Code/Framework/AzCore/AzCore/Component/EntityUtils.h index e497fcb234..b224f07845 100644 --- a/Code/Framework/AzCore/AzCore/Component/EntityUtils.h +++ b/Code/Framework/AzCore/AzCore/Component/EntityUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/NamedEntityId.cpp b/Code/Framework/AzCore/AzCore/Component/NamedEntityId.cpp index d13366975b..d617df4d1d 100644 --- a/Code/Framework/AzCore/AzCore/Component/NamedEntityId.cpp +++ b/Code/Framework/AzCore/AzCore/Component/NamedEntityId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/NamedEntityId.h b/Code/Framework/AzCore/AzCore/Component/NamedEntityId.h index eb00af08f6..2f7503c0ba 100644 --- a/Code/Framework/AzCore/AzCore/Component/NamedEntityId.h +++ b/Code/Framework/AzCore/AzCore/Component/NamedEntityId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.cpp b/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.cpp index 4aaca8ce40..3edcf85ccb 100644 --- a/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.cpp +++ b/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.h b/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.h index 62e47a1608..62fafda702 100644 --- a/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.h +++ b/Code/Framework/AzCore/AzCore/Component/NonUniformScaleBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/TickBus.h b/Code/Framework/AzCore/AzCore/Component/TickBus.h index e51d2f7f5c..766f59bdd1 100644 --- a/Code/Framework/AzCore/AzCore/Component/TickBus.h +++ b/Code/Framework/AzCore/AzCore/Component/TickBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Component/TransformBus.h b/Code/Framework/AzCore/AzCore/Component/TransformBus.h index ce307d4117..76b5ce5167 100644 --- a/Code/Framework/AzCore/AzCore/Component/TransformBus.h +++ b/Code/Framework/AzCore/AzCore/Component/TransformBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Compression/Compression.h b/Code/Framework/AzCore/AzCore/Compression/Compression.h index 2c83c72484..218ff5c90c 100644 --- a/Code/Framework/AzCore/AzCore/Compression/Compression.h +++ b/Code/Framework/AzCore/AzCore/Compression/Compression.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Compression/compression.cpp b/Code/Framework/AzCore/AzCore/Compression/compression.cpp index b217745cac..22b8ce32a9 100644 --- a/Code/Framework/AzCore/AzCore/Compression/compression.cpp +++ b/Code/Framework/AzCore/AzCore/Compression/compression.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Compression/zstd_compression.cpp b/Code/Framework/AzCore/AzCore/Compression/zstd_compression.cpp index b438f4d24a..9d30ce1120 100644 --- a/Code/Framework/AzCore/AzCore/Compression/zstd_compression.cpp +++ b/Code/Framework/AzCore/AzCore/Compression/zstd_compression.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Compression/zstd_compression.h b/Code/Framework/AzCore/AzCore/Compression/zstd_compression.h index 81030fcd1e..91d27c6fb8 100644 --- a/Code/Framework/AzCore/AzCore/Compression/zstd_compression.h +++ b/Code/Framework/AzCore/AzCore/Compression/zstd_compression.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/Console.cpp b/Code/Framework/AzCore/AzCore/Console/Console.cpp index 9aa8b728ac..fd7a3d7a11 100644 --- a/Code/Framework/AzCore/AzCore/Console/Console.cpp +++ b/Code/Framework/AzCore/AzCore/Console/Console.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/Console.h b/Code/Framework/AzCore/AzCore/Console/Console.h index 0b0b53ea73..6c46224627 100644 --- a/Code/Framework/AzCore/AzCore/Console/Console.h +++ b/Code/Framework/AzCore/AzCore/Console/Console.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.h b/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.h index fbf3c15a19..f0259adada 100644 --- a/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.h +++ b/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.inl b/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.inl index 476e34fceb..9529e7aae4 100644 --- a/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.inl +++ b/Code/Framework/AzCore/AzCore/Console/ConsoleDataWrapper.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.cpp b/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.cpp index cc10b79c23..c93c596a17 100644 --- a/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.cpp +++ b/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.h b/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.h index 160aaa88c2..6044dc76b9 100644 --- a/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.h +++ b/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.inl b/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.inl index 4b5895c8fd..92913e13b1 100644 --- a/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.inl +++ b/Code/Framework/AzCore/AzCore/Console/ConsoleFunctor.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.h b/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.h index 2a0dabe26d..2cdf20f9d9 100644 --- a/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.h +++ b/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.inl b/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.inl index 46abf7125c..809e6a5800 100644 --- a/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.inl +++ b/Code/Framework/AzCore/AzCore/Console/ConsoleTypeHelpers.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/IConsole.h b/Code/Framework/AzCore/AzCore/Console/IConsole.h index cc12d141a3..6e20525850 100644 --- a/Code/Framework/AzCore/AzCore/Console/IConsole.h +++ b/Code/Framework/AzCore/AzCore/Console/IConsole.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/IConsoleTypes.h b/Code/Framework/AzCore/AzCore/Console/IConsoleTypes.h index d71cd2beae..fcfe70ff68 100644 --- a/Code/Framework/AzCore/AzCore/Console/IConsoleTypes.h +++ b/Code/Framework/AzCore/AzCore/Console/IConsoleTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/ILogger.h b/Code/Framework/AzCore/AzCore/Console/ILogger.h index 65388ca53c..47a117df05 100644 --- a/Code/Framework/AzCore/AzCore/Console/ILogger.h +++ b/Code/Framework/AzCore/AzCore/Console/ILogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.cpp b/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.cpp index 4defb10b7b..3603846ec5 100644 --- a/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.h b/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.h index f7ea16885d..b618503240 100644 --- a/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.h +++ b/Code/Framework/AzCore/AzCore/Console/LoggerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/AssetTracking.cpp b/Code/Framework/AzCore/AzCore/Debug/AssetTracking.cpp index 373b496541..8a90be688b 100644 --- a/Code/Framework/AzCore/AzCore/Debug/AssetTracking.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/AssetTracking.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/AssetTracking.h b/Code/Framework/AzCore/AzCore/Debug/AssetTracking.h index b052656eda..c2a1cd63cf 100644 --- a/Code/Framework/AzCore/AzCore/Debug/AssetTracking.h +++ b/Code/Framework/AzCore/AzCore/Debug/AssetTracking.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypes.h b/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypes.h index 30d8974701..c1cf896ad5 100644 --- a/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypes.h +++ b/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypesImpl.h b/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypesImpl.h index f8367fc767..a32dae66e3 100644 --- a/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypesImpl.h +++ b/Code/Framework/AzCore/AzCore/Debug/AssetTrackingTypesImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/EventTrace.cpp b/Code/Framework/AzCore/AzCore/Debug/EventTrace.cpp index e40491ca7f..ae6b514340 100644 --- a/Code/Framework/AzCore/AzCore/Debug/EventTrace.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/EventTrace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/EventTrace.h b/Code/Framework/AzCore/AzCore/Debug/EventTrace.h index 56e2f08fc9..cde36c0f34 100644 --- a/Code/Framework/AzCore/AzCore/Debug/EventTrace.h +++ b/Code/Framework/AzCore/AzCore/Debug/EventTrace.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp b/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp index 7100c9ad41..42bc1373a2 100644 --- a/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.h b/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.h index 97297de668..b0f232e6a3 100644 --- a/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.h +++ b/Code/Framework/AzCore/AzCore/Debug/EventTraceDriller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/EventTraceDrillerBus.h b/Code/Framework/AzCore/AzCore/Debug/EventTraceDrillerBus.h index 24c2409ac2..bfdb00c291 100644 --- a/Code/Framework/AzCore/AzCore/Debug/EventTraceDrillerBus.h +++ b/Code/Framework/AzCore/AzCore/Debug/EventTraceDrillerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfiler.h b/Code/Framework/AzCore/AzCore/Debug/FrameProfiler.h index 34c97c0c2a..405521ad3c 100644 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfiler.h +++ b/Code/Framework/AzCore/AzCore/Debug/FrameProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerBus.h b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerBus.h index 85bfba814f..1eee68f1c2 100644 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerBus.h +++ b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.cpp b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.cpp index 842edc15bb..4faa0475f5 100644 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.h b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.h index 238260876b..36f2fb3d25 100644 --- a/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.h +++ b/Code/Framework/AzCore/AzCore/Debug/FrameProfilerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/IEventLogger.h b/Code/Framework/AzCore/AzCore/Debug/IEventLogger.h index 1c6ec38a32..4361cb246b 100644 --- a/Code/Framework/AzCore/AzCore/Debug/IEventLogger.h +++ b/Code/Framework/AzCore/AzCore/Debug/IEventLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp b/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp index 151fc16f91..cc30b4711c 100644 --- a/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.h b/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.h index 732ccc3d11..9ebcf6711b 100644 --- a/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.h +++ b/Code/Framework/AzCore/AzCore/Debug/LocalFileEventLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.cpp b/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.cpp index 8f3a5ebc0d..5f5a6d1ca7 100644 --- a/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.h b/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.h index 76a8891834..ab5e829a04 100644 --- a/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.h +++ b/Code/Framework/AzCore/AzCore/Debug/ProfileModuleInit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp b/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp index 174c4a981d..0ec66d2434 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/Profiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/Profiler.h b/Code/Framework/AzCore/AzCore/Debug/Profiler.h index 343a38a547..5409dfffdf 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Profiler.h +++ b/Code/Framework/AzCore/AzCore/Debug/Profiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfilerBus.h b/Code/Framework/AzCore/AzCore/Debug/ProfilerBus.h index 448495ab74..cbcd2e63b4 100644 --- a/Code/Framework/AzCore/AzCore/Debug/ProfilerBus.h +++ b/Code/Framework/AzCore/AzCore/Debug/ProfilerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.cpp b/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.cpp index 67694eed75..8acaf48126 100644 --- a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.h b/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.h index 4478e4b78d..42880376d1 100644 --- a/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.h +++ b/Code/Framework/AzCore/AzCore/Debug/ProfilerDriller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/ProfilerDrillerBus.h b/Code/Framework/AzCore/AzCore/Debug/ProfilerDrillerBus.h index 2420db9a4b..563232a01c 100644 --- a/Code/Framework/AzCore/AzCore/Debug/ProfilerDrillerBus.h +++ b/Code/Framework/AzCore/AzCore/Debug/ProfilerDrillerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/StackTracer.h b/Code/Framework/AzCore/AzCore/Debug/StackTracer.h index c63b1b327c..bb7428b28c 100644 --- a/Code/Framework/AzCore/AzCore/Debug/StackTracer.h +++ b/Code/Framework/AzCore/AzCore/Debug/StackTracer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/Timer.h b/Code/Framework/AzCore/AzCore/Debug/Timer.h index aaced58d52..87cb2d2f43 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Timer.h +++ b/Code/Framework/AzCore/AzCore/Debug/Timer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/Trace.cpp b/Code/Framework/AzCore/AzCore/Debug/Trace.cpp index c59dd9da19..ed0ee7f3b7 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Trace.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/Trace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/Trace.h b/Code/Framework/AzCore/AzCore/Debug/Trace.h index bd935e401c..594322f1f3 100644 --- a/Code/Framework/AzCore/AzCore/Debug/Trace.h +++ b/Code/Framework/AzCore/AzCore/Debug/Trace.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/TraceMessageBus.h b/Code/Framework/AzCore/AzCore/Debug/TraceMessageBus.h index 12832c2ae8..6de1924106 100644 --- a/Code/Framework/AzCore/AzCore/Debug/TraceMessageBus.h +++ b/Code/Framework/AzCore/AzCore/Debug/TraceMessageBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.cpp b/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.cpp index 187476bcf5..8d14188f16 100644 --- a/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.h b/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.h index 44e8db916f..53fba34107 100644 --- a/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.h +++ b/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDriller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDrillerBus.h b/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDrillerBus.h index 308e453015..20f5b4e6b4 100644 --- a/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDrillerBus.h +++ b/Code/Framework/AzCore/AzCore/Debug/TraceMessagesDrillerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/TraceReflection.cpp b/Code/Framework/AzCore/AzCore/Debug/TraceReflection.cpp index d669bb0ad0..bc00e9639e 100644 --- a/Code/Framework/AzCore/AzCore/Debug/TraceReflection.cpp +++ b/Code/Framework/AzCore/AzCore/Debug/TraceReflection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Debug/TraceReflection.h b/Code/Framework/AzCore/AzCore/Debug/TraceReflection.h index 3ff40b991a..d207f59050 100644 --- a/Code/Framework/AzCore/AzCore/Debug/TraceReflection.h +++ b/Code/Framework/AzCore/AzCore/Debug/TraceReflection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Docs.h b/Code/Framework/AzCore/AzCore/Docs.h index 52f9795a82..088e083e23 100644 --- a/Code/Framework/AzCore/AzCore/Docs.h +++ b/Code/Framework/AzCore/AzCore/Docs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/DefaultStringPool.h b/Code/Framework/AzCore/AzCore/Driller/DefaultStringPool.h index 92dc3cc805..9a005a9c87 100644 --- a/Code/Framework/AzCore/AzCore/Driller/DefaultStringPool.h +++ b/Code/Framework/AzCore/AzCore/Driller/DefaultStringPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/Driller.cpp b/Code/Framework/AzCore/AzCore/Driller/Driller.cpp index 0fefc349eb..cccd20027b 100644 --- a/Code/Framework/AzCore/AzCore/Driller/Driller.cpp +++ b/Code/Framework/AzCore/AzCore/Driller/Driller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/Driller.h b/Code/Framework/AzCore/AzCore/Driller/Driller.h index f489a65a6e..4bd68b73e3 100644 --- a/Code/Framework/AzCore/AzCore/Driller/Driller.h +++ b/Code/Framework/AzCore/AzCore/Driller/Driller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/DrillerBus.cpp b/Code/Framework/AzCore/AzCore/Driller/DrillerBus.cpp index e6e4363a03..2c9aca682a 100644 --- a/Code/Framework/AzCore/AzCore/Driller/DrillerBus.cpp +++ b/Code/Framework/AzCore/AzCore/Driller/DrillerBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/DrillerBus.h b/Code/Framework/AzCore/AzCore/Driller/DrillerBus.h index 85645512c0..b696a0b131 100644 --- a/Code/Framework/AzCore/AzCore/Driller/DrillerBus.h +++ b/Code/Framework/AzCore/AzCore/Driller/DrillerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/DrillerRootHandler.h b/Code/Framework/AzCore/AzCore/Driller/DrillerRootHandler.h index 25873eae82..8f2ce77ed9 100644 --- a/Code/Framework/AzCore/AzCore/Driller/DrillerRootHandler.h +++ b/Code/Framework/AzCore/AzCore/Driller/DrillerRootHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/Stream.cpp b/Code/Framework/AzCore/AzCore/Driller/Stream.cpp index 9a61081eb6..4d8b061a2c 100644 --- a/Code/Framework/AzCore/AzCore/Driller/Stream.cpp +++ b/Code/Framework/AzCore/AzCore/Driller/Stream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Driller/Stream.h b/Code/Framework/AzCore/AzCore/Driller/Stream.h index 4402e318f3..0872da2682 100644 --- a/Code/Framework/AzCore/AzCore/Driller/Stream.h +++ b/Code/Framework/AzCore/AzCore/Driller/Stream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/BusImpl.h b/Code/Framework/AzCore/AzCore/EBus/BusImpl.h index 3273872cf7..cce7283c60 100644 --- a/Code/Framework/AzCore/AzCore/EBus/BusImpl.h +++ b/Code/Framework/AzCore/AzCore/EBus/BusImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/EBus.h b/Code/Framework/AzCore/AzCore/EBus/EBus.h index 0ffe280187..17ac9b3e78 100644 --- a/Code/Framework/AzCore/AzCore/EBus/EBus.h +++ b/Code/Framework/AzCore/AzCore/EBus/EBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/EBusEnvironment.cpp b/Code/Framework/AzCore/AzCore/EBus/EBusEnvironment.cpp index 9c8c237571..f5e66c1d37 100644 --- a/Code/Framework/AzCore/AzCore/EBus/EBusEnvironment.cpp +++ b/Code/Framework/AzCore/AzCore/EBus/EBusEnvironment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Environment.h b/Code/Framework/AzCore/AzCore/EBus/Environment.h index 65c200119c..027a25ede4 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Environment.h +++ b/Code/Framework/AzCore/AzCore/EBus/Environment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Event.h b/Code/Framework/AzCore/AzCore/EBus/Event.h index 52ee112415..6f4a48e84c 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Event.h +++ b/Code/Framework/AzCore/AzCore/EBus/Event.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Event.inl b/Code/Framework/AzCore/AzCore/EBus/Event.inl index d3b86abb52..006ff81e34 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Event.inl +++ b/Code/Framework/AzCore/AzCore/EBus/Event.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.cpp b/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.cpp index ae46132494..60f98ead2e 100644 --- a/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.h b/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.h index d58acdc82e..fde37b6022 100644 --- a/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.h +++ b/Code/Framework/AzCore/AzCore/EBus/EventSchedulerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/IEventScheduler.h b/Code/Framework/AzCore/AzCore/EBus/IEventScheduler.h index bbdf54b8a8..a4e0e454db 100644 --- a/Code/Framework/AzCore/AzCore/EBus/IEventScheduler.h +++ b/Code/Framework/AzCore/AzCore/EBus/IEventScheduler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Internal/BusContainer.h b/Code/Framework/AzCore/AzCore/EBus/Internal/BusContainer.h index c2d4baedb1..03a6b34359 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Internal/BusContainer.h +++ b/Code/Framework/AzCore/AzCore/EBus/Internal/BusContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Internal/CallstackEntry.h b/Code/Framework/AzCore/AzCore/EBus/Internal/CallstackEntry.h index 90bdac65d4..6b2642ce13 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Internal/CallstackEntry.h +++ b/Code/Framework/AzCore/AzCore/EBus/Internal/CallstackEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Internal/Debug.h b/Code/Framework/AzCore/AzCore/EBus/Internal/Debug.h index 64e01ef285..b437737742 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Internal/Debug.h +++ b/Code/Framework/AzCore/AzCore/EBus/Internal/Debug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Internal/Handlers.h b/Code/Framework/AzCore/AzCore/EBus/Internal/Handlers.h index 133b00e454..85221d7de3 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Internal/Handlers.h +++ b/Code/Framework/AzCore/AzCore/EBus/Internal/Handlers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Internal/StoragePolicies.h b/Code/Framework/AzCore/AzCore/EBus/Internal/StoragePolicies.h index 580354dc9e..2367de6ea7 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Internal/StoragePolicies.h +++ b/Code/Framework/AzCore/AzCore/EBus/Internal/StoragePolicies.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.h b/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.h index 777f99780d..cc7b14af8c 100644 --- a/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.h +++ b/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.inl b/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.inl index c0004907b3..e4418682a6 100644 --- a/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.inl +++ b/Code/Framework/AzCore/AzCore/EBus/OrderedEvent.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Policies.h b/Code/Framework/AzCore/AzCore/EBus/Policies.h index 6f77f3f47f..a75395b05d 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Policies.h +++ b/Code/Framework/AzCore/AzCore/EBus/Policies.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/Results.h b/Code/Framework/AzCore/AzCore/EBus/Results.h index bd30a10204..618fbd6d03 100644 --- a/Code/Framework/AzCore/AzCore/EBus/Results.h +++ b/Code/Framework/AzCore/AzCore/EBus/Results.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.cpp b/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.cpp index 6a9032ba1d..138fe95849 100644 --- a/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.cpp +++ b/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.h b/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.h index c0c06a703d..6087806f30 100644 --- a/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.h +++ b/Code/Framework/AzCore/AzCore/EBus/ScheduledEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.cpp b/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.cpp index 081a769597..04895a9a31 100644 --- a/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.cpp +++ b/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.h b/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.h index 4c8e3d6fb2..7df8459e5f 100644 --- a/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.h +++ b/Code/Framework/AzCore/AzCore/EBus/ScheduledEventHandle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/ByteContainerStream.h b/Code/Framework/AzCore/AzCore/IO/ByteContainerStream.h index 7807e7f587..5375a69ff2 100644 --- a/Code/Framework/AzCore/AzCore/IO/ByteContainerStream.h +++ b/Code/Framework/AzCore/AzCore/IO/ByteContainerStream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressionBus.cpp b/Code/Framework/AzCore/AzCore/IO/CompressionBus.cpp index 6fdbd86bc1..6e6f687f10 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressionBus.cpp +++ b/Code/Framework/AzCore/AzCore/IO/CompressionBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressionBus.h b/Code/Framework/AzCore/AzCore/IO/CompressionBus.h index 517aeb539e..88ef777607 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressionBus.h +++ b/Code/Framework/AzCore/AzCore/IO/CompressionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Compressor.cpp b/Code/Framework/AzCore/AzCore/IO/Compressor.cpp index 06f70cee55..3b926f3147 100644 --- a/Code/Framework/AzCore/AzCore/IO/Compressor.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Compressor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Compressor.h b/Code/Framework/AzCore/AzCore/IO/Compressor.h index af143f8102..14309e90ed 100644 --- a/Code/Framework/AzCore/AzCore/IO/Compressor.h +++ b/Code/Framework/AzCore/AzCore/IO/Compressor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressorStream.cpp b/Code/Framework/AzCore/AzCore/IO/CompressorStream.cpp index 5263e896a6..f63a63b66d 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressorStream.cpp +++ b/Code/Framework/AzCore/AzCore/IO/CompressorStream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressorStream.h b/Code/Framework/AzCore/AzCore/IO/CompressorStream.h index e9ef3e14c4..35a9cc6bbc 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressorStream.h +++ b/Code/Framework/AzCore/AzCore/IO/CompressorStream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp b/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp index 569d51cf07..5e9d060765 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp +++ b/Code/Framework/AzCore/AzCore/IO/CompressorZLib.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressorZLib.h b/Code/Framework/AzCore/AzCore/IO/CompressorZLib.h index 92c56dfe5a..5e4e4b9154 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressorZLib.h +++ b/Code/Framework/AzCore/AzCore/IO/CompressorZLib.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressorZStd.cpp b/Code/Framework/AzCore/AzCore/IO/CompressorZStd.cpp index 9efc9a394b..0435e41c21 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressorZStd.cpp +++ b/Code/Framework/AzCore/AzCore/IO/CompressorZStd.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/CompressorZStd.h b/Code/Framework/AzCore/AzCore/IO/CompressorZStd.h index 5a447d8477..b7e4c7e8b2 100644 --- a/Code/Framework/AzCore/AzCore/IO/CompressorZStd.h +++ b/Code/Framework/AzCore/AzCore/IO/CompressorZStd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/FileIO.cpp b/Code/Framework/AzCore/AzCore/IO/FileIO.cpp index 5164017efe..b675663db0 100644 --- a/Code/Framework/AzCore/AzCore/IO/FileIO.cpp +++ b/Code/Framework/AzCore/AzCore/IO/FileIO.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/FileIO.h b/Code/Framework/AzCore/AzCore/IO/FileIO.h index 4ff2024b4d..2f39141c73 100644 --- a/Code/Framework/AzCore/AzCore/IO/FileIO.h +++ b/Code/Framework/AzCore/AzCore/IO/FileIO.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/FileIOEventBus.h b/Code/Framework/AzCore/AzCore/IO/FileIOEventBus.h index 51fe8b27ad..f5a8ee7ea1 100644 --- a/Code/Framework/AzCore/AzCore/IO/FileIOEventBus.h +++ b/Code/Framework/AzCore/AzCore/IO/FileIOEventBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/GenericStreams.cpp b/Code/Framework/AzCore/AzCore/IO/GenericStreams.cpp index 44178709b6..a4cc751b43 100644 --- a/Code/Framework/AzCore/AzCore/IO/GenericStreams.cpp +++ b/Code/Framework/AzCore/AzCore/IO/GenericStreams.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/GenericStreams.h b/Code/Framework/AzCore/AzCore/IO/GenericStreams.h index ecbba87943..1d141b72d6 100644 --- a/Code/Framework/AzCore/AzCore/IO/GenericStreams.h +++ b/Code/Framework/AzCore/AzCore/IO/GenericStreams.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/IOUtils.cpp b/Code/Framework/AzCore/AzCore/IO/IOUtils.cpp index 2abfd6d86f..767a092744 100644 --- a/Code/Framework/AzCore/AzCore/IO/IOUtils.cpp +++ b/Code/Framework/AzCore/AzCore/IO/IOUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/IOUtils.h b/Code/Framework/AzCore/AzCore/IO/IOUtils.h index 0cef738194..533c3a3f8f 100644 --- a/Code/Framework/AzCore/AzCore/IO/IOUtils.h +++ b/Code/Framework/AzCore/AzCore/IO/IOUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/IStreamer.h b/Code/Framework/AzCore/AzCore/IO/IStreamer.h index f794339d44..84b79ac55b 100644 --- a/Code/Framework/AzCore/AzCore/IO/IStreamer.h +++ b/Code/Framework/AzCore/AzCore/IO/IStreamer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.cpp b/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.cpp index 7507014027..40408d8232 100644 --- a/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.cpp +++ b/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.h b/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.h index b174a902d3..1f806c4c36 100644 --- a/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.h +++ b/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.inl b/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.inl index c1590a27e4..4fe5dd7e2e 100644 --- a/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.inl +++ b/Code/Framework/AzCore/AzCore/IO/IStreamerTypes.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Path/Path.cpp b/Code/Framework/AzCore/AzCore/IO/Path/Path.cpp index 49fcca909a..c229d176a4 100644 --- a/Code/Framework/AzCore/AzCore/IO/Path/Path.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Path/Path.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Path/Path.h b/Code/Framework/AzCore/AzCore/IO/Path/Path.h index e9e2c79d46..3a0ab4b59a 100644 --- a/Code/Framework/AzCore/AzCore/IO/Path/Path.h +++ b/Code/Framework/AzCore/AzCore/IO/Path/Path.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Path/Path.inl b/Code/Framework/AzCore/AzCore/IO/Path/Path.inl index 32ebed0840..f899522916 100644 --- a/Code/Framework/AzCore/AzCore/IO/Path/Path.inl +++ b/Code/Framework/AzCore/AzCore/IO/Path/Path.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Path/Path_fwd.h b/Code/Framework/AzCore/AzCore/IO/Path/Path_fwd.h index 5d7b140619..8384c98c0c 100644 --- a/Code/Framework/AzCore/AzCore/IO/Path/Path_fwd.h +++ b/Code/Framework/AzCore/AzCore/IO/Path/Path_fwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.cpp index bc1b5b5ebd..87b41892e2 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.h b/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.h index 2845974dab..497b3d78ea 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/BlockCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.cpp index b7470d00d5..e15f3b31f4 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.h b/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.h index 50e9ca1ede..4f0565cd33 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/DedicatedCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.cpp index d82272e34b..40e81abb6c 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.h b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.h index cb590cdb53..3670b832de 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRange.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.cpp index 286f6d03f3..228cd408bb 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.h b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.h index 137e1b7360..70648d2506 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.inl b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.inl index 3bb91e9e9d..aa08aba6b2 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.inl +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FileRequest.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp index 0f786d1ce8..bcc5e715ba 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.h b/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.h index 1697bdaa4e..4cdda03fb8 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/FullFileDecompressor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.cpp index 28ef9d7b64..f62eca385e 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.h b/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.h index 4ee09944ce..8e0d91f13a 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/ReadSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.cpp index b380449c2e..2ba1db6760 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.h b/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.h index 19bddd28ab..c50e766a64 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/RequestPath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp index b291fb8173..2b5c04e895 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.h b/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.h index b437486a3e..2b0a5c57f9 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/Scheduler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.cpp index 199f7adc36..5c1b56b80b 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.h b/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.h index 9c42ca8a4e..b0e9115041 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/Statistics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.cpp index c4065f2803..787cd9371d 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.h b/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.h index b583dc5710..4004b34a7f 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StorageDrive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.cpp index e367ba4efb..4aa866f08b 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.h b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.h index 84e7021f9d..a005b86add 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamStackEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.cpp index cf7c5c5a17..6ae40d1a1f 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.h b/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.h index dab9c04314..9b84ebc169 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/Streamer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.cpp index 77d8aef8e4..d820fcfa25 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.h b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.h index 426fd9fbad..c31b83b600 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.cpp index 59d57461e0..0480bd9e57 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.h b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.h index 5e278e8aaf..0a66cf85b9 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp index 0fb809f4ae..64a7b6ff0a 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.h b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.h index a8bfee3c28..ccd86d49bc 100644 --- a/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.h +++ b/Code/Framework/AzCore/AzCore/IO/Streamer/StreamerContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp b/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp index 0ec50b41b0..2e1cec6807 100644 --- a/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp +++ b/Code/Framework/AzCore/AzCore/IO/SystemFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/SystemFile.h b/Code/Framework/AzCore/AzCore/IO/SystemFile.h index dc6215e78d..42879b3349 100644 --- a/Code/Framework/AzCore/AzCore/IO/SystemFile.h +++ b/Code/Framework/AzCore/AzCore/IO/SystemFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IO/TextStreamWriters.h b/Code/Framework/AzCore/AzCore/IO/TextStreamWriters.h index e40f2ca7af..90bf6043ae 100644 --- a/Code/Framework/AzCore/AzCore/IO/TextStreamWriters.h +++ b/Code/Framework/AzCore/AzCore/IO/TextStreamWriters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp b/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp index 1f2f00a61a..575ba8abc8 100644 --- a/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp +++ b/Code/Framework/AzCore/AzCore/IPC/SharedMemory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IPC/SharedMemory.h b/Code/Framework/AzCore/AzCore/IPC/SharedMemory.h index 334c59f932..64810dfa37 100644 --- a/Code/Framework/AzCore/AzCore/IPC/SharedMemory.h +++ b/Code/Framework/AzCore/AzCore/IPC/SharedMemory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/IPC/SharedMemory_Common.h b/Code/Framework/AzCore/AzCore/IPC/SharedMemory_Common.h index ab3cd4170c..bcb20c1dc1 100644 --- a/Code/Framework/AzCore/AzCore/IPC/SharedMemory_Common.h +++ b/Code/Framework/AzCore/AzCore/IPC/SharedMemory_Common.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Interface/Interface.h b/Code/Framework/AzCore/AzCore/Interface/Interface.h index 78c5896a9a..c1989c9044 100644 --- a/Code/Framework/AzCore/AzCore/Interface/Interface.h +++ b/Code/Framework/AzCore/AzCore/Interface/Interface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/allocators.h b/Code/Framework/AzCore/AzCore/JSON/allocators.h index ed72d22f86..ff656969a7 100644 --- a/Code/Framework/AzCore/AzCore/JSON/allocators.h +++ b/Code/Framework/AzCore/AzCore/JSON/allocators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/cursorstreamwrapper.h b/Code/Framework/AzCore/AzCore/JSON/cursorstreamwrapper.h index 5752edfa11..eed9b213d5 100644 --- a/Code/Framework/AzCore/AzCore/JSON/cursorstreamwrapper.h +++ b/Code/Framework/AzCore/AzCore/JSON/cursorstreamwrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/document.h b/Code/Framework/AzCore/AzCore/JSON/document.h index 2d8b092e9a..fc680621bc 100644 --- a/Code/Framework/AzCore/AzCore/JSON/document.h +++ b/Code/Framework/AzCore/AzCore/JSON/document.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/encodedstream.h b/Code/Framework/AzCore/AzCore/JSON/encodedstream.h index 78919f2a3e..15ae285df2 100644 --- a/Code/Framework/AzCore/AzCore/JSON/encodedstream.h +++ b/Code/Framework/AzCore/AzCore/JSON/encodedstream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/encodings.h b/Code/Framework/AzCore/AzCore/JSON/encodings.h index e57cf8b02f..89fcf8f88b 100644 --- a/Code/Framework/AzCore/AzCore/JSON/encodings.h +++ b/Code/Framework/AzCore/AzCore/JSON/encodings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/error/en.h b/Code/Framework/AzCore/AzCore/JSON/error/en.h index af1ce7622f..b89b44f083 100644 --- a/Code/Framework/AzCore/AzCore/JSON/error/en.h +++ b/Code/Framework/AzCore/AzCore/JSON/error/en.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/error/error.h b/Code/Framework/AzCore/AzCore/JSON/error/error.h index 5a4389b61f..9f5ce1e82c 100644 --- a/Code/Framework/AzCore/AzCore/JSON/error/error.h +++ b/Code/Framework/AzCore/AzCore/JSON/error/error.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/filereadstream.h b/Code/Framework/AzCore/AzCore/JSON/filereadstream.h index 159e839d9c..1f3669ab08 100644 --- a/Code/Framework/AzCore/AzCore/JSON/filereadstream.h +++ b/Code/Framework/AzCore/AzCore/JSON/filereadstream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/filewritestream.h b/Code/Framework/AzCore/AzCore/JSON/filewritestream.h index 29a38358be..1c5f1a7dc3 100644 --- a/Code/Framework/AzCore/AzCore/JSON/filewritestream.h +++ b/Code/Framework/AzCore/AzCore/JSON/filewritestream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/fwd.h b/Code/Framework/AzCore/AzCore/JSON/fwd.h index 9a30fa48fd..7391def7aa 100644 --- a/Code/Framework/AzCore/AzCore/JSON/fwd.h +++ b/Code/Framework/AzCore/AzCore/JSON/fwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/istreamwrapper.h b/Code/Framework/AzCore/AzCore/JSON/istreamwrapper.h index 8ac6518883..1fe3c9c13a 100644 --- a/Code/Framework/AzCore/AzCore/JSON/istreamwrapper.h +++ b/Code/Framework/AzCore/AzCore/JSON/istreamwrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/memorybuffer.h b/Code/Framework/AzCore/AzCore/JSON/memorybuffer.h index 480d9039e3..881e949b6e 100644 --- a/Code/Framework/AzCore/AzCore/JSON/memorybuffer.h +++ b/Code/Framework/AzCore/AzCore/JSON/memorybuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/memorystream.h b/Code/Framework/AzCore/AzCore/JSON/memorystream.h index 2586ddaa14..7e8d3d90d7 100644 --- a/Code/Framework/AzCore/AzCore/JSON/memorystream.h +++ b/Code/Framework/AzCore/AzCore/JSON/memorystream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/ostreamwrapper.h b/Code/Framework/AzCore/AzCore/JSON/ostreamwrapper.h index 9b22f0f32f..3a9c781051 100644 --- a/Code/Framework/AzCore/AzCore/JSON/ostreamwrapper.h +++ b/Code/Framework/AzCore/AzCore/JSON/ostreamwrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/pointer.h b/Code/Framework/AzCore/AzCore/JSON/pointer.h index 5362120b72..7507cab78f 100644 --- a/Code/Framework/AzCore/AzCore/JSON/pointer.h +++ b/Code/Framework/AzCore/AzCore/JSON/pointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/prettywriter.h b/Code/Framework/AzCore/AzCore/JSON/prettywriter.h index 1b25525fd5..e6c4f5dc9f 100644 --- a/Code/Framework/AzCore/AzCore/JSON/prettywriter.h +++ b/Code/Framework/AzCore/AzCore/JSON/prettywriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/rapidjson.h b/Code/Framework/AzCore/AzCore/JSON/rapidjson.h index e7491c374d..28a7c2b861 100644 --- a/Code/Framework/AzCore/AzCore/JSON/rapidjson.h +++ b/Code/Framework/AzCore/AzCore/JSON/rapidjson.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/reader.h b/Code/Framework/AzCore/AzCore/JSON/reader.h index b4bd22d4cc..77c6ed67e4 100644 --- a/Code/Framework/AzCore/AzCore/JSON/reader.h +++ b/Code/Framework/AzCore/AzCore/JSON/reader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/schema.h b/Code/Framework/AzCore/AzCore/JSON/schema.h index 80e1811987..03d0847263 100644 --- a/Code/Framework/AzCore/AzCore/JSON/schema.h +++ b/Code/Framework/AzCore/AzCore/JSON/schema.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/stream.h b/Code/Framework/AzCore/AzCore/JSON/stream.h index 4c64322d6e..14730348f5 100644 --- a/Code/Framework/AzCore/AzCore/JSON/stream.h +++ b/Code/Framework/AzCore/AzCore/JSON/stream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/stringbuffer.h b/Code/Framework/AzCore/AzCore/JSON/stringbuffer.h index 6c7d2cd8f6..07311411c9 100644 --- a/Code/Framework/AzCore/AzCore/JSON/stringbuffer.h +++ b/Code/Framework/AzCore/AzCore/JSON/stringbuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/JSON/writer.h b/Code/Framework/AzCore/AzCore/JSON/writer.h index 3faab05eec..4c25c6d6c0 100644 --- a/Code/Framework/AzCore/AzCore/JSON/writer.h +++ b/Code/Framework/AzCore/AzCore/JSON/writer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/Algorithms.h b/Code/Framework/AzCore/AzCore/Jobs/Algorithms.h index 7c3c9a6916..d087bc98f4 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Algorithms.h +++ b/Code/Framework/AzCore/AzCore/Jobs/Algorithms.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.cpp b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.cpp index 9e39c2ebba..529183d0f8 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.cpp +++ b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.h b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.h index 1f93606c25..dd5e431e4e 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.h +++ b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp index d4a56f0197..8396a63278 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp +++ b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.h b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.h index 818826ccec..d44d2a8392 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.h +++ b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobManagerWorkStealing.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobNotify.h b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobNotify.h index 457e393e11..7e4556d54b 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Internal/JobNotify.h +++ b/Code/Framework/AzCore/AzCore/Jobs/Internal/JobNotify.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/Job.h b/Code/Framework/AzCore/AzCore/Jobs/Job.h index a19eb1713c..7f7aa0b00b 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/Job.h +++ b/Code/Framework/AzCore/AzCore/Jobs/Job.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobCancelGroup.h b/Code/Framework/AzCore/AzCore/Jobs/JobCancelGroup.h index 07441f4cd8..c1124a0b77 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobCancelGroup.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobCancelGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobCompletion.h b/Code/Framework/AzCore/AzCore/Jobs/JobCompletion.h index 3fe44403a9..57a3850ca1 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobCompletion.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobCompletion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobCompletionSpin.h b/Code/Framework/AzCore/AzCore/Jobs/JobCompletionSpin.h index 19a1f15562..33f4e58043 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobCompletionSpin.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobCompletionSpin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobContext.cpp b/Code/Framework/AzCore/AzCore/Jobs/JobContext.cpp index d343da43cf..d98ce4adcf 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobContext.cpp +++ b/Code/Framework/AzCore/AzCore/Jobs/JobContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobContext.h b/Code/Framework/AzCore/AzCore/Jobs/JobContext.h index 5b97e46981..e01c66dbf9 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobContext.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobEmpty.h b/Code/Framework/AzCore/AzCore/Jobs/JobEmpty.h index b68df34c38..fc26c58c5f 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobEmpty.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobEmpty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobFunction.h b/Code/Framework/AzCore/AzCore/Jobs/JobFunction.h index 34da320056..86e862eb91 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobFunction.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobManager.cpp b/Code/Framework/AzCore/AzCore/Jobs/JobManager.cpp index 4b35a91172..c081a6f98a 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobManager.cpp +++ b/Code/Framework/AzCore/AzCore/Jobs/JobManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobManager.h b/Code/Framework/AzCore/AzCore/Jobs/JobManager.h index 4b14dda324..3571a8a972 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobManager.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobManagerBus.h b/Code/Framework/AzCore/AzCore/Jobs/JobManagerBus.h index 92f106d693..30e1b4d6a3 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobManagerBus.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.cpp b/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.cpp index 4a707f0383..974dbf230f 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.h b/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.h index f4b8c773ac..47d5f57a73 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobManagerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/JobManagerDesc.h b/Code/Framework/AzCore/AzCore/Jobs/JobManagerDesc.h index 8e82cb28e0..e5cc7b6548 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/JobManagerDesc.h +++ b/Code/Framework/AzCore/AzCore/Jobs/JobManagerDesc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/LegacyJobExecutor.h b/Code/Framework/AzCore/AzCore/Jobs/LegacyJobExecutor.h index 118ff5f426..fee53ba427 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/LegacyJobExecutor.h +++ b/Code/Framework/AzCore/AzCore/Jobs/LegacyJobExecutor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/MultipleDependentJob.h b/Code/Framework/AzCore/AzCore/Jobs/MultipleDependentJob.h index 68033ac700..6af2633ab2 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/MultipleDependentJob.h +++ b/Code/Framework/AzCore/AzCore/Jobs/MultipleDependentJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Jobs/task_group.h b/Code/Framework/AzCore/AzCore/Jobs/task_group.h index e561bbcede..e54f272817 100644 --- a/Code/Framework/AzCore/AzCore/Jobs/task_group.h +++ b/Code/Framework/AzCore/AzCore/Jobs/task_group.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Aabb.cpp b/Code/Framework/AzCore/AzCore/Math/Aabb.cpp index 92e4c5ef7e..b8368cb0a1 100644 --- a/Code/Framework/AzCore/AzCore/Math/Aabb.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Aabb.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Aabb.h b/Code/Framework/AzCore/AzCore/Math/Aabb.h index e85f3d9dcc..500f31aa7a 100644 --- a/Code/Framework/AzCore/AzCore/Math/Aabb.h +++ b/Code/Framework/AzCore/AzCore/Math/Aabb.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Aabb.inl b/Code/Framework/AzCore/AzCore/Math/Aabb.inl index 1b405e2ec6..8ee8b671ec 100644 --- a/Code/Framework/AzCore/AzCore/Math/Aabb.inl +++ b/Code/Framework/AzCore/AzCore/Math/Aabb.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Color.cpp b/Code/Framework/AzCore/AzCore/Math/Color.cpp index 396083252a..3455ad1db0 100644 --- a/Code/Framework/AzCore/AzCore/Math/Color.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Color.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Color.h b/Code/Framework/AzCore/AzCore/Math/Color.h index f27c412d9b..c4c303318b 100644 --- a/Code/Framework/AzCore/AzCore/Math/Color.h +++ b/Code/Framework/AzCore/AzCore/Math/Color.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Color.inl b/Code/Framework/AzCore/AzCore/Math/Color.inl index b42844fb8b..e18974f185 100644 --- a/Code/Framework/AzCore/AzCore/Math/Color.inl +++ b/Code/Framework/AzCore/AzCore/Math/Color.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/ColorSerializer.cpp b/Code/Framework/AzCore/AzCore/Math/ColorSerializer.cpp index 3f04c66c48..7b1efd58a7 100644 --- a/Code/Framework/AzCore/AzCore/Math/ColorSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Math/ColorSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/ColorSerializer.h b/Code/Framework/AzCore/AzCore/Math/ColorSerializer.h index 67794d1e83..9af25a4634 100644 --- a/Code/Framework/AzCore/AzCore/Math/ColorSerializer.h +++ b/Code/Framework/AzCore/AzCore/Math/ColorSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Crc.cpp b/Code/Framework/AzCore/AzCore/Math/Crc.cpp index 5eb375ac88..dd3e82aea9 100644 --- a/Code/Framework/AzCore/AzCore/Math/Crc.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Crc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Crc.h b/Code/Framework/AzCore/AzCore/Math/Crc.h index 5653f3c541..a47f4d7d8b 100644 --- a/Code/Framework/AzCore/AzCore/Math/Crc.h +++ b/Code/Framework/AzCore/AzCore/Math/Crc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Crc.inl b/Code/Framework/AzCore/AzCore/Math/Crc.inl index 76114c28bb..6edb1eed4d 100644 --- a/Code/Framework/AzCore/AzCore/Math/Crc.inl +++ b/Code/Framework/AzCore/AzCore/Math/Crc.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/DocsMath.h b/Code/Framework/AzCore/AzCore/Math/DocsMath.h index 3c1f888d4a..952a1022bb 100644 --- a/Code/Framework/AzCore/AzCore/Math/DocsMath.h +++ b/Code/Framework/AzCore/AzCore/Math/DocsMath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Frustum.cpp b/Code/Framework/AzCore/AzCore/Math/Frustum.cpp index 0f993eae42..ac772427ea 100644 --- a/Code/Framework/AzCore/AzCore/Math/Frustum.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Frustum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Frustum.h b/Code/Framework/AzCore/AzCore/Math/Frustum.h index ca79f0cc56..990f808815 100644 --- a/Code/Framework/AzCore/AzCore/Math/Frustum.h +++ b/Code/Framework/AzCore/AzCore/Math/Frustum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Frustum.inl b/Code/Framework/AzCore/AzCore/Math/Frustum.inl index d493c93ca3..a6f9521213 100644 --- a/Code/Framework/AzCore/AzCore/Math/Frustum.inl +++ b/Code/Framework/AzCore/AzCore/Math/Frustum.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.cpp b/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.cpp index 3a52cf93d4..2717f835d5 100644 --- a/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.h b/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.h index f3bab88b6e..413a3a73c2 100644 --- a/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.h +++ b/Code/Framework/AzCore/AzCore/Math/Geometry2DUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Guid.h b/Code/Framework/AzCore/AzCore/Math/Guid.h index fe0f23526c..765dd66e64 100644 --- a/Code/Framework/AzCore/AzCore/Math/Guid.h +++ b/Code/Framework/AzCore/AzCore/Math/Guid.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/MathTypes.h b/Code/Framework/AzCore/AzCore/Math/Internal/MathTypes.h index d64cfd08c9..c1f745ded6 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/MathTypes.h +++ b/Code/Framework/AzCore/AzCore/Math/Internal/MathTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neon.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neon.inl index 71b09df625..fea607894c 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neon.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonDouble.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonDouble.inl index ac44174a4b..ddc1d10084 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonDouble.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonDouble.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonQuad.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonQuad.inl index 99cd1edfd4..62652ee41d 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonQuad.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_neonQuad.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_scalar.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_scalar.inl index 0c1ee727ef..3f04d609b2 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_scalar.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_scalar.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl index 965e87aaeb..0b47f1638f 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_simd.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_sse.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_sse.inl index 144745a411..9824aa9184 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_sse.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathCommon_sse.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_neon.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_neon.inl index c3c602073d..9832c2f664 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_neon.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_neon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_scalar.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_scalar.inl index 46a50ac0f9..b316ac01a7 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_scalar.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_scalar.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_sse.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_sse.inl index 5694cd7f07..f61b0b4413 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_sse.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec1_sse.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_neon.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_neon.inl index 44ce7d0d34..1f8e009848 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_neon.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_neon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_scalar.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_scalar.inl index 020bea5301..b221856d75 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_scalar.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_scalar.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_sse.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_sse.inl index 9c5e51ecdc..32066c03a5 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_sse.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec2_sse.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_neon.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_neon.inl index e316f9c7d7..16de359673 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_neon.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_neon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_scalar.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_scalar.inl index d0bbd10ef9..46f5b5db6d 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_scalar.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_scalar.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_sse.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_sse.inl index d7ee5411be..18c5dcdc82 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_sse.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec3_sse.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_neon.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_neon.inl index ec7441de70..e5847cc5a2 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_neon.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_neon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl index 7195bd4c44..7c14c552ab 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_scalar.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_sse.inl b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_sse.inl index 57d31e8644..272c4e994d 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_sse.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/SimdMathVec4_sse.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/VectorConversions.inl b/Code/Framework/AzCore/AzCore/Math/Internal/VectorConversions.inl index ceef457ce9..519b57f873 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/VectorConversions.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/VectorConversions.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Internal/VertexContainer.inl b/Code/Framework/AzCore/AzCore/Math/Internal/VertexContainer.inl index 7309987c01..0291512fdd 100644 --- a/Code/Framework/AzCore/AzCore/Math/Internal/VertexContainer.inl +++ b/Code/Framework/AzCore/AzCore/Math/Internal/VertexContainer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/InterpolationSample.h b/Code/Framework/AzCore/AzCore/Math/InterpolationSample.h index 3d818a183f..19814df8f2 100644 --- a/Code/Framework/AzCore/AzCore/Math/InterpolationSample.h +++ b/Code/Framework/AzCore/AzCore/Math/InterpolationSample.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/IntersectPoint.h b/Code/Framework/AzCore/AzCore/Math/IntersectPoint.h index 6e411f4899..da6fc63fbc 100644 --- a/Code/Framework/AzCore/AzCore/Math/IntersectPoint.h +++ b/Code/Framework/AzCore/AzCore/Math/IntersectPoint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp b/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp index bf26262583..50e49e3dd3 100644 --- a/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp +++ b/Code/Framework/AzCore/AzCore/Math/IntersectSegment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/IntersectSegment.h b/Code/Framework/AzCore/AzCore/Math/IntersectSegment.h index 5bdb46e5a9..948ac62279 100644 --- a/Code/Framework/AzCore/AzCore/Math/IntersectSegment.h +++ b/Code/Framework/AzCore/AzCore/Math/IntersectSegment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathIntrinsics.h b/Code/Framework/AzCore/AzCore/Math/MathIntrinsics.h index 1537be4487..913440daae 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathIntrinsics.h +++ b/Code/Framework/AzCore/AzCore/Math/MathIntrinsics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.cpp b/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.cpp index 2dd81699c5..c3137b7434 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.h b/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.h index 73118dfaff..766a1c7c78 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.h +++ b/Code/Framework/AzCore/AzCore/Math/MathMatrixSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathReflection.cpp b/Code/Framework/AzCore/AzCore/Math/MathReflection.cpp index d4d3d39e2b..46717440d5 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathReflection.cpp +++ b/Code/Framework/AzCore/AzCore/Math/MathReflection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathReflection.h b/Code/Framework/AzCore/AzCore/Math/MathReflection.h index d4621705f3..3d14396b5c 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathReflection.h +++ b/Code/Framework/AzCore/AzCore/Math/MathReflection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.cpp b/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.cpp index 617dc05871..87edf0bcf2 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.cpp +++ b/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.h b/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.h index 42eaf8883f..8820fb95ca 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.h +++ b/Code/Framework/AzCore/AzCore/Math/MathScriptHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathUtils.cpp b/Code/Framework/AzCore/AzCore/Math/MathUtils.cpp index 34d2698890..df9fd17fe4 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Math/MathUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathUtils.h b/Code/Framework/AzCore/AzCore/Math/MathUtils.h index 8353652288..f6acca82a9 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathUtils.h +++ b/Code/Framework/AzCore/AzCore/Math/MathUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.cpp b/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.cpp index f723412836..617b76c655 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.h b/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.h index 3842743139..d590af0e52 100644 --- a/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.h +++ b/Code/Framework/AzCore/AzCore/Math/MathVectorSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix3x3.cpp b/Code/Framework/AzCore/AzCore/Math/Matrix3x3.cpp index ef889fe3f5..c5dfe1f820 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix3x3.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Matrix3x3.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix3x3.h b/Code/Framework/AzCore/AzCore/Math/Matrix3x3.h index 3fb580a550..dde66a82c4 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix3x3.h +++ b/Code/Framework/AzCore/AzCore/Math/Matrix3x3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix3x3.inl b/Code/Framework/AzCore/AzCore/Math/Matrix3x3.inl index 41cc354f35..7fe5004807 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix3x3.inl +++ b/Code/Framework/AzCore/AzCore/Math/Matrix3x3.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix3x4.cpp b/Code/Framework/AzCore/AzCore/Math/Matrix3x4.cpp index 6fc0ef6712..75550178aa 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix3x4.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Matrix3x4.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix3x4.h b/Code/Framework/AzCore/AzCore/Math/Matrix3x4.h index 03585fbcd4..14dbf6308e 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix3x4.h +++ b/Code/Framework/AzCore/AzCore/Math/Matrix3x4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix3x4.inl b/Code/Framework/AzCore/AzCore/Math/Matrix3x4.inl index da0c2659d4..e3f11aaef4 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix3x4.inl +++ b/Code/Framework/AzCore/AzCore/Math/Matrix3x4.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix4x4.cpp b/Code/Framework/AzCore/AzCore/Math/Matrix4x4.cpp index 66213e0ab5..d9f97c9056 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix4x4.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Matrix4x4.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix4x4.h b/Code/Framework/AzCore/AzCore/Math/Matrix4x4.h index 0f95feb102..619276e8f6 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix4x4.h +++ b/Code/Framework/AzCore/AzCore/Math/Matrix4x4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Matrix4x4.inl b/Code/Framework/AzCore/AzCore/Math/Matrix4x4.inl index ab0bd3a872..e8e9e6281e 100644 --- a/Code/Framework/AzCore/AzCore/Math/Matrix4x4.inl +++ b/Code/Framework/AzCore/AzCore/Math/Matrix4x4.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MatrixUtils.cpp b/Code/Framework/AzCore/AzCore/Math/MatrixUtils.cpp index 4cb7da7e59..cd097f1e2f 100644 --- a/Code/Framework/AzCore/AzCore/Math/MatrixUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Math/MatrixUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/MatrixUtils.h b/Code/Framework/AzCore/AzCore/Math/MatrixUtils.h index 8e035d7e6e..9c2e9a8657 100644 --- a/Code/Framework/AzCore/AzCore/Math/MatrixUtils.h +++ b/Code/Framework/AzCore/AzCore/Math/MatrixUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Obb.cpp b/Code/Framework/AzCore/AzCore/Math/Obb.cpp index c018bed00f..1d00f08a42 100644 --- a/Code/Framework/AzCore/AzCore/Math/Obb.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Obb.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Obb.h b/Code/Framework/AzCore/AzCore/Math/Obb.h index b113fc806b..b6bc8d1d89 100644 --- a/Code/Framework/AzCore/AzCore/Math/Obb.h +++ b/Code/Framework/AzCore/AzCore/Math/Obb.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Obb.inl b/Code/Framework/AzCore/AzCore/Math/Obb.inl index d33f0a8f4c..fca2980683 100644 --- a/Code/Framework/AzCore/AzCore/Math/Obb.inl +++ b/Code/Framework/AzCore/AzCore/Math/Obb.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/PackedVector3.h b/Code/Framework/AzCore/AzCore/Math/PackedVector3.h index 7ed7e45bd2..a438269d29 100644 --- a/Code/Framework/AzCore/AzCore/Math/PackedVector3.h +++ b/Code/Framework/AzCore/AzCore/Math/PackedVector3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Plane.cpp b/Code/Framework/AzCore/AzCore/Math/Plane.cpp index 7f8e36a0bc..eb46969189 100644 --- a/Code/Framework/AzCore/AzCore/Math/Plane.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Plane.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Plane.h b/Code/Framework/AzCore/AzCore/Math/Plane.h index 6629c38504..8d8ea877a2 100644 --- a/Code/Framework/AzCore/AzCore/Math/Plane.h +++ b/Code/Framework/AzCore/AzCore/Math/Plane.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Plane.inl b/Code/Framework/AzCore/AzCore/Math/Plane.inl index 0fb1638a78..e454b5411c 100644 --- a/Code/Framework/AzCore/AzCore/Math/Plane.inl +++ b/Code/Framework/AzCore/AzCore/Math/Plane.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/PolygonPrism.cpp b/Code/Framework/AzCore/AzCore/Math/PolygonPrism.cpp index ce46c2268e..fd975fb0ce 100644 --- a/Code/Framework/AzCore/AzCore/Math/PolygonPrism.cpp +++ b/Code/Framework/AzCore/AzCore/Math/PolygonPrism.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/PolygonPrism.h b/Code/Framework/AzCore/AzCore/Math/PolygonPrism.h index 9ab2206bc6..fdfe2375b1 100644 --- a/Code/Framework/AzCore/AzCore/Math/PolygonPrism.h +++ b/Code/Framework/AzCore/AzCore/Math/PolygonPrism.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp b/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp index 7b383e07d3..45db838bd0 100644 --- a/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Quaternion.h b/Code/Framework/AzCore/AzCore/Math/Quaternion.h index 27b5f469c9..cac6569938 100644 --- a/Code/Framework/AzCore/AzCore/Math/Quaternion.h +++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Quaternion.inl b/Code/Framework/AzCore/AzCore/Math/Quaternion.inl index b4cafec17d..9405fe4ea1 100644 --- a/Code/Framework/AzCore/AzCore/Math/Quaternion.inl +++ b/Code/Framework/AzCore/AzCore/Math/Quaternion.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Random.h b/Code/Framework/AzCore/AzCore/Math/Random.h index cea8a6b5f4..8474fc9eab 100644 --- a/Code/Framework/AzCore/AzCore/Math/Random.h +++ b/Code/Framework/AzCore/AzCore/Math/Random.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp b/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp index 3e3a6c6169..b49d934c96 100644 --- a/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Sfmt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Sfmt.h b/Code/Framework/AzCore/AzCore/Math/Sfmt.h index 3dc5ce452e..d5458288cf 100644 --- a/Code/Framework/AzCore/AzCore/Math/Sfmt.h +++ b/Code/Framework/AzCore/AzCore/Math/Sfmt.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.h b/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.h index 374c5eee2e..54a4327681 100644 --- a/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.h +++ b/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.inl b/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.inl index 8cae4e772d..a19189ac7c 100644 --- a/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.inl +++ b/Code/Framework/AzCore/AzCore/Math/ShapeIntersection.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/SimdMath.h b/Code/Framework/AzCore/AzCore/Math/SimdMath.h index bc34f3c4ae..a65dba8e8e 100644 --- a/Code/Framework/AzCore/AzCore/Math/SimdMath.h +++ b/Code/Framework/AzCore/AzCore/Math/SimdMath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/SimdMathVec1.h b/Code/Framework/AzCore/AzCore/Math/SimdMathVec1.h index 5a5768443a..63537a8385 100644 --- a/Code/Framework/AzCore/AzCore/Math/SimdMathVec1.h +++ b/Code/Framework/AzCore/AzCore/Math/SimdMathVec1.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/SimdMathVec2.h b/Code/Framework/AzCore/AzCore/Math/SimdMathVec2.h index a1d59f4b0c..5576217bba 100644 --- a/Code/Framework/AzCore/AzCore/Math/SimdMathVec2.h +++ b/Code/Framework/AzCore/AzCore/Math/SimdMathVec2.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/SimdMathVec3.h b/Code/Framework/AzCore/AzCore/Math/SimdMathVec3.h index 89dd6b3e23..c3440a9db8 100644 --- a/Code/Framework/AzCore/AzCore/Math/SimdMathVec3.h +++ b/Code/Framework/AzCore/AzCore/Math/SimdMathVec3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/SimdMathVec4.h b/Code/Framework/AzCore/AzCore/Math/SimdMathVec4.h index e37a1f1f00..3756c7bc22 100644 --- a/Code/Framework/AzCore/AzCore/Math/SimdMathVec4.h +++ b/Code/Framework/AzCore/AzCore/Math/SimdMathVec4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Sphere.h b/Code/Framework/AzCore/AzCore/Math/Sphere.h index 48ed42827b..7f27270700 100644 --- a/Code/Framework/AzCore/AzCore/Math/Sphere.h +++ b/Code/Framework/AzCore/AzCore/Math/Sphere.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Sphere.inl b/Code/Framework/AzCore/AzCore/Math/Sphere.inl index 4dabd50082..41ab538c30 100644 --- a/Code/Framework/AzCore/AzCore/Math/Sphere.inl +++ b/Code/Framework/AzCore/AzCore/Math/Sphere.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Spline.cpp b/Code/Framework/AzCore/AzCore/Math/Spline.cpp index 0b962dd975..445eb8ac74 100644 --- a/Code/Framework/AzCore/AzCore/Math/Spline.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Spline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Spline.h b/Code/Framework/AzCore/AzCore/Math/Spline.h index 8629406f61..786a4332a0 100644 --- a/Code/Framework/AzCore/AzCore/Math/Spline.h +++ b/Code/Framework/AzCore/AzCore/Math/Spline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/ToString.cpp b/Code/Framework/AzCore/AzCore/Math/ToString.cpp index 66647c3fa4..e75efcbf7d 100644 --- a/Code/Framework/AzCore/AzCore/Math/ToString.cpp +++ b/Code/Framework/AzCore/AzCore/Math/ToString.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/ToString.h b/Code/Framework/AzCore/AzCore/Math/ToString.h index fde194bbd8..b41c7be25e 100644 --- a/Code/Framework/AzCore/AzCore/Math/ToString.h +++ b/Code/Framework/AzCore/AzCore/Math/ToString.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Transform.cpp b/Code/Framework/AzCore/AzCore/Math/Transform.cpp index d0c235b4d9..0cdeb9403e 100644 --- a/Code/Framework/AzCore/AzCore/Math/Transform.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Transform.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Transform.h b/Code/Framework/AzCore/AzCore/Math/Transform.h index 96cf5f699e..32fba00663 100644 --- a/Code/Framework/AzCore/AzCore/Math/Transform.h +++ b/Code/Framework/AzCore/AzCore/Math/Transform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Transform.inl b/Code/Framework/AzCore/AzCore/Math/Transform.inl index 3586e959e8..c6a6ed5dc0 100644 --- a/Code/Framework/AzCore/AzCore/Math/Transform.inl +++ b/Code/Framework/AzCore/AzCore/Math/Transform.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/TransformSerializer.cpp b/Code/Framework/AzCore/AzCore/Math/TransformSerializer.cpp index 270e92360b..939ba614fa 100644 --- a/Code/Framework/AzCore/AzCore/Math/TransformSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Math/TransformSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/TransformSerializer.h b/Code/Framework/AzCore/AzCore/Math/TransformSerializer.h index 96e126156f..a4effa42fe 100644 --- a/Code/Framework/AzCore/AzCore/Math/TransformSerializer.h +++ b/Code/Framework/AzCore/AzCore/Math/TransformSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Uuid.cpp b/Code/Framework/AzCore/AzCore/Math/Uuid.cpp index ecc108c706..4da6fadff5 100644 --- a/Code/Framework/AzCore/AzCore/Math/Uuid.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Uuid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Uuid.h b/Code/Framework/AzCore/AzCore/Math/Uuid.h index 948bd5c230..57c9b010cf 100644 --- a/Code/Framework/AzCore/AzCore/Math/Uuid.h +++ b/Code/Framework/AzCore/AzCore/Math/Uuid.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/UuidSerializer.cpp b/Code/Framework/AzCore/AzCore/Math/UuidSerializer.cpp index 33bbb5968d..7e83d5c307 100644 --- a/Code/Framework/AzCore/AzCore/Math/UuidSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Math/UuidSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/UuidSerializer.h b/Code/Framework/AzCore/AzCore/Math/UuidSerializer.h index e305e1728d..e3c1f4c7ed 100644 --- a/Code/Framework/AzCore/AzCore/Math/UuidSerializer.h +++ b/Code/Framework/AzCore/AzCore/Math/UuidSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector2.cpp b/Code/Framework/AzCore/AzCore/Math/Vector2.cpp index ed4cac2c34..50dc000ee0 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector2.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Vector2.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector2.h b/Code/Framework/AzCore/AzCore/Math/Vector2.h index a6a635b051..455685b54e 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector2.h +++ b/Code/Framework/AzCore/AzCore/Math/Vector2.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector2.inl b/Code/Framework/AzCore/AzCore/Math/Vector2.inl index 85f3db3742..d044a5af9f 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector2.inl +++ b/Code/Framework/AzCore/AzCore/Math/Vector2.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector3.cpp b/Code/Framework/AzCore/AzCore/Math/Vector3.cpp index 96b8a3aa1c..6273478d69 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector3.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Vector3.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector3.h b/Code/Framework/AzCore/AzCore/Math/Vector3.h index 5bc19617bf..b489b7e951 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector3.h +++ b/Code/Framework/AzCore/AzCore/Math/Vector3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector3.inl b/Code/Framework/AzCore/AzCore/Math/Vector3.inl index ce1315560b..53e82e4800 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector3.inl +++ b/Code/Framework/AzCore/AzCore/Math/Vector3.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector4.cpp b/Code/Framework/AzCore/AzCore/Math/Vector4.cpp index 9eb55cc58e..d7058890b4 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector4.cpp +++ b/Code/Framework/AzCore/AzCore/Math/Vector4.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector4.h b/Code/Framework/AzCore/AzCore/Math/Vector4.h index 87be4dc275..04ca45da1a 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector4.h +++ b/Code/Framework/AzCore/AzCore/Math/Vector4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/Vector4.inl b/Code/Framework/AzCore/AzCore/Math/Vector4.inl index f5c891b8cc..e4a9b0a468 100644 --- a/Code/Framework/AzCore/AzCore/Math/Vector4.inl +++ b/Code/Framework/AzCore/AzCore/Math/Vector4.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/VectorConversions.h b/Code/Framework/AzCore/AzCore/Math/VectorConversions.h index 79fde103cd..8171362dbf 100644 --- a/Code/Framework/AzCore/AzCore/Math/VectorConversions.h +++ b/Code/Framework/AzCore/AzCore/Math/VectorConversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/VertexContainer.cpp b/Code/Framework/AzCore/AzCore/Math/VertexContainer.cpp index c10fe305cf..e7f84b3709 100644 --- a/Code/Framework/AzCore/AzCore/Math/VertexContainer.cpp +++ b/Code/Framework/AzCore/AzCore/Math/VertexContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/VertexContainer.h b/Code/Framework/AzCore/AzCore/Math/VertexContainer.h index 710e20b5be..caf6e5ab8a 100644 --- a/Code/Framework/AzCore/AzCore/Math/VertexContainer.h +++ b/Code/Framework/AzCore/AzCore/Math/VertexContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Math/VertexContainerInterface.h b/Code/Framework/AzCore/AzCore/Math/VertexContainerInterface.h index e1756a7a9a..652f7ac5fe 100644 --- a/Code/Framework/AzCore/AzCore/Math/VertexContainerInterface.h +++ b/Code/Framework/AzCore/AzCore/Math/VertexContainerInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp index 8ab0f3396e..de7a5d0428 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.h b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.h index 67d0b208df..6076409a6a 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.h +++ b/Code/Framework/AzCore/AzCore/Memory/AllocationRecords.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp index 2f6dd28dbe..6cabcba11f 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.h b/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.h index 35121253ee..8c342173a0 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.h +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp index 3015a19922..bb301e0106 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.h b/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.h index 6e20ed5da1..c6472551d4 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.h +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.cpp b/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.cpp index 4ca9ca842d..d5761dbb96 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.h b/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.h index 481e351419..2d0bad6284 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.h +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorOverrideShim.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h b/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h index 50cbb18e32..2ab75fd51c 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorScope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/AllocatorWrapper.h b/Code/Framework/AzCore/AzCore/Memory/AllocatorWrapper.h index a9e687944f..fe52c33de0 100644 --- a/Code/Framework/AzCore/AzCore/Memory/AllocatorWrapper.h +++ b/Code/Framework/AzCore/AzCore/Memory/AllocatorWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp index 59fafcc297..c8cd434d82 100644 --- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h index 38d0214c61..4fe3d0c35b 100644 --- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h +++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp index 5020e26b51..0fd37ce227 100644 --- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h index d194981b56..2489f79a6c 100644 --- a/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h +++ b/Code/Framework/AzCore/AzCore/Memory/BestFitExternalMapSchema.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/Config.h b/Code/Framework/AzCore/AzCore/Memory/Config.h index b57e06939b..c21aa982b4 100644 --- a/Code/Framework/AzCore/AzCore/Memory/Config.h +++ b/Code/Framework/AzCore/AzCore/Memory/Config.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp index 59674e918c..75e23abed7 100644 --- a/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/HeapSchema.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/HeapSchema.h b/Code/Framework/AzCore/AzCore/Memory/HeapSchema.h index e94fb62845..ce1f2c4f41 100644 --- a/Code/Framework/AzCore/AzCore/Memory/HeapSchema.h +++ b/Code/Framework/AzCore/AzCore/Memory/HeapSchema.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp index e68d34e2dc..fc0c876f91 100644 --- a/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/HphaSchema.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/HphaSchema.h b/Code/Framework/AzCore/AzCore/Memory/HphaSchema.h index fccdcfd162..6473ec4fd2 100644 --- a/Code/Framework/AzCore/AzCore/Memory/HphaSchema.h +++ b/Code/Framework/AzCore/AzCore/Memory/HphaSchema.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/IAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/IAllocator.cpp index 283bddbe6d..0bfa1aba94 100644 --- a/Code/Framework/AzCore/AzCore/Memory/IAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/IAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/IAllocator.h b/Code/Framework/AzCore/AzCore/Memory/IAllocator.h index 28be709761..d29929af7b 100644 --- a/Code/Framework/AzCore/AzCore/Memory/IAllocator.h +++ b/Code/Framework/AzCore/AzCore/Memory/IAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/MallocSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/MallocSchema.cpp index 8194e9df10..4cd0c28869 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MallocSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/MallocSchema.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/MallocSchema.h b/Code/Framework/AzCore/AzCore/Memory/MallocSchema.h index be6accbfe8..51adc45be0 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MallocSchema.h +++ b/Code/Framework/AzCore/AzCore/Memory/MallocSchema.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/Memory.cpp b/Code/Framework/AzCore/AzCore/Memory/Memory.cpp index 29779dc4f4..0abdc22cf9 100644 --- a/Code/Framework/AzCore/AzCore/Memory/Memory.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/Memory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/Memory.h b/Code/Framework/AzCore/AzCore/Memory/Memory.h index 11b18bbfcd..a592d5896e 100644 --- a/Code/Framework/AzCore/AzCore/Memory/Memory.h +++ b/Code/Framework/AzCore/AzCore/Memory/Memory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.cpp b/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.cpp index 78592f0028..c1b56d10ff 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.h b/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.h index 7de64c9a5e..84e487ec24 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.h +++ b/Code/Framework/AzCore/AzCore/Memory/MemoryComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp b/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp index f534e67e04..226a88e4a5 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.h b/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.h index e955547fcd..497876a0ae 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.h +++ b/Code/Framework/AzCore/AzCore/Memory/MemoryDriller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/MemoryDrillerBus.h b/Code/Framework/AzCore/AzCore/Memory/MemoryDrillerBus.h index 17320c84ba..341a5fff7f 100644 --- a/Code/Framework/AzCore/AzCore/Memory/MemoryDrillerBus.h +++ b/Code/Framework/AzCore/AzCore/Memory/MemoryDrillerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/NewAndDelete.inl b/Code/Framework/AzCore/AzCore/Memory/NewAndDelete.inl index a951200392..ae36f72357 100644 --- a/Code/Framework/AzCore/AzCore/Memory/NewAndDelete.inl +++ b/Code/Framework/AzCore/AzCore/Memory/NewAndDelete.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp index 006e7b23f5..0bc5ca296b 100644 --- a/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/OSAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/OSAllocator.h b/Code/Framework/AzCore/AzCore/Memory/OSAllocator.h index 2ec1cdbb59..cca0726204 100644 --- a/Code/Framework/AzCore/AzCore/Memory/OSAllocator.h +++ b/Code/Framework/AzCore/AzCore/Memory/OSAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp index 0c20786b63..55ce73d50e 100644 --- a/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.h b/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.h index 2e1bc523ca..8e539a976e 100644 --- a/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.h +++ b/Code/Framework/AzCore/AzCore/Memory/OverrunDetectionAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/PlatformMemoryInstrumentation.h b/Code/Framework/AzCore/AzCore/Memory/PlatformMemoryInstrumentation.h index f066c8fb70..1112738443 100644 --- a/Code/Framework/AzCore/AzCore/Memory/PlatformMemoryInstrumentation.h +++ b/Code/Framework/AzCore/AzCore/Memory/PlatformMemoryInstrumentation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/PoolAllocator.h b/Code/Framework/AzCore/AzCore/Memory/PoolAllocator.h index 134fd952ae..3b345779f4 100644 --- a/Code/Framework/AzCore/AzCore/Memory/PoolAllocator.h +++ b/Code/Framework/AzCore/AzCore/Memory/PoolAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp index 80cafab4a5..765d8a4107 100644 --- a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h index 81cd31d2cf..558a1e209c 100644 --- a/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h +++ b/Code/Framework/AzCore/AzCore/Memory/PoolSchema.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/SimpleSchemaAllocator.h b/Code/Framework/AzCore/AzCore/Memory/SimpleSchemaAllocator.h index 3748655c80..d4f5d9b04b 100644 --- a/Code/Framework/AzCore/AzCore/Memory/SimpleSchemaAllocator.h +++ b/Code/Framework/AzCore/AzCore/Memory/SimpleSchemaAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp index cd88273dfd..58e7059c9f 100644 --- a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp +++ b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h index 09024c8ca3..2793aed98b 100644 --- a/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h +++ b/Code/Framework/AzCore/AzCore/Memory/SystemAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/dlmalloc.inl b/Code/Framework/AzCore/AzCore/Memory/dlmalloc.inl index 380537eb35..3219380db4 100644 --- a/Code/Framework/AzCore/AzCore/Memory/dlmalloc.inl +++ b/Code/Framework/AzCore/AzCore/Memory/dlmalloc.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Memory/nedmalloc.inl b/Code/Framework/AzCore/AzCore/Memory/nedmalloc.inl index 79a51c8e21..67a06a12fd 100644 --- a/Code/Framework/AzCore/AzCore/Memory/nedmalloc.inl +++ b/Code/Framework/AzCore/AzCore/Memory/nedmalloc.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.cpp b/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.cpp index 24bc2b33ef..ffd2d3a9ad 100644 --- a/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.cpp +++ b/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.h b/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.h index 6be5df0c52..214abbc2f6 100644 --- a/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.h +++ b/Code/Framework/AzCore/AzCore/Module/DynamicModuleHandle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/Environment.cpp b/Code/Framework/AzCore/AzCore/Module/Environment.cpp index 1e74c03b86..e759221522 100644 --- a/Code/Framework/AzCore/AzCore/Module/Environment.cpp +++ b/Code/Framework/AzCore/AzCore/Module/Environment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/Environment.h b/Code/Framework/AzCore/AzCore/Module/Environment.h index 4b778f3b2e..4f0bd251d2 100644 --- a/Code/Framework/AzCore/AzCore/Module/Environment.h +++ b/Code/Framework/AzCore/AzCore/Module/Environment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.cpp b/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.cpp index b0c337a1de..ecad58938c 100644 --- a/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.cpp +++ b/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.h b/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.h index a03c4d8707..e1b7c6bbea 100644 --- a/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.h +++ b/Code/Framework/AzCore/AzCore/Module/Internal/ModuleManagerSearchPathTool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/Module.cpp b/Code/Framework/AzCore/AzCore/Module/Module.cpp index 502ff0929d..f64673ad13 100644 --- a/Code/Framework/AzCore/AzCore/Module/Module.cpp +++ b/Code/Framework/AzCore/AzCore/Module/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/Module.h b/Code/Framework/AzCore/AzCore/Module/Module.h index 8464fc8dea..db8b49a672 100644 --- a/Code/Framework/AzCore/AzCore/Module/Module.h +++ b/Code/Framework/AzCore/AzCore/Module/Module.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/ModuleManager.cpp b/Code/Framework/AzCore/AzCore/Module/ModuleManager.cpp index cbdf71b7e9..7ef86f9210 100644 --- a/Code/Framework/AzCore/AzCore/Module/ModuleManager.cpp +++ b/Code/Framework/AzCore/AzCore/Module/ModuleManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/ModuleManager.h b/Code/Framework/AzCore/AzCore/Module/ModuleManager.h index 369b4ab70b..2d62cb656e 100644 --- a/Code/Framework/AzCore/AzCore/Module/ModuleManager.h +++ b/Code/Framework/AzCore/AzCore/Module/ModuleManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Module/ModuleManagerBus.h b/Code/Framework/AzCore/AzCore/Module/ModuleManagerBus.h index 609d049a12..6146bd041d 100644 --- a/Code/Framework/AzCore/AzCore/Module/ModuleManagerBus.h +++ b/Code/Framework/AzCore/AzCore/Module/ModuleManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/Internal/NameData.cpp b/Code/Framework/AzCore/AzCore/Name/Internal/NameData.cpp index e307915dfe..542f59f41c 100644 --- a/Code/Framework/AzCore/AzCore/Name/Internal/NameData.cpp +++ b/Code/Framework/AzCore/AzCore/Name/Internal/NameData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/Internal/NameData.h b/Code/Framework/AzCore/AzCore/Name/Internal/NameData.h index 364935be56..69993f7fbc 100644 --- a/Code/Framework/AzCore/AzCore/Name/Internal/NameData.h +++ b/Code/Framework/AzCore/AzCore/Name/Internal/NameData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/Name.cpp b/Code/Framework/AzCore/AzCore/Name/Name.cpp index fcdb2440ae..f11ca3913d 100644 --- a/Code/Framework/AzCore/AzCore/Name/Name.cpp +++ b/Code/Framework/AzCore/AzCore/Name/Name.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/Name.h b/Code/Framework/AzCore/AzCore/Name/Name.h index c169c52c8b..8d0dec18f4 100644 --- a/Code/Framework/AzCore/AzCore/Name/Name.h +++ b/Code/Framework/AzCore/AzCore/Name/Name.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp b/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp index 456f2caa0f..ad4ad3aa3a 100644 --- a/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp +++ b/Code/Framework/AzCore/AzCore/Name/NameDictionary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/NameDictionary.h b/Code/Framework/AzCore/AzCore/Name/NameDictionary.h index c4c0d79b17..b92314f634 100644 --- a/Code/Framework/AzCore/AzCore/Name/NameDictionary.h +++ b/Code/Framework/AzCore/AzCore/Name/NameDictionary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.cpp b/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.cpp index d2089749ac..f2112864c7 100644 --- a/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.h b/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.h index 98733387be..6909f4dffe 100644 --- a/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.h +++ b/Code/Framework/AzCore/AzCore/Name/NameJsonSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/NameSerializer.cpp b/Code/Framework/AzCore/AzCore/Name/NameSerializer.cpp index ad78cb1c87..65fa2be36a 100644 --- a/Code/Framework/AzCore/AzCore/Name/NameSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Name/NameSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Name/NameSerializer.h b/Code/Framework/AzCore/AzCore/Name/NameSerializer.h index 0cb437704a..cfc3a355f7 100644 --- a/Code/Framework/AzCore/AzCore/Name/NameSerializer.h +++ b/Code/Framework/AzCore/AzCore/Name/NameSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/NativeUI/NativeUIRequests.h b/Code/Framework/AzCore/AzCore/NativeUI/NativeUIRequests.h index 7959846a6e..d8548e02c6 100644 --- a/Code/Framework/AzCore/AzCore/NativeUI/NativeUIRequests.h +++ b/Code/Framework/AzCore/AzCore/NativeUI/NativeUIRequests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp b/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp index 66cd69f739..9a36c8f69f 100644 --- a/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.h b/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.h index 3ea6120e63..58dd369ca4 100644 --- a/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.h +++ b/Code/Framework/AzCore/AzCore/NativeUI/NativeUISystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeImpl.h b/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeImpl.h index 19804421a8..eba52bba0e 100644 --- a/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeImpl.h +++ b/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeStorage.h b/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeStorage.h index 199e5ce7e8..81b67c5787 100644 --- a/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeStorage.h +++ b/Code/Framework/AzCore/AzCore/Outcome/Internal/OutcomeStorage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Outcome/Outcome.h b/Code/Framework/AzCore/AzCore/Outcome/Outcome.h index 96ddbffb71..0f1f8466e4 100644 --- a/Code/Framework/AzCore/AzCore/Outcome/Outcome.h +++ b/Code/Framework/AzCore/AzCore/Outcome/Outcome.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Platform.cpp b/Code/Framework/AzCore/AzCore/Platform.cpp index 36980289b0..98a2ab3e45 100644 --- a/Code/Framework/AzCore/AzCore/Platform.cpp +++ b/Code/Framework/AzCore/AzCore/Platform.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Platform.h b/Code/Framework/AzCore/AzCore/Platform.h index 98387eded2..60985820c8 100644 --- a/Code/Framework/AzCore/AzCore/Platform.h +++ b/Code/Framework/AzCore/AzCore/Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/PlatformDef.h b/Code/Framework/AzCore/AzCore/PlatformDef.h index bc781c535c..05a2e6633c 100644 --- a/Code/Framework/AzCore/AzCore/PlatformDef.h +++ b/Code/Framework/AzCore/AzCore/PlatformDef.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp index b3ab7b7c59..fae4d7475e 100644 --- a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp +++ b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h index 55793b17af..f2a84952b8 100644 --- a/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h +++ b/Code/Framework/AzCore/AzCore/PlatformId/PlatformDefaults.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.cpp b/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.cpp index 72c4245f9e..6130c5080f 100644 --- a/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.cpp +++ b/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.h b/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.h index 335e1e9daf..4021879b06 100644 --- a/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.h +++ b/Code/Framework/AzCore/AzCore/PlatformId/PlatformId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/PlatformIncl.h b/Code/Framework/AzCore/AzCore/PlatformIncl.h index 259db10c08..a4c1ebd37f 100644 --- a/Code/Framework/AzCore/AzCore/PlatformIncl.h +++ b/Code/Framework/AzCore/AzCore/PlatformIncl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/PlatformRestrictedFileDef.h b/Code/Framework/AzCore/AzCore/PlatformRestrictedFileDef.h index dfa60d8870..3dde6160d1 100644 --- a/Code/Framework/AzCore/AzCore/PlatformRestrictedFileDef.h +++ b/Code/Framework/AzCore/AzCore/PlatformRestrictedFileDef.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Preprocessor/CodeGen.h b/Code/Framework/AzCore/AzCore/Preprocessor/CodeGen.h index ed7ca0b93c..0d3fa33168 100644 --- a/Code/Framework/AzCore/AzCore/Preprocessor/CodeGen.h +++ b/Code/Framework/AzCore/AzCore/Preprocessor/CodeGen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Preprocessor/CodeGenBoilerplate.h b/Code/Framework/AzCore/AzCore/Preprocessor/CodeGenBoilerplate.h index 5287d61341..3a331ded1c 100644 --- a/Code/Framework/AzCore/AzCore/Preprocessor/CodeGenBoilerplate.h +++ b/Code/Framework/AzCore/AzCore/Preprocessor/CodeGenBoilerplate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Preprocessor/Enum.h b/Code/Framework/AzCore/AzCore/Preprocessor/Enum.h index 2ee4dfc5f1..25082aa882 100644 --- a/Code/Framework/AzCore/AzCore/Preprocessor/Enum.h +++ b/Code/Framework/AzCore/AzCore/Preprocessor/Enum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Preprocessor/EnumReflectUtils.h b/Code/Framework/AzCore/AzCore/Preprocessor/EnumReflectUtils.h index 6073185701..b12ccc7acd 100644 --- a/Code/Framework/AzCore/AzCore/Preprocessor/EnumReflectUtils.h +++ b/Code/Framework/AzCore/AzCore/Preprocessor/EnumReflectUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Preprocessor/Sequences.h b/Code/Framework/AzCore/AzCore/Preprocessor/Sequences.h index fc50afa3b2..c86e8c6690 100644 --- a/Code/Framework/AzCore/AzCore/Preprocessor/Sequences.h +++ b/Code/Framework/AzCore/AzCore/Preprocessor/Sequences.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/AttributeReader.h b/Code/Framework/AzCore/AzCore/RTTI/AttributeReader.h index aa84f75eac..7ea21b8fa0 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/AttributeReader.h +++ b/Code/Framework/AzCore/AzCore/RTTI/AttributeReader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandPrettyName.inl b/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandPrettyName.inl index 75d3db7ff5..e19efb6cb2 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandPrettyName.inl +++ b/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandPrettyName.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflection.inl b/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflection.inl index 7534038bcd..12c61cd903 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflection.inl +++ b/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflection.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflectionLuaFunctions.inl b/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflectionLuaFunctions.inl index f5249ba2bb..79aa141208 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflectionLuaFunctions.inl +++ b/Code/Framework/AzCore/AzCore/RTTI/AzStdOnDemandReflectionLuaFunctions.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.cpp b/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.cpp index 33c952fb51..55574c1fb3 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.cpp +++ b/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.h b/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.h index 75ea070519..61882eea8d 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.h +++ b/Code/Framework/AzCore/AzCore/RTTI/AzStdReflectionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp index 826a3310fc..69b33ff9aa 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h index b647a9a113..58ff739801 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextAttributes.inl b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextAttributes.inl index f3336f853f..8a852a2c61 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextAttributes.inl +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextAttributes.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.cpp b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.cpp index 20f58dca6f..c4a53c5a71 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.cpp +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.h b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.h index d424bbde64..3771471138 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.h +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorContextUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/BehaviorObjectSignals.h b/Code/Framework/AzCore/AzCore/RTTI/BehaviorObjectSignals.h index 78e100c6f2..14c0e46210 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/BehaviorObjectSignals.h +++ b/Code/Framework/AzCore/AzCore/RTTI/BehaviorObjectSignals.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/RTTI.h b/Code/Framework/AzCore/AzCore/RTTI/RTTI.h index 487ed33d8d..bea4e16e10 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/RTTI.h +++ b/Code/Framework/AzCore/AzCore/RTTI/RTTI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.cpp b/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.cpp index 9eb18f42d4..d9f7ce1951 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.cpp +++ b/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.h b/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.h index 52d67dafa0..1bea01c2a2 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.h +++ b/Code/Framework/AzCore/AzCore/RTTI/ReflectContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.cpp b/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.cpp index 3a2c0ed81e..e586393573 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.cpp +++ b/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.h b/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.h index 7b4ce3928e..37da59c167 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.h +++ b/Code/Framework/AzCore/AzCore/RTTI/ReflectionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/TypeInfo.h b/Code/Framework/AzCore/AzCore/RTTI/TypeInfo.h index 7763ed634d..4bb4bac2d3 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/TypeInfo.h +++ b/Code/Framework/AzCore/AzCore/RTTI/TypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/RTTI/TypeSafeIntegral.h b/Code/Framework/AzCore/AzCore/RTTI/TypeSafeIntegral.h index 3a4d2e3880..13c05d9792 100644 --- a/Code/Framework/AzCore/AzCore/RTTI/TypeSafeIntegral.h +++ b/Code/Framework/AzCore/AzCore/RTTI/TypeSafeIntegral.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptAsset.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptAsset.cpp index 6825df1c66..02f26c2768 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptAsset.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptAsset.h b/Code/Framework/AzCore/AzCore/Script/ScriptAsset.h index 94fab4f516..afd053866f 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptAsset.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp index cb1a0412cb..bcce4beb2c 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContext.h b/Code/Framework/AzCore/AzCore/Script/ScriptContext.h index ddae4bf1e1..29d7e3a368 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContext.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContextAttributes.h b/Code/Framework/AzCore/AzCore/Script/ScriptContextAttributes.h index 2970ee2e67..e09e0699f9 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContextAttributes.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContextAttributes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp index 05cad19e2d..b68b19ddda 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.h b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.h index e5ddc3a7af..01ce5d579b 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptContextDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptDebug.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptDebug.cpp index 2f2ac5bdfa..8725e7f3f2 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptDebug.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptDebug.h b/Code/Framework/AzCore/AzCore/Script/ScriptDebug.h index 638f95626e..f4b188fdd0 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptDebug.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptProperty.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptProperty.cpp index 1247fdbdbd..ff7b64f9cf 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptProperty.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptProperty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptProperty.h b/Code/Framework/AzCore/AzCore/Script/ScriptProperty.h index 36998d6429..436465644e 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptProperty.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptProperty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.cpp index 507a768537..0041cc2ee6 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.h b/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.h index cd861db400..53718a3b0c 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptPropertyTable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptPropertyWatcherBus.h b/Code/Framework/AzCore/AzCore/Script/ScriptPropertyWatcherBus.h index 66ee103b6f..2a27c0e234 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptPropertyWatcherBus.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptPropertyWatcherBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptSystemBus.h b/Code/Framework/AzCore/AzCore/Script/ScriptSystemBus.h index f40bde1068..561e51ec2b 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptSystemBus.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptSystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.cpp index 8469d57e63..ec81e34cd0 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.h b/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.h index a7febadcc5..b3e38ac851 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.cpp b/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.cpp index 92fd60caec..1b1953710e 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.cpp +++ b/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.h b/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.h index 604c007df6..867365c677 100644 --- a/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.h +++ b/Code/Framework/AzCore/AzCore/Script/ScriptTimePoint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Script/lua/lua.h b/Code/Framework/AzCore/AzCore/Script/lua/lua.h index e7e615164f..31f36cba67 100644 --- a/Code/Framework/AzCore/AzCore/Script/lua/lua.h +++ b/Code/Framework/AzCore/AzCore/Script/lua/lua.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasAttributes.h b/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasAttributes.h index 0f5e8c967b..59255164f1 100644 --- a/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasAttributes.h +++ b/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasAttributes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.cpp b/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.cpp index 7ea38173fc..82252b43a9 100644 --- a/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.cpp +++ b/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.h b/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.h index 7aedae0295..ea1b07a42d 100644 --- a/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.h +++ b/Code/Framework/AzCore/AzCore/ScriptCanvas/ScriptCanvasOnDemandNames.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl b/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl index 98d5ed6f5e..5f4989db37 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/AZStdAnyDataContainer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl b/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl index 5e2e8cad49..efa9eb2bd1 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/AZStdContainers.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataOverlay.h b/Code/Framework/AzCore/AzCore/Serialization/DataOverlay.h index add5f4e373..7c6393ad8e 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataOverlay.h +++ b/Code/Framework/AzCore/AzCore/Serialization/DataOverlay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataOverlayInstanceMsgs.h b/Code/Framework/AzCore/AzCore/Serialization/DataOverlayInstanceMsgs.h index 1b36f054b1..b539ffb0f9 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataOverlayInstanceMsgs.h +++ b/Code/Framework/AzCore/AzCore/Serialization/DataOverlayInstanceMsgs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.cpp b/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.cpp index 0c2931d767..8274e82786 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.h b/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.h index 6376bc6d88..4b47ae5e76 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.h +++ b/Code/Framework/AzCore/AzCore/Serialization/DataOverlayProviderMsgs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp b/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp index f773f81ce3..7ff0b8b117 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/DataPatch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataPatch.h b/Code/Framework/AzCore/AzCore/Serialization/DataPatch.h index 3adefda223..4a7858fe87 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataPatch.h +++ b/Code/Framework/AzCore/AzCore/Serialization/DataPatch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataPatchBus.h b/Code/Framework/AzCore/AzCore/Serialization/DataPatchBus.h index 6d9dfbfb5d..1f3f2c65e8 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataPatchBus.h +++ b/Code/Framework/AzCore/AzCore/Serialization/DataPatchBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.cpp b/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.cpp index 309efef095..8c865323d0 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.h b/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.h index 26377aa12b..bf8410015e 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.h +++ b/Code/Framework/AzCore/AzCore/Serialization/DataPatchUpgradeManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.cpp b/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.cpp index 020498350a..750980269d 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.h b/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.h index b6b5042b02..3dbabfdcc7 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.h +++ b/Code/Framework/AzCore/AzCore/Serialization/DynamicSerializableField.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/EditContext.cpp b/Code/Framework/AzCore/AzCore/Serialization/EditContext.cpp index 1443faee38..26910a016f 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/EditContext.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/EditContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/EditContext.h b/Code/Framework/AzCore/AzCore/Serialization/EditContext.h index 8ad85dea9d..12ec84161b 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/EditContext.h +++ b/Code/Framework/AzCore/AzCore/Serialization/EditContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/EditContext.inl b/Code/Framework/AzCore/AzCore/Serialization/EditContext.inl index 6d5ac0b162..c94c251423 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/EditContext.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/EditContext.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/EditContextConstants.inl b/Code/Framework/AzCore/AzCore/Serialization/EditContextConstants.inl index f63aedb3c2..5e5b7d4a63 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/EditContextConstants.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/EditContextConstants.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/IdUtils.h b/Code/Framework/AzCore/AzCore/Serialization/IdUtils.h index 7c8c7c9d13..d390769eea 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/IdUtils.h +++ b/Code/Framework/AzCore/AzCore/Serialization/IdUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/IdUtils.inl b/Code/Framework/AzCore/AzCore/Serialization/IdUtils.inl index 6e426bca40..cc0ecb3b5d 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/IdUtils.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/IdUtils.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.cpp index e70247c36f..cb0d0f14f6 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.h index beefc22b5f..95ab13f4b5 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/ArraySerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp index daabd8a94f..fb62198a23 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h index 2e40a20fb3..37a6b70b05 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BaseJsonSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.cpp index 3058f1a140..47c6c9035e 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.h index b0f98ff73e..be13e65f70 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BasicContainerSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.cpp index 87f138c4fe..9b71154f83 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.h index e88786f6bb..6dca578c09 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/BoolSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.cpp index 94744c755a..9b03108375 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.h index a7114679f2..fccda5cc35 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/ByteStreamSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/CastingHelpers.h b/Code/Framework/AzCore/AzCore/Serialization/Json/CastingHelpers.h index 5b92387e66..07aa60fc64 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/CastingHelpers.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/CastingHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.cpp index d208f1623e..35c03ae33c 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.h index 52e81dcf54..62a51c8670 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/DoubleSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.cpp index 0e74500ff6..a87c8f89a5 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.h index 9059be7e70..6a9fee2ff0 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/IntSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp index eded1764aa..1d95aa5740 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h index ed4978c800..d6f38f88bc 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonDeserializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp index acbab9ba77..be20a46626 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.h index 7dc95e1a83..da1803b607 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp index 7d852d65a1..d168c9e1b8 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.h index df356660c1..d4d11aa84d 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.h index 1a56d3c784..15dfd4c02d 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.inl b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.inl index 2003d022c1..9dc6270c2c 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationMetadata.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.cpp index 632a016842..0397cc5937 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.h index b2a4cfa19f..6d0b53c7fd 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationResult.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationSettings.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationSettings.h index d874d5c6ee..db65ceba76 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationSettings.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializationSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp index 057c0591b0..2d69865b0b 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h index 1cebb3a246..c2183691f3 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonStringConversionUtils.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonStringConversionUtils.h index 255ed92bbb..b3ae8a5a6f 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonStringConversionUtils.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonStringConversionUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.cpp index 49ccb7161c..71ba182dc6 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.h b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.h index 17b9be31be..e1a08b7f49 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.cpp index d090a2d0c7..aebd1dc5a6 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.h index 1422aa9a03..1b56683068 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/MapSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp index c285882d82..cf17a15f2b 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.h b/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.h index 9ae292c71b..4a7bb87c58 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/RegistrationContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.cpp index 924d9d99a3..ef03c87d50 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.h index c9d2f84d06..6e1d90a638 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/SmartPointerSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.cpp index ab640b83c8..9466950d57 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.h b/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.h index 75c44859a3..dc66c8dab5 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/StackedString.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.cpp index 42473247f3..c7c649429c 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.h index 5774f2757b..851c358357 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/StringSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.cpp index 8b39f02721..6582954389 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.h index 0429430b47..bed78030b1 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/TupleSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.cpp index 656d2ed7ee..18d34224dd 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.h index 8f4c3be875..dd2bedf615 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/UnorderedSetSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.cpp index e4854b0f7c..6fa6677659 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.h b/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.h index d154c157d3..78c3091610 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/UnsupportedTypesSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp b/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp index 5ba8d9f36d..d236350b16 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.h b/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.h index 14925fdbd9..a478e8d65c 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.h +++ b/Code/Framework/AzCore/AzCore/Serialization/ObjectStream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp b/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp index 5d784dab0a..346198ef5a 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializationUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp index e252dbb9e8..9db17e743b 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h index 9b8d292a50..17527b12f8 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializeContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.cpp b/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.cpp index af6801bb17..e627cde621 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.inl b/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.inl index 4820a6be12..7e1e75cdc7 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/SerializeContextEnum.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/Utils.h b/Code/Framework/AzCore/AzCore/Serialization/Utils.h index f34adc6971..bf0d245813 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Utils.h +++ b/Code/Framework/AzCore/AzCore/Serialization/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl b/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl index 1cb319cc6d..9bab5a82b9 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl +++ b/Code/Framework/AzCore/AzCore/Serialization/std/VariantReflection.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/CommandLine.cpp b/Code/Framework/AzCore/AzCore/Settings/CommandLine.cpp index b02529e436..984cddd5c9 100644 --- a/Code/Framework/AzCore/AzCore/Settings/CommandLine.cpp +++ b/Code/Framework/AzCore/AzCore/Settings/CommandLine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/CommandLine.h b/Code/Framework/AzCore/AzCore/Settings/CommandLine.h index bcdc847eca..7e185f82b5 100644 --- a/Code/Framework/AzCore/AzCore/Settings/CommandLine.h +++ b/Code/Framework/AzCore/AzCore/Settings/CommandLine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.cpp b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.cpp index 748515ce7f..efbc0eaa1f 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.cpp +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.h b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.h index 8b3490eb1d..baeca89636 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.h +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.cpp b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.cpp index 5959ae71ff..1a9a9bf11c 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.h b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.h index 075e5618af..19a5c7c1a6 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.h +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryConsoleUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.cpp b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.cpp index 4bb45e91ee..7e79db728b 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.cpp +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.h b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.h index dec5128d70..a5c18c84a6 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.h +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp index 4faf6cb754..cca9a9453a 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.h b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.h index e28c009877..12768217b1 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.h +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryMergeUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.cpp b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.cpp index 044b267aee..ebf5f7ca9e 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.cpp +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.h b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.h index f5a82abb4a..9fc556230c 100644 --- a/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.h +++ b/Code/Framework/AzCore/AzCore/Settings/SettingsRegistryScriptUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceAsset.cpp b/Code/Framework/AzCore/AzCore/Slice/SliceAsset.cpp index bd1ff09733..ec886eb424 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceAsset.cpp +++ b/Code/Framework/AzCore/AzCore/Slice/SliceAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceAsset.h b/Code/Framework/AzCore/AzCore/Slice/SliceAsset.h index 93633596c5..7a6807b911 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceAsset.h +++ b/Code/Framework/AzCore/AzCore/Slice/SliceAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.cpp b/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.cpp index 577e0c936e..2b2bafd291 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.cpp +++ b/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.h b/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.h index 62ed44c10c..26c2035902 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.h +++ b/Code/Framework/AzCore/AzCore/Slice/SliceAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceBus.h b/Code/Framework/AzCore/AzCore/Slice/SliceBus.h index 1563e03763..460191abaa 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceBus.h +++ b/Code/Framework/AzCore/AzCore/Slice/SliceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp b/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp index 23539143bf..cf65f52ba7 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Slice/SliceComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceComponent.h b/Code/Framework/AzCore/AzCore/Slice/SliceComponent.h index 8bc88cb982..22c32e148e 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceComponent.h +++ b/Code/Framework/AzCore/AzCore/Slice/SliceComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoBus.h b/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoBus.h index 1932b416fc..0d01727228 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoBus.h +++ b/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.cpp b/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.cpp index b449368979..6b3689496d 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.h b/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.h index 74485dc18c..d79109f47d 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.h +++ b/Code/Framework/AzCore/AzCore/Slice/SliceMetadataInfoComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.cpp b/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.cpp index cf7d55c739..e4ee783505 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.h b/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.h index 726a34acd5..f7bd3855d3 100644 --- a/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.h +++ b/Code/Framework/AzCore/AzCore/Slice/SliceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Socket/AzSocket.cpp b/Code/Framework/AzCore/AzCore/Socket/AzSocket.cpp index 2c8385619e..bbca7e39d0 100644 --- a/Code/Framework/AzCore/AzCore/Socket/AzSocket.cpp +++ b/Code/Framework/AzCore/AzCore/Socket/AzSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Socket/AzSocket.h b/Code/Framework/AzCore/AzCore/Socket/AzSocket.h index 06f30cc940..0ac599e104 100644 --- a/Code/Framework/AzCore/AzCore/Socket/AzSocket.h +++ b/Code/Framework/AzCore/AzCore/Socket/AzSocket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Socket/AzSocket_fwd.h b/Code/Framework/AzCore/AzCore/Socket/AzSocket_fwd.h index 590f9e1277..4549c55c32 100644 --- a/Code/Framework/AzCore/AzCore/Socket/AzSocket_fwd.h +++ b/Code/Framework/AzCore/AzCore/Socket/AzSocket_fwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/State/HSM.cpp b/Code/Framework/AzCore/AzCore/State/HSM.cpp index 671c8685b4..ca051bd60d 100644 --- a/Code/Framework/AzCore/AzCore/State/HSM.cpp +++ b/Code/Framework/AzCore/AzCore/State/HSM.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/State/HSM.h b/Code/Framework/AzCore/AzCore/State/HSM.h index c6f1f693ba..0d4150a038 100644 --- a/Code/Framework/AzCore/AzCore/State/HSM.h +++ b/Code/Framework/AzCore/AzCore/State/HSM.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/NamedRunningStatistic.h b/Code/Framework/AzCore/AzCore/Statistics/NamedRunningStatistic.h index 16c3c04a5a..421a659475 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/NamedRunningStatistic.h +++ b/Code/Framework/AzCore/AzCore/Statistics/NamedRunningStatistic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.cpp b/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.cpp index 577dbad915..af7fbba403 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.cpp +++ b/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.h b/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.h index f87eac2f15..7a229c6733 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.h +++ b/Code/Framework/AzCore/AzCore/Statistics/RunningStatistic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/RunningStatisticsManager.cpp b/Code/Framework/AzCore/AzCore/Statistics/RunningStatisticsManager.cpp index 0ed49b0984..6ed79b4c3d 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/RunningStatisticsManager.cpp +++ b/Code/Framework/AzCore/AzCore/Statistics/RunningStatisticsManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h index a10f52e1d2..81cf1bf840 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h +++ b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxy.h b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxy.h index a9180f1f71..2e4ab26d74 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxy.h +++ b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.cpp b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.cpp index a6f0f09351..5d2b82b61e 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.h b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.h index 111d3d305f..57bc7622ad 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.h +++ b/Code/Framework/AzCore/AzCore/Statistics/StatisticalProfilerProxySystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/StatisticsManager.h b/Code/Framework/AzCore/AzCore/Statistics/StatisticsManager.h index 753eea20bf..80f7b4ca0e 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/StatisticsManager.h +++ b/Code/Framework/AzCore/AzCore/Statistics/StatisticsManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.cpp b/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.cpp index 26ddb22863..88be99fa75 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.cpp +++ b/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.h b/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.h index da34e19d26..4fc0968c97 100644 --- a/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.h +++ b/Code/Framework/AzCore/AzCore/Statistics/TimeDataStatisticsManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.cpp b/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.cpp index c582c0298d..4aa62cfd4e 100644 --- a/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.cpp +++ b/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.h b/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.h index 35ca20d897..527513baa6 100644 --- a/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.h +++ b/Code/Framework/AzCore/AzCore/StringFunc/StringFunc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.h b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.h index a0077cd79f..37f3190c08 100644 --- a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.h +++ b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.inl b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.inl index 1c9377f301..d6cac8ebcc 100644 --- a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.inl +++ b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeDeque.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.h b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.h index cb5b1c2884..cae5400e83 100644 --- a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.h +++ b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.inl b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.inl index fd6e544df3..cd34f1153d 100644 --- a/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.inl +++ b/Code/Framework/AzCore/AzCore/Threading/ThreadSafeObject.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Time/ITime.h b/Code/Framework/AzCore/AzCore/Time/ITime.h index 07260a2f32..38bb325693 100644 --- a/Code/Framework/AzCore/AzCore/Time/ITime.h +++ b/Code/Framework/AzCore/AzCore/Time/ITime.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.cpp b/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.cpp index c57d79ec1e..e3915f0b4d 100644 --- a/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.cpp +++ b/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.h b/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.h index a8563a1ee4..4a10cb2711 100644 --- a/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.h +++ b/Code/Framework/AzCore/AzCore/Time/TimeSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.cpp b/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.cpp index 0264d2f96a..d609af02ae 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.cpp +++ b/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h b/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h index 7e1786c26e..758a4baf5d 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h +++ b/Code/Framework/AzCore/AzCore/UnitTest/MockComponentApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockFileIOBase.h b/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockFileIOBase.h index 101f097800..806bccb68e 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockFileIOBase.h +++ b/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockFileIOBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockSettingsRegistry.h b/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockSettingsRegistry.h index 9641c9fd68..b898f04cc0 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockSettingsRegistry.h +++ b/Code/Framework/AzCore/AzCore/UnitTest/Mocks/MockSettingsRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h b/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h index a25a705ac2..94ac460eef 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h +++ b/Code/Framework/AzCore/AzCore/UnitTest/TestTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UnitTest/UnitTest.h b/Code/Framework/AzCore/AzCore/UnitTest/UnitTest.h index fe010e6c41..165de4a76b 100644 --- a/Code/Framework/AzCore/AzCore/UnitTest/UnitTest.h +++ b/Code/Framework/AzCore/AzCore/UnitTest/UnitTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.cpp b/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.cpp index f3bd5e7970..059dc53247 100644 --- a/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.cpp +++ b/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.h b/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.h index 3dc1cf9688..a01540e8fa 100644 --- a/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.h +++ b/Code/Framework/AzCore/AzCore/UserSettings/UserSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.cpp b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.cpp index 5622317d11..268df797d2 100644 --- a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.cpp +++ b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.h b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.h index 671603df0c..7a6518ec49 100644 --- a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.h +++ b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp index b77444ae2f..4c3829cb50 100644 --- a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp +++ b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.h b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.h index cd5f7180ab..d5392ff431 100644 --- a/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.h +++ b/Code/Framework/AzCore/AzCore/UserSettings/UserSettingsProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Utils/TypeHash.cpp b/Code/Framework/AzCore/AzCore/Utils/TypeHash.cpp index 9cf0c0738b..4dc43659a3 100644 --- a/Code/Framework/AzCore/AzCore/Utils/TypeHash.cpp +++ b/Code/Framework/AzCore/AzCore/Utils/TypeHash.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Utils/TypeHash.h b/Code/Framework/AzCore/AzCore/Utils/TypeHash.h index 531f07fe40..5b6f58507a 100644 --- a/Code/Framework/AzCore/AzCore/Utils/TypeHash.h +++ b/Code/Framework/AzCore/AzCore/Utils/TypeHash.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Utils/Utils.cpp b/Code/Framework/AzCore/AzCore/Utils/Utils.cpp index 92e38171f3..be2921aaca 100644 --- a/Code/Framework/AzCore/AzCore/Utils/Utils.cpp +++ b/Code/Framework/AzCore/AzCore/Utils/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/Utils/Utils.h b/Code/Framework/AzCore/AzCore/Utils/Utils.h index 4726898292..67807a9204 100644 --- a/Code/Framework/AzCore/AzCore/Utils/Utils.h +++ b/Code/Framework/AzCore/AzCore/Utils/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/XML/rapidxml.h b/Code/Framework/AzCore/AzCore/XML/rapidxml.h index 1439aff69c..4dec81a97f 100644 --- a/Code/Framework/AzCore/AzCore/XML/rapidxml.h +++ b/Code/Framework/AzCore/AzCore/XML/rapidxml.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/XML/rapidxml_iterators.h b/Code/Framework/AzCore/AzCore/XML/rapidxml_iterators.h index aca2d28a8f..48d2c3f12e 100644 --- a/Code/Framework/AzCore/AzCore/XML/rapidxml_iterators.h +++ b/Code/Framework/AzCore/AzCore/XML/rapidxml_iterators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/XML/rapidxml_print.h b/Code/Framework/AzCore/AzCore/XML/rapidxml_print.h index c95fb798c9..f880f495f1 100644 --- a/Code/Framework/AzCore/AzCore/XML/rapidxml_print.h +++ b/Code/Framework/AzCore/AzCore/XML/rapidxml_print.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/XML/rapidxml_utils.h b/Code/Framework/AzCore/AzCore/XML/rapidxml_utils.h index f8079005f1..d1e20a3b20 100644 --- a/Code/Framework/AzCore/AzCore/XML/rapidxml_utils.h +++ b/Code/Framework/AzCore/AzCore/XML/rapidxml_utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/azcore_files.cmake b/Code/Framework/AzCore/AzCore/azcore_files.cmake index e4f76ed0f0..5cfdb67d03 100644 --- a/Code/Framework/AzCore/AzCore/azcore_files.cmake +++ b/Code/Framework/AzCore/AzCore/azcore_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/AzCore/azcoretestcommon_files.cmake b/Code/Framework/AzCore/AzCore/azcoretestcommon_files.cmake index e546ee55dd..fa970754fa 100644 --- a/Code/Framework/AzCore/AzCore/azcoretestcommon_files.cmake +++ b/Code/Framework/AzCore/AzCore/azcoretestcommon_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/AzCore/base.h b/Code/Framework/AzCore/AzCore/base.h index 0f02ff6982..2338ebd863 100644 --- a/Code/Framework/AzCore/AzCore/base.h +++ b/Code/Framework/AzCore/AzCore/base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/algorithm.h b/Code/Framework/AzCore/AzCore/std/algorithm.h index 92a2b62841..62ba455fc2 100644 --- a/Code/Framework/AzCore/AzCore/std/algorithm.h +++ b/Code/Framework/AzCore/AzCore/std/algorithm.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/allocator.cpp b/Code/Framework/AzCore/AzCore/std/allocator.cpp index 5d44a92976..58c6406624 100644 --- a/Code/Framework/AzCore/AzCore/std/allocator.cpp +++ b/Code/Framework/AzCore/AzCore/std/allocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/allocator.h b/Code/Framework/AzCore/AzCore/std/allocator.h index e5039a8f37..d407b90d11 100644 --- a/Code/Framework/AzCore/AzCore/std/allocator.h +++ b/Code/Framework/AzCore/AzCore/std/allocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/allocator_ref.h b/Code/Framework/AzCore/AzCore/std/allocator_ref.h index 40274bd24f..2561d70c5f 100644 --- a/Code/Framework/AzCore/AzCore/std/allocator_ref.h +++ b/Code/Framework/AzCore/AzCore/std/allocator_ref.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/allocator_stack.h b/Code/Framework/AzCore/AzCore/std/allocator_stack.h index 407721410a..eb74205d9f 100644 --- a/Code/Framework/AzCore/AzCore/std/allocator_stack.h +++ b/Code/Framework/AzCore/AzCore/std/allocator_stack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/allocator_static.h b/Code/Framework/AzCore/AzCore/std/allocator_static.h index a28dbb355d..1ec93b9c0e 100644 --- a/Code/Framework/AzCore/AzCore/std/allocator_static.h +++ b/Code/Framework/AzCore/AzCore/std/allocator_static.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/allocator_traits.h b/Code/Framework/AzCore/AzCore/std/allocator_traits.h index 0a668d4aac..a984e0aa9f 100644 --- a/Code/Framework/AzCore/AzCore/std/allocator_traits.h +++ b/Code/Framework/AzCore/AzCore/std/allocator_traits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/any.h b/Code/Framework/AzCore/AzCore/std/any.h index d5b4507227..8b57ed2baa 100644 --- a/Code/Framework/AzCore/AzCore/std/any.h +++ b/Code/Framework/AzCore/AzCore/std/any.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/azstd_files.cmake b/Code/Framework/AzCore/AzCore/std/azstd_files.cmake index 1c50811c0a..06aa6672fe 100644 --- a/Code/Framework/AzCore/AzCore/std/azstd_files.cmake +++ b/Code/Framework/AzCore/AzCore/std/azstd_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/AzCore/std/base.h b/Code/Framework/AzCore/AzCore/std/base.h index f0f718c8d3..bc940cf0aa 100644 --- a/Code/Framework/AzCore/AzCore/std/base.h +++ b/Code/Framework/AzCore/AzCore/std/base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/bind/bind.h b/Code/Framework/AzCore/AzCore/std/bind/bind.h index b18adf0be2..c5d287fbfb 100644 --- a/Code/Framework/AzCore/AzCore/std/bind/bind.h +++ b/Code/Framework/AzCore/AzCore/std/bind/bind.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/bind/mem_fn.h b/Code/Framework/AzCore/AzCore/std/bind/mem_fn.h index f0ea015b61..afb0a03319 100644 --- a/Code/Framework/AzCore/AzCore/std/bind/mem_fn.h +++ b/Code/Framework/AzCore/AzCore/std/bind/mem_fn.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/chrono/chrono.h b/Code/Framework/AzCore/AzCore/std/chrono/chrono.h index 85b31a870c..0fa535da4d 100644 --- a/Code/Framework/AzCore/AzCore/std/chrono/chrono.h +++ b/Code/Framework/AzCore/AzCore/std/chrono/chrono.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/chrono/clocks.h b/Code/Framework/AzCore/AzCore/std/chrono/clocks.h index 3d9e2906ab..7eb9ab4070 100644 --- a/Code/Framework/AzCore/AzCore/std/chrono/clocks.h +++ b/Code/Framework/AzCore/AzCore/std/chrono/clocks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/chrono/types.h b/Code/Framework/AzCore/AzCore/std/chrono/types.h index 47284be04c..62d261ca32 100644 --- a/Code/Framework/AzCore/AzCore/std/chrono/types.h +++ b/Code/Framework/AzCore/AzCore/std/chrono/types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/config.h b/Code/Framework/AzCore/AzCore/std/config.h index 43bc3ee527..a6fa1d99cc 100644 --- a/Code/Framework/AzCore/AzCore/std/config.h +++ b/Code/Framework/AzCore/AzCore/std/config.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/array.h b/Code/Framework/AzCore/AzCore/std/containers/array.h index 5043cbdd16..b0f728c507 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/array.h +++ b/Code/Framework/AzCore/AzCore/std/containers/array.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/bitset.h b/Code/Framework/AzCore/AzCore/std/containers/bitset.h index c1bab6af7e..8fecbb2659 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/bitset.h +++ b/Code/Framework/AzCore/AzCore/std/containers/bitset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.h b/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.h index 45460b6ae4..d8d6644623 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.h +++ b/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.inl b/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.inl index 46822588be..e3322532e1 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.inl +++ b/Code/Framework/AzCore/AzCore/std/containers/compressed_pair.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/deque.h b/Code/Framework/AzCore/AzCore/std/containers/deque.h index b3902f1807..c9536fc2ac 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/deque.h +++ b/Code/Framework/AzCore/AzCore/std/containers/deque.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/fixed_forward_list.h b/Code/Framework/AzCore/AzCore/std/containers/fixed_forward_list.h index b5a66bf03e..fcbe26fd60 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/fixed_forward_list.h +++ b/Code/Framework/AzCore/AzCore/std/containers/fixed_forward_list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/fixed_list.h b/Code/Framework/AzCore/AzCore/std/containers/fixed_list.h index abb8bcf9b2..6f0faa6e00 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/fixed_list.h +++ b/Code/Framework/AzCore/AzCore/std/containers/fixed_list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_map.h b/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_map.h index 67559ff9ab..a160fa02d9 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_map.h +++ b/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_map.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_set.h b/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_set.h index 395ca52bda..e0c073cc32 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_set.h +++ b/Code/Framework/AzCore/AzCore/std/containers/fixed_unordered_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/fixed_vector.h b/Code/Framework/AzCore/AzCore/std/containers/fixed_vector.h index 5173c11d8a..47d89e210b 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/fixed_vector.h +++ b/Code/Framework/AzCore/AzCore/std/containers/fixed_vector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/forward_list.h b/Code/Framework/AzCore/AzCore/std/containers/forward_list.h index 94fe3d3eb1..d8eea2cecf 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/forward_list.h +++ b/Code/Framework/AzCore/AzCore/std/containers/forward_list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/intrusive_list.h b/Code/Framework/AzCore/AzCore/std/containers/intrusive_list.h index a07effec46..e0727c78c7 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/intrusive_list.h +++ b/Code/Framework/AzCore/AzCore/std/containers/intrusive_list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/intrusive_set.h b/Code/Framework/AzCore/AzCore/std/containers/intrusive_set.h index fbe7697cec..8bc711cf81 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/intrusive_set.h +++ b/Code/Framework/AzCore/AzCore/std/containers/intrusive_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/intrusive_slist.h b/Code/Framework/AzCore/AzCore/std/containers/intrusive_slist.h index 25d72cdd5f..5db1e8441b 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/intrusive_slist.h +++ b/Code/Framework/AzCore/AzCore/std/containers/intrusive_slist.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/list.h b/Code/Framework/AzCore/AzCore/std/containers/list.h index a759396f43..0d06a23301 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/list.h +++ b/Code/Framework/AzCore/AzCore/std/containers/list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/map.h b/Code/Framework/AzCore/AzCore/std/containers/map.h index cd6c5d94fc..e37fd0440e 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/map.h +++ b/Code/Framework/AzCore/AzCore/std/containers/map.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/node_handle.h b/Code/Framework/AzCore/AzCore/std/containers/node_handle.h index ebe4474aba..aecd6974cc 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/node_handle.h +++ b/Code/Framework/AzCore/AzCore/std/containers/node_handle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/queue.h b/Code/Framework/AzCore/AzCore/std/containers/queue.h index 9613d512bd..518fa73123 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/queue.h +++ b/Code/Framework/AzCore/AzCore/std/containers/queue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/rbtree.h b/Code/Framework/AzCore/AzCore/std/containers/rbtree.h index 507e31f71c..c2ab950ad2 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/rbtree.h +++ b/Code/Framework/AzCore/AzCore/std/containers/rbtree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/ring_buffer.h b/Code/Framework/AzCore/AzCore/std/containers/ring_buffer.h index 174000d61d..fb72340e33 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/ring_buffer.h +++ b/Code/Framework/AzCore/AzCore/std/containers/ring_buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/set.h b/Code/Framework/AzCore/AzCore/std/containers/set.h index 546e4e7407..03cf38a1c7 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/set.h +++ b/Code/Framework/AzCore/AzCore/std/containers/set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/stack.h b/Code/Framework/AzCore/AzCore/std/containers/stack.h index 23c695e51c..7e3325c091 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/stack.h +++ b/Code/Framework/AzCore/AzCore/std/containers/stack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/unordered_map.h b/Code/Framework/AzCore/AzCore/std/containers/unordered_map.h index 062011d88b..2ca584e41d 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/unordered_map.h +++ b/Code/Framework/AzCore/AzCore/std/containers/unordered_map.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/unordered_set.h b/Code/Framework/AzCore/AzCore/std/containers/unordered_set.h index 1de8ebbd3a..948a7e58c8 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/unordered_set.h +++ b/Code/Framework/AzCore/AzCore/std/containers/unordered_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/variant.h b/Code/Framework/AzCore/AzCore/std/containers/variant.h index 30e55aaafc..d0920c838c 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/variant.h +++ b/Code/Framework/AzCore/AzCore/std/containers/variant.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/variant.inl b/Code/Framework/AzCore/AzCore/std/containers/variant.inl index d156de4159..4fd6e14a6c 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/variant.inl +++ b/Code/Framework/AzCore/AzCore/std/containers/variant.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/variant_impl.h b/Code/Framework/AzCore/AzCore/std/containers/variant_impl.h index 9c63f6171c..407296dec6 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/variant_impl.h +++ b/Code/Framework/AzCore/AzCore/std/containers/variant_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/containers/vector.h b/Code/Framework/AzCore/AzCore/std/containers/vector.h index 54af89b86b..a92fc98427 100644 --- a/Code/Framework/AzCore/AzCore/std/containers/vector.h +++ b/Code/Framework/AzCore/AzCore/std/containers/vector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/createdestroy.h b/Code/Framework/AzCore/AzCore/std/createdestroy.h index 34f039d4b0..693b39ad55 100644 --- a/Code/Framework/AzCore/AzCore/std/createdestroy.h +++ b/Code/Framework/AzCore/AzCore/std/createdestroy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/delegate/delegate.h b/Code/Framework/AzCore/AzCore/std/delegate/delegate.h index 073d8ec046..6eb363ccfb 100644 --- a/Code/Framework/AzCore/AzCore/std/delegate/delegate.h +++ b/Code/Framework/AzCore/AzCore/std/delegate/delegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/delegate/delegate_bind.h b/Code/Framework/AzCore/AzCore/std/delegate/delegate_bind.h index 98a8cb80b9..72b88be9d2 100644 --- a/Code/Framework/AzCore/AzCore/std/delegate/delegate_bind.h +++ b/Code/Framework/AzCore/AzCore/std/delegate/delegate_bind.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/delegate/delegate_fwd.h b/Code/Framework/AzCore/AzCore/std/delegate/delegate_fwd.h index f7a5040de2..ad5be681a8 100644 --- a/Code/Framework/AzCore/AzCore/std/delegate/delegate_fwd.h +++ b/Code/Framework/AzCore/AzCore/std/delegate/delegate_fwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/docs.h b/Code/Framework/AzCore/AzCore/std/docs.h index 82dbc0ab15..6f1886cf39 100644 --- a/Code/Framework/AzCore/AzCore/std/docs.h +++ b/Code/Framework/AzCore/AzCore/std/docs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/exceptions.h b/Code/Framework/AzCore/AzCore/std/exceptions.h index 2b2d372706..05d7683631 100644 --- a/Code/Framework/AzCore/AzCore/std/exceptions.h +++ b/Code/Framework/AzCore/AzCore/std/exceptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/function/function_base.h b/Code/Framework/AzCore/AzCore/std/function/function_base.h index 7d8ed2920d..f07a4f86a5 100644 --- a/Code/Framework/AzCore/AzCore/std/function/function_base.h +++ b/Code/Framework/AzCore/AzCore/std/function/function_base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/function/function_fwd.h b/Code/Framework/AzCore/AzCore/std/function/function_fwd.h index 33f407bef8..a7e2ef1698 100644 --- a/Code/Framework/AzCore/AzCore/std/function/function_fwd.h +++ b/Code/Framework/AzCore/AzCore/std/function/function_fwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/function/function_template.h b/Code/Framework/AzCore/AzCore/std/function/function_template.h index d8f9fdc0e0..62175b566f 100644 --- a/Code/Framework/AzCore/AzCore/std/function/function_template.h +++ b/Code/Framework/AzCore/AzCore/std/function/function_template.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/function/identity.h b/Code/Framework/AzCore/AzCore/std/function/identity.h index 2bf6c96e2e..63788d579c 100644 --- a/Code/Framework/AzCore/AzCore/std/function/identity.h +++ b/Code/Framework/AzCore/AzCore/std/function/identity.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/function/invoke.h b/Code/Framework/AzCore/AzCore/std/function/invoke.h index 919e3e73e3..682420c885 100644 --- a/Code/Framework/AzCore/AzCore/std/function/invoke.h +++ b/Code/Framework/AzCore/AzCore/std/function/invoke.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/functional.h b/Code/Framework/AzCore/AzCore/std/functional.h index 37c7d38fef..1f27f1f60a 100644 --- a/Code/Framework/AzCore/AzCore/std/functional.h +++ b/Code/Framework/AzCore/AzCore/std/functional.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/functional_basic.h b/Code/Framework/AzCore/AzCore/std/functional_basic.h index 74319d9c11..e1c40dfb31 100644 --- a/Code/Framework/AzCore/AzCore/std/functional_basic.h +++ b/Code/Framework/AzCore/AzCore/std/functional_basic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/hash.cpp b/Code/Framework/AzCore/AzCore/std/hash.cpp index 84ab7eacbf..2997df5e42 100644 --- a/Code/Framework/AzCore/AzCore/std/hash.cpp +++ b/Code/Framework/AzCore/AzCore/std/hash.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/hash.h b/Code/Framework/AzCore/AzCore/std/hash.h index 26e07ae814..a4b676636b 100644 --- a/Code/Framework/AzCore/AzCore/std/hash.h +++ b/Code/Framework/AzCore/AzCore/std/hash.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/hash_table.h b/Code/Framework/AzCore/AzCore/std/hash_table.h index d4cdbeee7c..873201caf4 100644 --- a/Code/Framework/AzCore/AzCore/std/hash_table.h +++ b/Code/Framework/AzCore/AzCore/std/hash_table.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/iterator.h b/Code/Framework/AzCore/AzCore/std/iterator.h index c2667ce58a..378852d57b 100644 --- a/Code/Framework/AzCore/AzCore/std/iterator.h +++ b/Code/Framework/AzCore/AzCore/std/iterator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/limits.h b/Code/Framework/AzCore/AzCore/std/limits.h index 40ea49ad74..27eead376f 100644 --- a/Code/Framework/AzCore/AzCore/std/limits.h +++ b/Code/Framework/AzCore/AzCore/std/limits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/math.h b/Code/Framework/AzCore/AzCore/std/math.h index ad0ce0a7d1..ab4e947172 100644 --- a/Code/Framework/AzCore/AzCore/std/math.h +++ b/Code/Framework/AzCore/AzCore/std/math.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/numeric.h b/Code/Framework/AzCore/AzCore/std/numeric.h index 37d7f9e32e..d0a63fac4e 100644 --- a/Code/Framework/AzCore/AzCore/std/numeric.h +++ b/Code/Framework/AzCore/AzCore/std/numeric.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/optional.h b/Code/Framework/AzCore/AzCore/std/optional.h index 795fda0a60..0c86efe150 100644 --- a/Code/Framework/AzCore/AzCore/std/optional.h +++ b/Code/Framework/AzCore/AzCore/std/optional.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/allocator_concurrent_static.h b/Code/Framework/AzCore/AzCore/std/parallel/allocator_concurrent_static.h index 47a419d831..94c6afc656 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/allocator_concurrent_static.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/allocator_concurrent_static.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/atomic.h b/Code/Framework/AzCore/AzCore/std/parallel/atomic.h index 3ac8bd35c9..09924bdc4d 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/atomic.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/atomic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h b/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h index 2ba6fb731d..2f267d63a1 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/binary_semaphore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/combinable.h b/Code/Framework/AzCore/AzCore/std/parallel/combinable.h index f228d14697..5fe91b7288 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/combinable.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/combinable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/condition_variable.h b/Code/Framework/AzCore/AzCore/std/parallel/condition_variable.h index 240ed3c758..d612aeec78 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/condition_variable.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/condition_variable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/conditional_variable.h b/Code/Framework/AzCore/AzCore/std/parallel/conditional_variable.h index a4c409a452..a38322c639 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/conditional_variable.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/conditional_variable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/config.h b/Code/Framework/AzCore/AzCore/std/parallel/config.h index 61e2c32565..2b125a9fbb 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/config.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/config.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_map.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_map.h index 99a5d49d7f..9a185ad50f 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_map.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_map.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_set.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_set.h index 3993e3e6b4..e9ded4193f 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_set.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_fixed_unordered_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_map.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_map.h index 04fcc99b5c..05192062eb 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_map.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_map.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_set.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_set.h index 4ff9fcbc45..cfba0f7ff6 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_set.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_unordered_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_vector.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_vector.h index 4a83309ff8..a0411c0a8a 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_vector.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/concurrent_vector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/internal/concurrent_hash_table.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/internal/concurrent_hash_table.h index 2add213057..0dc8b02800 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/internal/concurrent_hash_table.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/internal/concurrent_hash_table.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stack.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stack.h index 016bec0a28..41846fd5f2 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stack.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stamped_stack.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stamped_stack.h index 7cc21ad5fc..e662a9f0f7 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stamped_stack.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_intrusive_stamped_stack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_queue.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_queue.h index ff0a570375..5237f2ffda 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_queue.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_queue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stack.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stack.h index 27cab07b91..53622154c5 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stack.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h index 102861cc9d..679c7fa934 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_queue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_stack.h b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_stack.h index 1c121b3ccd..46c4f516e9 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_stack.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/containers/lock_free_stamped_stack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/exponential_backoff.h b/Code/Framework/AzCore/AzCore/std/parallel/exponential_backoff.h index 0f439cb699..0c4558163d 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/exponential_backoff.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/exponential_backoff.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/lock.h b/Code/Framework/AzCore/AzCore/std/parallel/lock.h index f48ed86491..154d97cd4f 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/lock.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/lock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/mutex.h b/Code/Framework/AzCore/AzCore/std/parallel/mutex.h index 697fcb8c4d..df3f3e3c5e 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/mutex.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/mutex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/scoped_lock.h b/Code/Framework/AzCore/AzCore/std/parallel/scoped_lock.h index 2100480107..9f8b14e19b 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/scoped_lock.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/scoped_lock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/semaphore.h b/Code/Framework/AzCore/AzCore/std/parallel/semaphore.h index dc39cf37a0..3997180bd0 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/semaphore.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/semaphore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/shared_mutex.h b/Code/Framework/AzCore/AzCore/std/parallel/shared_mutex.h index 24430b1c6e..1ba2fb8d99 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/shared_mutex.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/shared_mutex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/shared_spin_mutex.h b/Code/Framework/AzCore/AzCore/std/parallel/shared_spin_mutex.h index 350d311b0b..3409dd21ca 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/shared_spin_mutex.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/shared_spin_mutex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/spin_mutex.h b/Code/Framework/AzCore/AzCore/std/parallel/spin_mutex.h index 5e5a3a0f5f..8b002dddbc 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/spin_mutex.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/spin_mutex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/thread.h b/Code/Framework/AzCore/AzCore/std/parallel/thread.h index 2e808c9146..d3b5b398c6 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/thread.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/thread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/parallel/threadbus.h b/Code/Framework/AzCore/AzCore/std/parallel/threadbus.h index d6acfd6e1c..09846c4c2b 100644 --- a/Code/Framework/AzCore/AzCore/std/parallel/threadbus.h +++ b/Code/Framework/AzCore/AzCore/std/parallel/threadbus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/ratio.h b/Code/Framework/AzCore/AzCore/std/ratio.h index 9c7babdcd0..3f015b7aa1 100644 --- a/Code/Framework/AzCore/AzCore/std/ratio.h +++ b/Code/Framework/AzCore/AzCore/std/ratio.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/reference_wrapper.h b/Code/Framework/AzCore/AzCore/std/reference_wrapper.h index f41ec60a0d..75936085a9 100644 --- a/Code/Framework/AzCore/AzCore/std/reference_wrapper.h +++ b/Code/Framework/AzCore/AzCore/std/reference_wrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/checked_delete.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/checked_delete.h index 21a6660d05..e567e5f661 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/checked_delete.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/checked_delete.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this.h index e2aacdae25..6dc27a2f55 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this2.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this2.h index a26c4cdbfd..2401b655f8 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this2.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/enable_shared_from_this2.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_base.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_base.h index 7e4595a95b..3800e211bf 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_base.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_ptr.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_ptr.h index 32c5d61d0a..15bcf9e185 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_ptr.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_ptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_refcount.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_refcount.h index 0b555bf6fa..814d6fe463 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_refcount.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/intrusive_refcount.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/make_shared.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/make_shared.h index b2559f2e6d..a88f07802e 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/make_shared.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/make_shared.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_array.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_array.h index 64b93c2342..ae22da6731 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_array.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_array.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_ptr.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_ptr.h index a16fbfea25..88eeb10795 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_ptr.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/scoped_ptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_array.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_array.h index 03c67fa0a6..2a4e04f0d4 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_array.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_array.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_count.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_count.h index ef5e07f08f..7044685cb9 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_count.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_count.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_ptr.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_ptr.h index 7c8f0d080d..29e5ddc988 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_ptr.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/shared_ptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/sp_convertible.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/sp_convertible.h index 2aa58c7cea..88ba2abbe1 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/sp_convertible.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/sp_convertible.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/unique_ptr.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/unique_ptr.h index 51b862f253..63cd12c09b 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/unique_ptr.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/unique_ptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/smart_ptr/weak_ptr.h b/Code/Framework/AzCore/AzCore/std/smart_ptr/weak_ptr.h index 89aaac9101..6e6a4f442b 100644 --- a/Code/Framework/AzCore/AzCore/std/smart_ptr/weak_ptr.h +++ b/Code/Framework/AzCore/AzCore/std/smart_ptr/weak_ptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/sort.h b/Code/Framework/AzCore/AzCore/std/sort.h index 4a6cdc9967..3e6df36dff 100644 --- a/Code/Framework/AzCore/AzCore/std/sort.h +++ b/Code/Framework/AzCore/AzCore/std/sort.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/alphanum.cpp b/Code/Framework/AzCore/AzCore/std/string/alphanum.cpp index 8ab0305dbd..e9706d8cd2 100644 --- a/Code/Framework/AzCore/AzCore/std/string/alphanum.cpp +++ b/Code/Framework/AzCore/AzCore/std/string/alphanum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/alphanum.h b/Code/Framework/AzCore/AzCore/std/string/alphanum.h index 4eaede022f..9dc2912962 100644 --- a/Code/Framework/AzCore/AzCore/std/string/alphanum.h +++ b/Code/Framework/AzCore/AzCore/std/string/alphanum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/conversions.h b/Code/Framework/AzCore/AzCore/std/string/conversions.h index 909f6c4a15..16b87f9bfc 100644 --- a/Code/Framework/AzCore/AzCore/std/string/conversions.h +++ b/Code/Framework/AzCore/AzCore/std/string/conversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/fixed_string.h b/Code/Framework/AzCore/AzCore/std/string/fixed_string.h index d9562ea42a..935180c4c7 100644 --- a/Code/Framework/AzCore/AzCore/std/string/fixed_string.h +++ b/Code/Framework/AzCore/AzCore/std/string/fixed_string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/fixed_string.inl b/Code/Framework/AzCore/AzCore/std/string/fixed_string.inl index fc45fd0796..7ae03be127 100644 --- a/Code/Framework/AzCore/AzCore/std/string/fixed_string.inl +++ b/Code/Framework/AzCore/AzCore/std/string/fixed_string.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/memorytoascii.cpp b/Code/Framework/AzCore/AzCore/std/string/memorytoascii.cpp index 9b16d5aca3..e195fd8f1a 100644 --- a/Code/Framework/AzCore/AzCore/std/string/memorytoascii.cpp +++ b/Code/Framework/AzCore/AzCore/std/string/memorytoascii.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/memorytoascii.h b/Code/Framework/AzCore/AzCore/std/string/memorytoascii.h index 045c8b64bb..591393cf01 100644 --- a/Code/Framework/AzCore/AzCore/std/string/memorytoascii.h +++ b/Code/Framework/AzCore/AzCore/std/string/memorytoascii.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/osstring.h b/Code/Framework/AzCore/AzCore/std/string/osstring.h index 28ae1e1508..2a74d54519 100644 --- a/Code/Framework/AzCore/AzCore/std/string/osstring.h +++ b/Code/Framework/AzCore/AzCore/std/string/osstring.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/regex.cpp b/Code/Framework/AzCore/AzCore/std/string/regex.cpp index aa51f5d90b..87181f33bf 100644 --- a/Code/Framework/AzCore/AzCore/std/string/regex.cpp +++ b/Code/Framework/AzCore/AzCore/std/string/regex.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/regex.h b/Code/Framework/AzCore/AzCore/std/string/regex.h index da875caf78..427ee42a9b 100644 --- a/Code/Framework/AzCore/AzCore/std/string/regex.h +++ b/Code/Framework/AzCore/AzCore/std/string/regex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/string.cpp b/Code/Framework/AzCore/AzCore/std/string/string.cpp index 9f5f779faa..200f608450 100644 --- a/Code/Framework/AzCore/AzCore/std/string/string.cpp +++ b/Code/Framework/AzCore/AzCore/std/string/string.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/string.h b/Code/Framework/AzCore/AzCore/std/string/string.h index a8bfaa1190..df727aec6f 100644 --- a/Code/Framework/AzCore/AzCore/std/string/string.h +++ b/Code/Framework/AzCore/AzCore/std/string/string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/string_view.h b/Code/Framework/AzCore/AzCore/std/string/string_view.h index 990dd81a13..b74fbacec3 100644 --- a/Code/Framework/AzCore/AzCore/std/string/string_view.h +++ b/Code/Framework/AzCore/AzCore/std/string/string_view.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/tokenize.h b/Code/Framework/AzCore/AzCore/std/string/tokenize.h index 47bbea6abb..5fda23c233 100644 --- a/Code/Framework/AzCore/AzCore/std/string/tokenize.h +++ b/Code/Framework/AzCore/AzCore/std/string/tokenize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/string/wildcard.h b/Code/Framework/AzCore/AzCore/std/string/wildcard.h index 0dbf4c0a6e..820b17cb10 100644 --- a/Code/Framework/AzCore/AzCore/std/string/wildcard.h +++ b/Code/Framework/AzCore/AzCore/std/string/wildcard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/time.h b/Code/Framework/AzCore/AzCore/std/time.h index 1a81fa612b..148ceefd15 100644 --- a/Code/Framework/AzCore/AzCore/std/time.h +++ b/Code/Framework/AzCore/AzCore/std/time.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/tuple.h b/Code/Framework/AzCore/AzCore/std/tuple.h index 43229fd6b1..489973eefd 100644 --- a/Code/Framework/AzCore/AzCore/std/tuple.h +++ b/Code/Framework/AzCore/AzCore/std/tuple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/add_const.h b/Code/Framework/AzCore/AzCore/std/typetraits/add_const.h index 8bb8dfdc96..708efb1cf9 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/add_const.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/add_const.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/add_cv.h b/Code/Framework/AzCore/AzCore/std/typetraits/add_cv.h index 0d51a68ad9..f1ae7cb536 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/add_cv.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/add_cv.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/add_pointer.h b/Code/Framework/AzCore/AzCore/std/typetraits/add_pointer.h index adf52bfc0f..9c83e5c84a 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/add_pointer.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/add_pointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/add_reference.h b/Code/Framework/AzCore/AzCore/std/typetraits/add_reference.h index ce2d119796..43e777a1b9 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/add_reference.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/add_reference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/add_volatile.h b/Code/Framework/AzCore/AzCore/std/typetraits/add_volatile.h index 50f8f38f55..bc8461120e 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/add_volatile.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/add_volatile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/aligned_storage.h b/Code/Framework/AzCore/AzCore/std/typetraits/aligned_storage.h index 2e1a18eb80..6d92f56508 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/aligned_storage.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/aligned_storage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/alignment_of.h b/Code/Framework/AzCore/AzCore/std/typetraits/alignment_of.h index 0f1edb21e5..2485a61996 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/alignment_of.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/alignment_of.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/common_type.h b/Code/Framework/AzCore/AzCore/std/typetraits/common_type.h index 75804b57d6..895a1294a1 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/common_type.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/common_type.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/conditional.h b/Code/Framework/AzCore/AzCore/std/typetraits/conditional.h index edaffa8b77..deb00a21ed 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/conditional.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/conditional.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/config.h b/Code/Framework/AzCore/AzCore/std/typetraits/config.h index ebdce3bc8d..13e3db9242 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/config.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/config.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/conjunction.h b/Code/Framework/AzCore/AzCore/std/typetraits/conjunction.h index 79435a8330..37e74f4c54 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/conjunction.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/conjunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/decay.h b/Code/Framework/AzCore/AzCore/std/typetraits/decay.h index 77698c3a9c..dc0945d31e 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/decay.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/decay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/disjunction.h b/Code/Framework/AzCore/AzCore/std/typetraits/disjunction.h index e5210cad68..ca4cd04614 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/disjunction.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/disjunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/extent.h b/Code/Framework/AzCore/AzCore/std/typetraits/extent.h index 73e82d1b39..36726ebaa3 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/extent.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/extent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/function_traits.h b/Code/Framework/AzCore/AzCore/std/typetraits/function_traits.h index 52e22b9205..4683d9e1d5 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/function_traits.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/function_traits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/has_member_function.h b/Code/Framework/AzCore/AzCore/std/typetraits/has_member_function.h index afaf69181a..e581f26a29 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/has_member_function.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/has_member_function.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/has_virtual_destructor.h b/Code/Framework/AzCore/AzCore/std/typetraits/has_virtual_destructor.h index 6a269aafac..bca10857bf 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/has_virtual_destructor.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/has_virtual_destructor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/integral_constant.h b/Code/Framework/AzCore/AzCore/std/typetraits/integral_constant.h index 98b58b7270..47852a2743 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/integral_constant.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/integral_constant.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/internal/is_template_copy_constructible.h b/Code/Framework/AzCore/AzCore/std/typetraits/internal/is_template_copy_constructible.h index fc1c80596c..2350b2ac55 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/internal/is_template_copy_constructible.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/internal/is_template_copy_constructible.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/internal/type_sequence_traits.h b/Code/Framework/AzCore/AzCore/std/typetraits/internal/type_sequence_traits.h index eb43659303..06a4451248 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/internal/type_sequence_traits.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/internal/type_sequence_traits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/intrinsics.h b/Code/Framework/AzCore/AzCore/std/typetraits/intrinsics.h index b1c53282b8..e138b367a0 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/intrinsics.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/intrinsics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/invoke_traits.h b/Code/Framework/AzCore/AzCore/std/typetraits/invoke_traits.h index b8c244e8d7..28cd20aa97 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/invoke_traits.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/invoke_traits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_abstract.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_abstract.h index 4c89f4e4e1..276360b24c 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_abstract.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_abstract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_arithmetic.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_arithmetic.h index acc0d12cca..bd975c9f56 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_arithmetic.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_arithmetic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_array.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_array.h index f2ec66cf15..3847f0f140 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_array.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_array.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_assignable.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_assignable.h index 17ee0281d4..ebdf796b50 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_assignable.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_assignable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_base_of.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_base_of.h index bc9f0a4716..31a606a54f 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_base_of.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_base_of.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_class.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_class.h index 08b224dfeb..1c21c3bd96 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_class.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_class.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_compound.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_compound.h index 96ab8ce3f4..d5eb58b68b 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_compound.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_compound.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_const.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_const.h index 892c410285..d915c67a81 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_const.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_const.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_constructible.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_constructible.h index 43775ea281..dbee0c6a74 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_constructible.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_constructible.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_convertible.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_convertible.h index eb12fe0175..941ecd9a1a 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_convertible.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_convertible.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_destructible.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_destructible.h index 894527803f..2b6b949b18 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_destructible.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_destructible.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_empty.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_empty.h index d41de63e4d..f0c5556380 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_empty.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_empty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_enum.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_enum.h index 8f06c417d3..28beb54311 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_enum.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_enum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_floating_point.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_floating_point.h index f3e252b4c3..32efdccde4 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_floating_point.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_floating_point.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_function.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_function.h index 4dba157f73..8da8f6234f 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_function.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_function.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_fundamental.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_fundamental.h index 953e6f8c4d..2b9044fa6e 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_fundamental.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_fundamental.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_integral.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_integral.h index c21f4d8018..396953f5fc 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_integral.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_integral.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_lvalue_reference.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_lvalue_reference.h index 1a2c8fa4f0..5b66326aec 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_lvalue_reference.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_lvalue_reference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_member_function_pointer.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_member_function_pointer.h index 1d36c2569a..47c8b29ad2 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_member_function_pointer.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_member_function_pointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_member_object_pointer.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_member_object_pointer.h index 19aa14b16d..1b09d26711 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_member_object_pointer.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_member_object_pointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_member_pointer.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_member_pointer.h index ae06085ec4..ed3ad24808 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_member_pointer.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_member_pointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_object.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_object.h index 3542e0f0c2..6872ee631d 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_object.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_object.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_pod.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_pod.h index 127799e620..b67da3fa12 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_pod.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_pod.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_pointer.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_pointer.h index 070754bc23..dd20bc441b 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_pointer.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_pointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_polymorphic.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_polymorphic.h index 3354430eeb..3e57a28320 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_polymorphic.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_polymorphic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_reference.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_reference.h index ae965827f7..caf0a680c5 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_reference.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_reference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_rvalue_reference.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_rvalue_reference.h index 0dd14d88be..97a9448c7e 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_rvalue_reference.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_rvalue_reference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_same.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_same.h index 9859745c54..3ec2a3decf 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_same.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_same.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_scalar.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_scalar.h index a0938b4d3b..b9378c86b2 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_scalar.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_scalar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_signed.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_signed.h index 9a93f0e8a2..d96bc287a2 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_signed.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_signed.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_swappable.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_swappable.h index 80f614be51..82f9619a58 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_swappable.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_swappable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_trivial.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_trivial.h index d1df9cbbd0..35887560ab 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_trivial.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_trivial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_trivially_copyable.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_trivially_copyable.h index c85f14fc89..844404a4c5 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_trivially_copyable.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_trivially_copyable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_union.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_union.h index e29df7bd46..ba9ba5744c 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_union.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_union.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_unsigned.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_unsigned.h index e2b57ca497..9f992b85ab 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_unsigned.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_unsigned.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_void.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_void.h index eb1bd8041a..178897e2cc 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_void.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_void.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/is_volatile.h b/Code/Framework/AzCore/AzCore/std/typetraits/is_volatile.h index 286fccee74..20bd88b6e7 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/is_volatile.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/is_volatile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/negation.h b/Code/Framework/AzCore/AzCore/std/typetraits/negation.h index 473a434bd2..845430624a 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/negation.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/negation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/rank.h b/Code/Framework/AzCore/AzCore/std/typetraits/rank.h index 43663715ba..6cebc16c66 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/rank.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/rank.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_all_extents.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_all_extents.h index 8d89469f82..a56c3b1da4 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_all_extents.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_all_extents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_const.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_const.h index 8a51ec5b1b..3902c69fad 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_const.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_const.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_cv.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_cv.h index 8474d5c970..f26d60ef4f 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_cv.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_cv.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_cvref.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_cvref.h index 0f952f7ca4..a01f93a9d3 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_cvref.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_cvref.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_extent.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_extent.h index b823838388..c36410bd8c 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_extent.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_extent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_pointer.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_pointer.h index c3dd895ad9..538646d3bf 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_pointer.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_pointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_reference.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_reference.h index 8e85403724..ebe215a290 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_reference.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_reference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/remove_volatile.h b/Code/Framework/AzCore/AzCore/std/typetraits/remove_volatile.h index 503c7a202f..676f3a1028 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/remove_volatile.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/remove_volatile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/static_storage.h b/Code/Framework/AzCore/AzCore/std/typetraits/static_storage.h index ca9dc70eab..196ff4fdf6 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/static_storage.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/static_storage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/tuple_traits.h b/Code/Framework/AzCore/AzCore/std/typetraits/tuple_traits.h index 8e27567e3e..fac05660fe 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/tuple_traits.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/tuple_traits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/type_id.h b/Code/Framework/AzCore/AzCore/std/typetraits/type_id.h index bd821c1239..3499cb969e 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/type_id.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/type_id.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/type_identity.h b/Code/Framework/AzCore/AzCore/std/typetraits/type_identity.h index 066b772567..c3f066b7a4 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/type_identity.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/type_identity.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/typetraits.h b/Code/Framework/AzCore/AzCore/std/typetraits/typetraits.h index 564b870857..61827d2caf 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/typetraits.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/typetraits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/underlying_type.h b/Code/Framework/AzCore/AzCore/std/typetraits/underlying_type.h index a22c46c8a0..9ad1a4475b 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/underlying_type.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/underlying_type.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/typetraits/void_t.h b/Code/Framework/AzCore/AzCore/std/typetraits/void_t.h index 1420832ab8..0f89e2beb0 100644 --- a/Code/Framework/AzCore/AzCore/std/typetraits/void_t.h +++ b/Code/Framework/AzCore/AzCore/std/typetraits/void_t.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/AzCore/std/utils.h b/Code/Framework/AzCore/AzCore/std/utils.h index 0a457ecddc..0b1d884dac 100644 --- a/Code/Framework/AzCore/AzCore/std/utils.h +++ b/Code/Framework/AzCore/AzCore/std/utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/CMakeLists.txt b/Code/Framework/AzCore/CMakeLists.txt index ea10cce12b..b52881e4bf 100644 --- a/Code/Framework/AzCore/CMakeLists.txt +++ b/Code/Framework/AzCore/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Android.h b/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Android.h index 5dad1dd56f..4f02655d6f 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Android.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Platform.h index 0ed51b5a30..68af67980f 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/AzCore_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Debug/Trace_Android.cpp b/Code/Framework/AzCore/Platform/Android/AzCore/Debug/Trace_Android.cpp index aa38d9eef5..a7b7912c2d 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Debug/Trace_Android.cpp +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Debug/Trace_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/IO/Streamer/StreamerContext_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/IO/Streamer/StreamerContext_Platform.h index c66d15b505..0fcaf8ef70 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/IO/Streamer/StreamerContext_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/IO/Streamer/StreamerContext_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.cpp b/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.cpp index 5a5d3ea73d..d4c3e8d36d 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.cpp +++ b/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.h b/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.h index 46947c357a..c194c3b380 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Platform.h index 3f4297660d..03b848ed02 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/IO/SystemFile_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/IPC/SharedMemory_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/IPC/SharedMemory_Platform.h index f508f78483..a07e94878c 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/IPC/SharedMemory_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/IPC/SharedMemory_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Android.h b/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Android.h index 4df1796ef8..664191178f 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Android.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Platform.h index 2640b3986d..f232d71694 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Math/Internal/MathTypes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Math/Random_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/Math/Random_Platform.h index 0990131d76..879fa1efca 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Math/Random_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Math/Random_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Memory/HeapSchema_Android.cpp b/Code/Framework/AzCore/Platform/Android/AzCore/Memory/HeapSchema_Android.cpp index 8de1bb29ae..82c72b87f6 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Memory/HeapSchema_Android.cpp +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Memory/HeapSchema_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OSAllocator_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OSAllocator_Platform.h index 2a63a8ddf0..80372c577b 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OSAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OSAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OverrunDetectionAllocator_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OverrunDetectionAllocator_Platform.h index fc01128d34..ac831358eb 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OverrunDetectionAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Memory/OverrunDetectionAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Module/DynamicModuleHandle_Android.cpp b/Code/Framework/AzCore/Platform/Android/AzCore/Module/DynamicModuleHandle_Android.cpp index d705a77a16..ea4e5d00d6 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Module/DynamicModuleHandle_Android.cpp +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Module/DynamicModuleHandle_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/NativeUI/NativeUISystemComponent_Android.cpp b/Code/Framework/AzCore/Platform/Android/AzCore/NativeUI/NativeUISystemComponent_Android.cpp index 39f1bf98b8..49d840bbec 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/NativeUI/NativeUISystemComponent_Android.cpp +++ b/Code/Framework/AzCore/Platform/Android/AzCore/NativeUI/NativeUISystemComponent_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Android.h b/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Android.h index 4c65d33cc9..c29081ba41 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Android.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Platform.h index 07f371febb..30dde65d6b 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/PlatformId/PlatformId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/PlatformIncl_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/PlatformIncl_Platform.h index 86e0ad7373..06a27d3726 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/PlatformIncl_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/PlatformIncl_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_Platform.h index 9faf72b439..3f4fe10957 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_fwd_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_fwd_Platform.h index 283d9c3d7a..8f5812ac2c 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_fwd_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Socket/AzSocket_fwd_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/Utils/Utils_Android.cpp b/Code/Framework/AzCore/Platform/Android/AzCore/Utils/Utils_Android.cpp index 590e8f684d..34b2e91813 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/Utils/Utils_Android.cpp +++ b/Code/Framework/AzCore/Platform/Android/AzCore/Utils/Utils_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/base_Android.h b/Code/Framework/AzCore/Platform/Android/AzCore/base_Android.h index ad49d2df73..e41e011a88 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/base_Android.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/base_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/base_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/base_Platform.h index b8831d17aa..cff62bcf74 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/base_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/base_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Android.h b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Android.h index caad999251..02fded02c7 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Android.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Platform.h index 1c02dacc24..78ee961620 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/config_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/condition_variable_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/condition_variable_Platform.h index b54fc50c44..47c17a8adf 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/condition_variable_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/condition_variable_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/mutex_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/mutex_Platform.h index 3e72c3e236..c1b11e1a44 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/mutex_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/mutex_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/semaphore_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/semaphore_Platform.h index b893c41e0f..76b92717f1 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/semaphore_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/semaphore_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Android.cpp b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Android.cpp index 6672c95b4b..c705504dd1 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Android.cpp +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Platform.h b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Platform.h index f6b6486b62..36124f3d1d 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Platform.h +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/parallel/internal/thread_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/AzCore/std/string/fixed_string_Platform.inl b/Code/Framework/AzCore/Platform/Android/AzCore/std/string/fixed_string_Platform.inl index 95ac9a5d46..33697c45af 100644 --- a/Code/Framework/AzCore/Platform/Android/AzCore/std/string/fixed_string_Platform.inl +++ b/Code/Framework/AzCore/Platform/Android/AzCore/std/string/fixed_string_Platform.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Android/platform_android.cmake b/Code/Framework/AzCore/Platform/Android/platform_android.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/AzCore/Platform/Android/platform_android.cmake +++ b/Code/Framework/AzCore/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Android/platform_android_files.cmake b/Code/Framework/AzCore/Platform/Android/platform_android_files.cmake index e7d262358a..a746fe9c30 100644 --- a/Code/Framework/AzCore/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/AzCore/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Android/profile_telemetry_platform_android.cmake b/Code/Framework/AzCore/Platform/Android/profile_telemetry_platform_android.cmake index c487144b42..9a1c433e6c 100644 --- a/Code/Framework/AzCore/Platform/Android/profile_telemetry_platform_android.cmake +++ b/Code/Framework/AzCore/Platform/Android/profile_telemetry_platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/AppleTV/AzCore/IO/Streamer/StreamerContext_Platform.h b/Code/Framework/AzCore/Platform/AppleTV/AzCore/IO/Streamer/StreamerContext_Platform.h index c66d15b505..0fcaf8ef70 100644 --- a/Code/Framework/AzCore/Platform/AppleTV/AzCore/IO/Streamer/StreamerContext_Platform.h +++ b/Code/Framework/AzCore/Platform/AppleTV/AzCore/IO/Streamer/StreamerContext_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp index 5f7fc765b8..1b4fbc9a5a 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Debug/Trace_Apple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.cpp b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.cpp index 3772458059..fb9331d931 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.cpp +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.h b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.h index 43496cb161..70c02bc745 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.h +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/IO/SystemFile_Apple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Memory/OSAllocator_Apple.h b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Memory/OSAllocator_Apple.h index c0bbee3423..344f23c09a 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Memory/OSAllocator_Apple.h +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Memory/OSAllocator_Apple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Module/DynamicModuleHandle_Apple.cpp b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Module/DynamicModuleHandle_Apple.cpp index 05b3e68cd0..b44f3a9943 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Module/DynamicModuleHandle_Apple.cpp +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Module/DynamicModuleHandle_Apple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Utils/Utils_Apple.cpp b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Utils/Utils_Apple.cpp index 4a13539281..b5abc239d1 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Utils/Utils_Apple.cpp +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/Utils/Utils_Apple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/config_Apple.h b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/config_Apple.h index f2cc0487a3..c715b2ad75 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/config_Apple.h +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/config_Apple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/semaphore_Apple.h b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/semaphore_Apple.h index 1890ad36f5..7063f9989b 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/semaphore_Apple.h +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/semaphore_Apple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/thread_Apple.cpp b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/thread_Apple.cpp index 2b5c130d27..7a3d3dc629 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/thread_Apple.cpp +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/thread_Apple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/time_Apple.h b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/time_Apple.h index bc17c340f6..6d52ffc5ab 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/time_Apple.h +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/parallel/internal/time_Apple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/time_Apple.cpp b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/time_Apple.cpp index 3151cfbcba..ca49fedf31 100644 --- a/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/time_Apple.cpp +++ b/Code/Framework/AzCore/Platform/Common/Apple/AzCore/std/time_Apple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Clang/AzCore/std/string/fixed_string_Clang.inl b/Code/Framework/AzCore/Platform/Common/Clang/AzCore/std/string/fixed_string_Clang.inl index 9915e31dd8..46cb831331 100644 --- a/Code/Framework/AzCore/Platform/Common/Clang/AzCore/std/string/fixed_string_Clang.inl +++ b/Code/Framework/AzCore/Platform/Common/Clang/AzCore/std/string/fixed_string_Clang.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerConfiguration_Default.cpp b/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerConfiguration_Default.cpp index 754da8bdf1..24d00b9598 100644 --- a/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerConfiguration_Default.cpp +++ b/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerConfiguration_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.cpp b/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.cpp index a8f32927c1..1fdcd7edd5 100644 --- a/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.cpp +++ b/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.h b/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.h index 3e28294bc4..4526f0c84d 100644 --- a/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.h +++ b/Code/Framework/AzCore/Platform/Common/Default/AzCore/IO/Streamer/StreamerContext_Default.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Default/AzCore/Module/Internal/ModuleManagerSearchPathTool_Default.cpp b/Code/Framework/AzCore/Platform/Common/Default/AzCore/Module/Internal/ModuleManagerSearchPathTool_Default.cpp index 178adbf6a1..b062f14c29 100644 --- a/Code/Framework/AzCore/Platform/Common/Default/AzCore/Module/Internal/ModuleManagerSearchPathTool_Default.cpp +++ b/Code/Framework/AzCore/Platform/Common/Default/AzCore/Module/Internal/ModuleManagerSearchPathTool_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/MSVC/AzCore/std/string/fixed_string_MSVC.inl b/Code/Framework/AzCore/Platform/Common/MSVC/AzCore/std/string/fixed_string_MSVC.inl index 2a5b3628f9..d1362e9e46 100644 --- a/Code/Framework/AzCore/Platform/Common/MSVC/AzCore/std/string/fixed_string_MSVC.inl +++ b/Code/Framework/AzCore/Platform/Common/MSVC/AzCore/std/string/fixed_string_MSVC.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetry.h b/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetry.h index 83f9133d46..6e75fa4f61 100644 --- a/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetry.h +++ b/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetryBus.h b/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetryBus.h index 06476a9491..aa70c7b3c6 100644 --- a/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetryBus.h +++ b/Code/Framework/AzCore/Platform/Common/RadTelemetry/ProfileTelemetryBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Debug/StackTracer_Unimplemented.cpp b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Debug/StackTracer_Unimplemented.cpp index 37f7447b46..12731284b7 100644 --- a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Debug/StackTracer_Unimplemented.cpp +++ b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Debug/StackTracer_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/IPC/SharedMemory_Unimplemented.h b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/IPC/SharedMemory_Unimplemented.h index 45e03ed3ec..86a11c7ba5 100644 --- a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/IPC/SharedMemory_Unimplemented.h +++ b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/IPC/SharedMemory_Unimplemented.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Memory/OverrunDetectionAllocator_Unimplemented.h b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Memory/OverrunDetectionAllocator_Unimplemented.h index 529cb108ff..1033ad50c2 100644 --- a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Memory/OverrunDetectionAllocator_Unimplemented.h +++ b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Memory/OverrunDetectionAllocator_Unimplemented.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Module/DynamicModuleHandle_Unimplemented.cpp b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Module/DynamicModuleHandle_Unimplemented.cpp index fd95a23d02..87cd1cecbb 100644 --- a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Module/DynamicModuleHandle_Unimplemented.cpp +++ b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Module/DynamicModuleHandle_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/NativeUI/NativeUISystemComponent_Unimplemented.cpp b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/NativeUI/NativeUISystemComponent_Unimplemented.cpp index ea3885fe3a..4b5c9e28e4 100644 --- a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/NativeUI/NativeUISystemComponent_Unimplemented.cpp +++ b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/NativeUI/NativeUISystemComponent_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/PlatformIncl_Unimplemented.h b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/PlatformIncl_Unimplemented.h index 0eb554cc0c..cc8a920d01 100644 --- a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/PlatformIncl_Unimplemented.h +++ b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/PlatformIncl_Unimplemented.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Utils/Utils_Unimplemented.cpp b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Utils/Utils_Unimplemented.cpp index 2d301fd534..d3d9b9b836 100644 --- a/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Utils/Utils_Unimplemented.cpp +++ b/Code/Framework/AzCore/Platform/Common/Unimplemented/AzCore/Utils/Utils_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp index bb0d0a0d18..aaf5b63272 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/StackTracer_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp index 1108821397..29cc9b2c4d 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Debug/Trace_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.cpp index 67856d9b8c..a1c0164349 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.h index d023f72c80..8f2a6850bc 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/Internal/SystemFileUtils_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.cpp index 33020d1dba..9489c5eaf8 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.h index 2f2e2ef4ea..082e601cc3 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/IO/SystemFile_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.cpp index 2a4f697a81..0b938e8b3c 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.h index cfaae2f65b..89f80f8f3c 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Math/Random_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Memory/OSAllocator_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Memory/OSAllocator_UnixLike.h index a875e05156..5ee9debb07 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Memory/OSAllocator_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Memory/OSAllocator_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp index 3c210caf3c..522818f9f9 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Module/DynamicModuleHandle_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h index 0cea92a94e..4714c433fe 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/PlatformIncl_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Platform_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Platform_UnixLike.cpp index e71e4f1f30..901fbe82e1 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Platform_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Platform_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.cpp index 6577cf1728..01cc49a745 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.h index 8e95c6599e..186935098f 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_fwd_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_fwd_UnixLike.h index 1e75cb1239..60261f1b94 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_fwd_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Socket/AzSocket_fwd_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Utils/Utils_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Utils/Utils_UnixLike.cpp index 9ce158d335..b1d4cb13b0 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Utils/Utils_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/Utils/Utils_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/condition_variable_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/condition_variable_UnixLike.h index 4d6cfa28b8..74a2a677d2 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/condition_variable_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/condition_variable_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/mutex_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/mutex_UnixLike.h index e9136277e9..8452ff8396 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/mutex_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/mutex_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h index a7d42750a7..bfe0361c0f 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/semaphore_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.cpp index cf75cdc96f..19415f2f87 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.h index 2e72e6a163..c55d5ae4f5 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/thread_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/time_UnixLike.h b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/time_UnixLike.h index 1478315499..ea48f2cb01 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/time_UnixLike.h +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/parallel/internal/time_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/time_UnixLike.cpp b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/time_UnixLike.cpp index b91e4df622..5abe4080c0 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/time_UnixLike.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLike/AzCore/std/time_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/UnixLikeDefault/AzCore/IO/SystemFile_UnixLikeDefault.cpp b/Code/Framework/AzCore/Platform/Common/UnixLikeDefault/AzCore/IO/SystemFile_UnixLikeDefault.cpp index 3112ff6197..a14ad6e696 100644 --- a/Code/Framework/AzCore/Platform/Common/UnixLikeDefault/AzCore/IO/SystemFile_UnixLikeDefault.cpp +++ b/Code/Framework/AzCore/Platform/Common/UnixLikeDefault/AzCore/IO/SystemFile_UnixLikeDefault.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp index eb0580dca9..c0cebfe8c2 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Debug/Trace_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp index 0a1bd846b5..d32a30bcec 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.h index fb52aee40f..0a4abc2056 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/Streamer/StreamerContext_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.cpp index c006e8d6c0..997d450e8e 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.h index 454aa480c5..ca833c07dd 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/IO/SystemFile_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OSAllocator_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OSAllocator_WinAPI.h index 3eed9d8d02..582b949897 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OSAllocator_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OSAllocator_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OverrunDetectionAllocator_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OverrunDetectionAllocator_WinAPI.h index e753023f66..24e200ad11 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OverrunDetectionAllocator_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Memory/OverrunDetectionAllocator_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Module/DynamicModuleHandle_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Module/DynamicModuleHandle_WinAPI.cpp index 170da4f62e..2119197500 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Module/DynamicModuleHandle_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Module/DynamicModuleHandle_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.cpp index db4e592066..763c4caf97 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.h index 1140f3f89b..8bdf2dccfb 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_WinAPI.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_fwd_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_fwd_WinAPI.h index c2df14ce5f..7630cb546b 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_fwd_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Socket/AzSocket_fwd_WinAPI.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Utils/Utils_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Utils/Utils_WinAPI.cpp index 1d1a7cd148..f8787fc6f3 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Utils/Utils_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/Utils/Utils_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/config_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/config_WinAPI.h index a6a8c7e315..2488fd065c 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/config_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/config_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h index 42cec3cb8c..7ba31098ca 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/condition_variable_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/mutex_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/mutex_WinAPI.h index 60cb8bd1ee..b32b1dc4e9 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/mutex_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/mutex_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/semaphore_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/semaphore_WinAPI.h index f27b191119..fdccf4f6d9 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/semaphore_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/semaphore_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.cpp b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.cpp index 2a7437fea5..643dfe3d83 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.cpp +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.h b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.h index 4be301ff0e..6a4905a0ab 100644 --- a/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.h +++ b/Code/Framework/AzCore/Platform/Common/WinAPI/AzCore/std/parallel/internal/thread_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Common/azcore_profile_telemetry_files.cmake b/Code/Framework/AzCore/Platform/Common/azcore_profile_telemetry_files.cmake index aff17d814b..f125f3bfc5 100644 --- a/Code/Framework/AzCore/Platform/Common/azcore_profile_telemetry_files.cmake +++ b/Code/Framework/AzCore/Platform/Common/azcore_profile_telemetry_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Linux.h b/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Linux.h index a590e574e5..67702a5f39 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Linux.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Platform.h index 2af3cd7d0f..ffc1c2a15f 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/AzCore_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Debug/Trace_Linux.cpp b/Code/Framework/AzCore/Platform/Linux/AzCore/Debug/Trace_Linux.cpp index 7afdee4aa1..2b93565bb2 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Debug/Trace_Linux.cpp +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Debug/Trace_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/IO/Streamer/StreamerContext_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/IO/Streamer/StreamerContext_Platform.h index c66d15b505..0fcaf8ef70 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/IO/Streamer/StreamerContext_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/IO/Streamer/StreamerContext_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Linux.cpp b/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Linux.cpp index 3772458059..fb9331d931 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Linux.cpp +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Platform.h index fb00b16ded..eeaf7f6a46 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/IO/SystemFile_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/IPC/SharedMemory_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/IPC/SharedMemory_Platform.h index f508f78483..a07e94878c 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/IPC/SharedMemory_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/IPC/SharedMemory_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Linux.h b/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Linux.h index 855a939f5b..db07bcf49c 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Linux.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Platform.h index 91850a006a..338a374292 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Internal/MathTypes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Random_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Random_Platform.h index 0990131d76..879fa1efca 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Random_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Math/Random_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/HeapSchema_Linux.cpp b/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/HeapSchema_Linux.cpp index 8de1bb29ae..82c72b87f6 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/HeapSchema_Linux.cpp +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/HeapSchema_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OSAllocator_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OSAllocator_Platform.h index 2a63a8ddf0..80372c577b 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OSAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OSAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OverrunDetectionAllocator_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OverrunDetectionAllocator_Platform.h index fc01128d34..ac831358eb 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OverrunDetectionAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Memory/OverrunDetectionAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Module/DynamicModuleHandle_Linux.cpp b/Code/Framework/AzCore/Platform/Linux/AzCore/Module/DynamicModuleHandle_Linux.cpp index 05b3e68cd0..b44f3a9943 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Module/DynamicModuleHandle_Linux.cpp +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Module/DynamicModuleHandle_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Module/Internal/ModuleManagerSearchPathTool_Linux.cpp b/Code/Framework/AzCore/Platform/Linux/AzCore/Module/Internal/ModuleManagerSearchPathTool_Linux.cpp index 178adbf6a1..b062f14c29 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Module/Internal/ModuleManagerSearchPathTool_Linux.cpp +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Module/Internal/ModuleManagerSearchPathTool_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Linux.h b/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Linux.h index 3cd0bbe440..31d5e29413 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Linux.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Platform.h index 07c7dcf9a4..d172b551a4 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformId/PlatformId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformIncl_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformIncl_Platform.h index 4f0f008803..cadad78908 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformIncl_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/PlatformIncl_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_Platform.h index 9faf72b439..3f4fe10957 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_fwd_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_fwd_Platform.h index 283d9c3d7a..8f5812ac2c 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_fwd_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Socket/AzSocket_fwd_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/Utils/Utils_Linux.cpp b/Code/Framework/AzCore/Platform/Linux/AzCore/Utils/Utils_Linux.cpp index b8007393bb..47e4a343e8 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/Utils/Utils_Linux.cpp +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/Utils/Utils_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/base_Linux.h b/Code/Framework/AzCore/Platform/Linux/AzCore/base_Linux.h index ad49d2df73..e41e011a88 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/base_Linux.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/base_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/base_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/base_Platform.h index 801461fe43..e38990bec4 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/base_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/base_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Linux.h b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Linux.h index cf9d0fc1fb..d12889b220 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Linux.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Platform.h index 97bdbb1915..b45710c591 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/config_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/condition_variable_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/condition_variable_Platform.h index b54fc50c44..47c17a8adf 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/condition_variable_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/condition_variable_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/mutex_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/mutex_Platform.h index 3e72c3e236..c1b11e1a44 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/mutex_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/mutex_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/semaphore_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/semaphore_Platform.h index b893c41e0f..76b92717f1 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/semaphore_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/semaphore_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Linux.cpp b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Linux.cpp index 8e1d2e040e..d524854e84 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Linux.cpp +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Platform.h b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Platform.h index f6b6486b62..36124f3d1d 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Platform.h +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/parallel/internal/thread_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/AzCore/std/string/fixed_string_Platform.inl b/Code/Framework/AzCore/Platform/Linux/AzCore/std/string/fixed_string_Platform.inl index 95ac9a5d46..33697c45af 100644 --- a/Code/Framework/AzCore/Platform/Linux/AzCore/std/string/fixed_string_Platform.inl +++ b/Code/Framework/AzCore/Platform/Linux/AzCore/std/string/fixed_string_Platform.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Linux/platform_linux.cmake b/Code/Framework/AzCore/Platform/Linux/platform_linux.cmake index f6696b9b66..1680124b4e 100644 --- a/Code/Framework/AzCore/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/AzCore/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Linux/platform_linux_files.cmake b/Code/Framework/AzCore/Platform/Linux/platform_linux_files.cmake index 1c4705721a..3ef9ef89b5 100644 --- a/Code/Framework/AzCore/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/AzCore/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Linux/profile_telemetry_platform_linux.cmake b/Code/Framework/AzCore/Platform/Linux/profile_telemetry_platform_linux.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/AzCore/Platform/Linux/profile_telemetry_platform_linux.cmake +++ b/Code/Framework/AzCore/Platform/Linux/profile_telemetry_platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Mac.h b/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Mac.h index 4e65fe5fe2..4f148f080c 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Mac.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Platform.h index 7fc52ae007..2308376a7c 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/AzCore_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/IO/Streamer/StreamerContext_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/IO/Streamer/StreamerContext_Platform.h index c66d15b505..0fcaf8ef70 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/IO/Streamer/StreamerContext_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/IO/Streamer/StreamerContext_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/IO/SystemFile_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/IO/SystemFile_Platform.h index 5ae7a8e7b6..0349df7199 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/IO/SystemFile_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/IO/SystemFile_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.cpp b/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.cpp index 70f06d5172..54aff8a78b 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.cpp +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.h b/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.h index 73e15fd447..498104a57f 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Platform.h index 5f7b864b8a..381604b527 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/IPC/SharedMemory_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Mac.h b/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Mac.h index 855a939f5b..db07bcf49c 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Mac.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Platform.h index b5b01a1ff6..83d395328c 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Internal/MathTypes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Random_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Random_Platform.h index 0990131d76..879fa1efca 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Random_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Math/Random_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/HeapSchema_Mac.cpp b/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/HeapSchema_Mac.cpp index 8de1bb29ae..82c72b87f6 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/HeapSchema_Mac.cpp +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/HeapSchema_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OSAllocator_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OSAllocator_Platform.h index 39204ead68..4e4e41cbc7 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OSAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OSAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OverrunDetectionAllocator_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OverrunDetectionAllocator_Platform.h index fc01128d34..ac831358eb 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OverrunDetectionAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Memory/OverrunDetectionAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Module/Internal/ModuleManagerSearchPathTool_Mac.cpp b/Code/Framework/AzCore/Platform/Mac/AzCore/Module/Internal/ModuleManagerSearchPathTool_Mac.cpp index 2ce5fa18fc..a619074b5c 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Module/Internal/ModuleManagerSearchPathTool_Mac.cpp +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Module/Internal/ModuleManagerSearchPathTool_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/NativeUI/NativeUISystemComponent_Mac.mm b/Code/Framework/AzCore/Platform/Mac/AzCore/NativeUI/NativeUISystemComponent_Mac.mm index 4691bb6c24..4bf32677f8 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/NativeUI/NativeUISystemComponent_Mac.mm +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/NativeUI/NativeUISystemComponent_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Mac.h b/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Mac.h index 7a0a18100e..ef0b552e60 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Mac.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Platform.h index a561cfa41c..6086bbe7c6 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformId/PlatformId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformIncl_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformIncl_Platform.h index 4f0f008803..cadad78908 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformIncl_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/PlatformIncl_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp b/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp index 60637265da..4ea7a841ec 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Platform_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_Platform.h index 9faf72b439..3f4fe10957 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_fwd_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_fwd_Platform.h index 20c6d6b9a6..c0f16d8910 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_fwd_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Socket/AzSocket_fwd_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/Utils/Utils_Mac.cpp b/Code/Framework/AzCore/Platform/Mac/AzCore/Utils/Utils_Mac.cpp index 8798808a77..a6ea14631c 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/Utils/Utils_Mac.cpp +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/Utils/Utils_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/base_Mac.h b/Code/Framework/AzCore/Platform/Mac/AzCore/base_Mac.h index ad49d2df73..e41e011a88 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/base_Mac.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/base_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/base_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/base_Platform.h index edbf5cae59..800b7ac43f 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/base_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/base_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/config_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/config_Platform.h index a73f24dab4..ae069fa5f0 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/config_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/config_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/condition_variable_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/condition_variable_Platform.h index d7dcd5d53c..54196c74d3 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/condition_variable_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/condition_variable_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/mutex_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/mutex_Platform.h index 3e72c3e236..c1b11e1a44 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/mutex_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/mutex_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/semaphore_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/semaphore_Platform.h index c460382685..168af9333c 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/semaphore_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/semaphore_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/thread_Platform.h b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/thread_Platform.h index f6b6486b62..36124f3d1d 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/thread_Platform.h +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/std/parallel/internal/thread_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/AzCore/std/string/fixed_string_Platform.inl b/Code/Framework/AzCore/Platform/Mac/AzCore/std/string/fixed_string_Platform.inl index 95ac9a5d46..33697c45af 100644 --- a/Code/Framework/AzCore/Platform/Mac/AzCore/std/string/fixed_string_Platform.inl +++ b/Code/Framework/AzCore/Platform/Mac/AzCore/std/string/fixed_string_Platform.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Mac/platform_mac.cmake b/Code/Framework/AzCore/Platform/Mac/platform_mac.cmake index 96d4f55803..323661d138 100644 --- a/Code/Framework/AzCore/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/AzCore/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Mac/platform_mac_files.cmake b/Code/Framework/AzCore/Platform/Mac/platform_mac_files.cmake index e3177cff07..a44f781f6b 100644 --- a/Code/Framework/AzCore/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/AzCore/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Mac/profile_telemetry_platform_mac.cmake b/Code/Framework/AzCore/Platform/Mac/profile_telemetry_platform_mac.cmake index c487144b42..9a1c433e6c 100644 --- a/Code/Framework/AzCore/Platform/Mac/profile_telemetry_platform_mac.cmake +++ b/Code/Framework/AzCore/Platform/Mac/profile_telemetry_platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Platform.h index 348ae2e0d6..03ab33992d 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Windows.h index 762ecdb7a7..cc45d5e882 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/AzCore_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp index 4814159e48..9b2ccbe754 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Debug/StackTracer_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.cpp index 6fbbb42c73..e294e2f74c 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.h index e47f6649ab..2c58a0220c 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDriveConfig_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.cpp index 12509e7031..174585a09c 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.h index 3922dac478..2d6f504a20 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StorageDrive_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp index 80f098eb2f..af33925371 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.h index e3180e414f..2acab50c70 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerConfiguration_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerContext_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerContext_Platform.h index c4b2913ca9..9626be37f4 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerContext_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/Streamer/StreamerContext_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/SystemFile_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/SystemFile_Platform.h index e02fe5fc59..3d2b6b6fb0 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IO/SystemFile_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IO/SystemFile_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Platform.h index b922fa737e..845fa23a53 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.cpp index 58b3a4b5af..be832714fd 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.h index 449186fdb6..3d3164a1cb 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/IPC/SharedMemory_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Platform.h index da3978004c..fce7c978b4 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Windows.h index f437d994a1..179a7407c0 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Internal/MathTypes_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Platform.h index a3e8367776..94af8b2a77 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.cpp index 9016392e99..807af504f7 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.h index de9db10103..7379475872 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Math/Random_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/HeapSchema_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/HeapSchema_Windows.cpp index 412d66c420..718d14369c 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/HeapSchema_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/HeapSchema_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OSAllocator_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OSAllocator_Platform.h index 39ea1e7626..e61dbda4e6 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OSAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OSAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OverrunDetectionAllocator_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OverrunDetectionAllocator_Platform.h index 67ac76ee0d..487f73c626 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OverrunDetectionAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Memory/OverrunDetectionAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Module/Internal/ModuleManagerSearchPathTool_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/Module/Internal/ModuleManagerSearchPathTool_Windows.cpp index 313cf585c3..b75d3453db 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Module/Internal/ModuleManagerSearchPathTool_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Module/Internal/ModuleManagerSearchPathTool_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/NativeUI/NativeUISystemComponent_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/NativeUI/NativeUISystemComponent_Windows.cpp index 6c28c63a75..47ca0fe90c 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/NativeUI/NativeUISystemComponent_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/NativeUI/NativeUISystemComponent_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Platform.h index 6bebf31229..f152c9b533 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Windows.h index ea0e54d78e..a71b94e20b 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformId/PlatformId_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Platform.h index 05ca098dde..36c5bd8808 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h index d9cdff2835..7845e5784d 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/PlatformIncl_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Platform_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/Platform_Windows.cpp index 0db37353f6..e226837549 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Platform_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Platform_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_Platform.h index 740fc7a48d..f9f58e4b4f 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_Platform.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Platform.h index 124c56f97f..d60dde2bde 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Platform.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Windows.h index db630dabae..26eb767900 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Socket/AzSocket_fwd_Windows.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/Utils/Utils_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/Utils/Utils_Windows.cpp index 97e7bb52e5..f3344f48be 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/Utils/Utils_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/Utils/Utils_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/base_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/base_Platform.h index 89c47922b3..e82466c542 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/base_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/base_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/base_Windows.h b/Code/Framework/AzCore/Platform/Windows/AzCore/base_Windows.h index ad49d2df73..e41e011a88 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/base_Windows.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/base_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/config_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/config_Platform.h index b66f19da49..e5d348a864 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/config_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/config_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/condition_variable_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/condition_variable_Platform.h index 8c7d538b5d..542da3367d 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/condition_variable_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/condition_variable_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/mutex_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/mutex_Platform.h index 779debd21b..3c049b2adc 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/mutex_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/mutex_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/semaphore_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/semaphore_Platform.h index b6b6329362..b340c5894e 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/semaphore_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/semaphore_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Platform.h b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Platform.h index 1285e31c18..f19ed310aa 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Platform.h +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Windows.cpp index 1837e2b26c..5c3e2fcb05 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/parallel/internal/thread_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/string/fixed_string_Platform.inl b/Code/Framework/AzCore/Platform/Windows/AzCore/std/string/fixed_string_Platform.inl index 163982d4f1..23da029193 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/string/fixed_string_Platform.inl +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/string/fixed_string_Platform.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/AzCore/std/time_Windows.cpp b/Code/Framework/AzCore/Platform/Windows/AzCore/std/time_Windows.cpp index 787f5e4130..833745b7d3 100644 --- a/Code/Framework/AzCore/Platform/Windows/AzCore/std/time_Windows.cpp +++ b/Code/Framework/AzCore/Platform/Windows/AzCore/std/time_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/Windows/platform_windows.cmake b/Code/Framework/AzCore/Platform/Windows/platform_windows.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/AzCore/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/AzCore/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Windows/platform_windows_files.cmake b/Code/Framework/AzCore/Platform/Windows/platform_windows_files.cmake index b642e24b01..520c53f74c 100644 --- a/Code/Framework/AzCore/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/AzCore/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/Windows/profile_telemetry_platform_windows.cmake b/Code/Framework/AzCore/Platform/Windows/profile_telemetry_platform_windows.cmake index c487144b42..9a1c433e6c 100644 --- a/Code/Framework/AzCore/Platform/Windows/profile_telemetry_platform_windows.cmake +++ b/Code/Framework/AzCore/Platform/Windows/profile_telemetry_platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_Platform.h index 598f0dd7db..5a3d212adb 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_iOS.h b/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_iOS.h index 2affdcfcc4..6b6e33601e 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_iOS.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/AzCore_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/IO/Streamer/StreamerContext_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/IO/Streamer/StreamerContext_Platform.h index c66d15b505..0fcaf8ef70 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/IO/Streamer/StreamerContext_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/IO/Streamer/StreamerContext_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/IO/SystemFile_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/IO/SystemFile_Platform.h index 5ae7a8e7b6..0349df7199 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/IO/SystemFile_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/IO/SystemFile_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/IPC/SharedMemory_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/IPC/SharedMemory_Platform.h index f508f78483..a07e94878c 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/IPC/SharedMemory_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/IPC/SharedMemory_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_Platform.h index c94a46e60a..446a54c2e6 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_iOS.h b/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_iOS.h index 4df1796ef8..664191178f 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_iOS.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Internal/MathTypes_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Random_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Random_Platform.h index 0990131d76..879fa1efca 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Random_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Math/Random_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/HeapSchema_iOS.cpp b/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/HeapSchema_iOS.cpp index 8de1bb29ae..82c72b87f6 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/HeapSchema_iOS.cpp +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/HeapSchema_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OSAllocator_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OSAllocator_Platform.h index 39204ead68..4e4e41cbc7 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OSAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OSAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OverrunDetectionAllocator_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OverrunDetectionAllocator_Platform.h index fc01128d34..ac831358eb 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OverrunDetectionAllocator_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Memory/OverrunDetectionAllocator_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Module/DynamicModuleHandle_iOS.cpp b/Code/Framework/AzCore/Platform/iOS/AzCore/Module/DynamicModuleHandle_iOS.cpp index c1076cc589..4fc33f4133 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Module/DynamicModuleHandle_iOS.cpp +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Module/DynamicModuleHandle_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/NativeUI/NativeUISystemComponent_iOS.mm b/Code/Framework/AzCore/Platform/iOS/AzCore/NativeUI/NativeUISystemComponent_iOS.mm index 24729cb669..e663760b35 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/NativeUI/NativeUISystemComponent_iOS.mm +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/NativeUI/NativeUISystemComponent_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_Platform.h index ac5d3896ba..e40eb0cc58 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_iOS.h b/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_iOS.h index 9d328ea76a..10ab069004 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_iOS.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformId/PlatformId_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformIncl_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformIncl_Platform.h index 4f0f008803..cadad78908 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformIncl_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/PlatformIncl_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_Platform.h index 9faf72b439..3f4fe10957 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_fwd_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_fwd_Platform.h index 20c6d6b9a6..c0f16d8910 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_fwd_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Socket/AzSocket_fwd_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/Utils/Utils_iOS.mm b/Code/Framework/AzCore/Platform/iOS/AzCore/Utils/Utils_iOS.mm index c3d1843e98..48f3f9a40d 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/Utils/Utils_iOS.mm +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/Utils/Utils_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/base_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/base_Platform.h index a6da0194d9..02cb720bd7 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/base_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/base_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/base_iOS.h b/Code/Framework/AzCore/Platform/iOS/AzCore/base_iOS.h index ad49d2df73..e41e011a88 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/base_iOS.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/base_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/config_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/config_Platform.h index a73f24dab4..ae069fa5f0 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/config_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/config_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/condition_variable_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/condition_variable_Platform.h index d7dcd5d53c..54196c74d3 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/condition_variable_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/condition_variable_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/mutex_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/mutex_Platform.h index 3e72c3e236..c1b11e1a44 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/mutex_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/mutex_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/semaphore_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/semaphore_Platform.h index c460382685..168af9333c 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/semaphore_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/semaphore_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/thread_Platform.h b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/thread_Platform.h index f6b6486b62..36124f3d1d 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/thread_Platform.h +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/std/parallel/internal/thread_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/AzCore/std/string/fixed_string_Platform.inl b/Code/Framework/AzCore/Platform/iOS/AzCore/std/string/fixed_string_Platform.inl index 95ac9a5d46..33697c45af 100644 --- a/Code/Framework/AzCore/Platform/iOS/AzCore/std/string/fixed_string_Platform.inl +++ b/Code/Framework/AzCore/Platform/iOS/AzCore/std/string/fixed_string_Platform.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Platform/iOS/platform_ios.cmake b/Code/Framework/AzCore/Platform/iOS/platform_ios.cmake index 9335a19a19..42aa2152da 100644 --- a/Code/Framework/AzCore/Platform/iOS/platform_ios.cmake +++ b/Code/Framework/AzCore/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/iOS/platform_ios_files.cmake b/Code/Framework/AzCore/Platform/iOS/platform_ios_files.cmake index 8b2131b059..87e90e26e5 100644 --- a/Code/Framework/AzCore/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/AzCore/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Platform/iOS/profile_telemetry_platform_ios.cmake b/Code/Framework/AzCore/Platform/iOS/profile_telemetry_platform_ios.cmake index df87ae239b..20a62135a6 100644 --- a/Code/Framework/AzCore/Platform/iOS/profile_telemetry_platform_ios.cmake +++ b/Code/Framework/AzCore/Platform/iOS/profile_telemetry_platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp b/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp index 53575ddefc..18de76c735 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Algorithms.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp b/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp index be747cf0c8..9978b7c3aa 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Allocators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Any.cpp b/Code/Framework/AzCore/Tests/AZStd/Any.cpp index f5f17f435e..93e1364852 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Any.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Any.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp b/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp index 35f0ea2885..bfdc745935 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Atomics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp b/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp index abc7a78978..1074189696 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Bitset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/ChronoTests.cpp b/Code/Framework/AzCore/Tests/AZStd/ChronoTests.cpp index c25d7db90e..b6a1608acd 100644 --- a/Code/Framework/AzCore/Tests/AZStd/ChronoTests.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/ChronoTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/ConcurrentAllocators.cpp b/Code/Framework/AzCore/Tests/AZStd/ConcurrentAllocators.cpp index 271763d857..f3b1ce2582 100644 --- a/Code/Framework/AzCore/Tests/AZStd/ConcurrentAllocators.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/ConcurrentAllocators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/ConcurrentContainers.cpp b/Code/Framework/AzCore/Tests/AZStd/ConcurrentContainers.cpp index 0d02250f4d..7ee0fa3eb6 100644 --- a/Code/Framework/AzCore/Tests/AZStd/ConcurrentContainers.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/ConcurrentContainers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/CreateDestroy.cpp b/Code/Framework/AzCore/Tests/AZStd/CreateDestroy.cpp index 00df9e0ea2..2ff9fffba6 100644 --- a/Code/Framework/AzCore/Tests/AZStd/CreateDestroy.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/CreateDestroy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/DequeAndSimilar.cpp b/Code/Framework/AzCore/Tests/AZStd/DequeAndSimilar.cpp index e335082698..46872bd3da 100644 --- a/Code/Framework/AzCore/Tests/AZStd/DequeAndSimilar.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/DequeAndSimilar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Examples.cpp b/Code/Framework/AzCore/Tests/AZStd/Examples.cpp index 9529503e98..4a1565dc2c 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Examples.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Examples.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/FunctionalBasic.cpp b/Code/Framework/AzCore/Tests/AZStd/FunctionalBasic.cpp index 0e32590123..f76303cf9e 100644 --- a/Code/Framework/AzCore/Tests/AZStd/FunctionalBasic.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/FunctionalBasic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp b/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp index c96c57067d..1b6aae7177 100644 --- a/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/FunctorsBind.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp b/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp index a8d554ac0f..8b35cab137 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Hashed.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Invoke.cpp b/Code/Framework/AzCore/Tests/AZStd/Invoke.cpp index 203b7e8f4a..2c0ed54237 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Invoke.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Invoke.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Iterators.cpp b/Code/Framework/AzCore/Tests/AZStd/Iterators.cpp index eac0789231..268cc6c03c 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Iterators.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Iterators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Lists.cpp b/Code/Framework/AzCore/Tests/AZStd/Lists.cpp index de2cf17f58..98ba5a2997 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Lists.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Lists.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/ListsFixed.cpp b/Code/Framework/AzCore/Tests/AZStd/ListsFixed.cpp index c3e356ce76..debac7114b 100644 --- a/Code/Framework/AzCore/Tests/AZStd/ListsFixed.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/ListsFixed.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp b/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp index 1cc98b001b..43baf49ec5 100644 --- a/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/ListsIntrusive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/LockFreeQueues.cpp b/Code/Framework/AzCore/Tests/AZStd/LockFreeQueues.cpp index 02be1a34d8..b87eb69bbe 100644 --- a/Code/Framework/AzCore/Tests/AZStd/LockFreeQueues.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/LockFreeQueues.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/LockFreeStacks.cpp b/Code/Framework/AzCore/Tests/AZStd/LockFreeStacks.cpp index 9700bb2019..dd2d831c9d 100644 --- a/Code/Framework/AzCore/Tests/AZStd/LockFreeStacks.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/LockFreeStacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/LockTests.cpp b/Code/Framework/AzCore/Tests/AZStd/LockTests.cpp index baf2403eda..94d22873e7 100644 --- a/Code/Framework/AzCore/Tests/AZStd/LockTests.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/LockTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Numeric.cpp b/Code/Framework/AzCore/Tests/AZStd/Numeric.cpp index 1225df3d0b..219902960b 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Numeric.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Numeric.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Optional.cpp b/Code/Framework/AzCore/Tests/AZStd/Optional.cpp index cad8002b52..86ebe37e98 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Optional.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Optional.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp b/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp index 32e35f8613..ec24594ac1 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Ordered.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Pair.cpp b/Code/Framework/AzCore/Tests/AZStd/Pair.cpp index 4fbd2792b8..7f7b409f9d 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Pair.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Pair.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp b/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp index 2611728700..73326333a3 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Parallel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/ScopedLockTests.cpp b/Code/Framework/AzCore/Tests/AZStd/ScopedLockTests.cpp index a2f9a37b93..3091fcb4ea 100644 --- a/Code/Framework/AzCore/Tests/AZStd/ScopedLockTests.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/ScopedLockTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp b/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp index 6dafb002e0..51a9920c70 100644 --- a/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/SetsIntrusive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp b/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp index 841ad874ee..e9b241c518 100644 --- a/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/SmartPtr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/String.cpp b/Code/Framework/AzCore/Tests/AZStd/String.cpp index 2f39345206..85c0b88292 100644 --- a/Code/Framework/AzCore/Tests/AZStd/String.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/String.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Tuple.cpp b/Code/Framework/AzCore/Tests/AZStd/Tuple.cpp index b26d6a702a..18f5e6a0bd 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Tuple.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Tuple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/TypeTraits.cpp b/Code/Framework/AzCore/Tests/AZStd/TypeTraits.cpp index 5fd0eac58e..667dabc787 100644 --- a/Code/Framework/AzCore/Tests/AZStd/TypeTraits.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/TypeTraits.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/UserTypes.h b/Code/Framework/AzCore/Tests/AZStd/UserTypes.h index b17ea07f9a..0425e8cde1 100644 --- a/Code/Framework/AzCore/Tests/AZStd/UserTypes.h +++ b/Code/Framework/AzCore/Tests/AZStd/UserTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/Variant.cpp b/Code/Framework/AzCore/Tests/AZStd/Variant.cpp index 222c84f28b..bb8bf09f5a 100644 --- a/Code/Framework/AzCore/Tests/AZStd/Variant.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/Variant.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/VariantSerialization.cpp b/Code/Framework/AzCore/Tests/AZStd/VariantSerialization.cpp index 69c45d15b0..f9cfd9c794 100644 --- a/Code/Framework/AzCore/Tests/AZStd/VariantSerialization.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/VariantSerialization.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp b/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp index 084b00d202..1bb6defa8f 100644 --- a/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp +++ b/Code/Framework/AzCore/Tests/AZStd/VectorAndArray.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.cpp b/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.cpp index ac12f7694f..e03359d54c 100644 --- a/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.cpp +++ b/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.h b/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.h index 7870b2456a..539195b11f 100644 --- a/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.h +++ b/Code/Framework/AzCore/Tests/AZTestShared/Math/MathTestHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.cpp b/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.cpp index a49b5a6c18..a654302da6 100644 --- a/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.cpp +++ b/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.h b/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.h index 22a15cbf56..ff2ac534c5 100644 --- a/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.h +++ b/Code/Framework/AzCore/Tests/AZTestShared/Utils/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/AssetCommon.cpp b/Code/Framework/AzCore/Tests/Asset/AssetCommon.cpp index e0f54e4627..35c5983b28 100644 --- a/Code/Framework/AzCore/Tests/Asset/AssetCommon.cpp +++ b/Code/Framework/AzCore/Tests/Asset/AssetCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp b/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp index 06ab1d04ad..635d92b21c 100644 --- a/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp +++ b/Code/Framework/AzCore/Tests/Asset/AssetDataStreamTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp b/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp index e26afce755..4618f6ea85 100644 --- a/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp +++ b/Code/Framework/AzCore/Tests/Asset/AssetManagerLoadingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp b/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp index 06fc537bbb..5c1b737662 100644 --- a/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp +++ b/Code/Framework/AzCore/Tests/Asset/AssetManagerStreamingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.cpp b/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.cpp index 07382ca172..4f9ef9f262 100644 --- a/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.cpp +++ b/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.h b/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.h index 0b62f40bb4..c5eb15f086 100644 --- a/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.h +++ b/Code/Framework/AzCore/Tests/Asset/BaseAssetManagerTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/MockLoadAssetCatalogAndHandler.h b/Code/Framework/AzCore/Tests/Asset/MockLoadAssetCatalogAndHandler.h index b7e168bd7e..cfbb56d02e 100644 --- a/Code/Framework/AzCore/Tests/Asset/MockLoadAssetCatalogAndHandler.h +++ b/Code/Framework/AzCore/Tests/Asset/MockLoadAssetCatalogAndHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Asset/TestAssetTypes.h b/Code/Framework/AzCore/Tests/Asset/TestAssetTypes.h index 5c9a492744..9d6f92f91a 100644 --- a/Code/Framework/AzCore/Tests/Asset/TestAssetTypes.h +++ b/Code/Framework/AzCore/Tests/Asset/TestAssetTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AssetJsonSerializerTests.cpp b/Code/Framework/AzCore/Tests/AssetJsonSerializerTests.cpp index 5b3574d5ef..89824bc127 100644 --- a/Code/Framework/AzCore/Tests/AssetJsonSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/AssetJsonSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AssetManager.cpp b/Code/Framework/AzCore/Tests/AssetManager.cpp index 0df1cec517..70f2c70d33 100644 --- a/Code/Framework/AzCore/Tests/AssetManager.cpp +++ b/Code/Framework/AzCore/Tests/AssetManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AssetSerializerTests.cpp b/Code/Framework/AzCore/Tests/AssetSerializerTests.cpp index b5b8fd1ac0..7614f50926 100644 --- a/Code/Framework/AzCore/Tests/AssetSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/AssetSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/AzEnumTest.cpp b/Code/Framework/AzCore/Tests/AzEnumTest.cpp index 827c6af767..2c8c8271df 100644 --- a/Code/Framework/AzCore/Tests/AzEnumTest.cpp +++ b/Code/Framework/AzCore/Tests/AzEnumTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/BehaviorContext.cpp b/Code/Framework/AzCore/Tests/BehaviorContext.cpp index 8f8d722b8c..5b2a4a4e9f 100644 --- a/Code/Framework/AzCore/Tests/BehaviorContext.cpp +++ b/Code/Framework/AzCore/Tests/BehaviorContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/BehaviorContextFixture.h b/Code/Framework/AzCore/Tests/BehaviorContextFixture.h index 5edb1f591a..440b269027 100644 --- a/Code/Framework/AzCore/Tests/BehaviorContextFixture.h +++ b/Code/Framework/AzCore/Tests/BehaviorContextFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Components.cpp b/Code/Framework/AzCore/Tests/Components.cpp index 8a6649570a..93e86c9189 100644 --- a/Code/Framework/AzCore/Tests/Components.cpp +++ b/Code/Framework/AzCore/Tests/Components.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Console/ConsoleTests.cpp b/Code/Framework/AzCore/Tests/Console/ConsoleTests.cpp index 64bd8a1e21..89bfb807fe 100644 --- a/Code/Framework/AzCore/Tests/Console/ConsoleTests.cpp +++ b/Code/Framework/AzCore/Tests/Console/ConsoleTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Console/LoggerSystemComponentTests.cpp b/Code/Framework/AzCore/Tests/Console/LoggerSystemComponentTests.cpp index daec3b1d12..e028719a60 100644 --- a/Code/Framework/AzCore/Tests/Console/LoggerSystemComponentTests.cpp +++ b/Code/Framework/AzCore/Tests/Console/LoggerSystemComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/DLL.cpp b/Code/Framework/AzCore/Tests/DLL.cpp index b5665a7d1c..1ef803d066 100644 --- a/Code/Framework/AzCore/Tests/DLL.cpp +++ b/Code/Framework/AzCore/Tests/DLL.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/DLLMainTest.cpp b/Code/Framework/AzCore/Tests/DLLMainTest.cpp index 882d522164..4dd8194572 100644 --- a/Code/Framework/AzCore/Tests/DLLMainTest.cpp +++ b/Code/Framework/AzCore/Tests/DLLMainTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Debug.cpp b/Code/Framework/AzCore/Tests/Debug.cpp index e66d7dd548..a7d69a229c 100644 --- a/Code/Framework/AzCore/Tests/Debug.cpp +++ b/Code/Framework/AzCore/Tests/Debug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Debug/AssetTracking.cpp b/Code/Framework/AzCore/Tests/Debug/AssetTracking.cpp index 541d9a7aa6..6c52b0f701 100644 --- a/Code/Framework/AzCore/Tests/Debug/AssetTracking.cpp +++ b/Code/Framework/AzCore/Tests/Debug/AssetTracking.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp b/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp index 395f77c758..4517a355bb 100644 --- a/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp +++ b/Code/Framework/AzCore/Tests/Debug/LocalFileEventLoggerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Debug/Trace.cpp b/Code/Framework/AzCore/Tests/Debug/Trace.cpp index 95aa0427f5..055f8772ac 100644 --- a/Code/Framework/AzCore/Tests/Debug/Trace.cpp +++ b/Code/Framework/AzCore/Tests/Debug/Trace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Driller.cpp b/Code/Framework/AzCore/Tests/Driller.cpp index deafc0e8cb..aa19e0e161 100644 --- a/Code/Framework/AzCore/Tests/Driller.cpp +++ b/Code/Framework/AzCore/Tests/Driller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/EBus.cpp b/Code/Framework/AzCore/Tests/EBus.cpp index 07d1934cb0..9d129524f9 100644 --- a/Code/Framework/AzCore/Tests/EBus.cpp +++ b/Code/Framework/AzCore/Tests/EBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/EBus/ScheduledEventTests.cpp b/Code/Framework/AzCore/Tests/EBus/ScheduledEventTests.cpp index 58d237c96d..5a7407720a 100644 --- a/Code/Framework/AzCore/Tests/EBus/ScheduledEventTests.cpp +++ b/Code/Framework/AzCore/Tests/EBus/ScheduledEventTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/EntityIdTests.cpp b/Code/Framework/AzCore/Tests/EntityIdTests.cpp index ba7cae1273..8adca10fde 100644 --- a/Code/Framework/AzCore/Tests/EntityIdTests.cpp +++ b/Code/Framework/AzCore/Tests/EntityIdTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/EntityTests.cpp b/Code/Framework/AzCore/Tests/EntityTests.cpp index b944d3e5d3..4bc6a19e25 100644 --- a/Code/Framework/AzCore/Tests/EntityTests.cpp +++ b/Code/Framework/AzCore/Tests/EntityTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/EnumTests.cpp b/Code/Framework/AzCore/Tests/EnumTests.cpp index 8e24604789..5cca8fcc76 100644 --- a/Code/Framework/AzCore/Tests/EnumTests.cpp +++ b/Code/Framework/AzCore/Tests/EnumTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/EventTests.cpp b/Code/Framework/AzCore/Tests/EventTests.cpp index b491011144..7640201e0d 100644 --- a/Code/Framework/AzCore/Tests/EventTests.cpp +++ b/Code/Framework/AzCore/Tests/EventTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/FileIOBaseTestTypes.h b/Code/Framework/AzCore/Tests/FileIOBaseTestTypes.h index 74e66a9a79..4641c21232 100644 --- a/Code/Framework/AzCore/Tests/FileIOBaseTestTypes.h +++ b/Code/Framework/AzCore/Tests/FileIOBaseTestTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/FixedWidthIntegers.cpp b/Code/Framework/AzCore/Tests/FixedWidthIntegers.cpp index 4ff43f0299..16cbc60889 100644 --- a/Code/Framework/AzCore/Tests/FixedWidthIntegers.cpp +++ b/Code/Framework/AzCore/Tests/FixedWidthIntegers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/GenericStreamMock.h b/Code/Framework/AzCore/Tests/GenericStreamMock.h index a8adbc8e1a..848f9402fc 100644 --- a/Code/Framework/AzCore/Tests/GenericStreamMock.h +++ b/Code/Framework/AzCore/Tests/GenericStreamMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/GenericStreamTests.cpp b/Code/Framework/AzCore/Tests/GenericStreamTests.cpp index 78926dae69..0b1ebd0379 100644 --- a/Code/Framework/AzCore/Tests/GenericStreamTests.cpp +++ b/Code/Framework/AzCore/Tests/GenericStreamTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Geometry2DUtils.cpp b/Code/Framework/AzCore/Tests/Geometry2DUtils.cpp index da6f5f50b8..64350a4316 100644 --- a/Code/Framework/AzCore/Tests/Geometry2DUtils.cpp +++ b/Code/Framework/AzCore/Tests/Geometry2DUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp b/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp index 9a3b4d2ecf..84136e024c 100644 --- a/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp +++ b/Code/Framework/AzCore/Tests/IO/Path/PathTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/IPC.cpp b/Code/Framework/AzCore/Tests/IPC.cpp index d1a48d12e4..69faa0a10b 100644 --- a/Code/Framework/AzCore/Tests/IPC.cpp +++ b/Code/Framework/AzCore/Tests/IPC.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Interface.cpp b/Code/Framework/AzCore/Tests/Interface.cpp index 71e39997ad..7fadbfb212 100644 --- a/Code/Framework/AzCore/Tests/Interface.cpp +++ b/Code/Framework/AzCore/Tests/Interface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/IntersectPoint.cpp b/Code/Framework/AzCore/Tests/IntersectPoint.cpp index d3d04925b3..b60f069fcc 100644 --- a/Code/Framework/AzCore/Tests/IntersectPoint.cpp +++ b/Code/Framework/AzCore/Tests/IntersectPoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/JSON.cpp b/Code/Framework/AzCore/Tests/JSON.cpp index b980eef17a..14be069ef3 100644 --- a/Code/Framework/AzCore/Tests/JSON.cpp +++ b/Code/Framework/AzCore/Tests/JSON.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Jobs.cpp b/Code/Framework/AzCore/Tests/Jobs.cpp index 8ecabf8d96..cbfa029412 100644 --- a/Code/Framework/AzCore/Tests/Jobs.cpp +++ b/Code/Framework/AzCore/Tests/Jobs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Main.cpp b/Code/Framework/AzCore/Tests/Main.cpp index 4e854cbc54..694c2a33ba 100644 --- a/Code/Framework/AzCore/Tests/Main.cpp +++ b/Code/Framework/AzCore/Tests/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/AabbTests.cpp b/Code/Framework/AzCore/Tests/Math/AabbTests.cpp index ba6e9d40eb..6d643ecb56 100644 --- a/Code/Framework/AzCore/Tests/Math/AabbTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/AabbTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/ColorTests.cpp b/Code/Framework/AzCore/Tests/Math/ColorTests.cpp index 769954b8e6..ed178950f4 100644 --- a/Code/Framework/AzCore/Tests/Math/ColorTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/ColorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/CrcTests.cpp b/Code/Framework/AzCore/Tests/Math/CrcTests.cpp index 3dd5ea3a43..215fe3575a 100644 --- a/Code/Framework/AzCore/Tests/Math/CrcTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/CrcTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/CrcTestsCompileTimeLiterals.h b/Code/Framework/AzCore/Tests/Math/CrcTestsCompileTimeLiterals.h index 3ee140da6f..66d760f325 100644 --- a/Code/Framework/AzCore/Tests/Math/CrcTestsCompileTimeLiterals.h +++ b/Code/Framework/AzCore/Tests/Math/CrcTestsCompileTimeLiterals.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/FrustumPerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/FrustumPerformanceTests.cpp index 02982919a4..efdb463525 100644 --- a/Code/Framework/AzCore/Tests/Math/FrustumPerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/FrustumPerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/FrustumTests.cpp b/Code/Framework/AzCore/Tests/Math/FrustumTests.cpp index c75230d48f..2ed3a6f5e4 100644 --- a/Code/Framework/AzCore/Tests/Math/FrustumTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/FrustumTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/IntersectionTests.cpp b/Code/Framework/AzCore/Tests/Math/IntersectionTests.cpp index 485e12ec4e..b3910190cf 100644 --- a/Code/Framework/AzCore/Tests/Math/IntersectionTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/IntersectionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/MathIntrinsicsTests.cpp b/Code/Framework/AzCore/Tests/Math/MathIntrinsicsTests.cpp index 85927680c5..80721c1421 100644 --- a/Code/Framework/AzCore/Tests/Math/MathIntrinsicsTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/MathIntrinsicsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/MathTestData.h b/Code/Framework/AzCore/Tests/Math/MathTestData.h index f6576f17e1..a300fc906c 100644 --- a/Code/Framework/AzCore/Tests/Math/MathTestData.h +++ b/Code/Framework/AzCore/Tests/Math/MathTestData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/MathUtilsTests.cpp b/Code/Framework/AzCore/Tests/Math/MathUtilsTests.cpp index c3872f9030..dbcf1fc797 100644 --- a/Code/Framework/AzCore/Tests/Math/MathUtilsTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/MathUtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Matrix3x3PerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/Matrix3x3PerformanceTests.cpp index a944956641..01188128ff 100644 --- a/Code/Framework/AzCore/Tests/Math/Matrix3x3PerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Matrix3x3PerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Matrix3x3Tests.cpp b/Code/Framework/AzCore/Tests/Math/Matrix3x3Tests.cpp index b2586ff585..3a5c86a9f1 100644 --- a/Code/Framework/AzCore/Tests/Math/Matrix3x3Tests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Matrix3x3Tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp index 4252e79ce2..ef2c61647f 100644 --- a/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Matrix3x4PerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Matrix3x4Tests.cpp b/Code/Framework/AzCore/Tests/Math/Matrix3x4Tests.cpp index acd07a6e07..49640db0ee 100644 --- a/Code/Framework/AzCore/Tests/Math/Matrix3x4Tests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Matrix3x4Tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Matrix4x4PerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/Matrix4x4PerformanceTests.cpp index fb683edd39..f3eae72d49 100644 --- a/Code/Framework/AzCore/Tests/Math/Matrix4x4PerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Matrix4x4PerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Matrix4x4Tests.cpp b/Code/Framework/AzCore/Tests/Math/Matrix4x4Tests.cpp index b6ece79193..44b82ad23e 100644 --- a/Code/Framework/AzCore/Tests/Math/Matrix4x4Tests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Matrix4x4Tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/MatrixUtilsTests.cpp b/Code/Framework/AzCore/Tests/Math/MatrixUtilsTests.cpp index 0ee0d0282d..411c7c0bd5 100644 --- a/Code/Framework/AzCore/Tests/Math/MatrixUtilsTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/MatrixUtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/ObbPerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/ObbPerformanceTests.cpp index 61cd55c451..335c52e153 100644 --- a/Code/Framework/AzCore/Tests/Math/ObbPerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/ObbPerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/ObbTests.cpp b/Code/Framework/AzCore/Tests/Math/ObbTests.cpp index b2ed207574..16849b94f3 100644 --- a/Code/Framework/AzCore/Tests/Math/ObbTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/ObbTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/PlanePerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/PlanePerformanceTests.cpp index f714d2c337..b001e73cea 100644 --- a/Code/Framework/AzCore/Tests/Math/PlanePerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/PlanePerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/PlaneTests.cpp b/Code/Framework/AzCore/Tests/Math/PlaneTests.cpp index fb539dbdf9..bda89a353a 100644 --- a/Code/Framework/AzCore/Tests/Math/PlaneTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/PlaneTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/QuaternionPerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/QuaternionPerformanceTests.cpp index fd12353443..5f3cf7581c 100644 --- a/Code/Framework/AzCore/Tests/Math/QuaternionPerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/QuaternionPerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp b/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp index 38ee83851d..a3e29706fa 100644 --- a/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/QuaternionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/RandomTests.cpp b/Code/Framework/AzCore/Tests/Math/RandomTests.cpp index fb7ea1d0d4..7de7640ad6 100644 --- a/Code/Framework/AzCore/Tests/Math/RandomTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/RandomTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/SfmtTests.cpp b/Code/Framework/AzCore/Tests/Math/SfmtTests.cpp index ad925e41fd..7a70c2a399 100644 --- a/Code/Framework/AzCore/Tests/Math/SfmtTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/SfmtTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/ShapeIntersectionPerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/ShapeIntersectionPerformanceTests.cpp index a91b09481c..292d32687d 100644 --- a/Code/Framework/AzCore/Tests/Math/ShapeIntersectionPerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/ShapeIntersectionPerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp b/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp index 84e1e4e3db..56f90a1db4 100644 --- a/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/ShapeIntersectionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp b/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp index ee63266d65..1e7a6aa95f 100644 --- a/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/SimdMathTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/SphereTests.cpp b/Code/Framework/AzCore/Tests/Math/SphereTests.cpp index 8534561835..f56ff62fba 100644 --- a/Code/Framework/AzCore/Tests/Math/SphereTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/SphereTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/SplineTests.cpp b/Code/Framework/AzCore/Tests/Math/SplineTests.cpp index 9e6749ba0d..4ef1796715 100644 --- a/Code/Framework/AzCore/Tests/Math/SplineTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/SplineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/TransformPerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/TransformPerformanceTests.cpp index 16d6d00be7..a64472f9d6 100644 --- a/Code/Framework/AzCore/Tests/Math/TransformPerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/TransformPerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/TransformTests.cpp b/Code/Framework/AzCore/Tests/Math/TransformTests.cpp index 8606138476..77c6f76731 100644 --- a/Code/Framework/AzCore/Tests/Math/TransformTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/TransformTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Vector2PerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/Vector2PerformanceTests.cpp index 63a1718a40..c4205db156 100644 --- a/Code/Framework/AzCore/Tests/Math/Vector2PerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Vector2PerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Vector2Tests.cpp b/Code/Framework/AzCore/Tests/Math/Vector2Tests.cpp index 9ac3119d10..8d9c695efd 100644 --- a/Code/Framework/AzCore/Tests/Math/Vector2Tests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Vector2Tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Vector3PerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/Vector3PerformanceTests.cpp index 33cdca5847..c5e01c5d8a 100644 --- a/Code/Framework/AzCore/Tests/Math/Vector3PerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Vector3PerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Vector3Tests.cpp b/Code/Framework/AzCore/Tests/Math/Vector3Tests.cpp index abc8d417a1..3de78d749e 100644 --- a/Code/Framework/AzCore/Tests/Math/Vector3Tests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Vector3Tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Vector4PerformanceTests.cpp b/Code/Framework/AzCore/Tests/Math/Vector4PerformanceTests.cpp index a9a87c682c..b557443ff5 100644 --- a/Code/Framework/AzCore/Tests/Math/Vector4PerformanceTests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Vector4PerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Math/Vector4Tests.cpp b/Code/Framework/AzCore/Tests/Math/Vector4Tests.cpp index 6eb7244ffc..8f0ab69a7b 100644 --- a/Code/Framework/AzCore/Tests/Math/Vector4Tests.cpp +++ b/Code/Framework/AzCore/Tests/Math/Vector4Tests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Memory.cpp b/Code/Framework/AzCore/Tests/Memory.cpp index ce2c701858..2c3a272735 100644 --- a/Code/Framework/AzCore/Tests/Memory.cpp +++ b/Code/Framework/AzCore/Tests/Memory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Memory/AllocatorManager.cpp b/Code/Framework/AzCore/Tests/Memory/AllocatorManager.cpp index 26224d83d9..097f80bed2 100644 --- a/Code/Framework/AzCore/Tests/Memory/AllocatorManager.cpp +++ b/Code/Framework/AzCore/Tests/Memory/AllocatorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp b/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp index e567abf21d..00b7d5d6e2 100644 --- a/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp +++ b/Code/Framework/AzCore/Tests/Memory/HphaSchema.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Memory/HphaSchemaErrorDetection.cpp b/Code/Framework/AzCore/Tests/Memory/HphaSchemaErrorDetection.cpp index f6d3eb25b8..86ec9ec4b5 100644 --- a/Code/Framework/AzCore/Tests/Memory/HphaSchemaErrorDetection.cpp +++ b/Code/Framework/AzCore/Tests/Memory/HphaSchemaErrorDetection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp b/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp index dd45e0ba44..fbad1eceaa 100644 --- a/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp +++ b/Code/Framework/AzCore/Tests/Memory/LeakDetection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Memory/MallocSchema.cpp b/Code/Framework/AzCore/Tests/Memory/MallocSchema.cpp index 8fd952900a..977db01892 100644 --- a/Code/Framework/AzCore/Tests/Memory/MallocSchema.cpp +++ b/Code/Framework/AzCore/Tests/Memory/MallocSchema.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Module.cpp b/Code/Framework/AzCore/Tests/Module.cpp index 1a0e62fc02..4a2c514c0b 100644 --- a/Code/Framework/AzCore/Tests/Module.cpp +++ b/Code/Framework/AzCore/Tests/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/ModuleTestBus.h b/Code/Framework/AzCore/Tests/ModuleTestBus.h index a8ccbc9f0c..5b9ababf4e 100644 --- a/Code/Framework/AzCore/Tests/ModuleTestBus.h +++ b/Code/Framework/AzCore/Tests/ModuleTestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp b/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp index 3331da61df..08286c91c7 100644 --- a/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Name/NameJsonSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Name/NameTests.cpp b/Code/Framework/AzCore/Tests/Name/NameTests.cpp index 80cd0c83d0..d55a081d9c 100644 --- a/Code/Framework/AzCore/Tests/Name/NameTests.cpp +++ b/Code/Framework/AzCore/Tests/Name/NameTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp b/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp index 7f536d2d9c..9383901ce5 100644 --- a/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp +++ b/Code/Framework/AzCore/Tests/OrderedEventBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/OrderedEventTests.cpp b/Code/Framework/AzCore/Tests/OrderedEventTests.cpp index 4d179f0059..090201048d 100644 --- a/Code/Framework/AzCore/Tests/OrderedEventTests.cpp +++ b/Code/Framework/AzCore/Tests/OrderedEventTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Outcome.cpp b/Code/Framework/AzCore/Tests/Outcome.cpp index 3c3cf56529..c5ea2d8582 100644 --- a/Code/Framework/AzCore/Tests/Outcome.cpp +++ b/Code/Framework/AzCore/Tests/Outcome.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Patching.cpp b/Code/Framework/AzCore/Tests/Patching.cpp index e2da5daeb2..028d4358a9 100644 --- a/Code/Framework/AzCore/Tests/Patching.cpp +++ b/Code/Framework/AzCore/Tests/Patching.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Android/Tests/UtilsTests_Android.cpp b/Code/Framework/AzCore/Tests/Platform/Android/Tests/UtilsTests_Android.cpp index 70d8f973ee..36c130ce12 100644 --- a/Code/Framework/AzCore/Tests/Platform/Android/Tests/UtilsTests_Android.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Android/Tests/UtilsTests_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Android/platform_android.cmake b/Code/Framework/AzCore/Tests/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzCore/Tests/Platform/Android/platform_android.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/Android/platform_android_files.cmake b/Code/Framework/AzCore/Tests/Platform/Android/platform_android_files.cmake index 3e413f26f9..5e3a421170 100644 --- a/Code/Framework/AzCore/Tests/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/Common/Apple/Tests/UtilsTests_Apple.cpp b/Code/Framework/AzCore/Tests/Platform/Common/Apple/Tests/UtilsTests_Apple.cpp index 48e7aa4e01..e602c52b14 100644 --- a/Code/Framework/AzCore/Tests/Platform/Common/Apple/Tests/UtilsTests_Apple.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Common/Apple/Tests/UtilsTests_Apple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Common/UnixLike/Tests/UtilsTests_UnixLike.cpp b/Code/Framework/AzCore/Tests/Platform/Common/UnixLike/Tests/UtilsTests_UnixLike.cpp index e069cca2da..87b8e550ab 100644 --- a/Code/Framework/AzCore/Tests/Platform/Common/UnixLike/Tests/UtilsTests_UnixLike.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Common/UnixLike/Tests/UtilsTests_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Common/WinAPI/Tests/UtilsTests_WinAPI.cpp b/Code/Framework/AzCore/Tests/Platform/Common/WinAPI/Tests/UtilsTests_WinAPI.cpp index 2c34988049..1bcd7e8600 100644 --- a/Code/Framework/AzCore/Tests/Platform/Common/WinAPI/Tests/UtilsTests_WinAPI.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Common/WinAPI/Tests/UtilsTests_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Linux/Tests/UtilsTests_Linux.cpp b/Code/Framework/AzCore/Tests/Platform/Linux/Tests/UtilsTests_Linux.cpp index 9068176264..d0097920ac 100644 --- a/Code/Framework/AzCore/Tests/Platform/Linux/Tests/UtilsTests_Linux.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Linux/Tests/UtilsTests_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux.cmake b/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux_files.cmake b/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux_files.cmake index 80de53083d..9ac60b9ff9 100644 --- a/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac.cmake b/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac_files.cmake b/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac_files.cmake index 4315ba2283..766f781ff0 100644 --- a/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp index 22a1c080cf..e654ef4aa3 100644 --- a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/IO/Streamer/StorageDriveTests_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Memory/OverrunDetectionAllocator_Windows.cpp b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Memory/OverrunDetectionAllocator_Windows.cpp index 06bce20c9b..bf9d0867ac 100644 --- a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Memory/OverrunDetectionAllocator_Windows.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Memory/OverrunDetectionAllocator_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Serialization_Windows.cpp b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Serialization_Windows.cpp index c535158868..6d51a967ac 100644 --- a/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Serialization_Windows.cpp +++ b/Code/Framework/AzCore/Tests/Platform/Windows/Tests/Serialization_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows.cmake b/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows_files.cmake b/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows_files.cmake index c1d20c7f99..b3a8c2b1fd 100644 --- a/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/AzCore/Tests/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios.cmake b/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios.cmake +++ b/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios_files.cmake b/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios_files.cmake index 4315ba2283..766f781ff0 100644 --- a/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/AzCore/Tests/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/RTTI/TypeSafeIntegralTests.cpp b/Code/Framework/AzCore/Tests/RTTI/TypeSafeIntegralTests.cpp index b4df7c2c7c..e7e7314e68 100644 --- a/Code/Framework/AzCore/Tests/RTTI/TypeSafeIntegralTests.cpp +++ b/Code/Framework/AzCore/Tests/RTTI/TypeSafeIntegralTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/RemappableId.cpp b/Code/Framework/AzCore/Tests/RemappableId.cpp index 9b4827c764..8f645dd302 100644 --- a/Code/Framework/AzCore/Tests/RemappableId.cpp +++ b/Code/Framework/AzCore/Tests/RemappableId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Rtti.cpp b/Code/Framework/AzCore/Tests/Rtti.cpp index b53685bf48..c6201841ff 100644 --- a/Code/Framework/AzCore/Tests/Rtti.cpp +++ b/Code/Framework/AzCore/Tests/Rtti.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Script.cpp b/Code/Framework/AzCore/Tests/Script.cpp index 10f6f574bc..82d5d87ec9 100644 --- a/Code/Framework/AzCore/Tests/Script.cpp +++ b/Code/Framework/AzCore/Tests/Script.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/ScriptMath.cpp b/Code/Framework/AzCore/Tests/ScriptMath.cpp index 10399d8e62..7c0291e8c9 100644 --- a/Code/Framework/AzCore/Tests/ScriptMath.cpp +++ b/Code/Framework/AzCore/Tests/ScriptMath.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/ScriptProperty.cpp b/Code/Framework/AzCore/Tests/ScriptProperty.cpp index 247511bf28..7b09309df5 100644 --- a/Code/Framework/AzCore/Tests/ScriptProperty.cpp +++ b/Code/Framework/AzCore/Tests/ScriptProperty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization.cpp b/Code/Framework/AzCore/Tests/Serialization.cpp index 3092d49c6d..43495bd4a6 100644 --- a/Code/Framework/AzCore/Tests/Serialization.cpp +++ b/Code/Framework/AzCore/Tests/Serialization.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp index e63db07bcb..fe4f311a6f 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/ArraySerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.cpp index aa5f40ba35..5b7e7a7973 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.h b/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.h index 4e2a4f7695..0936f6d1c5 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerTests.cpp index ff6274750d..20cff97604 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/BaseJsonSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp index 3abeb76a96..48ad7d838f 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/BasicContainerSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/BoolSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/BoolSerializerTests.cpp index 621722b9c3..d17fc3d6d7 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/BoolSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/BoolSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/ByteStreamSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/ByteStreamSerializerTests.cpp index 0b908b0ae8..d14ced50d5 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/ByteStreamSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/ByteStreamSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/ColorSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/ColorSerializerTests.cpp index 0199608d09..bd9f516db3 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/ColorSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/ColorSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/DoubleSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/DoubleSerializerTests.cpp index d9eb929caa..e6506e7b7a 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/DoubleSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/DoubleSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp index 36165aeff1..560acaf72e 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/IntSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonRegistrationContextTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/JsonRegistrationContextTests.cpp index 6bff06ece0..02d4b96703 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonRegistrationContextTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonRegistrationContextTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationMetadataTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationMetadataTests.cpp index c7896d39d7..5d09673c7a 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationMetadataTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationMetadataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationResultTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationResultTests.cpp index 4b622439a5..a49b19a4d8 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationResultTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationResultTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp index 88b73847a9..7af5f37257 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.h b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.h index 8df258a3fd..13c77f5da5 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializationTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerConformityTests.h b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerConformityTests.h index b2ab3df6b2..b5900b8356 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerConformityTests.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerConformityTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerMock.h b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerMock.h index 43b4532b0a..f9512b36a4 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerMock.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/JsonSerializerMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp index 70b8ae7537..1c690aad71 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/MapSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp index d942fd022e..9494600d28 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/MathMatrixSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/MathVectorSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/MathVectorSerializerTests.cpp index 7c1b894b24..e0e49ab757 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/MathVectorSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/MathVectorSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/SmartPointerSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/SmartPointerSerializerTests.cpp index 4126867bdf..e26dab92d9 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/SmartPointerSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/SmartPointerSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp index f56e7f168c..c0c3d68c7a 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/StringSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases.h b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases.h index 1803b9611e..809769654a 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.cpp index 5451af137e..f6b78ccaa5 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.h b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.h index 5918306dfb..0d80160edc 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.cpp index fb42c6d484..df1a768a4a 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.h b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.h index b291e11ace..88c0371d90 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Classes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Compare.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Compare.cpp index b6cc9364ae..7aaf8e2be4 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Compare.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Compare.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Enum.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Enum.cpp index d8a87e499d..456550ee50 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Enum.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Enum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Patching.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Patching.cpp index 47fa5b071a..ae2dea4e48 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Patching.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Patching.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.cpp index 3bcb77c668..fbb06bb714 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.h b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.h index 9e01accae5..2142b1c041 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.h +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_Pointers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_TypeId.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_TypeId.cpp index 7773d2fafd..58fac46e73 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_TypeId.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TestCases_TypeId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TransformSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TransformSerializerTests.cpp index fa547d7e42..94661c9cf7 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TransformSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TransformSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/TupleSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/TupleSerializerTests.cpp index fd492c9a24..40c6b36d34 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/TupleSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/TupleSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/UnorderedSetSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/UnorderedSetSerializerTests.cpp index 3870f54cae..10eabe10c7 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/UnorderedSetSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/UnorderedSetSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/UnsupportedTypesSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/UnsupportedTypesSerializerTests.cpp index ee5919d8a1..b9814ff384 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/UnsupportedTypesSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/UnsupportedTypesSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Serialization/Json/UuidSerializerTests.cpp b/Code/Framework/AzCore/Tests/Serialization/Json/UuidSerializerTests.cpp index af0877be37..95f9f515bb 100644 --- a/Code/Framework/AzCore/Tests/Serialization/Json/UuidSerializerTests.cpp +++ b/Code/Framework/AzCore/Tests/Serialization/Json/UuidSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/SerializeContextFixture.h b/Code/Framework/AzCore/Tests/SerializeContextFixture.h index e83a10258f..0f68fe3ee8 100644 --- a/Code/Framework/AzCore/Tests/SerializeContextFixture.h +++ b/Code/Framework/AzCore/Tests/SerializeContextFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Settings/CommandLineTests.cpp b/Code/Framework/AzCore/Tests/Settings/CommandLineTests.cpp index 17371b5437..43153aac73 100644 --- a/Code/Framework/AzCore/Tests/Settings/CommandLineTests.cpp +++ b/Code/Framework/AzCore/Tests/Settings/CommandLineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp b/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp index 99f4be2679..21953f7ea2 100644 --- a/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp +++ b/Code/Framework/AzCore/Tests/Settings/SettingsRegistryConsoleUtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Settings/SettingsRegistryScriptUtilsTests.cpp b/Code/Framework/AzCore/Tests/Settings/SettingsRegistryScriptUtilsTests.cpp index a89dcaef86..e3015cf661 100644 --- a/Code/Framework/AzCore/Tests/Settings/SettingsRegistryScriptUtilsTests.cpp +++ b/Code/Framework/AzCore/Tests/Settings/SettingsRegistryScriptUtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/SettingsRegistryMergeUtilsTests.cpp b/Code/Framework/AzCore/Tests/SettingsRegistryMergeUtilsTests.cpp index b8d44d9528..b9aa383fc1 100644 --- a/Code/Framework/AzCore/Tests/SettingsRegistryMergeUtilsTests.cpp +++ b/Code/Framework/AzCore/Tests/SettingsRegistryMergeUtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/SettingsRegistryTests.cpp b/Code/Framework/AzCore/Tests/SettingsRegistryTests.cpp index 4d2cf75b6a..f3f69803ee 100644 --- a/Code/Framework/AzCore/Tests/SettingsRegistryTests.cpp +++ b/Code/Framework/AzCore/Tests/SettingsRegistryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Slice.cpp b/Code/Framework/AzCore/Tests/Slice.cpp index dace07321c..f80c2e3a70 100644 --- a/Code/Framework/AzCore/Tests/Slice.cpp +++ b/Code/Framework/AzCore/Tests/Slice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/State.cpp b/Code/Framework/AzCore/Tests/State.cpp index fc17cfa553..87530a0613 100644 --- a/Code/Framework/AzCore/Tests/State.cpp +++ b/Code/Framework/AzCore/Tests/State.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/StatisticalProfiler.cpp b/Code/Framework/AzCore/Tests/StatisticalProfiler.cpp index b130916ed2..cf4b6b0205 100644 --- a/Code/Framework/AzCore/Tests/StatisticalProfiler.cpp +++ b/Code/Framework/AzCore/Tests/StatisticalProfiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Statistics.cpp b/Code/Framework/AzCore/Tests/Statistics.cpp index 2f96200747..cd33c85320 100644 --- a/Code/Framework/AzCore/Tests/Statistics.cpp +++ b/Code/Framework/AzCore/Tests/Statistics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp b/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp index 1c8072d11a..43474bce56 100644 --- a/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp +++ b/Code/Framework/AzCore/Tests/Streamer/BlockCacheTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/DedicatedCacheTests.cpp b/Code/Framework/AzCore/Tests/Streamer/DedicatedCacheTests.cpp index f230889754..f9fb4a05ea 100644 --- a/Code/Framework/AzCore/Tests/Streamer/DedicatedCacheTests.cpp +++ b/Code/Framework/AzCore/Tests/Streamer/DedicatedCacheTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/FullDecompressorTests.cpp b/Code/Framework/AzCore/Tests/Streamer/FullDecompressorTests.cpp index 457613a747..669baf02e6 100644 --- a/Code/Framework/AzCore/Tests/Streamer/FullDecompressorTests.cpp +++ b/Code/Framework/AzCore/Tests/Streamer/FullDecompressorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/IStreamerMock.h b/Code/Framework/AzCore/Tests/Streamer/IStreamerMock.h index 6dffee40b3..1db0a11136 100644 --- a/Code/Framework/AzCore/Tests/Streamer/IStreamerMock.h +++ b/Code/Framework/AzCore/Tests/Streamer/IStreamerMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/IStreamerTypesMock.h b/Code/Framework/AzCore/Tests/Streamer/IStreamerTypesMock.h index a37142a1a1..20a19138d1 100644 --- a/Code/Framework/AzCore/Tests/Streamer/IStreamerTypesMock.h +++ b/Code/Framework/AzCore/Tests/Streamer/IStreamerTypesMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/ReadSplitterTests.cpp b/Code/Framework/AzCore/Tests/Streamer/ReadSplitterTests.cpp index 0199752a70..66e1dd7241 100644 --- a/Code/Framework/AzCore/Tests/Streamer/ReadSplitterTests.cpp +++ b/Code/Framework/AzCore/Tests/Streamer/ReadSplitterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/SchedulerTests.cpp b/Code/Framework/AzCore/Tests/Streamer/SchedulerTests.cpp index 25ff00a749..d29855096f 100644 --- a/Code/Framework/AzCore/Tests/Streamer/SchedulerTests.cpp +++ b/Code/Framework/AzCore/Tests/Streamer/SchedulerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h index 2e090ff394..4445280d29 100644 --- a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h +++ b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryConformityTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryMock.h b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryMock.h index 7d82904d81..e4e90497aa 100644 --- a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryMock.h +++ b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryTests.cpp b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryTests.cpp index 37497530bc..ff685ede59 100644 --- a/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryTests.cpp +++ b/Code/Framework/AzCore/Tests/Streamer/StreamStackEntryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/StreamerTests.cpp b/Code/Framework/AzCore/Tests/StreamerTests.cpp index 0c3f783e57..15cd58055d 100644 --- a/Code/Framework/AzCore/Tests/StreamerTests.cpp +++ b/Code/Framework/AzCore/Tests/StreamerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/StringFunc.cpp b/Code/Framework/AzCore/Tests/StringFunc.cpp index 76e07c0976..5ab60fa1d1 100644 --- a/Code/Framework/AzCore/Tests/StringFunc.cpp +++ b/Code/Framework/AzCore/Tests/StringFunc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/SystemFile.cpp b/Code/Framework/AzCore/Tests/SystemFile.cpp index cdc85643a4..127214dfe8 100644 --- a/Code/Framework/AzCore/Tests/SystemFile.cpp +++ b/Code/Framework/AzCore/Tests/SystemFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/TestCatalog.cpp b/Code/Framework/AzCore/Tests/TestCatalog.cpp index 8f64737fc8..09ef24bd95 100644 --- a/Code/Framework/AzCore/Tests/TestCatalog.cpp +++ b/Code/Framework/AzCore/Tests/TestCatalog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/TestCatalog.h b/Code/Framework/AzCore/Tests/TestCatalog.h index d37d054aee..3c74b5fbf7 100644 --- a/Code/Framework/AzCore/Tests/TestCatalog.h +++ b/Code/Framework/AzCore/Tests/TestCatalog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/TickBusTest.cpp b/Code/Framework/AzCore/Tests/TickBusTest.cpp index df3e2d51ca..b9ffd4c984 100644 --- a/Code/Framework/AzCore/Tests/TickBusTest.cpp +++ b/Code/Framework/AzCore/Tests/TickBusTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/TimeDataStatistics.cpp b/Code/Framework/AzCore/Tests/TimeDataStatistics.cpp index dd0eb0b320..ef08987bad 100644 --- a/Code/Framework/AzCore/Tests/TimeDataStatistics.cpp +++ b/Code/Framework/AzCore/Tests/TimeDataStatistics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/UUIDTests.cpp b/Code/Framework/AzCore/Tests/UUIDTests.cpp index d511aac16f..d76a20aa93 100644 --- a/Code/Framework/AzCore/Tests/UUIDTests.cpp +++ b/Code/Framework/AzCore/Tests/UUIDTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/XML.cpp b/Code/Framework/AzCore/Tests/XML.cpp index 1ebee905a6..9e15c22572 100644 --- a/Code/Framework/AzCore/Tests/XML.cpp +++ b/Code/Framework/AzCore/Tests/XML.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzCore/Tests/azcoretestdll_files.cmake b/Code/Framework/AzCore/Tests/azcoretestdll_files.cmake index 09b69a5a48..7dadc2c09a 100644 --- a/Code/Framework/AzCore/Tests/azcoretestdll_files.cmake +++ b/Code/Framework/AzCore/Tests/azcoretestdll_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/azcoretests_files.cmake b/Code/Framework/AzCore/Tests/azcoretests_files.cmake index 1a93847e3b..3d2e2a645f 100644 --- a/Code/Framework/AzCore/Tests/azcoretests_files.cmake +++ b/Code/Framework/AzCore/Tests/azcoretests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzCore/Tests/aztestshared_files.cmake b/Code/Framework/AzCore/Tests/aztestshared_files.cmake index ca6b57f8da..a905713baf 100644 --- a/Code/Framework/AzCore/Tests/aztestshared_files.cmake +++ b/Code/Framework/AzCore/Tests/aztestshared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h b/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h index 3d300dd1db..6515471c00 100644 --- a/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h +++ b/Code/Framework/AzFramework/AzFramework/API/ApplicationAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Application/Application.cpp b/Code/Framework/AzFramework/AzFramework/Application/Application.cpp index bb2e1ec050..07f4865863 100644 --- a/Code/Framework/AzFramework/AzFramework/Application/Application.cpp +++ b/Code/Framework/AzFramework/AzFramework/Application/Application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Application/Application.h b/Code/Framework/AzFramework/AzFramework/Application/Application.h index 548c20fe02..4bdd634e53 100644 --- a/Code/Framework/AzFramework/AzFramework/Application/Application.h +++ b/Code/Framework/AzFramework/AzFramework/Application/Application.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp b/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp index 092dfc9527..92d2e15cc0 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/Archive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/Archive.h b/Code/Framework/AzFramework/AzFramework/Archive/Archive.h index b1a849b23d..15ac084e00 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/Archive.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/Archive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveBus.h b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveBus.h index dfe19ae6a0..414f9e5480 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveBus.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp index 9fdd2c11d7..3cee77abd8 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.h b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.h index 2b0649bc3a..a4a685c513 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFileIO.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.cpp index 595e40ac8f..3d74c9126f 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.h b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.h index 3777eec4a9..88d7dc7d0d 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveFindData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveVars.h b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveVars.h index 181c6e619f..171c644da9 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ArchiveVars.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ArchiveVars.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/Codec.h b/Code/Framework/AzFramework/AzFramework/Archive/Codec.h index 1ec4de2914..75ba0c4f4e 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/Codec.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/Codec.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/IArchive.h b/Code/Framework/AzFramework/AzFramework/Archive/IArchive.h index 6c81232f52..3cee8309aa 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/IArchive.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/IArchive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/INestedArchive.h b/Code/Framework/AzFramework/AzFramework/Archive/INestedArchive.h index f88959bad1..77419cce0a 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/INestedArchive.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/INestedArchive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.cpp b/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.cpp index db9ab4332c..a66d6ff35b 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.h b/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.h index 49bcb61361..84241b9876 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/MissingFileReport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.cpp b/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.cpp index 3a24c6f109..6cebe7f38a 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.h b/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.h index af4f10d656..551f7da5b6 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/NestedArchive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp index 48895654bc..c9686b20c0 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.h b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.h index 5e0762b99d..09e4db405d 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.cpp index d166320136..c90f7d48bd 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.h b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.h index d5a0b70fcd..ff70ab97a4 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirCacheFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.cpp index ca71a40e79..120886781c 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.h b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.h index 1cef4ea0b5..92f3c82b10 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirFind.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.cpp index 08da199a87..34f823d3b1 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.h b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.h index c2177a9f39..3cfb36c690 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp index 787afbbb61..7784fddb4f 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.h b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.h index 0327ffba7d..17d2e58322 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirStructures.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.cpp b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.cpp index 2255c6b331..d1190849d1 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.cpp +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.h b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.h index 7b94bd5bcc..7697269a2f 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipDirTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Archive/ZipFileFormat.h b/Code/Framework/AzFramework/AzFramework/Archive/ZipFileFormat.h index 624e3b55b4..5c19745138 100644 --- a/Code/Framework/AzFramework/AzFramework/Archive/ZipFileFormat.h +++ b/Code/Framework/AzFramework/AzFramework/Archive/ZipFileFormat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.cpp index cccd0ce56b..a9b67738ac 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.h index ef9e325a2c..47f6867ebd 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetBundleManifest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.cpp index d471225a58..91f0e5e2b9 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.h index 5ea7e284a8..0473d9b7e0 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogBus.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogBus.h index dfdf1337eb..718f7d933a 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogBus.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.cpp index ce4ffc31ca..620aafdc2f 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.h index de187f0ae5..f960731472 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetCatalogComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.cpp index e1e56936cf..632087504e 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.h index 5cc144690d..0182f32ce0 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetProcessorMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.cpp index dba1fed6f4..2707c9e853 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.h index 9ea8532520..16d76fd39f 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetRegistry.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.cpp index d330f80dd4..1694b36d7f 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.h index c5a1784833..ee2c8caccf 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetSeedList.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemBus.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemBus.h index 6598876efd..1ff94d2383 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemBus.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.cpp index 5b354bedce..fb92947443 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.h index f1637ec3e8..83de66ab89 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponentHelper.cpp b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponentHelper.cpp index ffd39c50c0..5c92ab08d4 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponentHelper.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemComponentHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemTypes.h b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemTypes.h index eb6cd5d676..168033fab7 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemTypes.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/AssetSystemTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.cpp b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.cpp index 9d4d7f3a4b..091d074f69 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.h b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.h index 8a539bdbc6..64e51bd30e 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp index 5bad82e8d8..988063bab1 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.h b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.h index b20acf0792..86f17b2f9b 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.cpp b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.cpp index 5bf21b205a..79d4780375 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.h b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.h index 53e598b7f5..11130c6926 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/Benchmark/BenchmarkSettingsAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/CfgFileAsset.h b/Code/Framework/AzFramework/AzFramework/Asset/CfgFileAsset.h index 5a294e5289..429e244ac8 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/CfgFileAsset.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/CfgFileAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.cpp b/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.cpp index 64de2b0817..bc892aef62 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.h b/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.h index a5d660096d..402417c902 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/CustomAssetTypeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.cpp b/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.cpp index c2623cb180..c2a68ae33b 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.h b/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.h index d083e30161..1f296edeb7 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/FileTagAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/GenericAssetHandler.h b/Code/Framework/AzFramework/AzFramework/Asset/GenericAssetHandler.h index 23d61fad5a..1fd13c59a3 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/GenericAssetHandler.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/GenericAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/NetworkAssetNotification_private.h b/Code/Framework/AzFramework/AzFramework/Asset/NetworkAssetNotification_private.h index 160a8a5f23..3b8ce4bb48 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/NetworkAssetNotification_private.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/NetworkAssetNotification_private.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.cpp b/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.cpp index f3037bd533..c36fd0fa71 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.h b/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.h index 0c4b5b6d40..aecdb45297 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/SimpleAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.cpp b/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.cpp index bc53983dd9..1da6872f19 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.cpp +++ b/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.h b/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.h index ca56e28cfe..d7c050f107 100644 --- a/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.h +++ b/Code/Framework/AzFramework/AzFramework/Asset/XmlSchemaAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp b/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp index 2af5edd7cd..80cb164a84 100644 --- a/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp +++ b/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.h b/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.h index d9069584f7..80bb8d90ae 100644 --- a/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.h +++ b/Code/Framework/AzFramework/AzFramework/AzFrameworkModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/CommandLine/CommandLine.h b/Code/Framework/AzFramework/AzFramework/CommandLine/CommandLine.h index 76f4879371..0cf54959c8 100644 --- a/Code/Framework/AzFramework/AzFramework/CommandLine/CommandLine.h +++ b/Code/Framework/AzFramework/AzFramework/CommandLine/CommandLine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/CommandLine/CommandRegistrationBus.h b/Code/Framework/AzFramework/AzFramework/CommandLine/CommandRegistrationBus.h index 9deb10e3a7..cab90b360a 100644 --- a/Code/Framework/AzFramework/AzFramework/CommandLine/CommandRegistrationBus.h +++ b/Code/Framework/AzFramework/AzFramework/CommandLine/CommandRegistrationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.cpp b/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.cpp index 84d6b369ae..0ba430a5ea 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.h b/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.h index a165c10c79..bb6cffd4eb 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Components/AzFrameworkConfigurationSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/CameraBus.h b/Code/Framework/AzFramework/AzFramework/Components/CameraBus.h index 21f52814fb..2aef646cd6 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/CameraBus.h +++ b/Code/Framework/AzFramework/AzFramework/Components/CameraBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.h b/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.h index 86bb80faa8..7a07be7175 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.h +++ b/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.inl b/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.inl index 0b6033bf1c..fdd102fb8f 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.inl +++ b/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapter.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapterHelpers.h b/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapterHelpers.h index c37826fcc7..e761cb32ec 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapterHelpers.h +++ b/Code/Framework/AzFramework/AzFramework/Components/ComponentAdapterHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.cpp b/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.cpp index 191652415f..af1d27cd57 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.cpp +++ b/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.h b/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.h index 8504522f4e..4ad28226db 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.h +++ b/Code/Framework/AzFramework/AzFramework/Components/ConsoleBus.h @@ -1,6 +1,6 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/DeprecatedComponentsBus.h b/Code/Framework/AzFramework/AzFramework/Components/DeprecatedComponentsBus.h index cd78dad2b6..1c2d05c4e1 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/DeprecatedComponentsBus.h +++ b/Code/Framework/AzFramework/AzFramework/Components/DeprecatedComponentsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/EditorEntityEvents.h b/Code/Framework/AzFramework/AzFramework/Components/EditorEntityEvents.h index 0f8ec90434..d92cb8e22e 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/EditorEntityEvents.h +++ b/Code/Framework/AzFramework/AzFramework/Components/EditorEntityEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.cpp b/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.cpp index ca24fe15ed..1bd381b518 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.h b/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.h index 0c9676250a..8aabaa3873 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Components/NonUniformScaleComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.cpp b/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.cpp index 04fcb145bf..6a71619293 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.h b/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.h index 4cef0a1379..4844b15845 100644 --- a/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Components/TransformComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Debug/DebugCameraBus.h b/Code/Framework/AzFramework/AzFramework/Debug/DebugCameraBus.h index 248ba3a640..8fbbad4e14 100644 --- a/Code/Framework/AzFramework/AzFramework/Debug/DebugCameraBus.h +++ b/Code/Framework/AzFramework/AzFramework/Debug/DebugCameraBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.h b/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.h index 3dbe695948..c548ba6d1b 100644 --- a/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.h +++ b/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.inl b/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.inl index 1e0fc1bc02..bdea03c34a 100644 --- a/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.inl +++ b/Code/Framework/AzFramework/AzFramework/Dependency/Dependency.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Dependency/Version.h b/Code/Framework/AzFramework/AzFramework/Dependency/Version.h index 9b1a927586..ce9a65cc43 100644 --- a/Code/Framework/AzFramework/AzFramework/Dependency/Version.h +++ b/Code/Framework/AzFramework/AzFramework/Dependency/Version.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.cpp b/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.cpp index 84f163bdda..e4b96cb9af 100644 --- a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.h b/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.h index 9f6d85931b..079f22cdf0 100644 --- a/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Driller/DrillToFileComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Driller/DrillerConsoleAPI.h b/Code/Framework/AzFramework/AzFramework/Driller/DrillerConsoleAPI.h index 3ffb041c86..9bb73f4b59 100644 --- a/Code/Framework/AzFramework/AzFramework/Driller/DrillerConsoleAPI.h +++ b/Code/Framework/AzFramework/AzFramework/Driller/DrillerConsoleAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.cpp b/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.cpp index 04e1008604..0830530944 100644 --- a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.cpp +++ b/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.h b/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.h index b655a2cbd7..b50f3e4fcd 100644 --- a/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.h +++ b/Code/Framework/AzFramework/AzFramework/Driller/RemoteDrillerInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.cpp b/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.cpp index b21dce5cc2..5314e9ed30 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.cpp +++ b/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.h b/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.h index 0861dcce20..4775a17ab2 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/BehaviorEntity.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.cpp b/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.cpp index e8350b3714..77535a4cf1 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.cpp +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.h b/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.h index ab46c4a500..1b19b8cbff 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h b/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h index 92a76cca1f..e092fdef02 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityDebugDisplayBus.h b/Code/Framework/AzFramework/AzFramework/Entity/EntityDebugDisplayBus.h index b06289d6bd..0852535fa0 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityDebugDisplayBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityDebugDisplayBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h b/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h index 9d7a2d082a..5c5606a43d 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipService.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipServiceBus.h b/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipServiceBus.h index d9e249a066..ccf28e70ee 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipServiceBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/EntityOwnershipServiceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h index ca2b9413b4..726ed39916 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp index e48c9a43e1..4f4b67cf27 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h index 6e6d1c64c9..86672c3d47 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.cpp b/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.cpp index 4b2271d31e..61d2b2e653 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.cpp +++ b/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.h b/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.h index fa04bb0ac5..57cdacffee 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/PrefabEntityOwnershipService.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.cpp b/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.cpp index df32daa302..ac2c6239a0 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.cpp +++ b/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.h b/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.h index c1884ae80b..a696321f27 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipService.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipServiceBus.h b/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipServiceBus.h index bc84518829..664b87f943 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipServiceBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/SliceEntityOwnershipServiceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.cpp b/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.cpp index b4545a7c94..16f349df7d 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.cpp +++ b/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.h b/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.h index 70096b9a39..d31ae3afed 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipService.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipServiceBus.h b/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipServiceBus.h index 71716a086f..58559b07cf 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipServiceBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/SliceGameEntityOwnershipServiceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp index 99931640e8..a28a5eb3ba 100644 --- a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp +++ b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h index 4708491cb9..63b58eee76 100644 --- a/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h +++ b/Code/Framework/AzFramework/AzFramework/FileFunc/FileFunc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp b/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp index 63c39e6fff..74816ff80e 100644 --- a/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp +++ b/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.h b/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.h index 3452823557..b039a8985e 100644 --- a/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.h +++ b/Code/Framework/AzFramework/AzFramework/FileTag/FileTag.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/FileTag/FileTagBus.h b/Code/Framework/AzFramework/AzFramework/FileTag/FileTagBus.h index 5326b2e622..def44f01b6 100644 --- a/Code/Framework/AzFramework/AzFramework/FileTag/FileTagBus.h +++ b/Code/Framework/AzFramework/AzFramework/FileTag/FileTagBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.cpp b/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.cpp index 1c70482e5a..9a4fd786ac 100644 --- a/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.h b/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.h index 192a741fc0..44d6b8d9d7 100644 --- a/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.h +++ b/Code/Framework/AzFramework/AzFramework/FileTag/FileTagComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Font/FontInterface.h b/Code/Framework/AzFramework/AzFramework/Font/FontInterface.h index 7c8c118398..212c2ff8d3 100644 --- a/Code/Framework/AzFramework/AzFramework/Font/FontInterface.h +++ b/Code/Framework/AzFramework/AzFramework/Font/FontInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.cpp b/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.cpp index 90a2b0f612..a29e073b07 100644 --- a/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.cpp +++ b/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.h b/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.h index 0678ef52ee..ed30ddf4f2 100644 --- a/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.h +++ b/Code/Framework/AzFramework/AzFramework/Gem/GemInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp b/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp index 2baea30991..decf9f3cfb 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp +++ b/Code/Framework/AzFramework/AzFramework/IO/FileOperations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/FileOperations.h b/Code/Framework/AzFramework/AzFramework/IO/FileOperations.h index bcf9f7d03f..87d788fb34 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/FileOperations.h +++ b/Code/Framework/AzFramework/AzFramework/IO/FileOperations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp index 07408b251a..69bf6bb394 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp +++ b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h index e66de67346..e79ddb151a 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h +++ b/Code/Framework/AzFramework/AzFramework/IO/LocalFileIO.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp b/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp index d944404336..9a2aa841b2 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp +++ b/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.h b/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.h index 12d1942ed7..6afde7084f 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.h +++ b/Code/Framework/AzFramework/AzFramework/IO/RemoteFileIO.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.cpp b/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.cpp index 33da76e486..c20ddcfeb5 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.cpp +++ b/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.h b/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.h index b616512cd3..5f80c8fe44 100644 --- a/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.h +++ b/Code/Framework/AzFramework/AzFramework/IO/RemoteStorageDrive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/InGameUI/UiFrameworkBus.h b/Code/Framework/AzFramework/AzFramework/InGameUI/UiFrameworkBus.h index 4c85bdbaa0..c08af5e93b 100644 --- a/Code/Framework/AzFramework/AzFramework/InGameUI/UiFrameworkBus.h +++ b/Code/Framework/AzFramework/AzFramework/InGameUI/UiFrameworkBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputChannelNotificationBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputChannelNotificationBus.h index ef88b25469..111d3af5e4 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputChannelNotificationBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputChannelNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputDeviceNotificationBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputDeviceNotificationBus.h index 3ee20dc1a2..ea1e83e6f8 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputDeviceNotificationBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputDeviceNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputSystemNotificationBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputSystemNotificationBus.h index 1d224b7969..eab74e556c 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputSystemNotificationBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputSystemNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputTextNotificationBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputTextNotificationBus.h index 538123ea29..5a12960d5a 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputTextNotificationBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Notifications/InputTextNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputChannelRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputChannelRequestBus.h index 0788af4479..44f4661da7 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputChannelRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputChannelRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputDeviceRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputDeviceRequestBus.h index afcaae9c7e..a1ec4a05f0 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputDeviceRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputDeviceRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputHapticFeedbackRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputHapticFeedbackRequestBus.h index 3ec2b99810..86ac0b21d1 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputHapticFeedbackRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputHapticFeedbackRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputLightBarRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputLightBarRequestBus.h index 3051935680..c00d0a5b0e 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputLightBarRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputLightBarRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputMotionSensorRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputMotionSensorRequestBus.h index d325e761f0..bd0e2cdb8f 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputMotionSensorRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputMotionSensorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemCursorRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemCursorRequestBus.h index a565affc43..e4a9d2eb17 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemCursorRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemCursorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemRequestBus.h index 23a405d861..f0a6f01e58 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputTextEntryRequestBus.h b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputTextEntryRequestBus.h index 3dd35d2131..40cc2183c1 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputTextEntryRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Buses/Requests/InputTextEntryRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.cpp index a63ef6e998..c274bbf491 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.h index eb7dc25675..fc5dc2a7b2 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.cpp index 73905d5925..e6f383aae9 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.h index 1d4000dc60..3f928d72b3 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.cpp index 4e87b2b8b4..85f8a28b0b 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.h index 3bf21171cc..29079956aa 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAnalogWithPosition2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.cpp index 62b9ce2525..76d3eb192b 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.h index 61319bf309..3760ad6f8c 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis1D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.cpp index 0d3c026716..d7a2a781fc 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.h index 0008dd5c4f..5cbe20d5b6 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.cpp index d8675cfa5c..01bf5c1bd0 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.h index 81a46c8327..e13c0b25d9 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelAxis3D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.cpp index 4c392e2749..16b2060606 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.h index 45c39c5b64..418a6937d0 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDelta.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.cpp index c604414cee..cc0aa09941 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.h index de596354a9..e1b2f0baf9 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDeltaWithSharedPosition2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.cpp index f6ab0e7f9f..3c9c730749 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.h index 97b361efa8..7b0dc0ceb3 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigital.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.cpp index 7821c3d08d..997526d2f0 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.h index 7f0e930ede..5c6201bdd0 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithPosition2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.cpp index 99e09b2f41..811ddab1b7 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.h index c971eb1224..be802ef446 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedModifierKeyStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.cpp index 2b8a122e03..f28b2dabcc 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.h index f9525ea28e..403b789787 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelDigitalWithSharedPosition2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.cpp index fb59cc42de..1de6ca0ff9 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.h index fb4e470da4..f225d7eaaf 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.cpp b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.cpp index fd743fb85d..78dc4ed20d 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.h b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.h index 0884691aa4..023f3cebbb 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Channels/InputChannelQuaternion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.cpp b/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.cpp index 1252d2ebdc..06657e7073 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.h b/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.h index 3c0272e698..b8f3ae6d44 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Contexts/InputContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.cpp index 6a7f0341b1..b41007216c 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.h index 5301d1d22c..2a49078303 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp index 1edff2bfd7..8e842e3cff 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.h index 7df38929cf..8c0088419b 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDevice.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.cpp index 9979b1ed82..888b033520 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.h index 166e1ff6e1..3d2a46f415 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/InputDeviceId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.cpp index 013fc4bb3d..7625679d69 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.h index bfeaa5b9f1..ea0aa1beec 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboardWindowsScanCodes.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboardWindowsScanCodes.h index 4480c96b53..14835e5b57 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboardWindowsScanCodes.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboardWindowsScanCodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.cpp index d6b092e1f9..198ebb3bea 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.h index 229b2a3c6c..2e9a6de7ec 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Motion/InputDeviceMotion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.cpp index 93b450a990..a7180d7ec1 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.h index 79067640b0..7fc6a7a505 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Mouse/InputDeviceMouse.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.cpp index 0e50301c6a..3594e5a7b7 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.h index 152d03df95..0621fd55e6 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/Touch/InputDeviceTouch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.cpp b/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.cpp index 2ebaabcc49..8f3b83cba7 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.h b/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.h index 98c1642869..2f3f380a92 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.cpp b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.cpp index 7b25636bbf..1606ae6c29 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.h b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.h index 2339e92329..73e8b34d1f 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.cpp b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.cpp index 1d1fc01ffb..7c25638efc 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h index f87f1495e8..dac0b0ff2a 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.cpp b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.cpp index ad53160093..74a952626b 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.h b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.h index ea5fdaa3e8..cefaae0e0d 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputChannelEventSink.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.cpp b/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.cpp index 7db36a10ed..3fccaeeb32 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h b/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h index 31be7b90fa..fba7f43528 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Events/InputTextEventListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.cpp b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.cpp index 2ca678ed56..f002ba0a22 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.h b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.h index 86888e98cb..270814a5da 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMapping.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.cpp b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.cpp index e47ef6d5b7..5436935085 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.h b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.h index 0fe410589c..e67fc698c7 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingAnd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.cpp b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.cpp index d21c16457c..f84e9ca6df 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.h b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.h index 24da8f744e..627ab17ae7 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Mappings/InputMappingOr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.cpp b/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.cpp index 83559a5abc..68d4ea4d02 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.h b/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.h index f1ad60a752..8893c83fed 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Input/System/InputSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/User/LocalUserId.h b/Code/Framework/AzFramework/AzFramework/Input/User/LocalUserId.h index 852204d22c..95052cfa85 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/User/LocalUserId.h +++ b/Code/Framework/AzFramework/AzFramework/Input/User/LocalUserId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Utils/AdjustAnalogInputForDeadZone.h b/Code/Framework/AzFramework/AzFramework/Input/Utils/AdjustAnalogInputForDeadZone.h index e0ae39e2f9..f2fffc6e40 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Utils/AdjustAnalogInputForDeadZone.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Utils/AdjustAnalogInputForDeadZone.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Utils/IsAnyKeyOrButton.h b/Code/Framework/AzFramework/AzFramework/Input/Utils/IsAnyKeyOrButton.h index 8d2c07ca08..4379927081 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Utils/IsAnyKeyOrButton.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Utils/IsAnyKeyOrButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Input/Utils/ProcessRawInputEventQueues.h b/Code/Framework/AzFramework/AzFramework/Input/Utils/ProcessRawInputEventQueues.h index aa9d6d33c9..53426aedb5 100644 --- a/Code/Framework/AzFramework/AzFramework/Input/Utils/ProcessRawInputEventQueues.h +++ b/Code/Framework/AzFramework/AzFramework/Input/Utils/ProcessRawInputEventQueues.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/LogFile.cpp b/Code/Framework/AzFramework/AzFramework/Logging/LogFile.cpp index b9f3f97bc1..efb3920c38 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/LogFile.cpp +++ b/Code/Framework/AzFramework/AzFramework/Logging/LogFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/LogFile.h b/Code/Framework/AzFramework/AzFramework/Logging/LogFile.h index 7696d40fa6..fa2ea58b59 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/LogFile.h +++ b/Code/Framework/AzFramework/AzFramework/Logging/LogFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp b/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp index 70319bb3dd..1cd685a7d2 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.h b/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.h index c032e11299..9bcece00a8 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Logging/LoggingComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.cpp b/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.cpp index 557ca92a49..5a21940d42 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.cpp +++ b/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.h b/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.h index 21105b937f..6e5eba8e5f 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.h +++ b/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetNotificationBus.h b/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetNotificationBus.h index a3d76e2760..94cfc5e3da 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetNotificationBus.h +++ b/Code/Framework/AzFramework/AzFramework/Logging/MissingAssetNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.cpp b/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.cpp index 502be722f3..e49aa39d1b 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.cpp +++ b/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.h b/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.h index 201bd8f37d..3674f0e27c 100644 --- a/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.h +++ b/Code/Framework/AzFramework/AzFramework/Logging/StartupLogSinkReporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Math/InterpolationSample.h b/Code/Framework/AzFramework/AzFramework/Math/InterpolationSample.h index 25706d1399..e5f7b5b874 100644 --- a/Code/Framework/AzFramework/AzFramework/Math/InterpolationSample.h +++ b/Code/Framework/AzFramework/AzFramework/Math/InterpolationSample.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Metrics/MetricsPlainTextNameRegistration.h b/Code/Framework/AzFramework/AzFramework/Metrics/MetricsPlainTextNameRegistration.h index bca01f2b54..84eafebbe8 100644 --- a/Code/Framework/AzFramework/AzFramework/Metrics/MetricsPlainTextNameRegistration.h +++ b/Code/Framework/AzFramework/AzFramework/Metrics/MetricsPlainTextNameRegistration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp b/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp index 13f11ca9a1..f84c654e40 100644 --- a/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp +++ b/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.h b/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.h index 70069710b0..b370cca4ce 100644 --- a/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.h +++ b/Code/Framework/AzFramework/AzFramework/Network/AssetProcessorConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.cpp b/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.cpp index c180919d9f..47ec06cc14 100644 --- a/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.cpp +++ b/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.h b/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.h index f0087225a6..bbd9c3e4e2 100644 --- a/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.h +++ b/Code/Framework/AzFramework/AzFramework/Network/SocketConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.cpp index 6919907d83..970a272eea 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.h index 6bf6d961f6..d2c57b3666 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/AnimationConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Character.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Character.cpp index 6b85505d4f..59f492359d 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Character.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Character.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Character.h b/Code/Framework/AzFramework/AzFramework/Physics/Character.h index 543717dd8f..ac46120879 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Character.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Character.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/CharacterBus.h b/Code/Framework/AzFramework/AzFramework/Physics/CharacterBus.h index 16d3a840af..54cfbe3d7c 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/CharacterBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/CharacterBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/CharacterPhysicsDataBus.h b/Code/Framework/AzFramework/AzFramework/Physics/CharacterPhysicsDataBus.h index 9de7f9ae14..0336df246a 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/CharacterPhysicsDataBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/CharacterPhysicsDataBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.cpp b/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.cpp index 62ea06ef9c..f80e9724ce 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.h b/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.h index 6e69c0ec05..7320644373 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/ClassConverters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/ColliderComponentBus.h b/Code/Framework/AzFramework/AzFramework/Physics/ColliderComponentBus.h index 15ac58649b..58c220082a 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/ColliderComponentBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/ColliderComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.cpp index d5d0b63fab..040988f410 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.h b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.h index 52c0ace008..3dff9e00ff 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp index 36bd7178c1..8dd6add7aa 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h index 224a6cf93c..78a467e571 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp index f2ad065cad..93d0501076 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h index 73fa2eda41..fcbf424f6e 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionLayers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.cpp b/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.cpp index 1605d96742..773822bab4 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.h b/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.h index cf31a65c71..06ec1d3e6d 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/CollisionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsEvents.h b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsEvents.h index 492d57e736..b69888a952 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsEvents.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp index 92cd89a801..b09521346d 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.h b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.h index a953049d9e..af1f5947a4 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.cpp index edb17c15c7..9faef9ae06 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.h b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.h index 641d78062d..b2822f57de 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBody.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.cpp index de8d04d4d6..9a8adf04d8 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.h b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.h index 9f1008cbd0..964cf30dda 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyAutomation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.cpp index 0bd8649276..7c3fa42219 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.h b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.h index 4caa7e3d20..334478ad86 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSimulatedBodyEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsTypes.h b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsTypes.h index 410c3168be..db6f734e42 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsTypes.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Components/SimulatedBodyComponentBus.h b/Code/Framework/AzFramework/AzFramework/Physics/Components/SimulatedBodyComponentBus.h index abd65e35bf..9c1926040f 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Components/SimulatedBodyComponentBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Components/SimulatedBodyComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.cpp index 56d38b3407..460f74ffc4 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.h index 6c08c55d28..603832ebcb 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/CollisionConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.cpp index 5ae00e099e..e5ef00f900 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.h index a249fadca8..df0f43c0b7 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/RigidBodyConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.cpp index aef5cbe205..45fb3f5ddd 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.h index a9f520931f..88bb64df70 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SceneConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.cpp index 93d175fca4..021d255b6b 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.h index 03d2687c6e..8e448cc2d4 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SimulatedBodyConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.cpp index f5907271a7..e2aadbea8d 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.h index 7908659180..a04c6c6106 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/StaticRigidBodyConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.cpp index ced2137752..6cf7432929 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.h index 24e4160e1c..3fa90ad3ed 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Configuration/SystemConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Joint.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Joint.cpp index 96b75f4e3e..26708c52a6 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Joint.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Joint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Joint.h b/Code/Framework/AzFramework/AzFramework/Physics/Joint.h index a180fc830c..82a71a5a30 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Joint.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Joint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp index 8f3219a372..cdcdbe4655 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Material.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Material.h b/Code/Framework/AzFramework/AzFramework/Physics/Material.h index cdcdbcc332..bd15dd338e 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Material.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Material.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h b/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h index cd31b92825..1784bee93e 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/MaterialBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.cpp b/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.cpp index a688bac4d2..db70817d1b 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.h b/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.h index 3bd20c8462..2e80c6a2c1 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/NameConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.cpp b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.cpp index 3780ff7f59..7840d10a6c 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.h b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.h index ad7575346d..5ff40f5cae 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsScene.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.cpp b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.cpp index 2c13a7d071..4d41ab13b4 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.h b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.h index c3d3f91434..d35e784656 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/PhysicsSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/PropertyTypes.h b/Code/Framework/AzFramework/AzFramework/Physics/PropertyTypes.h index de9f0b3bc0..ebdcd06919 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/PropertyTypes.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/PropertyTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.cpp index 8534d28395..2a9046caa9 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.h b/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.h index 17f1e94526..7ae1137b66 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Ragdoll.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/RagdollPhysicsBus.h b/Code/Framework/AzFramework/AzFramework/Physics/RagdollPhysicsBus.h index 04f393e2ad..3c6ce75739 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/RagdollPhysicsBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/RagdollPhysicsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/RigidBody.h b/Code/Framework/AzFramework/AzFramework/Physics/RigidBody.h index bf7b4acaa1..5d829cc27c 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/RigidBody.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/RigidBody.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/RigidBodyBus.h b/Code/Framework/AzFramework/AzFramework/Physics/RigidBodyBus.h index 807240f7de..408f1a4978 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/RigidBodyBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/RigidBodyBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Shape.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Shape.cpp index 48d96aae0f..03351053aa 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Shape.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Shape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Shape.h b/Code/Framework/AzFramework/AzFramework/Physics/Shape.h index abd6988de1..8cf8837b57 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Shape.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Shape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.cpp b/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.cpp index fc29b64c8c..a122b48d91 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.h b/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.h index ccc230f2ed..032ca8f826 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/ShapeConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.cpp b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.cpp index eac976d0c5..ea014b9b5f 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.h b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.h index 871e48d737..cc90d79584 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/RigidBody.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.cpp b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.cpp index 5b522efe04..fd54ee01bd 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h index f1a7f20ee5..121ae11987 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/SimulatedBodies/StaticRigidBody.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/SystemBus.h b/Code/Framework/AzFramework/AzFramework/Physics/SystemBus.h index 8053618cc4..7e9004062b 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/SystemBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/SystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp index 809b4a2b0f..96fc946b84 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Utils.h b/Code/Framework/AzFramework/AzFramework/Physics/Utils.h index 119a1e4dd2..b479d6df44 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Utils.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Physics/WindBus.h b/Code/Framework/AzFramework/AzFramework/Physics/WindBus.h index 91577dc5a7..58d1ab544d 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/WindBus.h +++ b/Code/Framework/AzFramework/AzFramework/Physics/WindBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Platform/PlatformDefaults.h b/Code/Framework/AzFramework/AzFramework/Platform/PlatformDefaults.h index cbb179af9a..e6ebee9049 100644 --- a/Code/Framework/AzFramework/AzFramework/Platform/PlatformDefaults.h +++ b/Code/Framework/AzFramework/AzFramework/Platform/PlatformDefaults.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommon_fwd.h b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommon_fwd.h index cb51330a77..be6c34e798 100644 --- a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommon_fwd.h +++ b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommon_fwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.cpp b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.cpp index 3020d048ad..e8cd8d167f 100644 --- a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.cpp +++ b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.h b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.h index 6d0e0682f3..07df0b4d1d 100644 --- a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.h +++ b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.cpp b/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.cpp index e1621c1381..c76231fa4b 100644 --- a/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.cpp +++ b/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.h b/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.h index 909d173d9a..52de420e14 100644 --- a/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.h +++ b/Code/Framework/AzFramework/AzFramework/Process/ProcessWatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.cpp b/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.cpp index e1167368ec..206ab1edb3 100644 --- a/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.cpp +++ b/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.h b/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.h index a2a45de98b..b5814481a8 100644 --- a/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.h +++ b/Code/Framework/AzFramework/AzFramework/ProjectManager/ProjectManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.cpp b/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.cpp index b219e714d3..9327c1deff 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.h b/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.h index d43101f8d7..f8e57c7a78 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Render/GameIntersectorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionBus.h b/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionBus.h index 253fa5715d..dd9c807dad 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionBus.h +++ b/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionStructures.h b/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionStructures.h index 9b35eb4794..532b29fd47 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionStructures.h +++ b/Code/Framework/AzFramework/AzFramework/Render/GeometryIntersectionStructures.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/Intersector.cpp b/Code/Framework/AzFramework/AzFramework/Render/Intersector.cpp index ffd6fd0bc1..eb24b0937a 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/Intersector.cpp +++ b/Code/Framework/AzFramework/AzFramework/Render/Intersector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/Intersector.h b/Code/Framework/AzFramework/AzFramework/Render/Intersector.h index c079dbec1b..abffd8da8a 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/Intersector.h +++ b/Code/Framework/AzFramework/AzFramework/Render/Intersector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/IntersectorInterface.h b/Code/Framework/AzFramework/AzFramework/Render/IntersectorInterface.h index ab8cbe2abd..06148e5d6c 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/IntersectorInterface.h +++ b/Code/Framework/AzFramework/AzFramework/Render/IntersectorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Render/RenderSystemBus.h b/Code/Framework/AzFramework/AzFramework/Render/RenderSystemBus.h index 79e6fb4d4f..b6c17c1698 100644 --- a/Code/Framework/AzFramework/AzFramework/Render/RenderSystemBus.h +++ b/Code/Framework/AzFramework/AzFramework/Render/RenderSystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Scene/Scene.cpp b/Code/Framework/AzFramework/AzFramework/Scene/Scene.cpp index f45eefe9ca..ebc032896e 100644 --- a/Code/Framework/AzFramework/AzFramework/Scene/Scene.cpp +++ b/Code/Framework/AzFramework/AzFramework/Scene/Scene.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Scene/Scene.h b/Code/Framework/AzFramework/AzFramework/Scene/Scene.h index 8d5e2fae1e..65d9e3def0 100644 --- a/Code/Framework/AzFramework/AzFramework/Scene/Scene.h +++ b/Code/Framework/AzFramework/AzFramework/Scene/Scene.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Scene/Scene.inl b/Code/Framework/AzFramework/AzFramework/Scene/Scene.inl index 76aa9ac30a..e1fec8fef7 100644 --- a/Code/Framework/AzFramework/AzFramework/Scene/Scene.inl +++ b/Code/Framework/AzFramework/AzFramework/Scene/Scene.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.cpp b/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.cpp index 975b4c7940..4c18e8454e 100644 --- a/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.h b/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.h index 93454e5bba..08dfc3b176 100644 --- a/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemInterface.h b/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemInterface.h index 66adf07221..4f69de67c0 100644 --- a/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemInterface.h +++ b/Code/Framework/AzFramework/AzFramework/Scene/SceneSystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp b/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp index 419736b368..bf6ae9f659 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.h b/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.h index 75b4a01266..ac25e77363 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugAgentBus.h b/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugAgentBus.h index f1299b1d83..94ce590a5c 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugAgentBus.h +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugAgentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.cpp b/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.cpp index cbbd34cec0..da2ac10316 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.cpp +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.h b/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.h index e29c541d7d..586390917a 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.h +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptDebugMsgReflection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp b/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp index 63535fb9e1..dec20979fe 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.h b/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.h index 79a892801d..d2e3e6f268 100644 --- a/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.h +++ b/Code/Framework/AzFramework/AzFramework/Script/ScriptRemoteDebugging.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Session/ISessionHandlingRequests.h b/Code/Framework/AzFramework/AzFramework/Session/ISessionHandlingRequests.h index d4a0f4eb78..cc97e6095b 100644 --- a/Code/Framework/AzFramework/AzFramework/Session/ISessionHandlingRequests.h +++ b/Code/Framework/AzFramework/AzFramework/Session/ISessionHandlingRequests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.cpp b/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.cpp index 84937df424..c19aab33c6 100644 --- a/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.cpp +++ b/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.h b/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.h index e96e8c9a96..ae2896c337 100644 --- a/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.h +++ b/Code/Framework/AzFramework/AzFramework/Session/ISessionRequests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.cpp b/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.cpp index df7bb94815..bd36013438 100644 --- a/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.cpp +++ b/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.h b/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.h index 297136ba89..17f61317e6 100644 --- a/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.h +++ b/Code/Framework/AzFramework/AzFramework/Session/SessionConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Session/SessionNotifications.h b/Code/Framework/AzFramework/AzFramework/Session/SessionNotifications.h index 89fc422d33..f0f7e68cd4 100644 --- a/Code/Framework/AzFramework/AzFramework/Session/SessionNotifications.h +++ b/Code/Framework/AzFramework/AzFramework/Session/SessionNotifications.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Slice/SliceEntityBus.h b/Code/Framework/AzFramework/AzFramework/Slice/SliceEntityBus.h index bf42e08fae..80971cce26 100644 --- a/Code/Framework/AzFramework/AzFramework/Slice/SliceEntityBus.h +++ b/Code/Framework/AzFramework/AzFramework/Slice/SliceEntityBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationBus.h b/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationBus.h index 326716a750..6c224713de 100644 --- a/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationBus.h +++ b/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.cpp b/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.cpp index ed6bf110b4..6a94796d3a 100644 --- a/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.cpp +++ b/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.h b/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.h index 6191df18c6..e84ed103b1 100644 --- a/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.h +++ b/Code/Framework/AzFramework/AzFramework/Slice/SliceInstantiationTicket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/RootSpawnableInterface.h b/Code/Framework/AzFramework/AzFramework/Spawnable/RootSpawnableInterface.h index 3ddd9c7841..618e182fbb 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/RootSpawnableInterface.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/RootSpawnableInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.cpp index 1c81cb578a..dfbc9e23cf 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.h b/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.h index 1b41a43ea8..1c95a72d6c 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/Spawnable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.cpp index 453295f9a1..a7d8d0f7af 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.h b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.h index 1725416687..1fabb3a08a 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.cpp index 603b544a37..a25fbe500b 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.h b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.h index bd184c35d4..c598175382 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.cpp index 3f82ad4415..cd2c6b75c1 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.h b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.h index 19ee6aac3f..7b5c63e903 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.cpp index 3ca9d2e0e9..a0f5ba1012 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.h b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.h index acfe92a394..b62c28d9a3 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableEntitiesManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.cpp index ce52e0e5a3..8ee62cd5e9 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.h b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.h index 6466e89467..5a83f69bc2 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMetaData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.cpp index dcf73c08d6..86c7155657 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.h b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.h index 4777bc7305..7f1756517a 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableMonitor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp index fdb43df870..2cea83ed84 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.h b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.h index 829c3d4aaf..af47586a79 100644 --- a/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Spawnable/SpawnableSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.cpp b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.cpp index 008ec1dd9a..52547fe690 100644 --- a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.cpp +++ b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.h b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.h index a98700ea29..ef3b8d76ce 100644 --- a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.h +++ b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstall.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallNotifications.h b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallNotifications.h index 113139bcdb..c741f58f60 100644 --- a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallNotifications.h +++ b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallNotifications.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallRequests.h b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallRequests.h index 5492c1d812..d0b4787108 100644 --- a/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallRequests.h +++ b/Code/Framework/AzFramework/AzFramework/StreamingInstall/StreamingInstallRequests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/StringFunc/StringFunc.h b/Code/Framework/AzFramework/AzFramework/StringFunc/StringFunc.h index 0124514304..2762933835 100644 --- a/Code/Framework/AzFramework/AzFramework/StringFunc/StringFunc.h +++ b/Code/Framework/AzFramework/AzFramework/StringFunc/StringFunc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.cpp b/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.cpp index d0df4c6426..3a8512cb84 100644 --- a/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.cpp +++ b/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.h b/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.h index c201dd2564..d01d094e80 100644 --- a/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.h +++ b/Code/Framework/AzFramework/AzFramework/TargetManagement/NeighborhoodAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h index 73c7efdcd0..64e0c7fb06 100644 --- a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h +++ b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp index 76b39b1c4f..d5d7febda4 100644 --- a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.h b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.h index 0232090a09..ee7b62eca9 100644 --- a/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.h +++ b/Code/Framework/AzFramework/AzFramework/TargetManagement/TargetManagementComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.cpp b/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.cpp index 504b4077da..ca258d89b1 100644 --- a/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.cpp +++ b/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.h b/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.h index 31b3f9d4d1..74148b1e11 100644 --- a/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Terrain/TerrainDataRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Thermal/ThermalInfo.h b/Code/Framework/AzFramework/AzFramework/Thermal/ThermalInfo.h index 7487fb632e..60154aa790 100644 --- a/Code/Framework/AzFramework/AzFramework/Thermal/ThermalInfo.h +++ b/Code/Framework/AzFramework/AzFramework/Thermal/ThermalInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/UnitTest/FrameworkTestTypes.h b/Code/Framework/AzFramework/AzFramework/UnitTest/FrameworkTestTypes.h index 0fcce7aad5..046f60ae8e 100644 --- a/Code/Framework/AzFramework/AzFramework/UnitTest/FrameworkTestTypes.h +++ b/Code/Framework/AzFramework/AzFramework/UnitTest/FrameworkTestTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.cpp b/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.cpp index e9aa006e5b..d471d6070f 100644 --- a/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.cpp +++ b/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.h b/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.h index faf2fee15d..0059d3cf9e 100644 --- a/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.h +++ b/Code/Framework/AzFramework/AzFramework/UnitTest/TestDebugDisplayRequests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp index aa1d291276..387a701aa3 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h index 2969eac2dd..a56d6a1888 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraInput.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.cpp index f017e1397e..10e496a80d 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.h b/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.h index bc8927c587..e0c4660f85 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CameraState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.cpp index bffc590a3e..c25d1d2f25 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.h b/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.h index a6b2acb9ab..737c28bbe5 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ClickDetector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h b/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h index 3a3c87b84b..dc0fcca036 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/CursorState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/DisplayContextRequestBus.h b/Code/Framework/AzFramework/AzFramework/Viewport/DisplayContextRequestBus.h index 7cb93656a2..fbcf4dbe07 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/DisplayContextRequestBus.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/DisplayContextRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.h b/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.h index 686ee76363..fba7c7c1ef 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.inl b/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.inl index 5fca572796..009b14fa3e 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.inl +++ b/Code/Framework/AzFramework/AzFramework/Viewport/MultiViewportController.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.cpp index 5f3ace940c..a98686cc4e 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h b/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h index 6aeba7b53e..bb5d605628 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ScreenGeometry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.cpp index 1e8b3e62d9..da76660816 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.h b/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.h index 798ec708f7..3ad3d6c3bc 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/SingleViewportController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.cpp index d85b2d4649..96ee702aff 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.h b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.h index b3d7aff8d2..ba2d0a0bac 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.cpp index 32c10f6fa4..efd1f962bd 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.h b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.h index a5bc0aac0f..6108ba78a4 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportColors.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.cpp index 47774c57f2..baef3f234d 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.h b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.h index 3ab197dd39..ff051ff4ff 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerInterface.h b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerInterface.h index 977a2469f0..a5a45629bc 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerInterface.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.cpp index 677f0897f4..d6819dbde3 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.h b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.h index 7e4ff6b6b2..bdbe3e5505 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportControllerList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportId.h b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportId.h index cb9a493201..f480b6e7d4 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportId.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.cpp b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.cpp index ed222f2c5e..7bce9d148f 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.cpp +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.h b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.h index f3697a57a8..47bebe8ea1 100644 --- a/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.h +++ b/Code/Framework/AzFramework/AzFramework/Viewport/ViewportScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.cpp b/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.cpp index d09678054d..ad84ad73d8 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.cpp +++ b/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.h b/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.h index bca07c4fdf..7c533b6196 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.h +++ b/Code/Framework/AzFramework/AzFramework/Visibility/BoundsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/EntityBoundsUnionBus.h b/Code/Framework/AzFramework/AzFramework/Visibility/EntityBoundsUnionBus.h index 6406bfd7a6..93c0a32c98 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/EntityBoundsUnionBus.h +++ b/Code/Framework/AzFramework/AzFramework/Visibility/EntityBoundsUnionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp index 92b7bc566c..4f0c2ea70e 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp +++ b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.h b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.h index 2db0334611..8ef2529fdd 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.h +++ b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityBoundsUnionSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.cpp b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.cpp index 41b7835230..2427a84e85 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.cpp +++ b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.h b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.h index a55d4ad0a5..1b7d3c5076 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.h +++ b/Code/Framework/AzFramework/AzFramework/Visibility/EntityVisibilityQuery.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/IVisibilitySystem.h b/Code/Framework/AzFramework/AzFramework/Visibility/IVisibilitySystem.h index 14232c9bd1..ed70f91486 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/IVisibilitySystem.h +++ b/Code/Framework/AzFramework/AzFramework/Visibility/IVisibilitySystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.cpp b/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.cpp index 832f1ff4d7..d09f647820 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.cpp +++ b/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.h b/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.h index 85e5d08f80..d0d04b261e 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.h +++ b/Code/Framework/AzFramework/AzFramework/Visibility/OctreeSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp b/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp index a8a3259b90..1a4b09d060 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp +++ b/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.h b/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.h index 6e9380028b..0de6e12f7d 100644 --- a/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.h +++ b/Code/Framework/AzFramework/AzFramework/Visibility/VisibilityDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.cpp b/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.cpp index dbb60ce3ce..b92d8dc3bc 100644 --- a/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.cpp +++ b/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.h b/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.h index 1c9fed6448..0b53b5b31c 100644 --- a/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.h +++ b/Code/Framework/AzFramework/AzFramework/Windowing/NativeWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/Windowing/WindowBus.h b/Code/Framework/AzFramework/AzFramework/Windowing/WindowBus.h index 3b66587d9d..959d7cc07b 100644 --- a/Code/Framework/AzFramework/AzFramework/Windowing/WindowBus.h +++ b/Code/Framework/AzFramework/AzFramework/Windowing/WindowBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/AzFramework/azframework_files.cmake b/Code/Framework/AzFramework/AzFramework/azframework_files.cmake index da80539ad4..52fa422afe 100644 --- a/Code/Framework/AzFramework/AzFramework/azframework_files.cmake +++ b/Code/Framework/AzFramework/AzFramework/azframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/CMakeLists.txt b/Code/Framework/AzFramework/CMakeLists.txt index aea7b4733c..1f53472ff8 100644 --- a/Code/Framework/AzFramework/CMakeLists.txt +++ b/Code/Framework/AzFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Android.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Android.h index 2924b1b31d..1352215bd6 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Android.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Platform.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Platform.h index 3e501a6604..ccb87926de 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Platform.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/API/ApplicationAPI_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Application/Application_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Application/Application_Android.cpp index a0d95c2292..8855d86a0e 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Application/Application_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Application/Application_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Android.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Android.h index 4e7af2a913..1bb2789178 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Android.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Platform.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Platform.h index 988b3c3d7c..2feb1ffb7c 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Platform.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Archive/ArchiveVars_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Android.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Android.h index ae9754df1b..19aaa4f5c8 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Android.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Platform.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Platform.h index 081a18f834..eab85b808c 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Platform.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/AzFramework_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp index e7f4a076ae..080b33fc8e 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/IO/LocalFileIO_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Android.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Android.h index 65ae23a89a..8393164c3b 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Android.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h index 721719c720..535fd8c4a0 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Android.cpp index 2dab4582c2..88265f0725 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Android.cpp index 9b26c71601..35e1c5db23 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp index 394c1dc731..c5af803ae8 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Motion/InputDeviceMotion_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Android.cpp index 8a279ba94e..c7243a2ed0 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Touch/InputDeviceTouch_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Touch/InputDeviceTouch_Android.cpp index 43441bd9cc..d6b2af17a6 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Touch/InputDeviceTouch_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/Touch/InputDeviceTouch_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp index f59877b92e..3e1bcf2f9a 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/User/LocalUserId_Platform.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/User/LocalUserId_Platform.h index 8caf396d80..875323de40 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/User/LocalUserId_Platform.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Input/User/LocalUserId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommon.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommon.h index 08baab3289..05cee34949 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommon.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommunicator_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommunicator_Android.cpp index 53b2c09b7c..da4ad3285f 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommunicator_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessCommunicator_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessWatcher_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessWatcher_Android.cpp index d0d06f0554..f3d61d7c38 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessWatcher_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Process/ProcessWatcher_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.cpp index 675df74950..48e9e01832 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.h b/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.h index f179f90deb..1a552acc34 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.h +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Thermal/ThermalInfo_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/AzFramework/Windowing/NativeWindow_Android.cpp b/Code/Framework/AzFramework/Platform/Android/AzFramework/Windowing/NativeWindow_Android.cpp index 1e3d5a7659..516f9069ef 100644 --- a/Code/Framework/AzFramework/Platform/Android/AzFramework/Windowing/NativeWindow_Android.cpp +++ b/Code/Framework/AzFramework/Platform/Android/AzFramework/Windowing/NativeWindow_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Android/platform_android.cmake b/Code/Framework/AzFramework/Platform/Android/platform_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Framework/AzFramework/Platform/Android/platform_android.cmake +++ b/Code/Framework/AzFramework/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Android/platform_android_files.cmake b/Code/Framework/AzFramework/Platform/Android/platform_android_files.cmake index cbefaef87f..641285bd25 100644 --- a/Code/Framework/AzFramework/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/AzFramework/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Apple.mm b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Apple.mm index ddab67d785..7e53707359 100644 --- a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Apple.mm +++ b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Apple.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Apple.mm b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Apple.mm index 0298ea12cc..48268cc495 100644 --- a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Apple.mm +++ b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Apple.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.h b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.h index d976c06afd..5db090965b 100644 --- a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.h +++ b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.mm b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.mm index 5e3c3c5c22..de46bcc506 100644 --- a/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.mm +++ b/Code/Framework/AzFramework/Platform/Common/Apple/AzFramework/Utils/SystemUtilsApple.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Input/User/LocalUserId_Default.h b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Input/User/LocalUserId_Default.h index 5fd649636d..57bf1d6d51 100644 --- a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Input/User/LocalUserId_Default.h +++ b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Input/User/LocalUserId_Default.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Network/AssetProcessorConnection_Default.cpp b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Network/AssetProcessorConnection_Default.cpp index 16c54ca84e..9bcda872f0 100644 --- a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Network/AssetProcessorConnection_Default.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Network/AssetProcessorConnection_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommon_Default.h b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommon_Default.h index 15cd823e6b..bf8356b779 100644 --- a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommon_Default.h +++ b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommon_Default.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommunicator_Default.cpp b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommunicator_Default.cpp index 679584c7c9..db7e9a5dc0 100644 --- a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommunicator_Default.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessCommunicator_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessWatcher_Default.cpp b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessWatcher_Default.cpp index d0d06f0554..f3d61d7c38 100644 --- a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessWatcher_Default.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/Process/ProcessWatcher_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/TargetManagement/TargetManagementComponent_Default.cpp b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/TargetManagement/TargetManagementComponent_Default.cpp index d3f0239865..d8f28a8fc3 100644 --- a/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/TargetManagement/TargetManagementComponent_Default.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Default/AzFramework/TargetManagement/TargetManagementComponent_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Asset/AssetSystemComponentHelper_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Asset/AssetSystemComponentHelper_Unimplemented.cpp index eaa313bb55..a8062ee941 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Asset/AssetSystemComponentHelper_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Asset/AssetSystemComponentHelper_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Unimplemented.cpp index 67fa8860a1..2731b8d321 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Unimplemented.cpp index 75860f02f0..42a3d7f63b 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Motion/InputDeviceMotion_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Motion/InputDeviceMotion_Unimplemented.cpp index 86200b3e1f..d3d31b4c1a 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Motion/InputDeviceMotion_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Motion/InputDeviceMotion_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Unimplemented.cpp index ec897b7478..c564913a1c 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Touch/InputDeviceTouch_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Touch/InputDeviceTouch_Unimplemented.cpp index 4299d10b3f..0e46dd8b6f 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Touch/InputDeviceTouch_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/Touch/InputDeviceTouch_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Unimplemented.cpp index 099679dbee..3ec48df751 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/Input/Devices/VirtualKeyboard/InputDeviceVirtualKeyboard_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/StreamingInstall/StreamingInstall_Unimplemented.cpp b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/StreamingInstall/StreamingInstall_Unimplemented.cpp index bd1bbc8925..1ae738ce96 100644 --- a/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/StreamingInstall/StreamingInstall_Unimplemented.cpp +++ b/Code/Framework/AzFramework/Platform/Common/Unimplemented/AzFramework/StreamingInstall/StreamingInstall_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp b/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp index 8453336ead..1b1e9f1a50 100644 --- a/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp +++ b/Code/Framework/AzFramework/Platform/Common/UnixLike/AzFramework/IO/LocalFileIO_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp index b1dd7fe97d..850e2e0130 100644 --- a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp +++ b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/IO/LocalFileIO_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_WinAPI.h b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_WinAPI.h index 2f3f087c20..c261082f68 100644 --- a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_WinAPI.h +++ b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Network/AssetProcessorConnection_WinAPI.cpp b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Network/AssetProcessorConnection_WinAPI.cpp index e8375b9073..d49bf53950 100644 --- a/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Network/AssetProcessorConnection_WinAPI.cpp +++ b/Code/Framework/AzFramework/Platform/Common/WinAPI/AzFramework/Network/AssetProcessorConnection_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Linux.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Linux.h index 4e19388306..1f0868b5ca 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Linux.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Platform.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Platform.h index cc6d5be6d7..3c13f95638 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Platform.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/API/ApplicationAPI_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp index 7ac0eff1ae..3ce27999e7 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Application/Application_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Linux.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Linux.h index 4e7af2a913..1bb2789178 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Linux.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Platform.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Platform.h index d3db5f0fb2..2520572770 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Platform.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Archive/ArchiveVars_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Asset/AssetSystemComponentHelper_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Asset/AssetSystemComponentHelper_Linux.cpp index a10e13db49..56f9f7a641 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Asset/AssetSystemComponentHelper_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Asset/AssetSystemComponentHelper_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Linux.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Linux.h index 1e0c806eeb..98893e2d01 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Linux.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Platform.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Platform.h index 4ded6709b5..5c389ffc6f 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Platform.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/AzFramework_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Input/User/LocalUserId_Platform.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Input/User/LocalUserId_Platform.h index 8caf396d80..875323de40 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Input/User/LocalUserId_Platform.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Input/User/LocalUserId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommon.h b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommon.h index b135468671..19c296b521 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommon.h +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp index 06039fc0a2..e581fce9fb 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessCommunicator_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp index 1877529939..b558b48d73 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Process/ProcessWatcher_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Windowing/NativeWindow_Linux.cpp b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Windowing/NativeWindow_Linux.cpp index e68f8cf5d4..d36bafd777 100644 --- a/Code/Framework/AzFramework/Platform/Linux/AzFramework/Windowing/NativeWindow_Linux.cpp +++ b/Code/Framework/AzFramework/Platform/Linux/AzFramework/Windowing/NativeWindow_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Linux/platform_linux.cmake b/Code/Framework/AzFramework/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzFramework/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/AzFramework/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Linux/platform_linux_files.cmake b/Code/Framework/AzFramework/Platform/Linux/platform_linux_files.cmake index 83d1a35eee..8e8e17cf25 100644 --- a/Code/Framework/AzFramework/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/AzFramework/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Mac.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Mac.h index b788306ef0..b2ee9044b1 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Mac.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Platform.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Platform.h index cf47b9c46a..a53b876690 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Platform.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/API/ApplicationAPI_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Application/Application_Mac.mm b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Application/Application_Mac.mm index 2b86d57a08..ae64442b04 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Application/Application_Mac.mm +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Application/Application_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Mac.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Mac.h index 4e7af2a913..1bb2789178 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Mac.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Platform.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Platform.h index 7bfe2f6627..ab2e1cfd89 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Platform.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Archive/ArchiveVars_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Asset/AssetSystemComponentHelper_Mac.cpp b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Asset/AssetSystemComponentHelper_Mac.cpp index bc1f58c5c2..9cac74d172 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Asset/AssetSystemComponentHelper_Mac.cpp +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Asset/AssetSystemComponentHelper_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Mac.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Mac.h index fab40a544c..6af4294a5c 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Mac.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Platform.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Platform.h index b1adae5a03..a9c29bedc0 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Platform.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/AzFramework_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Mac.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Mac.h index 7f5e3ab75c..d81222fb6b 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Mac.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h index a6e72eb2db..b62ab56a53 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Mac.mm b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Mac.mm index 08d1dccdc5..280a1b98cb 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Mac.mm +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Mac.mm b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Mac.mm index 08afae53cf..4828985ff4 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Mac.mm +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/User/LocalUserId_Platform.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/User/LocalUserId_Platform.h index 8caf396d80..875323de40 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/User/LocalUserId_Platform.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Input/User/LocalUserId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommon.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommon.h index 1d4a97349e..a8edfe1cb5 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommon.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp index 2afe81f5d1..66e85f04e0 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessCommunicator_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp index 3a90ce4af7..b5020d7dbd 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Process/ProcessWatcher_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/TargetManagement/TargetManagementComponent_Mac.cpp b/Code/Framework/AzFramework/Platform/Mac/AzFramework/TargetManagement/TargetManagementComponent_Mac.cpp index 770929d2fb..d4e743026c 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/TargetManagement/TargetManagementComponent_Mac.cpp +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/TargetManagement/TargetManagementComponent_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Utils/SystemUtilsApple.h b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Utils/SystemUtilsApple.h index 0659f53953..fca050fde6 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Utils/SystemUtilsApple.h +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Utils/SystemUtilsApple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Windowing/NativeWindow_Mac.mm b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Windowing/NativeWindow_Mac.mm index ca5b9baab2..d700f54de0 100644 --- a/Code/Framework/AzFramework/Platform/Mac/AzFramework/Windowing/NativeWindow_Mac.mm +++ b/Code/Framework/AzFramework/Platform/Mac/AzFramework/Windowing/NativeWindow_Mac.mm @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Mac/platform_mac.cmake b/Code/Framework/AzFramework/Platform/Mac/platform_mac.cmake index 21a8db46ec..184e432430 100644 --- a/Code/Framework/AzFramework/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/AzFramework/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Mac/platform_mac_files.cmake b/Code/Framework/AzFramework/Platform/Mac/platform_mac_files.cmake index 9555a19582..b06280dc99 100644 --- a/Code/Framework/AzFramework/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/AzFramework/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Platform.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Platform.h index 4657c5df96..740e3ca191 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Platform.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Windows.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Windows.h index 158c6deaf8..db35f7d8f2 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Windows.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/API/ApplicationAPI_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Application/Application_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Application/Application_Windows.cpp index c361531188..a9ffef43ea 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Application/Application_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Application/Application_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Platform.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Platform.h index 850784a969..8afff88434 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Platform.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Windows.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Windows.h index 4e7af2a913..1bb2789178 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Windows.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Archive/ArchiveVars_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Asset/AssetSystemComponentHelper_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Asset/AssetSystemComponentHelper_Windows.cpp index 2e7e299e69..d360b43e8f 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Asset/AssetSystemComponentHelper_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Asset/AssetSystemComponentHelper_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Platform.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Platform.h index 7cd500e282..c994690bdb 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Platform.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Windows.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Windows.h index 82a736d879..dae082c0f6 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Windows.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/AzFramework_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/IO/LocalFileIO_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/IO/LocalFileIO_Windows.cpp index d35cf7d964..387d146022 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/IO/LocalFileIO_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/IO/LocalFileIO_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h index f43af3099b..e9a03f82e7 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Windows.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Windows.h index c21bcd8f61..c61e575a9f 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Windows.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Windows.cpp index 94446479d9..895980e84e 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Gamepad/InputDeviceGamepad_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Windows.cpp index 7f9c4b4fd6..939dc10e71 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Windows.cpp index 8d213d3cc0..af4ce51ad5 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/Devices/Mouse/InputDeviceMouse_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/User/LocalUserId_Platform.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/User/LocalUserId_Platform.h index 8caf396d80..875323de40 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/User/LocalUserId_Platform.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Input/User/LocalUserId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommon.h b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommon.h index 5a8aba3fd6..19a6ceca71 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommon.h +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommunicator_Win.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommunicator_Win.cpp index fbba0991bb..5bfffcbfc6 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommunicator_Win.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessCommunicator_Win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessWatcher_Win.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessWatcher_Win.cpp index cdb8be58e6..b6601b87e1 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessWatcher_Win.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Process/ProcessWatcher_Win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/TargetManagement/TargetManagementComponent_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/TargetManagement/TargetManagementComponent_Windows.cpp index 3ef86f1e46..1a0c66f356 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/TargetManagement/TargetManagementComponent_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/TargetManagement/TargetManagementComponent_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp index 23fe762fa0..44a3757aea 100644 --- a/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp +++ b/Code/Framework/AzFramework/Platform/Windows/AzFramework/Windowing/NativeWindow_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/Windows/platform_windows.cmake b/Code/Framework/AzFramework/Platform/Windows/platform_windows.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Framework/AzFramework/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/AzFramework/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/Windows/platform_windows_files.cmake b/Code/Framework/AzFramework/Platform/Windows/platform_windows_files.cmake index f2bee7dda5..6397a48f8f 100644 --- a/Code/Framework/AzFramework/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/AzFramework/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_Platform.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_Platform.h index 55eb2b5ebd..43eeaebbf5 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_Platform.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_iOS.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_iOS.h index 0b0e63e92c..c6dcc713b4 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_iOS.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/API/ApplicationAPI_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Application/Application_iOS.mm b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Application/Application_iOS.mm index a44a1044c6..26f918c509 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Application/Application_iOS.mm +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Application/Application_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_Platform.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_Platform.h index 2d3909ba5b..7913675c1e 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_Platform.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_iOS.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_iOS.h index 4e7af2a913..1bb2789178 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_iOS.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Archive/ArchiveVars_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_Platform.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_Platform.h index 75a55726fe..42c733dff4 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_Platform.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_iOS.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_iOS.h index d19f8b9e3f..4af61d2ecc 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_iOS.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/AzFramework_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h index 0cbe181938..d14e61b1e4 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_iOS.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_iOS.h index 6d59c56562..8e0de65dd5 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_iOS.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Buses/Notifications/RawInputNotificationBus_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Motion/InputDeviceMotion_iOS.mm b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Motion/InputDeviceMotion_iOS.mm index 04c0c63e50..4a63e4bc92 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Motion/InputDeviceMotion_iOS.mm +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Motion/InputDeviceMotion_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Touch/InputDeviceTouch_iOS.mm b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Touch/InputDeviceTouch_iOS.mm index faa7f210b5..a786da4c26 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Touch/InputDeviceTouch_iOS.mm +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/Devices/Touch/InputDeviceTouch_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/User/LocalUserId_Platform.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/User/LocalUserId_Platform.h index 8caf396d80..875323de40 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/User/LocalUserId_Platform.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Input/User/LocalUserId_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommon.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommon.h index 08baab3289..05cee34949 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommon.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommunicator_iOS.cpp b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommunicator_iOS.cpp index 53b2c09b7c..da4ad3285f 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommunicator_iOS.cpp +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessCommunicator_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessWatcher_iOS.cpp b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessWatcher_iOS.cpp index d0d06f0554..f3d61d7c38 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessWatcher_iOS.cpp +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Process/ProcessWatcher_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Utils/SystemUtilsApple.h b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Utils/SystemUtilsApple.h index 5d339967a1..9bb911dffe 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Utils/SystemUtilsApple.h +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Utils/SystemUtilsApple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Windowing/NativeWindow_ios.mm b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Windowing/NativeWindow_ios.mm index d44af3c770..3ea603b604 100644 --- a/Code/Framework/AzFramework/Platform/iOS/AzFramework/Windowing/NativeWindow_ios.mm +++ b/Code/Framework/AzFramework/Platform/iOS/AzFramework/Windowing/NativeWindow_ios.mm @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzFramework/Platform/iOS/platform_ios.cmake b/Code/Framework/AzFramework/Platform/iOS/platform_ios.cmake index d343aa2585..2f4ff8f12c 100644 --- a/Code/Framework/AzFramework/Platform/iOS/platform_ios.cmake +++ b/Code/Framework/AzFramework/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzFramework/Platform/iOS/platform_ios_files.cmake b/Code/Framework/AzFramework/Platform/iOS/platform_ios_files.cmake index 16ee7bb14f..2a23a3e625 100644 --- a/Code/Framework/AzFramework/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/AzFramework/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzGameFramework/AzGameFramework/API/GameApplicationAPI.h b/Code/Framework/AzGameFramework/AzGameFramework/API/GameApplicationAPI.h index b601f0afa4..99fec8500d 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/API/GameApplicationAPI.h +++ b/Code/Framework/AzGameFramework/AzGameFramework/API/GameApplicationAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp b/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp index 50026ef1fd..9b532ea0e1 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp +++ b/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.h b/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.h index 9a5f14c845..79a891265d 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.h +++ b/Code/Framework/AzGameFramework/AzGameFramework/Application/GameApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp b/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp index 7001c48b39..3361894bab 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp +++ b/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.h b/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.h index 17e70b8aaa..8ca3ccebbf 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.h +++ b/Code/Framework/AzGameFramework/AzGameFramework/AzGameFrameworkModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzGameFramework/AzGameFramework/CMakeLists.txt b/Code/Framework/AzGameFramework/AzGameFramework/CMakeLists.txt index de1d870b4c..cf94f34961 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/CMakeLists.txt +++ b/Code/Framework/AzGameFramework/AzGameFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzGameFramework/AzGameFramework/azgameframework_files.cmake b/Code/Framework/AzGameFramework/AzGameFramework/azgameframework_files.cmake index 3ae8009875..fc884a49b0 100644 --- a/Code/Framework/AzGameFramework/AzGameFramework/azgameframework_files.cmake +++ b/Code/Framework/AzGameFramework/AzGameFramework/azgameframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzGameFramework/CMakeLists.txt b/Code/Framework/AzGameFramework/CMakeLists.txt index 7d894affae..4e7a772bfc 100644 --- a/Code/Framework/AzGameFramework/CMakeLists.txt +++ b/Code/Framework/AzGameFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzManipulatorTestFramework/CMakeLists.txt b/Code/Framework/AzManipulatorTestFramework/CMakeLists.txt index c1bd3482ff..83efa39de7 100644 --- a/Code/Framework/AzManipulatorTestFramework/CMakeLists.txt +++ b/Code/Framework/AzManipulatorTestFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ActionDispatcher.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ActionDispatcher.h index e1e51237db..fff12365b0 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ActionDispatcher.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ActionDispatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h index b9054d2522..838a621478 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFramework.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h index bc8c2a3c63..7f4c0f508f 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkTestHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h index 49e0b5272b..31fc8aec47 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/AzManipulatorTestFrameworkUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/DirectManipulatorViewportInteraction.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/DirectManipulatorViewportInteraction.h index 2ed36bb9f3..7e915ed253 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/DirectManipulatorViewportInteraction.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/DirectManipulatorViewportInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ImmediateModeActionDispatcher.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ImmediateModeActionDispatcher.h index 4479d605e7..1bdd0858ef 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ImmediateModeActionDispatcher.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ImmediateModeActionDispatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h index 7594b424f8..91fe8b349e 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/IndirectManipulatorViewportInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/RetainedModeActionDispatcher.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/RetainedModeActionDispatcher.h index ff602ff2e9..5c3865a92b 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/RetainedModeActionDispatcher.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/RetainedModeActionDispatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h index 44a544a8e2..535881c8e7 100644 --- a/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h +++ b/Code/Framework/AzManipulatorTestFramework/Include/AzManipulatorTestFramework/ViewportInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkFixture.cpp b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkFixture.cpp index 764e698a81..8dab41c3d0 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkFixture.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp index e35fc77b31..acd5e8a1f0 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/AzManipulatorTestFrameworkUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp b/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp index 1e0d4ee356..d7cb9d9a39 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/DirectManipulatorViewportInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp b/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp index 20d9227fa7..143cd0329e 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/ImmediateModeActionDispatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Source/IndirectManipulatorViewportInteraction.cpp b/Code/Framework/AzManipulatorTestFramework/Source/IndirectManipulatorViewportInteraction.cpp index 832e3d89ef..ca6e168ca5 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/IndirectManipulatorViewportInteraction.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/IndirectManipulatorViewportInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Source/RetainedModeActionDispatcher.cpp b/Code/Framework/AzManipulatorTestFramework/Source/RetainedModeActionDispatcher.cpp index 5f694eada5..c1754b1808 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/RetainedModeActionDispatcher.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/RetainedModeActionDispatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp b/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp index 6068df4cfc..965de4d949 100644 --- a/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Source/ViewportInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/AzManipulatorTestFrameworkTestFixtures.h b/Code/Framework/AzManipulatorTestFramework/Tests/AzManipulatorTestFrameworkTestFixtures.h index cc39426d3a..a685fff0de 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/AzManipulatorTestFrameworkTestFixtures.h +++ b/Code/Framework/AzManipulatorTestFramework/Tests/AzManipulatorTestFrameworkTestFixtures.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/BusCallTest.cpp b/Code/Framework/AzManipulatorTestFramework/Tests/BusCallTest.cpp index 04f7870dcf..af5512167d 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/BusCallTest.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Tests/BusCallTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/DirectCallTest.cpp b/Code/Framework/AzManipulatorTestFramework/Tests/DirectCallTest.cpp index 764c4bbb55..a0250f1332 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/DirectCallTest.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Tests/DirectCallTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp b/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp index 3754816fb1..2dd03ff91e 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Tests/GridSnappingTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/Main.cpp b/Code/Framework/AzManipulatorTestFramework/Tests/Main.cpp index 651b837900..402c050157 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/Main.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Tests/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/ViewportInteractionTest.cpp b/Code/Framework/AzManipulatorTestFramework/Tests/ViewportInteractionTest.cpp index a6bebc2374..d525f24580 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/ViewportInteractionTest.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Tests/ViewportInteractionTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/Tests/WorldSpaceBuilderTest.cpp b/Code/Framework/AzManipulatorTestFramework/Tests/WorldSpaceBuilderTest.cpp index 169b3ed31d..91a02eb571 100644 --- a/Code/Framework/AzManipulatorTestFramework/Tests/WorldSpaceBuilderTest.cpp +++ b/Code/Framework/AzManipulatorTestFramework/Tests/WorldSpaceBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_files.cmake b/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_files.cmake index d5bcaaaf4b..e31c90e0ba 100644 --- a/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_files.cmake +++ b/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_tests_files.cmake b/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_tests_files.cmake index be1f52b375..3d499eaa6a 100644 --- a/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_tests_files.cmake +++ b/Code/Framework/AzManipulatorTestFramework/azmanipulatortestframework_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Header.jinja b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Header.jinja index aadd0bde19..3d14f878de 100644 --- a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Header.jinja +++ b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Header.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Inline.jinja b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Inline.jinja index 18527afeb4..8dd092431b 100644 --- a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Inline.jinja +++ b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Inline.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Source.jinja b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Source.jinja index 2923f136fa..e500035b86 100644 --- a/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Source.jinja +++ b/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Source.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.cpp b/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.cpp index 6684888832..35fc43d6f5 100644 --- a/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.h b/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.h index 2179e15305..5661e4e015 100644 --- a/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.h +++ b/Code/Framework/AzNetworking/AzNetworking/AzNetworkingModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionEnums.h b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionEnums.h index 8e921a4d47..e0719bae1f 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionEnums.h +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.cpp b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.cpp index d31d00ec55..1a90df9d2a 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.h b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.h index f9e54b20d2..21eb3f73cd 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.h +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.inl b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.inl index 41d1a0c770..d14d007f28 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.inl +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/ConnectionMetrics.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.h b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.h index 77fe105c72..98c10e8a0e 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.h +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.inl b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.inl index a5f6ad119b..a7161464cc 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.inl +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnection.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h index 4ffe40a86d..7fb3dcd8e8 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionSet.h b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionSet.h index e0c8d08673..f0048da9b7 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionSet.h +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/IConnectionSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.h b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.h index b755edfd6e..bebb72020b 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.h +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.inl b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.inl index 742704b369..5464c1a59a 100644 --- a/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.inl +++ b/Code/Framework/AzNetworking/AzNetworking/ConnectionLayer/SequenceGenerator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.h b/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.h index d5f4f2c543..4f4000fdaa 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.h +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.inl b/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.inl index 0bc69b691e..07591f7e70 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.inl +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/ByteBuffer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.h b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.h index 3492481c98..95f07a2ce0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.h +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.inl b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.inl index 967f4fd3ad..2bcae25132 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.inl +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitset.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.h b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.h index ce63efee83..3297ba8904 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.h +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.inl b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.inl index 3e01f6f1a9..8e2ab9083c 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.inl +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeBitsetView.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.h b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.h index 8f8f79cf9b..bf56518314 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.h +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.inl b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.inl index 213c3bee56..42ad051bd5 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.inl +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/FixedSizeVectorBitset.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/IBitset.h b/Code/Framework/AzNetworking/AzNetworking/DataStructures/IBitset.h index e9c7b1ef21..5c47fa8ba1 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/IBitset.h +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/IBitset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.h b/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.h index 4ee95e7cdb..f965c9f2aa 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.h +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.inl b/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.inl index 6a0089a434..20510182bb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.inl +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/RingBufferBitset.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.cpp b/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.cpp index 17155df365..e7defe5409 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.h b/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.h index f9f1698175..24f468d3cf 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.h +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.inl b/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.inl index e04b4ebd25..56f62f285d 100644 --- a/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.inl +++ b/Code/Framework/AzNetworking/AzNetworking/DataStructures/TimeoutQueue.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Framework/ICompressor.h b/Code/Framework/AzNetworking/AzNetworking/Framework/ICompressor.h index 552df26984..2971dd9a19 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Framework/ICompressor.h +++ b/Code/Framework/AzNetworking/AzNetworking/Framework/ICompressor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Framework/INetworkInterface.h b/Code/Framework/AzNetworking/AzNetworking/Framework/INetworkInterface.h index dd3563f154..68256404ff 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Framework/INetworkInterface.h +++ b/Code/Framework/AzNetworking/AzNetworking/Framework/INetworkInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Framework/INetworking.h b/Code/Framework/AzNetworking/AzNetworking/Framework/INetworking.h index b418db83e2..1722e53c16 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Framework/INetworking.h +++ b/Code/Framework/AzNetworking/AzNetworking/Framework/INetworking.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkInterfaceMetrics.h b/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkInterfaceMetrics.h index d9f0ec3d88..f860302038 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkInterfaceMetrics.h +++ b/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkInterfaceMetrics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.cpp b/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.cpp index 3fb5cdf040..6097abf6db 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.h b/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.h index 20a0ec01c5..d6e34fc6a1 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.h +++ b/Code/Framework/AzNetworking/AzNetworking/Framework/NetworkingSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacket.h b/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacket.h index 264674f914..abc5c10ac3 100644 --- a/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacket.h +++ b/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h b/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h index f9fe21f2f1..1053a4cecb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h +++ b/Code/Framework/AzNetworking/AzNetworking/PacketLayer/IPacketHeader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/AbstractValue.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/AbstractValue.h index 37d5655861..c139edcdb0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/AbstractValue.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/AbstractValue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/AzContainerSerializers.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/AzContainerSerializers.h index 549aba2a82..25b1543b1f 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/AzContainerSerializers.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/AzContainerSerializers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.cpp b/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.cpp index 97c4fe6c23..b67fabfa85 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.h index 9d26955690..bd97fe8607 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.inl b/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.inl index 6a58d216a6..dbdb18eff7 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/DeltaSerializer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.cpp b/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.cpp index 9ec5248d8a..187dfcdfd0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.h index 1a89a80a93..74def4f450 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/HashSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.h index 41327610b3..dde108a902 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.inl b/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.inl index af2b8a702a..72c7e681cb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/ISerializer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.cpp b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.cpp index 36ef0cf01a..7c4b92f87d 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.h index 9c5a749ec4..4af7b61c64 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.inl b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.inl index f9c3eb9912..ed2ff09ac9 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkInputSerializer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.cpp b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.cpp index 1c3e452b75..b4a1d7887b 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.h index 2698cd9630..142696e999 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.inl b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.inl index 7ea51afa5e..0d71646d25 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/NetworkOutputSerializer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.cpp b/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.cpp index 02b08dee8a..6a466f5810 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.h index 10b00cc872..bb3932d441 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/StringifySerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.h b/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.h index 5793f56aab..606a2a6b4b 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.h +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.inl b/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.inl index b732119f2f..aa8a9cc750 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Serialization/TrackChangedSerializer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.cpp index fc0847b5ab..ec9e8e373c 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.h index c218cc7de0..f670600e3e 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.inl b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.inl index ad494299c9..9fbf90be46 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.inl +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnection.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.cpp index 1efd095177..10be4b8738 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.h index 00bbfdb779..6363f913e5 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpConnectionSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp index 9b80b12cde..d27a8dfbb2 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.h index 8dffd95ae3..7c67ac86cb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpListenThread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.cpp index f694715547..42ae5686fa 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.h index 47dc80e158..c424879f6c 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpNetworkInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.cpp index f28338d290..9efecde085 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.h index be680ad489..4311a0834c 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.inl b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.inl index 8de4bb3e13..54544eadbe 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.inl +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpPacketHeader.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.h index 50d333b514..bc95c87747 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.inl b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.inl index 3c7edb8777..3a20ca6926 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.inl +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBuffer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.cpp index 3dbe00670a..ce5b3d2d2f 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.h index 2057145ffe..26da711f96 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.inl b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.inl index 00eb0c9305..929210750a 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.inl +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpRingBufferImpl.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.cpp index 7d2e8fd7f6..f9c9b987eb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.h index 58a384b254..7b5140cfe4 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.inl b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.inl index 4b0ef0e005..2f392bdd21 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.inl +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocket.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager.h index bc985283a9..4e8628e9cb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Epoll.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Epoll.cpp index d5615151bf..c247335d68 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Epoll.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Epoll.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_None.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_None.cpp index 01d59e0871..2ed33d4ca7 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_None.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_None.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Select.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Select.cpp index 6c1de87987..130739ca39 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Select.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TcpSocketManager_Select.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.cpp b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.cpp index 2d76d29d1d..ee7b7e6e8a 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.h b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.h index 187f556afc..fa1b87cdea 100644 --- a/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.h +++ b/Code/Framework/AzNetworking/AzNetworking/TcpTransport/TlsSocket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.cpp index e457e13fe7..2e380fd60b 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.h index b5c43aa002..17988baea7 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsEndpoint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp index 31e3fcb8a0..d7f3dedc13 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.h index aa8171a4dd..c5c064c1cf 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/DtlsSocket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp index b8e2e5b7b6..ec6221c580 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h index 907829968e..a1d20ddbb6 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.inl b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.inl index 39d150aae2..28828913e0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.inl +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnection.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.cpp index 1787d198fa..db2d1721d2 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.h index d1053b893f..49ad76dece 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpConnectionSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp index 9a1ef66531..7c79c48e7a 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h index ba5ed2b700..ca2d44a804 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpFragmentQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp index bf5dbf8c66..1a7c8fc6c5 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.h index b3e7e3f823..0198a68c94 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpNetworkInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.cpp index 7065daf3ed..7f0b70a9c8 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.h index 69888734d1..77dccad6a1 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.inl b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.inl index 7c03f89273..190af9a39a 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.inl +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketHeader.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.cpp index d67308c126..a09c1454b0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.h index 1e87a1b80d..b08351349e 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.inl b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.inl index 8e60b65ff6..781b2b1f77 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.inl +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketIdWindow.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.cpp index e57d3eb64a..fff36f62fc 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.h index 2c596ba6f6..0f716afb27 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.inl b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.inl index 6e85a8095d..f142dd4ce9 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.inl +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpPacketTracker.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.cpp index a0eb38d8cf..873a439aa0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.h index b7ae0e5639..d12728889d 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReaderThread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.cpp index 286faaed46..85c971379a 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.h index d82ea1b76c..0677d33ba0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpReliableQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp index b475b15965..c533ab0fdb 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.h b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.h index 8fca24c5f3..61f4c74b68 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.h +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.inl b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.inl index 3b8fe5f32a..37fe7796e3 100644 --- a/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.inl +++ b/Code/Framework/AzNetworking/AzNetworking/UdpTransport/UdpSocket.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.cpp b/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.cpp index 66872bc16e..b6a69d08a0 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.h index d6ee123d95..d3db76b3db 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/CidrAddress.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp b/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp index 0274c50eb8..6244991807 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.h index d165ceef4d..a4a0266812 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/EncryptionCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h index 30924da6fd..24f32d756c 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/Endian.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.cpp b/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.cpp index e6b2b16214..b958619ccc 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.h index b0a6a3b143..772ef14314 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.inl b/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.inl index bae6bbc533..82f05bea51 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/IpAddress.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.cpp b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.cpp index 9c44d91f48..94028ebee9 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.h index 4852da38b0..54817af051 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.inl b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.inl index dabf5fcc0b..86e0bc6291 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkCommon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkIncludes.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkIncludes.h index 3ecc9917d6..084f20b403 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkIncludes.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/NetworkIncludes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.h index bf02f12786..bdcee9d61d 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.inl b/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.inl index 1a740bce2e..5c1c1fbf42 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.inl +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/QuantizedValues.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.cpp b/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.cpp index 3a8f1b895d..32c16c6c66 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.cpp +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.h b/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.h index 8778e37b0d..e45da0fda9 100644 --- a/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.h +++ b/Code/Framework/AzNetworking/AzNetworking/Utilities/TimedThread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/AzNetworking/aznetworking_files.cmake b/Code/Framework/AzNetworking/AzNetworking/aznetworking_files.cmake index d59f32a7af..4e6927ddc8 100644 --- a/Code/Framework/AzNetworking/AzNetworking/aznetworking_files.cmake +++ b/Code/Framework/AzNetworking/AzNetworking/aznetworking_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/CMakeLists.txt b/Code/Framework/AzNetworking/CMakeLists.txt index 5703b0b878..6419947056 100644 --- a/Code/Framework/AzNetworking/CMakeLists.txt +++ b/Code/Framework/AzNetworking/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Android/AzNetworking/AzNetworking_Traits_Platform.h b/Code/Framework/AzNetworking/Platform/Android/AzNetworking/AzNetworking_Traits_Platform.h index ae5d0d8368..43f8a6bb9f 100644 --- a/Code/Framework/AzNetworking/Platform/Android/AzNetworking/AzNetworking_Traits_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Android/AzNetworking/AzNetworking_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/Endian_Platform.h b/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/Endian_Platform.h index 51f4973d46..02efe9ddcc 100644 --- a/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/Endian_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/Endian_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/NetworkIncludes_Platform.h b/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/NetworkIncludes_Platform.h index 7e775911de..2d9ca9a0f8 100644 --- a/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/NetworkIncludes_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Android/AzNetworking/Utilities/NetworkIncludes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Android/platform_android.cmake b/Code/Framework/AzNetworking/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzNetworking/Platform/Android/platform_android.cmake +++ b/Code/Framework/AzNetworking/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Android/platform_android_files.cmake b/Code/Framework/AzNetworking/Platform/Android/platform_android_files.cmake index eae5fd66a5..11bcd0d09d 100644 --- a/Code/Framework/AzNetworking/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/AzNetworking/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Common/Apple/AzNetworking/Utilities/Endian_Apple.h b/Code/Framework/AzNetworking/Platform/Common/Apple/AzNetworking/Utilities/Endian_Apple.h index e02fcdc915..f5f8e68278 100644 --- a/Code/Framework/AzNetworking/Platform/Common/Apple/AzNetworking/Utilities/Endian_Apple.h +++ b/Code/Framework/AzNetworking/Platform/Common/Apple/AzNetworking/Utilities/Endian_Apple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Common/Default/AzNetworking/Utilities/IpAddress_Default.cpp b/Code/Framework/AzNetworking/Platform/Common/Default/AzNetworking/Utilities/IpAddress_Default.cpp index 9fe81a8493..361e9b939d 100644 --- a/Code/Framework/AzNetworking/Platform/Common/Default/AzNetworking/Utilities/IpAddress_Default.cpp +++ b/Code/Framework/AzNetworking/Platform/Common/Default/AzNetworking/Utilities/IpAddress_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/Endian_UnixLike.h b/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/Endian_UnixLike.h index 4ad6b162ce..7d6f41e2e9 100644 --- a/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/Endian_UnixLike.h +++ b/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/Endian_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkCommon_UnixLike.cpp b/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkCommon_UnixLike.cpp index 10de65b169..d26990bd29 100644 --- a/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkCommon_UnixLike.cpp +++ b/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkCommon_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkIncludes_UnixLike.h b/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkIncludes_UnixLike.h index 58b4997d1d..5525fcd7cd 100644 --- a/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkIncludes_UnixLike.h +++ b/Code/Framework/AzNetworking/Platform/Common/UnixLike/AzNetworking/Utilities/NetworkIncludes_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/Endian_WinAPI.h b/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/Endian_WinAPI.h index cec16ff3f1..4f1d8129da 100644 --- a/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/Endian_WinAPI.h +++ b/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/Endian_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkCommon_WinAPI.cpp b/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkCommon_WinAPI.cpp index 8ffae7732d..bbc926d36d 100644 --- a/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkCommon_WinAPI.cpp +++ b/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkCommon_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkIncludes_WinAPI.h b/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkIncludes_WinAPI.h index aa05baf5b1..c0b2d2492b 100644 --- a/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkIncludes_WinAPI.h +++ b/Code/Framework/AzNetworking/Platform/Common/WinAPI/AzNetworking/Utilities/NetworkIncludes_WinAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/AzNetworking_Traits_Platform.h b/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/AzNetworking_Traits_Platform.h index 3e53b7d27c..99c68ff533 100644 --- a/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/AzNetworking_Traits_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/AzNetworking_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/Endian_Platform.h b/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/Endian_Platform.h index 51f4973d46..02efe9ddcc 100644 --- a/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/Endian_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/Endian_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/NetworkIncludes_Platform.h b/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/NetworkIncludes_Platform.h index 7e775911de..2d9ca9a0f8 100644 --- a/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/NetworkIncludes_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Linux/AzNetworking/Utilities/NetworkIncludes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Linux/platform_linux.cmake b/Code/Framework/AzNetworking/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzNetworking/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/AzNetworking/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Linux/platform_linux_files.cmake b/Code/Framework/AzNetworking/Platform/Linux/platform_linux_files.cmake index eae5fd66a5..11bcd0d09d 100644 --- a/Code/Framework/AzNetworking/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/AzNetworking/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/AzNetworking_Traits_Platform.h b/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/AzNetworking_Traits_Platform.h index 02d1221966..ed5f6b0e5e 100644 --- a/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/AzNetworking_Traits_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/AzNetworking_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/Endian_Platform.h b/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/Endian_Platform.h index ca2cea3c2d..6fc9fa10f3 100644 --- a/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/Endian_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/Endian_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/NetworkIncludes_Platform.h b/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/NetworkIncludes_Platform.h index 7e775911de..2d9ca9a0f8 100644 --- a/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/NetworkIncludes_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Mac/AzNetworking/Utilities/NetworkIncludes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Mac/platform_mac.cmake b/Code/Framework/AzNetworking/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzNetworking/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/AzNetworking/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Mac/platform_mac_files.cmake b/Code/Framework/AzNetworking/Platform/Mac/platform_mac_files.cmake index 51057ea419..026044a083 100644 --- a/Code/Framework/AzNetworking/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/AzNetworking/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/AzNetworking_Traits_Platform.h b/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/AzNetworking_Traits_Platform.h index 33033c7d8d..acb999919e 100644 --- a/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/AzNetworking_Traits_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/AzNetworking_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/Endian_Platform.h b/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/Endian_Platform.h index f9ded4f68b..ecf39fea13 100644 --- a/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/Endian_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/Endian_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/NetworkIncludes_Platform.h b/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/NetworkIncludes_Platform.h index 126d21bc46..50841c5a3b 100644 --- a/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/NetworkIncludes_Platform.h +++ b/Code/Framework/AzNetworking/Platform/Windows/AzNetworking/Utilities/NetworkIncludes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/Windows/platform_windows.cmake b/Code/Framework/AzNetworking/Platform/Windows/platform_windows.cmake index 999bbb19df..9784af9309 100644 --- a/Code/Framework/AzNetworking/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/AzNetworking/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/Windows/platform_windows_files.cmake b/Code/Framework/AzNetworking/Platform/Windows/platform_windows_files.cmake index 7274acf9ca..4f6b12fa69 100644 --- a/Code/Framework/AzNetworking/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/AzNetworking/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/AzNetworking_Traits_Platform.h b/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/AzNetworking_Traits_Platform.h index 02d1221966..ed5f6b0e5e 100644 --- a/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/AzNetworking_Traits_Platform.h +++ b/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/AzNetworking_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/Endian_Platform.h b/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/Endian_Platform.h index ca2cea3c2d..6fc9fa10f3 100644 --- a/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/Endian_Platform.h +++ b/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/Endian_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/NetworkIncludes_Platform.h b/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/NetworkIncludes_Platform.h index 7e775911de..2d9ca9a0f8 100644 --- a/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/NetworkIncludes_Platform.h +++ b/Code/Framework/AzNetworking/Platform/iOS/AzNetworking/Utilities/NetworkIncludes_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Platform/iOS/platform_ios.cmake b/Code/Framework/AzNetworking/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzNetworking/Platform/iOS/platform_ios.cmake +++ b/Code/Framework/AzNetworking/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Platform/iOS/platform_ios_files.cmake b/Code/Framework/AzNetworking/Platform/iOS/platform_ios_files.cmake index 51057ea419..026044a083 100644 --- a/Code/Framework/AzNetworking/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/AzNetworking/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzNetworking/Tests/ConnectionLayer/ConnectionMetricsTests.cpp b/Code/Framework/AzNetworking/Tests/ConnectionLayer/ConnectionMetricsTests.cpp index 99afeed1ed..86b782e904 100644 --- a/Code/Framework/AzNetworking/Tests/ConnectionLayer/ConnectionMetricsTests.cpp +++ b/Code/Framework/AzNetworking/Tests/ConnectionLayer/ConnectionMetricsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/ConnectionLayer/SequenceGeneratorTests.cpp b/Code/Framework/AzNetworking/Tests/ConnectionLayer/SequenceGeneratorTests.cpp index e714d6da2e..5385bfe73a 100644 --- a/Code/Framework/AzNetworking/Tests/ConnectionLayer/SequenceGeneratorTests.cpp +++ b/Code/Framework/AzNetworking/Tests/ConnectionLayer/SequenceGeneratorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetTests.cpp b/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetTests.cpp index 89d2c4d535..ad8b384be0 100644 --- a/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetTests.cpp +++ b/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetViewTests.cpp b/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetViewTests.cpp index d3b7c411c1..4838cec5ca 100644 --- a/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetViewTests.cpp +++ b/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeBitsetViewTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeVectorBitsetTests.cpp b/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeVectorBitsetTests.cpp index d9de4c1742..34e9323058 100644 --- a/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeVectorBitsetTests.cpp +++ b/Code/Framework/AzNetworking/Tests/DataStructures/FixedSizeVectorBitsetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/DataStructures/RingBufferBitsetTests.cpp b/Code/Framework/AzNetworking/Tests/DataStructures/RingBufferBitsetTests.cpp index 6ad6bd1d02..8260b79fcb 100644 --- a/Code/Framework/AzNetworking/Tests/DataStructures/RingBufferBitsetTests.cpp +++ b/Code/Framework/AzNetworking/Tests/DataStructures/RingBufferBitsetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/DataStructures/TimeoutQueueTests.cpp b/Code/Framework/AzNetworking/Tests/DataStructures/TimeoutQueueTests.cpp index 7e981f1112..099dafd146 100644 --- a/Code/Framework/AzNetworking/Tests/DataStructures/TimeoutQueueTests.cpp +++ b/Code/Framework/AzNetworking/Tests/DataStructures/TimeoutQueueTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Main.cpp b/Code/Framework/AzNetworking/Tests/Main.cpp index 35a6d84e78..141f9473b8 100644 --- a/Code/Framework/AzNetworking/Tests/Main.cpp +++ b/Code/Framework/AzNetworking/Tests/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Serialization/DeltaSerializerTests.cpp b/Code/Framework/AzNetworking/Tests/Serialization/DeltaSerializerTests.cpp index 650cadd1ee..1353f5de4c 100644 --- a/Code/Framework/AzNetworking/Tests/Serialization/DeltaSerializerTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Serialization/DeltaSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Serialization/HashSerializerTests.cpp b/Code/Framework/AzNetworking/Tests/Serialization/HashSerializerTests.cpp index 98f7f3f7fc..ee41022407 100644 --- a/Code/Framework/AzNetworking/Tests/Serialization/HashSerializerTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Serialization/HashSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Serialization/NetworkInputSerializerTests.cpp b/Code/Framework/AzNetworking/Tests/Serialization/NetworkInputSerializerTests.cpp index b3cab55ca3..f1da8680aa 100644 --- a/Code/Framework/AzNetworking/Tests/Serialization/NetworkInputSerializerTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Serialization/NetworkInputSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Serialization/NetworkOutputSerializerTests.cpp b/Code/Framework/AzNetworking/Tests/Serialization/NetworkOutputSerializerTests.cpp index 3ba824420c..6cafe0802e 100644 --- a/Code/Framework/AzNetworking/Tests/Serialization/NetworkOutputSerializerTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Serialization/NetworkOutputSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Serialization/TrackChangedSerializerTests.cpp b/Code/Framework/AzNetworking/Tests/Serialization/TrackChangedSerializerTests.cpp index 9c7686667d..4876976947 100644 --- a/Code/Framework/AzNetworking/Tests/Serialization/TrackChangedSerializerTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Serialization/TrackChangedSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp b/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp index 213abde08d..10ef156c7f 100644 --- a/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp +++ b/Code/Framework/AzNetworking/Tests/TcpTransport/TcpTransportTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp b/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp index 2fd3c93e23..dfc80e9475 100644 --- a/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp +++ b/Code/Framework/AzNetworking/Tests/UdpTransport/UdpTransportTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Utilities/CidrAddressTests.cpp b/Code/Framework/AzNetworking/Tests/Utilities/CidrAddressTests.cpp index a14bb65368..96ff9194af 100644 --- a/Code/Framework/AzNetworking/Tests/Utilities/CidrAddressTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Utilities/CidrAddressTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Utilities/IpAddressTests.cpp b/Code/Framework/AzNetworking/Tests/Utilities/IpAddressTests.cpp index 5d2d4fa819..d2b7164abe 100644 --- a/Code/Framework/AzNetworking/Tests/Utilities/IpAddressTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Utilities/IpAddressTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Utilities/NetworkCommonTests.cpp b/Code/Framework/AzNetworking/Tests/Utilities/NetworkCommonTests.cpp index ebf2788186..86cbc519ca 100644 --- a/Code/Framework/AzNetworking/Tests/Utilities/NetworkCommonTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Utilities/NetworkCommonTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/Utilities/QuantizedValuesTests.cpp b/Code/Framework/AzNetworking/Tests/Utilities/QuantizedValuesTests.cpp index b44601fbe6..7825601383 100644 --- a/Code/Framework/AzNetworking/Tests/Utilities/QuantizedValuesTests.cpp +++ b/Code/Framework/AzNetworking/Tests/Utilities/QuantizedValuesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzNetworking/Tests/aznetworkingtests_files.cmake b/Code/Framework/AzNetworking/Tests/aznetworkingtests_files.cmake index ce0875011e..0da3068819 100644 --- a/Code/Framework/AzNetworking/Tests/aznetworkingtests_files.cmake +++ b/Code/Framework/AzNetworking/Tests/aznetworkingtests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/AzQtComponentsAPI.h b/Code/Framework/AzQtComponents/AzQtComponents/AzQtComponentsAPI.h index aaabb06136..2c91498ae3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/AzQtComponentsAPI.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/AzQtComponentsAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Buses/DragAndDrop.h b/Code/Framework/AzQtComponents/AzQtComponents/Buses/DragAndDrop.h index 3b0c51cfa2..ffd3adbbb6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Buses/DragAndDrop.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Buses/DragAndDrop.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Buses/ShortcutDispatch.h b/Code/Framework/AzQtComponents/AzQtComponents/Buses/ShortcutDispatch.h index b53b8f27be..e23f0d0093 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Buses/ShortcutDispatch.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Buses/ShortcutDispatch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.cpp index 330b68af68..0c7541b501 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.h index 2e76624459..5d0cf98e13 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/AutoCustomWindowDecorations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.cpp index b1dd26bc14..7b9e87b1b4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.h index 309ffacdcc..b3799ad1a9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonDivider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.cpp index 374e3aeb0b..2aa1c2283d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.h index d2057f1902..f54194e830 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ButtonStripe.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.cpp index a056dd7d63..0e01be82c9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.h index a081fedf82..4e66775152 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ConfigHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.cpp index 800f71cb21..d759dd3c8e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.h index 1e911ad0cd..eab4ef7333 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp index 8954b7e312..d8044a3bdc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.h index 885a73cf94..fe574eecdb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockBarButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.cpp index 444e37156b..325e09aae8 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.h index 0e77ee176a..29a9704a11 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp index b799c6ff88..c78dccea3e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.h index 83e05968f0..94817a85fd 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.cpp index 48b7976caa..09e151aff6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.h index 71a38c45c0..695c4c1037 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/DockTabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/EditorProxyStyle_mac.mm b/Code/Framework/AzQtComponents/AzQtComponents/Components/EditorProxyStyle_mac.mm index 19d62295ee..81548c8d6a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/EditorProxyStyle_mac.mm +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/EditorProxyStyle_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.cpp index cd2bcc5f3b..379523214d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.h index 0cf2c0c8cc..5b493f7290 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ExtendedLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.cpp index 9fe4ac29fb..4c5e2adabd 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.h index 4192d5ea28..43ce090c9f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDocking.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.cpp index 87925da49a..87c1871722 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.h index 513c27d616..55155a176a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingDropZoneWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.cpp index a390d8f60a..d2b1a8b8fc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.h index 1353102a94..56f9466da3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FancyDockingGhostWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp index be27dff8bc..db8b184c0a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h index 2324312862..a86d63ad95 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.cpp index 7900a8ddab..0103674a73 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.h index 9f26c2a5e0..8349d645cf 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/GlobalEventFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.cpp index e0367ed0bb..5b01c6378e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.h index e848fb6950..4bb8648e72 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/HelpButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.cpp index 136df6c95f..e1f40eefe9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.h index de7b02b628..1cd6b8b7b7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/InteractiveWindowGeometryChanger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/O3DEStylesheet.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/O3DEStylesheet.h index 226417b9d9..aedc192d17 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/O3DEStylesheet.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/O3DEStylesheet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/RepolishMinimizer.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/RepolishMinimizer.h index a1ed36050e..666a25f405 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/RepolishMinimizer.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/RepolishMinimizer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.cpp index c53598d240..a5952b5dd5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.h index 23ee189096..78aee0a796 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/SearchLineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.cpp index 7cac18f32b..4146d1d537 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.h index dff189354f..02bc5189aa 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Style.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleHelpers.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleHelpers.h index 96fe0ffd2f..b1c954a4bf 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleHelpers.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.cpp index d69a9e63ef..aba6cfb623 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.h index 787b5dc7d9..8fbd662fac 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.cpp index c957515cc6..1c1acdc63d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.h index a071ecb95c..273d930d8b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyleSheetCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.cpp index 00b5dd92a1..4caa4b1a50 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.h index ae0c7615fc..583513789d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledBusyLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.cpp index 80152ad4e7..c5ae0e475d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.h index fd962f59a5..21a6608643 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.cpp index 1f7e8b9d0d..615e1d5a9d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.h index f62f4eb009..3adf3bc2a8 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDetailsTableView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.cpp index a2aeb89a06..7c6f8979b1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.h index 0617f921a1..6428bdb548 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.cpp index 9667be70d0..92355e03a3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.h index 96e168f2bd..7400937593 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.cpp index b1f697963f..e9228c8c42 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.h index 50d8b054b2..73ea93cfbe 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledLineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp index 8edcc2eb07..1aa9115e4b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.h index ea06a6009e..d80ecae2f9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StyledSpinBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.cpp index 0d15e8ff2a..b91bac83df 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.h index 27af40c839..f6d43eb54b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/StylesheetPreprocessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.cpp index ea635419ed..2f77f3d379 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.h index 981f992b51..9ecb0bd4ae 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TagSelector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.cpp index 65438d81b2..8f866f4278 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.h index e4fc27bf89..0935a9bf3d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.cpp index 86d6dc7cbe..2feff22bb3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.h index fa0b22f11f..ab9e0d68be 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawHandler_win.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.cpp index d0a8412818..8a3fcdcd8e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.h index 3646e450c1..c48409b678 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/TitleBarOverdrawScreenHandler_win.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.cpp index dbff0d3304..2e80578ee6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.h index ac5328b10e..28d366a016 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Titlebar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.cpp index df1efff133..abfce53378 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.h index 09960b10da..26135f47ea 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolBarArea.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.cpp index 6a0772c89c..403279f4fb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.h index 4d0f1f14c7..698805c2f0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonComboBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.cpp index 4c8ac797e7..d8892495c0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.h index f6d0239163..e6bf60a461 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonLineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.cpp index 419d97cd3e..0c3354e3d4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.h index 880faf0167..a736ba5479 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/ToolButtonWithWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.cpp index 0a8bf09940..a202e663a6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.h index 5f4f24cafe..2d4aef65c7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/VectorEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.cpp index 573a887809..e136282c32 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.h index ca571b4f22..b625a2484b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.qss index 27e3d0e255..cc71b0292a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderListView.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.cpp index 2a082b5bb2..13e013dc28 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.h index 846e1a1d23..411f76a568 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/AssetFolderThumbnailView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss index b50886892c..894b2921d4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BaseStyleSheet.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.cpp index 5f10aa18ef..7b7c96f6c9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.h index 30bd633c56..26a9125a0d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.qss index d57c97c8a8..581aafa246 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BreadCrumbs.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.cpp index 81756d974a..f6d9c74850 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.h index 5d4d9be5e4..e684bef9fc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.qss index 841a28195b..7784c852e0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/BrowseEdit.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp index 0712b7f551..c2b3fabc3e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.h index 178b8c65f4..e6f1dd35e4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss index 3cc6f25c73..230a7b0b74 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Card.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.cpp index 5a8b750130..bcad9c9c28 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.h index 689e40edb3..1fe000ce42 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardHeader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.cpp index 142f7a6f47..241cce723d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.h index fbbd895698..1b491562b1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CardNotification.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.cpp index c636f4c2c0..5f4b72538c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.h index 795730a5a7..ed98b430e7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.qss index 1cd6b2f4fb..45cde77f42 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/CheckBox.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.cpp index 1c10b0c7dd..5abca5e999 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.h index 6cdfe826dd..3992f8d6f0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.qss index 9610af6ae5..20a1d3448e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorLabel.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp index fe41fc8a15..e513c23d54 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.h index 439384d203..9c21ca091f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.qss index 377ea69eac..b3c1fccb8b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.cpp index 2b914142c7..dc33ab730c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.h index fd51ac6b73..d9a167e059 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorComponentSliders.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.cpp index 17482ab832..010e44c22c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.h index 4d0931ec52..49e51c232b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.cpp index 6eac672fd4..b92b18826c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.h index debce4f79f..b73d0371f9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorGrid.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.cpp index e37a677e9b..b77137a24b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.h index 96122b3f11..2f3667025a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorHexEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.cpp index 67cb89793f..23d9ba9ab7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.h index 354419a1aa..d400cfc599 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorPreview.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.cpp index ff92d9be29..61a3bfbe6f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.h index e28540eb91..530fc2beb1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorRGBAEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.cpp index e9857a7e71..959a49277a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.h index e898e2a098..68df197191 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.cpp index 7439f21f28..8aea7f64be 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.h index 92dd2c283a..64072824a1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/ColorWarning.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.cpp index 77c0f5e285..08cc7154c9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.h index 481abf7c31..1448c7c45c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/GammaEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.cpp index 460e291fff..7be0f99e56 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.h index e2bfc2c022..155c0c03bd 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Palette.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.cpp index 87c3f84d03..39896bf765 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.h index 1a19701c2a..d39ffc5580 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp index e9e3d05b74..f9c88b477d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.h index 4c083829ba..5ee4156ffc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteCardCollection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.cpp index fddecc3594..0cdd8dccf6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.h index cd97dc1ded..fbb77ecce3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/PaletteView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.cpp index 19eccad49e..e39fa749a8 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.h index 3f0ff45fce..38eb64fedb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker/Swatch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.cpp index 008f619f94..0aa6264ce8 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.h index 20d4be843a..b82904be9e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss index 169f034dc6..ff553467ab 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ComboBox.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.cpp index e004461ed4..a98cf4ef49 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.h index 373fe2025f..f0a514535f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DialogButtonBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp index 0c1aff0166..eb80d73f2e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.h index 4754446037..f3e6ef52f4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/DragAndDrop.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.cpp index c3375d02dd..950c4a4029 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.h index 60127837c8..96674b85b4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ElidingLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.cpp index fcc029f7db..f38888f474 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h index 91a5c3e68b..6d241909f4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Eyedropper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FilteredSearchWidget.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FilteredSearchWidget.qss index c88e62b5ff..4498b1b627 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FilteredSearchWidget.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/FilteredSearchWidget.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp index b9642ce807..4178d542ef 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.h index 752d55123b..ea6dbd65d2 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/GradientSlider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.cpp index 4ca442b3e9..9d84bbfa5e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.h index 2f78d0040c..86cb64ad0a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Internal/OverlayWidgetLayer.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp index eefb23e6f5..a5adec9423 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.h index e6ec6d1886..7ab2b1efaf 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.qss index 314d3c934d..bce318e115 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LineEdit.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.cpp index 4fdb78211a..c1ba167354 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.h index 2365922818..822142fe1d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/LogicalTabOrderingWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.cpp index accce27d54..5e2d61c795 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.h index c292310dea..68e7ab5c29 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.qss index 1e07b044c1..67b006d880 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Menu.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MenuBar.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MenuBar.qss index b51cdcf60c..a69c6a6db5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MenuBar.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MenuBar.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.cpp index ea20a713bb..3ab3475954 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.h index 4e4c5d8334..aef86f6a5b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/MessageBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.cpp index f65b21c84f..68616ad9d3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.h index 9cf330952c..ccf7a5cf62 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/OverlayWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.cpp index 939a253257..dba32dd60f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.h index 4164738f0b..f1d923354b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.qss index 527bdf6fdf..565acd1987 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ProgressBar.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp index 381c4101cb..aa1e242b76 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.h index 34cd257f48..27ac7e9cd3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.qss index 568c8ac2d2..1752424ff0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/PushButton.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/QDockWidget.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/QDockWidget.qss index d578d17eca..79320c9479 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/QDockWidget.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/QDockWidget.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.cpp index 75119c9bb3..ff8c094268 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.h index 75e7a3478e..d28853f5c9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.qss index 8eebefba8a..772de7b2e0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/RadioButton.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ReflectedPropertyEditor.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ReflectedPropertyEditor.qss index e164e95b26..b141e1296d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ReflectedPropertyEditor.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ReflectedPropertyEditor.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp index 5b75e2a8ee..e9a047ced1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.h index 5db373f0b1..cd9533846c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.qss index 4472288f4b..b586748cad 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ScrollBar.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.cpp index 02a0ddd16d..2e2119fb68 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.h index 0c96b2e59d..fc4c61d6e6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.cpp index 7d7926e006..01125774ae 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.h index cac88cc6a5..bdb764fd31 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.qss index 0f47363759..1f7e34bee1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SegmentControl.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp index 1dcaaffd03..411cddc24d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.h index cae3c24883..ec07d03596 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.qss index 5349c9ea3e..9191139607 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Slider.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.cpp index 22df61df2b..f8c43a0932 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.h index d163aeab69..fa62ded371 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SliderCombo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.cpp index 85b449bcd4..c9a7779b65 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.h index 4955fe85d5..cf4269f2b7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss index cec5be14ec..1261893f90 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/SpinBox.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss index 042693cd25..18b2d81842 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Splitter.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.cpp index d5f290b0e4..df752c3cc2 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.h index fa58af6e5f..227ff35708 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StatusBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StyledDockWidget.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StyledDockWidget.qss index 3a19aef9c4..fce0770ee1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StyledDockWidget.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/StyledDockWidget.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp index 6ad3069b28..7fdbd98640 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.h index 5aee614e15..946a57187f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.qss index 174af7e488..92b6a68998 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidget.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.cpp index 8dc0579f74..fb60a77091 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.h index 99b8b06199..c8b046cda0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TabWidgetActionToolBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp index b957ad164a..7ecada1c15 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.h index 79bd483d48..258b025a51 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.qss index 09c7270504..b6dca72ebc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TableView.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.cpp index d8e6ab69f0..0550703f60 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.h index 44dd21c065..eb80711c6a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.qss index e04196af98..56b4321c82 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/Text.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TitleBar.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TitleBar.qss index a27de8b87e..aa3c2f444a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TitleBar.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TitleBar.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.cpp index 7b0dfd5fa5..80bd80d2ef 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.h index a9e33464b7..38f631c9cb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.qss index 9fdac241b8..49fea8cad9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolBar.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp index d6e9315c4c..7bad3586a2 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.h index adc526b2c4..88eb9948fb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolTip.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolTip.qss index 7322c4a813..7f3150b05c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolTip.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ToolTip.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.cpp index 785b623326..7460070c55 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.h index 9aa9e0254a..aa59dcb065 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/TreeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.cpp index e012a10ef0..2969685bdc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.h index 17eacea8dd..034b6f39d7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.qss index 73c5403efb..0781cba32e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/VectorInput.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/WindowDecorationWrapper.qss b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/WindowDecorationWrapper.qss index 9000f08206..c2fbf3c82b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/WindowDecorationWrapper.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/WindowDecorationWrapper.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp index fdb6322e9e..66f85e7fed 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.h index c6b81d777f..f7cab3ee77 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/WindowDecorationWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/MainWindowDragAndDrop.h b/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/MainWindowDragAndDrop.h index 4de1aa7d3e..b0fbdcc340 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/MainWindowDragAndDrop.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/MainWindowDragAndDrop.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/ViewportDragAndDrop.h b/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/ViewportDragAndDrop.h index e3b23cdc1d..4f61e4bf60 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/ViewportDragAndDrop.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/DragAndDrop/ViewportDragAndDrop.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.cpp index 128884ea40..f8559847f2 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.h index 13b11dc310..82f461fd46 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/AssetBrowserFolderPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.cpp index 20f2a4f768..4e295e9496 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.h index 6e2e98847a..f82a02016a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BreadCrumbsPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.cpp index 669b69c270..333923c17a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.h index e894a1f67f..4ac83af59a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/BrowseEditPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.cpp index f85a095afb..9a17180c56 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.h index 84df92139b..7b1c3c9dc3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ButtonPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.cpp index 5964b1546f..83b4a700db 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.h index ebb3d21d59..8f561c5b33 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CardPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.cpp index b7f8f6daf4..f6d6fc3132 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.h index 1ff7e17d2a..8ce74f5756 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/CheckBoxPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.cpp index 24d572fe15..eb0ae43627 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.h index 9e19b51d09..187d1a7b24 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorLabelPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.cpp index 5258fbea82..fa99319953 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.h index c80f8fd43b..955c896253 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ColorPickerPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.cpp index e94e84bb76..f53869527d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.h index 6e0a9545cb..e918294fca 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComboBoxPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.cpp index 582890363a..e2bf67db76 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.h index 70fdf1d8d5..acc8041718 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ComponentDemoWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.cpp index 1f2850e012..5f42d5d4a4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.h index d12db47c44..3a7b9a6505 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/DragAndDropPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ExampleWidget.qss b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ExampleWidget.qss index 3d7d58fd2e..f084d5c8af 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ExampleWidget.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ExampleWidget.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.cpp index fa9645ed24..11e15ff072 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.h index 6c2dee659a..110c525a79 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FilteredSearchWidgetPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.cpp index 265dfd3ac6..3691ce7750 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.h index 6c41640b33..f9eda0f274 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/FixedStateButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.cpp index 28e44932a6..e1edc85a82 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.h index c3b0db7cee..06c97efdd5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/GradientSliderPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.cpp index 9d6de91745..c0cba45898 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.h index 25bd2ed181..a13469ee8c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/HyperlinkPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.cpp index d6bbcbcb1c..2489ccfe8d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.h index 3e6124842f..9f865b2edb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/LineEditPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.cpp index dc7e71be24..9f21a73f32 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.h index 187148b536..b2b3fc1dbc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/MenuPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.cpp index d3be6eb398..1459c85ee2 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.h index f1f41200ed..bbf366b0f3 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ProgressIndicatorPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.cpp index 3769fd45d7..3586ac8bf1 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.h index 244243db72..5a4a038497 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/RadioButtonPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.cpp index 3ed448b1c2..ea1d85eee7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.h index 504a1adfe2..327a52e600 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ReflectedPropertyEditorPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.cpp index 5b0b79d160..437bb22e25 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.h index 408d67f432..d80839ba36 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ScrollBarPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.cpp index 779d5ded77..c63ce3e614 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.h index dd457c63a7..de6340f9bb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SegmentControlPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.cpp index eaa2fe8795..bd92e278cd 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.h index 1cc92b86ce..b65b5aed36 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderComboPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.cpp index 8a7f5d50fb..c72f8d24fc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.h index 4c1cc2adc4..d67287e20c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SliderPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp index ab81db5fbf..5026c9679e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.h index 064e559bb1..22f9dff1db 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SpinBoxPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.cpp index 3788551ced..f35d1a1fab 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.h index 0ac3f788b8..e4f517834e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SplitterPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetLabel.qss b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetLabel.qss index 42f06577c9..c2614fe876 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetLabel.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetLabel.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.cpp index e4e55277ac..258d305f49 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.h index aaa4e54a58..4a19711300 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.qss b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.qss index e0be6c11d5..a6f72faa64 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetPage.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetView.qss b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetView.qss index 9d7b282dd2..ed1fe60922 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetView.qss +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyleSheetView.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.cpp index 05dcbdc2b5..e6f15c78d0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.h index 79e1b3dd22..96473b075f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/StyledDockWidgetPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.cpp index 0f3d39e30b..3425182a3f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.h index cad7ff0f57..496b0e93db 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/SvgLabelPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp index e061cecf40..716c5138f8 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.h index 481ac6a5fa..977cc541ae 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TabWidgetPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.cpp index e3d27224f9..59a17ec49d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.h index 4901b17136..de7e57eaf4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TableViewPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.cpp index 9bcc506497..151e5a503e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.h index d578c3c5b6..5087f94a54 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TitleBarPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.cpp index 91719c557f..c0836cabb2 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.h index 97d61c6029..ef45e33d51 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToggleSwitchPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.cpp index 23446672c4..78477320a5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.h index 075cc4985d..43f5e69d36 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/ToolBarPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.cpp index 896fd0471f..305ac4801f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.h index 4423e7a683..36dadbf99b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TreeViewPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.cpp index fa19f10d4e..e235a862be 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.h b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.h index 5f06cc8f70..a232f51dd7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/TypographyPage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp index 872050effc..055b672494 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Gallery/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Platform/Linux/platform_linux_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/Platform/Linux/platform_linux_files.cmake index 934e6519cb..c734aa03f6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Platform/Mac/platform_mac_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/Platform/Mac/platform_mac_files.cmake index 2fea039c53..32e168e1f8 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Platform/Windows/platform_windows_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/Platform/Windows/platform_windows_files.cmake index d2690e8b19..06a45b0701 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp b/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp index 3cc9321a36..0082693c83 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/PropertyEditorStandalone/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp index a1898cc6ae..ad18668650 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h index ff61a745a6..be0bb76966 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp index 400dd9f7e7..c9b7648eca 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h index 75bbab4c9b..b921f73da7 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp index 597b33007d..9f7c670989 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h index ca1aa38034..e8dc6a1658 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp index 1c9a349182..f5d0095971 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h index 418abc656c..3c278754cc 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp index 748e8bab8d..573bb4c040 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h index 053d2f8714..8d9640553d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp index db8024b0e4..4ce21ebf7e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp index c5383cd787..49faac1e19 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h index b6837901cc..05fd4e327b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp index 70914a81c7..141028fd0a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Tests/AzQtComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Tests/ColorControllerTests.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Tests/ColorControllerTests.cpp index fa988f68d1..5ca30016ac 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Tests/ColorControllerTests.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Tests/ColorControllerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Tests/FloatToStringConversionTests.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Tests/FloatToStringConversionTests.cpp index 6c86ecd73d..2d2cf5c73d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Tests/FloatToStringConversionTests.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Tests/FloatToStringConversionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Tests/HexParsingTests.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Tests/HexParsingTests.cpp index 83b4ff47fc..0b63470561 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Tests/HexParsingTests.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Tests/HexParsingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Tests/StyleSheetCacheTests.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Tests/StyleSheetCacheTests.cpp index 89d035c600..aa4120f764 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Tests/StyleSheetCacheTests.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Tests/StyleSheetCacheTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/AutoSettingsGroup.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/AutoSettingsGroup.h index b75fda159e..b13f12472a 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/AutoSettingsGroup.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/AutoSettingsGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.cpp index 232e0c811d..ef4bc424e9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.h index 9553d3cbb1..343ccea609 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ColorUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp index e1b4cdd8ea..916694c155 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.h index 853c0a851b..944f95a83e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.cpp index fd0b136432..56f755568b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.h index 2986e076c7..557fff00ae 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/DesktopUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.cpp index df1797c598..9ebb3fea9c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.h index d1c8c2e63a..338257d19c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/HandleDpiAwareness.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider.h index f70f3b3605..b2460484e6 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_linux.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_linux.cpp index 1c0158654a..5e5e64f5db 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_linux.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_mac.mm b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_mac.mm index c7f3d4aabb..6605f3fdab 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_mac.mm +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_win.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_win.cpp index 03fba64041..8e013c31a5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_win.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/MouseHider_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.cpp index 75e199f06c..0ab1aefd13 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.h index 8c043f6576..f99f6b6bb5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtPluginPaths.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.cpp index 763c7c2907..5ad481df5c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.h index 940bb9416c..8fc9b498fe 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtViewPaneEffects.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.cpp index 928cf640f5..a5c029274e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.h index f7db6308eb..50dedc801d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_linux.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_linux.cpp index e67af5b0c8..4e4dfbdeb5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_linux.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_mac.mm b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_mac.mm index 84c4f1b1cb..5bbdb8f971 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_mac.mm +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_win.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_win.cpp index 90e6c0ebd7..ec021e9c4c 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_win.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/QtWindowUtilities_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.cpp index 29f5b87523..52a44825a4 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.h index 401b68981e..430adf7af0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/RandomNumberGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScopedCleanup.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScopedCleanup.h index 25e65b0264..a0f7348591 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScopedCleanup.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScopedCleanup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h index f1e629fb54..625a4e9fd9 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_linux.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_linux.cpp index 6ddcbcba5e..368a40673e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_linux.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_mac.mm b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_mac.mm index 75cf6db8a4..fc2d27704f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_mac.mm +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp index 0ba8964f36..eccba83221 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenGrabber_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.cpp index 1e78f2cb4f..3e82bc2170 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.h index a4cd621a24..61cc97c6cb 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/ScreenUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.cpp index 746f65ab79..db03e1ef3b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.h index f8913e59aa..dc647a3d26 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/SelectionProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.cpp index 61f3959c2a..b025667b8d 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.h b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.h index 8be0faa74f..a0a7c6c9d5 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/TextUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake index 4d24b402e9..cd00aff988 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_gallery_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_gallery_files.cmake index 01e21dbd50..b93c93a823 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_gallery_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_gallery_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_rpestandalone_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_rpestandalone_files.cmake index bd73d6dd59..2d2c20574f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_rpestandalone_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_rpestandalone_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake index 598309d1ff..5d33f6d8f0 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_testing_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_testing_files.cmake index bfe00cf495..aa0155fd96 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_testing_files.cmake +++ b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_testing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/CMakeLists.txt b/Code/Framework/AzQtComponents/CMakeLists.txt index 48c4d31469..8514df2616 100644 --- a/Code/Framework/AzQtComponents/CMakeLists.txt +++ b/Code/Framework/AzQtComponents/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/Platform/Common/Default/AzQtComponents/Utilities/HandleDpiAwareness_Default.cpp b/Code/Framework/AzQtComponents/Platform/Common/Default/AzQtComponents/Utilities/HandleDpiAwareness_Default.cpp index 4648c4c19f..0c035f200d 100644 --- a/Code/Framework/AzQtComponents/Platform/Common/Default/AzQtComponents/Utilities/HandleDpiAwareness_Default.cpp +++ b/Code/Framework/AzQtComponents/Platform/Common/Default/AzQtComponents/Utilities/HandleDpiAwareness_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/Platform/Linux/AzQtComponents/Components/StyledDockWidget_Linux.cpp b/Code/Framework/AzQtComponents/Platform/Linux/AzQtComponents/Components/StyledDockWidget_Linux.cpp index 806670eab2..8d7d56df96 100644 --- a/Code/Framework/AzQtComponents/Platform/Linux/AzQtComponents/Components/StyledDockWidget_Linux.cpp +++ b/Code/Framework/AzQtComponents/Platform/Linux/AzQtComponents/Components/StyledDockWidget_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/Platform/Linux/platform_linux.cmake b/Code/Framework/AzQtComponents/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzQtComponents/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/AzQtComponents/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/Platform/Mac/AzQtComponents/Components/StyledDockWidget_Mac.cpp b/Code/Framework/AzQtComponents/Platform/Mac/AzQtComponents/Components/StyledDockWidget_Mac.cpp index 806670eab2..8d7d56df96 100644 --- a/Code/Framework/AzQtComponents/Platform/Mac/AzQtComponents/Components/StyledDockWidget_Mac.cpp +++ b/Code/Framework/AzQtComponents/Platform/Mac/AzQtComponents/Components/StyledDockWidget_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/Platform/Mac/platform_mac.cmake b/Code/Framework/AzQtComponents/Platform/Mac/platform_mac.cmake index bdb1867450..a09cf33f46 100644 --- a/Code/Framework/AzQtComponents/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/AzQtComponents/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Components/StyledDockWidget_Windows.cpp b/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Components/StyledDockWidget_Windows.cpp index 4e51821c9f..089f7bef9b 100644 --- a/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Components/StyledDockWidget_Windows.cpp +++ b/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Components/StyledDockWidget_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Utilities/HandleDpiAwareness_Windows.cpp b/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Utilities/HandleDpiAwareness_Windows.cpp index ebff38a5c9..7e7b45433b 100644 --- a/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Utilities/HandleDpiAwareness_Windows.cpp +++ b/Code/Framework/AzQtComponents/Platform/Windows/AzQtComponents/Utilities/HandleDpiAwareness_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzQtComponents/Platform/Windows/platform_windows.cmake b/Code/Framework/AzQtComponents/Platform/Windows/platform_windows.cmake index 4ca0a39a88..30d3209953 100644 --- a/Code/Framework/AzQtComponents/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/AzQtComponents/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/AzTest.cpp b/Code/Framework/AzTest/AzTest/AzTest.cpp index b9742c3ff6..3b1b276eb4 100644 --- a/Code/Framework/AzTest/AzTest/AzTest.cpp +++ b/Code/Framework/AzTest/AzTest/AzTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/AzTest.h b/Code/Framework/AzTest/AzTest/AzTest.h index 3f39c40c2a..f5ea61c035 100644 --- a/Code/Framework/AzTest/AzTest/AzTest.h +++ b/Code/Framework/AzTest/AzTest/AzTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/ColorizedOutput.cpp b/Code/Framework/AzTest/AzTest/ColorizedOutput.cpp index 13ed2d0c89..c8fe3d9aa2 100644 --- a/Code/Framework/AzTest/AzTest/ColorizedOutput.cpp +++ b/Code/Framework/AzTest/AzTest/ColorizedOutput.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/GemTestEnvironment.cpp b/Code/Framework/AzTest/AzTest/GemTestEnvironment.cpp index 339ed308fb..388a315333 100644 --- a/Code/Framework/AzTest/AzTest/GemTestEnvironment.cpp +++ b/Code/Framework/AzTest/AzTest/GemTestEnvironment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/GemTestEnvironment.h b/Code/Framework/AzTest/AzTest/GemTestEnvironment.h index 62e1ae368e..ef28d2b35a 100644 --- a/Code/Framework/AzTest/AzTest/GemTestEnvironment.h +++ b/Code/Framework/AzTest/AzTest/GemTestEnvironment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform.h b/Code/Framework/AzTest/AzTest/Platform.h index 4c5bbbc8a8..1d8d1dad5c 100644 --- a/Code/Framework/AzTest/AzTest/Platform.h +++ b/Code/Framework/AzTest/AzTest/Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Android.h b/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Android.h index f03b27a156..6e18b1192d 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Android.h +++ b/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Platform.h b/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Platform.h index dac60fc790..1a1fa20b7e 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Platform.h +++ b/Code/Framework/AzTest/AzTest/Platform/Android/AzTest_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Android/Platform_Android.cpp b/Code/Framework/AzTest/AzTest/Platform/Android/Platform_Android.cpp index 844dfb6465..66c5d3c002 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Android/Platform_Android.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Android/Platform_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Android/ScopedAutoTempDirectory_Android.cpp b/Code/Framework/AzTest/AzTest/Platform/Android/ScopedAutoTempDirectory_Android.cpp index 8271123b6c..d3345a71f6 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Android/ScopedAutoTempDirectory_Android.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Android/ScopedAutoTempDirectory_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Android/platform_android.cmake b/Code/Framework/AzTest/AzTest/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Android/platform_android.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/Android/platform_android_files.cmake b/Code/Framework/AzTest/AzTest/Platform/Android/platform_android_files.cmake index 3d6aea1cb7..d870bdd8ab 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ColorizedOutput_Unimplemented.cpp b/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ColorizedOutput_Unimplemented.cpp index b93538168c..a1f3fb9581 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ColorizedOutput_Unimplemented.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ColorizedOutput_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ScopedAutoTempDirectory_Unimplemented.cpp b/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ScopedAutoTempDirectory_Unimplemented.cpp index 8d8dde4246..76e6da1102 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ScopedAutoTempDirectory_Unimplemented.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/AzTest/ScopedAutoTempDirectory_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/Platform_Unimplemented.cpp b/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/Platform_Unimplemented.cpp index df642af7b4..3523056884 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/Platform_Unimplemented.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Common/Unimplemented/Platform_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ColorizedOutput_UnixLike.cpp b/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ColorizedOutput_UnixLike.cpp index 8e605a7cbd..e2491f73d8 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ColorizedOutput_UnixLike.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ColorizedOutput_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ScopedAutoTempDirectory_UnixLike.cpp b/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ScopedAutoTempDirectory_UnixLike.cpp index 4f27499f53..fb57fbec19 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ScopedAutoTempDirectory_UnixLike.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Common/UnixLike/AzTest/ScopedAutoTempDirectory_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Common/WinAPI/AzTest/ColorizedOutput_WinAPI.cpp b/Code/Framework/AzTest/AzTest/Platform/Common/WinAPI/AzTest/ColorizedOutput_WinAPI.cpp index 315e33a43a..30d68c939e 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Common/WinAPI/AzTest/ColorizedOutput_WinAPI.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Common/WinAPI/AzTest/ColorizedOutput_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Linux.h b/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Linux.h index f8bc2e51a0..c27b22c84d 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Linux.h +++ b/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Platform.h b/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Platform.h index ce874861dd..967a8ef1ac 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Platform.h +++ b/Code/Framework/AzTest/AzTest/Platform/Linux/AzTest_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Linux/Platform_Linux.cpp b/Code/Framework/AzTest/AzTest/Platform/Linux/Platform_Linux.cpp index e589cbd16d..f7deeb656c 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Linux/Platform_Linux.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Linux/Platform_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux.cmake b/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux_files.cmake b/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux_files.cmake index 29e5c9ff6f..f67015560e 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Mac.h b/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Mac.h index f4837486ec..588ab85f9d 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Mac.h +++ b/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Platform.h b/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Platform.h index 1cc5e24332..ea0a74900b 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Platform.h +++ b/Code/Framework/AzTest/AzTest/Platform/Mac/AzTest_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Mac/Platform_Mac.cpp b/Code/Framework/AzTest/AzTest/Platform/Mac/Platform_Mac.cpp index 975f2d1074..33b0ed9847 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Mac/Platform_Mac.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Mac/Platform_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac.cmake b/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac_files.cmake b/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac_files.cmake index c01ba6f914..250d5742ea 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Platform.h b/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Platform.h index e4fe538f3b..f6e96f4a99 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Platform.h +++ b/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Windows.h b/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Windows.h index d5fa8c38bc..c9474e4451 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Windows.h +++ b/Code/Framework/AzTest/AzTest/Platform/Windows/AzTest_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Windows/Platform_Windows.cpp b/Code/Framework/AzTest/AzTest/Platform/Windows/Platform_Windows.cpp index 98b5bcc50e..800d2dc8fd 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Windows/Platform_Windows.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Windows/Platform_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp b/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp index 92591c67b2..6803bbf3dd 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/Windows/ScopedAutoTempDirectory_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows.cmake b/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows_files.cmake b/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows_files.cmake index 35a7e58d19..5d6e4104a7 100644 --- a/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_Platform.h b/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_Platform.h index 286b00a11c..0f6d57bd0b 100644 --- a/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_Platform.h +++ b/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_iOS.h b/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_iOS.h index f4837486ec..588ab85f9d 100644 --- a/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_iOS.h +++ b/Code/Framework/AzTest/AzTest/Platform/iOS/AzTest_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/iOS/Platform_iOS.cpp b/Code/Framework/AzTest/AzTest/Platform/iOS/Platform_iOS.cpp index 6be602ff62..2054e88b76 100644 --- a/Code/Framework/AzTest/AzTest/Platform/iOS/Platform_iOS.cpp +++ b/Code/Framework/AzTest/AzTest/Platform/iOS/Platform_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios.cmake b/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios_files.cmake b/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios_files.cmake index 692d57b0c7..2e39d7b780 100644 --- a/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/AzTest/AzTest/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/AzTest/Utils.cpp b/Code/Framework/AzTest/AzTest/Utils.cpp index 39bb7a0355..681fe413af 100644 --- a/Code/Framework/AzTest/AzTest/Utils.cpp +++ b/Code/Framework/AzTest/AzTest/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/Utils.h b/Code/Framework/AzTest/AzTest/Utils.h index 64e73d6898..9d80b96d36 100644 --- a/Code/Framework/AzTest/AzTest/Utils.h +++ b/Code/Framework/AzTest/AzTest/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzTest/AzTest/aztest_files.cmake b/Code/Framework/AzTest/AzTest/aztest_files.cmake index 2edf58c480..519ed51ba4 100644 --- a/Code/Framework/AzTest/AzTest/aztest_files.cmake +++ b/Code/Framework/AzTest/AzTest/aztest_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzTest/CMakeLists.txt b/Code/Framework/AzTest/CMakeLists.txt index 8d0afb37c8..34a8dacdb4 100644 --- a/Code/Framework/AzTest/CMakeLists.txt +++ b/Code/Framework/AzTest/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/AssetDatabaseBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/AssetDatabaseBus.h index 22f20ad324..c3554ea50c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/AssetDatabaseBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/AssetDatabaseBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntityObjectBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntityObjectBus.h index 1c56de77ef..ab7e4be2dd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntityObjectBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntityObjectBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntitySelectionBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntitySelectionBus.h index d2b3eace9e..5502df4226 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntitySelectionBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ComponentEntitySelectionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAnimationSystemRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAnimationSystemRequestBus.h index be56624fe6..1a785a6309 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAnimationSystemRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAnimationSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h index b2aeb85674..5ff1bbeb6a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorAssetSystemAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.cpp index 69c398cbd6..c68e04d402 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.h index e77c55aed0..0b1dc1a51d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorCameraBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorEntityAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorEntityAPI.h index d293840c2c..b3fb4d578c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorEntityAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorEntityAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorLevelNotificationBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorLevelNotificationBus.h index c2e0c92ed6..d2aa632b57 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorLevelNotificationBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorLevelNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonConsoleBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonConsoleBus.h index 7a2b2e6b3f..51aecbd8e7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonConsoleBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonConsoleBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonRunnerRequestsBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonRunnerRequestsBus.h index ab313633f4..a7731067fe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonRunnerRequestsBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorPythonRunnerRequestsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorVegetationRequestsBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorVegetationRequestsBus.h index 5224ee9625..f86c21c9c8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorVegetationRequestsBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorVegetationRequestsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorViewportIconDisplayInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorViewportIconDisplayInterface.h index b74de38345..805b188abf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorViewportIconDisplayInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorViewportIconDisplayInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorWindowRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorWindowRequestBus.h index af963145b9..03bb76b03a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorWindowRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EditorWindowRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionNotificationBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionNotificationBus.h index adbc0b2fee..122c692d94 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionNotificationBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionRequestBus.h index 753e311707..a8125a23e9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityCompositionRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityPropertyEditorRequestsBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityPropertyEditorRequestsBus.h index 5253acca46..e491f4835b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityPropertyEditorRequestsBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/EntityPropertyEditorRequestsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h index 107e67eab6..db78866f2e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ToolsApplicationAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ViewPaneOptions.h b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ViewPaneOptions.h index a7b7e3b33b..9583312f66 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/API/ViewPaneOptions.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/API/ViewPaneOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.cpp index 20bbe7e295..fd6ca3d845 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.h index d4143ab7c6..b1c4b47886 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/EditorEntityManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.cpp index 63a0a32947..898b4ca02e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.h index fdb6271b9a..355a3f4c1c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/Ticker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp index 7dc0587475..ff0c2c586b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.h index a823132d48..96277bd1b5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveAPI.h index 35613aae0d..81bfe60c8d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp index 02e235d126..0bbf3ea33c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.h index 99ee62599d..9da8c5db23 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/ArchiveComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.cpp index 384483afe2..c7c23d8075 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.h index 8d66a59398..9ad465ec25 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Archive/NullArchiveComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.cpp index a6a70395bd..aa9528efd8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.h index 78ea542af2..dff21bd456 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetBundler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.cpp index 4fd665d374..0b692a0ccf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.h index 924e14d12f..3de92d91db 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetDebugInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp index e9924fee30..3b06a1e249 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.h index 300f8b4d46..9d68f26f19 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetProcessorMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.cpp index 8effe11e48..a17de15b46 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.h index 51b2bb5399..0eb7c95906 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSeedManager.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp index f99893a7f3..cf96a624fb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.h index 264ba86de0..d419962259 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp index 99665f064d..1ce62dcd23 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.h index 8ba7d1aab3..ed4e67222b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Asset/AssetUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.h index 1754cd377a..97a6e158be 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.inl index 558dc86007..b06419522f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserBus.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.cpp index da30bd5232..14038069dd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.h index a2c533645d..12e2f81a3d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserEntry.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserEntry.h index 903c3b8b0a..76fa850163 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserEntry.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp index 334e091896..420b44bad2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h index 6901be74c9..c812437658 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserFilterModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.cpp index 41da1c2eb4..07823f77a6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.h index a7877cae7d..c810be2408 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserSourceDropBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserSourceDropBus.h index dde9f90918..c5dedfa778 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserSourceDropBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetBrowserSourceDropBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChange.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChange.h index 847994410e..e9b2b55625 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChange.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChange.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.cpp index 646db7b43e..b3dc27fadf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.h index c36d6505c4..4f4ad82a31 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetEntryChangeset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp index 15d0fd5af1..9411424f0e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h index 35504e512b..04890ede72 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetPicker/AssetPickerDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp index 3653439cfd..7d7c0907c1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.h index 4f12a57fed..56e48ce9d3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/AssetSelectionModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/EBusFindAssetTypeByName.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/EBusFindAssetTypeByName.h index 5becff49a6..24df133c3f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/EBusFindAssetTypeByName.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/EBusFindAssetTypeByName.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.cpp index 6a48350613..17a20a9d19 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.h index e3f35b13b8..e4a7b6b4cb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.inl index c2861d9f20..99ad927a88 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntry.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.cpp index 2447f5668c..fe0cc0ec43 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.h index 8be5737e0e..6c73002f42 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/AssetBrowserEntryCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.cpp index fefa0cc2d6..3c5afab0d0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.h index 4a2f90416f..f86513d16b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/FolderAssetBrowserEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.cpp index b34afb0a7d..58431f1767 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.h index a5b73e8e44..9ae1593a45 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/ProductAssetBrowserEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.cpp index 6e656f2104..090ad0d6ca 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.h index bca2cbb561..883f9dec01 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/RootAssetBrowserEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.cpp index 19aea8bc73..e45c234c92 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.h index ef3f473b94..4b588454f9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Entries/SourceAssetBrowserEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.cpp index e2ea6bed66..6d143b3a25 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.h index fbe3e3a048..5cffa7abea 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/EmptyPreviewer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.cpp index 6dafc1f7fb..23878826d2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.h index 0dd8726d5d..e0c6f33182 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/Previewer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerBus.h index 0f1ccdfb0d..742389ea56 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFactory.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFactory.h index d44b165a14..bc09e6cdcd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFactory.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.cpp index 1570d1f93e..ebf72ab2a6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.h index 4da0a5ed57..5251b05811 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Previewer/PreviewerFrame.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.cpp index ede9568f4b..1b9396a3fa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.h index a2d2e2aeda..e31c551330 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/Filter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.cpp index 81b6ac2505..a5c2d2e808 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.h index 82ab35f3f7..e7df3b9641 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/FilterByWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.cpp index 44d8db0521..f1385fa2f1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.h index b0cba12bb4..ec48d1b147 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchAssetTypeSelectorWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.cpp index f5b1115fdf..898cce9415 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.h index a2fa0a16e4..2dd9c1d707 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchParametersWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.cpp index 74a4e3ce9d..0ec27ff6c6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.h index 879100787d..b256e81496 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Search/SearchWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/SortFilterProxyModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/SortFilterProxyModel.cpp index 3aa3fd22bd..3b499465cf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/SortFilterProxyModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/SortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/AssetBrowserProductThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/AssetBrowserProductThumbnail.cpp index c3e4f22003..24c9158f18 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/AssetBrowserProductThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/AssetBrowserProductThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.cpp index 5197ec75ce..0ac2127244 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.h index 0c563b7706..93b2e0a6fa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/FolderThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.cpp index 7136995b15..8cae683848 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.h index 80ea876501..a6dd416c12 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/ProductThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.cpp index cb4572502c..bc30021baf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.h index 1f42b7e124..232a94778f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Thumbnails/SourceThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp index 63f4f5ce41..b814f17715 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.h index fd77a773fd..920441bd26 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserFolderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.cpp index 8a676a8d00..147e06475e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.h index c748ec0c7f..4f5512dfa8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/AssetBrowserTreeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.cpp index a557b7e3b3..ed81f29a14 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.h index 92fe7ba0fa..8b3bcd5b49 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBrowser/Views/EntryDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleAPI.h index 900498e9fb..3f65ee380b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.cpp index fcc9fe09fb..a21bba0add 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.h index 75962e6836..adc810f969 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetBundle/AssetBundleComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.cpp index b089cba832..d0a0852ecb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.h index 6975d2cd9c..e1da359576 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogBus.h index fcd6a5d0d3..0094d3ef64 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.cpp index 02aaa43321..d10ade0aa8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.h index de59da6775..ffd2020a9a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetCatalog/PlatformAddressedAssetCatalogManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp index 54962bcb1d..4485b0fc5e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h index d2e4eade2c..e7e7522908 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetDatabase/AssetDatabaseConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h index d041e61727..260ce3824d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp index 30a65780be..d2e5225745 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h index 465f596b47..3b0d8794c1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorHeader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorUtils.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorUtils.h index a238b9d5f6..578ebbcd1a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorUtils.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp index 37733702ba..a13e5acf84 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.h index 47d05eac3a..7acd6e630e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AssetEditor/AssetEditorWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp index b6be9ec974..0b757da960 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.h index c09a49ecff..4357d485cf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFrameworkModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFramework_precompiled.h b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFramework_precompiled.h index f0fd233d87..2c3443a910 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFramework_precompiled.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/AzToolsFramework_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp index f9a03bc0bc..966b2c3aa6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.h index be8b52413d..67472d496d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/BaseSliceCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.cpp index a70952d773..62d3093428 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.h index 92476d3e37..799ce4e037 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/ComponentModeCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp index 378eae3291..8c5223ed9f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.h index f50304d4c6..6e19e0762d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/CreateSliceCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp index 8eefd79656..d6f10bab03 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.h index 4d2cd5e399..3417b24b5d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/DetachSubSliceInstanceCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.cpp index c76efb1235..9ad69f45db 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.h index 3999fba524..f714269f68 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityManipulatorCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp index baab400390..a6cad1ff65 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.h index 571b05f7c2..14111bbabe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityStateCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp index 8af6d536ab..7c6fc8381d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.h index 67138cf86f..708f57d327 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/EntityTransformCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/LegacyCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/LegacyCommand.h index af9cee44a1..075276f7a4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/LegacyCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/LegacyCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp index 556be128cf..a967b654cd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.h index 1d9df0d714..c820d8e147 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PreemptiveUndoCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp index 74654e1958..a416188a01 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.h index 2e92c56f53..9dbb4f6ab9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/PushToSliceCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp index 94e67b7f65..07c076873f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.h index 4ce0940724..8a71f18c2e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SelectionCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp index 06b8c81068..27bce797bd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.h index eba64b0dd9..9dde68d2f7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Commands/SliceDetachEntityCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIBus.h index 4dd7417cb9..ce2eb1089c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp index d2d560cbde..61e0788135 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.h index a8cbc3bdc7..f4cd158d9b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorComponentAPIComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIBus.h index a73a7779ef..9580ed5236 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.cpp index 065b790a32..9a430fafcc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.h index 17a12e1f1c..1f253efed0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Component/EditorLevelComponentAPIComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.cpp index 1730885511..a17720c97d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.h index 5a18034d32..93f5344a7b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeCollection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.cpp index 8c1350e671..33a1601ff4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.h index f0bf6a34c1..384603b192 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.cpp index 97c84b674e..3568658daf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.h index a88ff36547..19286d367b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUi.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUiRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUiRequestBus.h index 19a3b9ea3c..ce7a701838 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUiRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/ComponentModeViewportUiRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.cpp index b678c73559..819d8a0d5c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.h index 42905707d2..c210cfd172 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorBaseComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorComponentModeBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorComponentModeBus.h index 789816a23a..4bee225f2b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorComponentModeBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentMode/EditorComponentModeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.cpp index ba48e8ba22..0d80bc64fd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.h index 4aa0775434..7e2e571c3a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.cpp index ac36bf0d38..f7291ca573 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.h index d7dd141cd7..e862d6dd11 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ComponentModes/BoxViewportEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.h index 04c87dd276..4f14399ad9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.inl index a016a3ad52..e3852dd148 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContext.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.cpp index 800572d494..cf4f815f4a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.h index fc6e74a7a2..5d1c4cb169 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.inl index 76fbeefaff..19d10b6515 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextBufferedFormatter.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.cpp index 4dde9fd3a8..f1f6a91825 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.h index f4a9db9d9a..7284f98185 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextLogFormatter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.cpp index 4860d179f8..5a5f5cac5c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.h index ed3a69f14a..36b86149f0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextMultiStackHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.cpp index 818339ff06..7dab69d383 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.h index 660a09e3da..af486906b4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextSingleStackHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.cpp index 2fcbafbeb1..66048e4142 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.h index 556d370703..261e07db9c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStackInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStackInterface.h index 3d19ea95f9..367801098c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStackInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Debug/TraceContextStackInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorContextMenuBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorContextMenuBus.h index 55d43faa06..338deb6c62 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorContextMenuBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorContextMenuBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorSettingsAPIBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorSettingsAPIBus.h index 4f037b870a..324a46b4dc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorSettingsAPIBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Editor/EditorSettingsAPIBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityAPIBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityAPIBus.h index e54b8eb30c..d87e5639b9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityAPIBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityAPIBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.cpp index d407d6d369..2aaf7826ef 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.h index 2628ba0898..1acaa4bebb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityActionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextBus.h index 287fe86d83..4ff7c6916c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp index c386ced0f3..daaac12f14 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.h index c6104cb5d3..706400a49c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextPickingBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextPickingBus.h index 9539a22274..6050aa4fdd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextPickingBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityContextPickingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp index 26967c4112..502dd8cfa6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.h index 9022768c66..e86c87040d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityFixupComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp index 9686e0ac98..ddb61e6307 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.h index 70f488a85c..8b1a38cecb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityInfoBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityInfoBus.h index e6206a1b7a..5629207ab0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityInfoBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityInfoBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp index 465de44049..2f832b5d5d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.h index afd52915d5..ca5d3e5d9c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelBus.h index 395933a901..d232640c97 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.cpp index be68322e25..6465944811 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.h index 24b26aa849..0fc203e3f1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityModelComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityRuntimeActivationBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityRuntimeActivationBus.h index 119d3d82b8..925f2d7d99 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityRuntimeActivationBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityRuntimeActivationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchBus.h index b134e6b23b..d45ca05452 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.cpp index f263f42b38..9ae135c5a8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.h index 35381be624..0b32ce1587 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySearchComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortBus.h index 528cea4029..6cea813809 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.cpp index 19bdc5c2c7..61a35d6c04 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.h index a2f27f298d..c1252253ec 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntitySortComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityStartStatus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityStartStatus.h index 4a19f85d50..f9e6c4a752 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityStartStatus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityStartStatus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityTransformBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityTransformBus.h index 76215caddf..198dda2a05 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityTransformBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/EditorEntityTransformBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipInterface.h index 49bdc2ca49..f629a92795 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.cpp index c308a73874..8c541a2392 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.h index 6d37f59347..777486d27a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/PrefabEditorEntityOwnershipService.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp index 87ce7a70cc..7d496a9913 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.h index b759b3795f..d001de08f3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipService.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipServiceBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipServiceBus.h index fdd2e97e6f..cc6206d53b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipServiceBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Entity/SliceEditorEntityOwnershipServiceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.cpp index d8a246c7ef..1a9ef476c1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.h index aee0f2fa01..a711c153f0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Fingerprinting/TypeFingerprinter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.cpp index 7c9c8cf533..96ba50cac4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.h index ac10760eea..1f6d1371d4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/AngularManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.cpp index c340f3b251..383a69e20d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.h index 6958055c29..182a56f524 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BaseManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h index 6e34553c6d..a00ac459ac 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/BoxManipulatorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp index b86cc5e958..ce12d4839f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.h index 9d6b3cfbc7..aec4852517 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/EditorVertexSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/HoverSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/HoverSelection.h index 95f2c698af..ef03e86a91 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/HoverSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/HoverSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.cpp index 2f0c9a7c59..665c32ab34 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.h index 8adad1dfad..a84a8b016c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineHoverSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.cpp index a5e722c536..59443cc2a6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.h index 016cc2284d..2ccc4712f5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LineSegmentSelectionManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.cpp index b90f377348..3e452c8956 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.h index 73ddc008db..bbab944a20 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/LinearManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorBus.h index f48e948f85..641d6bf89b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.cpp index bc34fd6a8d..2a9991d11f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.h index c9533a486f..8821926424 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.cpp index 02bfe9e3ad..7144452495 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.h index 6d1b733e5b..7e8013fa0d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.cpp index ffb506268b..ab6de6c067 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.h index 4a27c4637e..0c3fe05e0d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSnapping.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.cpp index 1144f4191f..5ab94ea9fe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.h index 01f8b4c7d6..e59b2f03f4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorSpace.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.cpp index 9baab089ec..0f2f75af03 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.h index 2fe5997bfe..da27cbe999 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ManipulatorView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.cpp index 7638361a36..1d853d8f3f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.h index 581e31b600..96736b7dde 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/MultiLinearManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.cpp index 59589951f9..7c09aff31b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.h index 9b3fa78d76..0ccb75441b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/PlanarManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.cpp index 545ffc766d..5c2d39f173 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.h index aedf4e862c..24ccea2824 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/RotationManipulators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.cpp index d0c8c0b2f3..977e3f4e11 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.h index 154bc5d409..52e7fc5e19 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/ScaleManipulators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.cpp index bb78277c3f..93c7e3f6f3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.h index 73857ab093..a040dc260a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SelectionManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.cpp index 0458b19cb6..9d1838ac1e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.h index 093fa98873..a6cf0ecc6e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineHoverSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.cpp index eae1c879fc..6f6d714fb6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.h index 0fee01b510..c9c25d0abc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SplineSelectionManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.cpp index 9327f91281..04c77c4227 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.h index 5494d48bbc..542c944656 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/SurfaceManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.cpp index 307a30dd4d..9c4b803b4f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.h index 15c158545b..fe1255a3c3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Manipulators/TranslationManipulators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Maths/TransformUtils.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Maths/TransformUtils.h index e00870bf3b..f3a8fc08c4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Maths/TransformUtils.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Maths/TransformUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/BoundInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/BoundInterface.h index c1c9d880b3..2bf36fede0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/BoundInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/BoundInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/ContextBoundAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/ContextBoundAPI.h index 9d73cbfa4d..d1c0828ad2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/ContextBoundAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/ContextBoundAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.cpp index a1ae8b923c..85ff51be2b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.h index 9342188671..f7b56e667c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBoundManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.cpp index 7b0d6ddd1d..1cafdb8840 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.h index 373fa0a524..32f2027687 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Picking/Manipulators/ManipulatorBounds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.cpp index a83e1d6653..dc9f1c105c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.h index fa32499f61..75fb1eabd2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/EditorPrefabComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp index 718a1e8f85..b229fb7f9d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h index ea3449f4c8..80fd434579 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp index b15addb2b8..c000dd9349 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.h index 03ceaf8020..d74d20ba6d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.cpp index 74ec429a7e..a16b5233a8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.h index f45566c592..8d39d9e13d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapperInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapperInterface.h index 100b7f88f8..2c2636709d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapperInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityMapperInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.cpp index bf353a1d27..1b57352c11 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.h index fb5eba58c7..8f3e2262be 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityScrubber.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.cpp index faa5925806..95cfa38bd6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.h index 638ac52867..e49ae60c50 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplateInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplateInterface.h index c0f3b4bdf2..63a29ecde1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplateInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplateInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp index a7b76d27db..720c14ed36 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.h index c32707dd40..b6210b26e4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceToTemplatePropagator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.cpp index 1b659ef67b..8cd76c6c73 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.h index dadec60c52..6eb43c0713 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutorInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutorInterface.h index 5cd5aaf89d..f13c4542cf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutorInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceUpdateExecutorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.cpp index 1e9f08948e..a5125701a7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.h index 3239e8f82a..d3773a4928 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapperInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapperInterface.h index 2458a7336b..64cbde6db8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapperInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/TemplateInstanceMapperInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp index 39b8f4a3cd..1d27fa6375 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.h index f5c8480ce4..e0387357cf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Link/Link.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomTypes.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomTypes.h index bd455c4998..439942587d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomTypes.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp index 1dfb1a2a0b..4d02c61b3d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.h index 6aeeb9eb7d..20ba49e0ca 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabDomUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabIdTypes.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabIdTypes.h index 7dca46c400..58e58735f3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabIdTypes.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabIdTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp index 51d6ff0ac6..92ff87b9ba 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.h index c34bb92f11..b1c8daeaac 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoaderInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoaderInterface.h index d642b0ca6a..c3d20a6dc5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoaderInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabLoaderInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp index 4e57d30e5b..cf55a02f65 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h index 75e151a7a4..687c11cd60 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h index dd30767bc7..e65268dcb2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicNotificationBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicNotificationBus.h index f5baa8b134..6eba957049 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicNotificationBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp index 9d1e95657d..45b019f0a7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.h index aeb64e97f8..89452543fc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponentInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponentInterface.h index 99adafb361..4e77d0b89a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponentInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabSystemComponentInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp index fa21c4a308..fef43fbfcc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.h index 747ed29865..51bd2ca0c0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.cpp index dcf2a57c64..f6750459ff 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.h index c0472a1c7c..ca1ad086ee 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.cpp index 597ccb6b85..6801c094c3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.h index a15d9c4f17..607302e1c1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndoHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.cpp index 87ec9a5bd8..569968de8c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.h index 4a4cdb360c..9342d61d24 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ComponentRequirementsValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.cpp index 6ba4d2de19..1944893069 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.h index 8fa1a2abf5..a7c093eb8a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorInfoRemover.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.cpp index f7f6454ca6..95263c1355 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.h index cf14a46924..ca75f26aac 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/EditorOnlyEntityHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.cpp index c6fe602139..d236fb412b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.h index 14b3423cc3..152d7008ad 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/UiEditorOnlyEntityHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.cpp index 86b1eaaeef..ebb277a2dc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.h index 29a35921f4..c94c5e5ba2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/EditorOnlyEntityHandler/WorldEditorOnlyEntityHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp index 21770551be..8a4b4f6cc5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.h index 2472816be3..ae793629ad 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabCatchmentProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.cpp index 5c4cfc4f25..fd167ee4e7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.h index ed8276176f..4ede599ad9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabConversionPipeline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessor.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessor.h index fd54bff234..3be7a3e518 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessor.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.cpp index 38d6288a21..8b9913dfc3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.h index 28c87b7391..6e5eb5fc14 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/PrefabProcessorContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.cpp index 2feee7d7bc..612c587f63 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.h index 8746319fdb..d80b240901 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/ProcesedObjectStore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.cpp index 319a22ef32..d4f765db38 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.h index 375bc18ce8..21dd41f902 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableMetaDataBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.cpp index f23f9c6187..d046fc733d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.h index e727f3487d..2c2ec2f532 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Spawnable/SpawnableUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.cpp index 5c0edd8a74..a750468eb7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.h index 46a5f71bc6..fd44349901 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Template/Template.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.cpp index 469bcc617d..fecb2614cc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.h b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.h index bd4e54533b..a3563616e5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.cpp index 8f2f8b7253..aadd1fd24f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.h index 0b4430dc8d..4f62adeab4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PropertyTreeEditor/PropertyTreeEditorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.cpp index abdb5f9642..6e0560d2fa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.h b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.h index 54a8f51788..412de079e3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptHelpDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.cpp index 87a320ac41..66d69683f1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.h b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.h index ef6079f90e..72f7d2d9cf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/PythonTerminal/ScriptTermDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.cpp index 7d3c0c3be3..fa53959f30 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.h index 2a6153467c..aa5d265b84 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Render/EditorIntersectorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.cpp index ae32907446..0b8decfc67 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.h index 7ed182e372..59a3d5a814 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteBoundColumnSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.cpp index 529333e7d6..ee2534ed9c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.h index b1a18e4711..db3ccd2631 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteConnection.h @@ -2,7 +2,7 @@ #define AZFRAMEWORK_SQLITECONNECTION_H /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.cpp index 7ab28ba4c3..bf0a2bdbdf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.h index cf57f0257d..4e1001fa6d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQuery.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQueryLogBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQueryLogBus.h index cab763aa15..5592d7779f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQueryLogBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SQLite/SQLiteQueryLogBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.cpp index 3b4c81a65a..80a9f8dd9c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.h index 31de722e97..d0f4a0234c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceCompilation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp index 0930aa3526..138851580d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.h index 08969755fd..375ec23383 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDataFlagsCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserBus.h index 253a59a13a..5f3f28d273 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.cpp index 2273105667..b908ccfebd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.h index bb5655b58b..bbad6b778d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceDependencyBrowserComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextBus.h index ca71e64509..e6b6836c7a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp index d317e90886..f83569bb13 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.h index 13e113bd0f..739aa425b3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceMetadataEntityContextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.cpp index 756b6d08ca..53e5253c94 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.h index 0319faff3a..517ebd74f6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRelationshipNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestBus.h index 2b8483cdc5..562311dd26 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp index 2d12e0e633..043ed2f1a3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.h index 270c9b2567..111ce81fbc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceRequestComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp index 9a5f9c7ae2..81aacf9372 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.h index 41d8a176f6..89346a3fa0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceTransaction.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp index 17d2af1812..b5c8058f73 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.h index 2ae749a730..165daac713 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Slice/SliceUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp index eec4c90c5e..db766eae61 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.h index 5c42027a51..aa125fad8f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/LocalFileSCComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp index ca5a9ac6e9..8685dd1eec 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.h index 176cbb5f28..548940c198 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp index 79fe86b161..6ed42a28a9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.h index 30ad7d42b4..ce0f3b126a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/PerforceConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp index 061efb9b0d..5f78008661 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.h index 7430dfef72..dff7d32506 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/QtSourceControlNotificationHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/SourceControlAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/SourceControlAPI.h index 19521181d6..0eff682b41 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/SourceControlAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/SourceControl/SourceControlAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp index 8a87109658..a91fb9a8ad 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h index 0e659ba259..02912f806a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/LoadingThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.cpp index 5f7c46167b..7541641e24 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.h index c42a42b951..aef2a335ea 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/MissingThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.cpp index 46ef77bd38..4bd21a0baa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.h index 5dcedc2a93..8deb79d1df 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnailBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnailBus.h index 10d89a15ab..85d4f44d3b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnailBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/SourceControlThumbnailBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.cpp index 78b70a5fd2..c29c578599 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.h index 5f4cb48a13..558f902f90 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.inl index c5952734a4..f355555346 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/Thumbnail.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.cpp index b440e66593..865e8a4207 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.h index e0f55c7645..2f863803b2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailDelegate.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailDelegate.h index b2ba8d715b..5b036a32f2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailDelegate.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.cpp index 04d11df59f..7ed0ba0697 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.h index 8ee76a7b82..8e099b7d06 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerBus.h index c94390cd2b..dc6cb30546 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.cpp index e5f83baffd..ee2f58e409 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.h index 32b7406925..2a8e5eeae7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.cpp index 5016487d75..39866b2fe9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.h index 5b704c3aa2..463d1fa5b2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Thumbnails/ThumbnailerNullComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.cpp index eda4b2493b..d737074e11 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.h index d6b94a2687..8bdee09ba7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/AzToolsFrameworkConfigurationSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp index 0fc42725f7..bb16f7ecfe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h index c465375705..2918885bdc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentAssetMimeDataContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.cpp index 0c16671c7a..31ab4714af 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.h index 3b403f0490..71da90225f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ComponentMimeData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp index 60446fe859..050034bce4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h index 30b0fb8acc..6edeff2785 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetMimeDataContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp index 8e0280b17f..e6e7c86acc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.h index 3f018f6b36..4f19892427 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorAssetReference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.h index c21b31debc..b938c37695 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.inl index 7a8f4e9bfb..35e75c68a8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentAdapter.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp index fd954162e2..38aa806f44 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.h index 0229b2c8a0..5c1db2cf19 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionBus.h index cb05c5424e..0edfb52c57 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp index cfb79ceb81..20ef7e64d4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.h index f6b4d65041..eaff41c2e8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorDisabledCompositionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp index 257b22f61d..c25450949c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.h index 5c9d15ee65..81bf1fe50f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponentBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponentBus.h index 8eb853c144..8c12de824c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponentBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIconComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp index fbca745eac..613edb0d1b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.h index c31a6e684c..1f00d64ff9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorEntityIdContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.cpp index 99b2abb1a5..3f2d7464ba 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.h index e54f756819..d10c6711bb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponentBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponentBus.h index 2fe84e98c2..312226808e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponentBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorInspectorComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp index 4d1cfe7305..5a73129e92 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.h index 64db3670c9..ec0b7c0285 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponentBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponentBus.h index c15884931b..855763b061 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponentBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLayerComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp index 4212ff5b75..4224b7de9f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.h index 5e6f23f6d1..8a10e9abe1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponentBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponentBus.h index 67dd484670..bd459d47e3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponentBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorLockComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.cpp index 09869072f1..22d11d6a0a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.h index d41e6594f5..edeb87e60e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.cpp index 93fe7b3fb7..e6cbf11d20 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.h index 90634bf274..bdb721e871 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorNonUniformScaleComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp index a493d013bb..848c324f2f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.h index 95ec3c1ac6..9ce6c31f98 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponentBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponentBus.h index c9e5a3b124..ed7c884b43 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponentBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOnlyEntityComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOutlinerComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOutlinerComponent.h index b76ed5be95..6ea16f020d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOutlinerComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorOutlinerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionBus.h index d4a1fd2b15..201a536942 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp index 2d686792e8..0ce45bd4db 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.h index 990872ed5a..2d3aae9156 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorPendingCompositionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp index ed9e122ff8..4c193b587e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.h index 4b9519b235..d965f153d1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentingBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentingBus.h index f794f59797..fa576bfb6a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentingBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorSelectionAccentingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityBus.h index a270f38ca5..38077efef1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp index 7ac3c06a13..77e491e840 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.h index e86ffdd2d9..1bde2fc114 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/EditorVisibilityComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp index 51651c380b..72c34ac3f9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.h index 36c4dd7623..31407e2952 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/GenericComponentWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp index 0b462435d5..b6bf985857 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h index 2c124d30c4..0120f58955 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/LayerResult.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp index 7f81d001d0..31a9a2da8e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.h index d64f21a398..aca9568576 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ScriptEditorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp index a4868abac7..6bcebbe009 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.h index 49102c0ec2..4b5d0772a1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponentBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponentBus.h index a69b255d55..3643a28b4e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponentBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/SelectionComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogBus.h index 94c865b41b..1e86bba840 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.cpp index db46d06296..68f842c8b1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.h index b4e41686c5..ea0e5a4c1b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/ToolsAssetCatalogComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp index 5d7fce4515..eea6696e4e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.h index 5e5f30b30d..3b1a12738b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponentBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponentBus.h index 6dda1a95fe..1614646fb6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponentBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsComponents/TransformComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils.h index 436f82162b..8e9990f686 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_generic.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_generic.cpp index 1863b0557b..a73804f195 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_generic.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_generic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_win.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_win.cpp index 2a3dd22052..8f4fa0294f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_win.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsFileUtils/ToolsFileUtils_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsMessaging/EntityHighlightBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsMessaging/EntityHighlightBus.h index 9f12a00c04..812977bec5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsMessaging/EntityHighlightBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ToolsMessaging/EntityHighlightBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp index 0dc73dc42b..817494f7f2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.hxx index d8ca23b96f..162e25cb0e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp index 86104298fa..66de920903 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.hxx index da70c3cbbe..592634920d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteModelFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp index ccfe7cd7ec..be8bb1ed9a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.hxx index 449823db12..12eb05c2a1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteUtil.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp index 58d72139a7..19258647e7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.hxx index 34b25d2d5c..81f5e43ee5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/ComponentPalette/ComponentPaletteWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp index 33c69e2e8f..2978fbf487 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.h index e14aa63d84..8b317f6c78 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Docking/DockWidgetUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.cpp index dd3c23fafb..7544f8a8be 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.h index fc5eefe971..1cf0d67b9c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiHandlerBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiInterface.h index 2228221d03..b1cf840200 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.cpp index c7c3b1b24b..cc46ebd55a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.h index 6e4bf46b31..353f7371ee 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/EditorEntityUi/EditorEntityUiSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp index 4e53f5811e..170d725bfa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.h index bef3d5092c..d64b0af84c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/AddToLayerMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp index 287772ecf9..c74bc8566f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.h index c96e9f11d4..b783778c0c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/LayerUiHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.cpp index 84ce84f858..c96d4ce034 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.hxx index 5fcde57bfc..eeda7c5a5a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Layer/NameConflictWarning.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorContextBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorContextBus.h index 1bc102ca15..426972f97e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorContextBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp index 65d111a1ea..71d077d284 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h index a17b06fee9..854f762d0f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp index e692d9d4c1..ccc7ef1fd7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h index c6b446c95a..42aacf3dbd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/EditorFrameworkApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp index 9546c235f8..38b65c3454 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.h index f38687c0ca..828877222d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/Core/IPCComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusAPI.h index 1bdd12ac7e..246395630f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp index be0b201d30..ac0430a62a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/CustomMenus/CustomMenusComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp index df1a005b5e..f256dc703e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.h index 042e45d21f..bfbe18fed5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/MainWindowSavedState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp index 50e21bc84a..9150ef35c4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.hxx index 23311899f7..cb056e959f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFramework.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp index bba9149070..daf516c808 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h index feaabe25da..a73b1ee0ff 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp index 7d662a43e2..51f88c1dde 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/LegacyFramework/UIFrameworkPreferences.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp index 7a0ef4ff78..6402848300 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.h index 594536c710..42e0ebeca5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/GenericLogPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp index 648acacfa0..2624624f2e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.h index e09b228b99..c43ad49dd6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.cpp index 725c35b332..4e76510e87 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.h index 9fae443941..00ae414c48 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.cpp index b246d22483..bfcf55f7e9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.h index 644593d1af..932f265b4e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogLine.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp index 2f8f0ef7fe..b65cd14f8e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.h index efdbab9902..9a9503dbfd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogPanel_Panel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.cpp index 160bf78fff..c589497880 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.h index 48d9fd8053..9944eed2ce 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableItemDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.cpp index 6918e6957c..744d3a8c0b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.h index aa4cd010a1..d8098f1057 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LogTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LoggingCommon.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LoggingCommon.h index 29cd4d30c9..a975eac435 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LoggingCommon.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/LoggingCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp index b4a585ca2d..5b29777054 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.h index c82c2af7ff..ad2c3f5bcd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.qss b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.qss index 6ee8d7c6e2..6ce5340320 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.qss +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/NewLogTabDialog.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp index a92685900a..ed50f30621 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.h index 2c02937707..1f55bb1f67 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledLogPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.cpp index bd41e23ec2..0454b12a37 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.h index 3938a77bfb..279b365a73 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/StyledTracePrintFLogPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp index 9070a83400..f67bf27149 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.h index 455a2477dc..613f71c182 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Logging/TracePrintFLogPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss index d5160c3599..ce2171d748 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerCacheBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerCacheBus.h index 5539da62ab..342e6bd4f7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerCacheBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerCacheBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp index b9b0cfedce..73d5c5cbc4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.h index 17fa919561..8c17fc9c20 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp index 01ef39affd..c51c1b654b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.hxx index 453af16ca4..528ec44dac 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerListModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp index bddcaad493..157a49bd6a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h index fd899e076d..7c11a34e53 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.cpp index 9e950b8288..73139b5a67 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.hxx index e2d3c768d2..7bc483623e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSortFilterProxyModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.cpp index 73fa4dfc6d..f445453777 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.hxx index 5f365bfaa9..900d9fe89a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerTreeView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp index aca008264a..8324877d95 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.hxx index 611889f7ae..68f538c3ff 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp index 8a5596c087..c768ab0d82 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.h index 2def23e9f9..286bdf2b54 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/LevelRootUiHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditInterface.h index f878852f3f..0cb228bc40 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.cpp index f510ac1223..69c17d2d90 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.h index 141ed6117e..58f991882e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabEditManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationBus.h index 6e0c3e7b8d..e6f6911f63 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationInterface.h index 3e7e6b475a..4e2109771a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp index 41622f854f..eb9f94d75c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.h index a37390bd11..e7cf46dfab 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabIntegrationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.cpp index 686b394a05..971e7c85a2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.h index f94872bab7..7bd9ad147c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Prefab/PrefabUiHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp index bd3e6727fe..4c151bebef 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx index 7456a6a6e7..e4f629b7fa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp index 009174495f..4998eec360 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.hxx index 638befbd77..b9409418fa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ComponentEditorHeader.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp index 94472018dc..4136d19087 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.hxx index 2bd8e8d995..02fd3a158e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQComboBox.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp index a06512978b..f6eed6bfd1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.hxx index 8438cdd028..184d2b426c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/DHQSlider.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp index 91a2cfa421..1f01389d57 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.hxx index c7e2271bbf..fcaac9ea2f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLabel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp index 6f8d3447a0..6e24641ffc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.h index e81d28dce9..7a8cc3da0e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityIdQLineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp index d59fd8b9ee..6a399ad816 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.hxx index 9d99950b90..b15e27e41a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/EntityPropertyEditor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.cpp index c86458d119..6a7bd30990 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.h index f8de5a0dd4..cf8440f773 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.inl index 2e77e83eb5..b4aa792084 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GenericComboBoxCtrl.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.cpp index 0612cfd8a9..6d3b158dfa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.h index daec8f33e8..cb3adca59e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/GrowTextEdit.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp index 1c4386ff1e..f411c60625 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.h index 58f7cacab5..e953450300 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/InstanceDataHierarchy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.cpp index 9698177f15..fbdc2ddf81 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.h index 87f050ca48..6198c81ae3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/Model/AssetCompleterModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.cpp index 0cb137de56..5c7b5353a8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.h index b83a1e14c4..d77b639d81 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/MultiLineTextEditHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp index 61aee20412..ba53688aa4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.hxx index 2cd1e53c6c..f943709098 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAssetCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp index a8b68413cd..599fa7bdfe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.h index 501fb14f4b..2d539587dd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrlTypes.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrlTypes.h index a9f33185cb..cd17162335 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrlTypes.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyAudioCtrlTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp index 8c75dc10e7..28f6d6af65 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.hxx index fc1585fb5c..f68377e778 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolComboBoxCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp index 9163f74458..8c7fb1757e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.hxx index 2770822709..bca0b0d004 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyBoolRadioButtonsCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp index 076fb862e7..c03d276ed7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.hxx index e74e433698..ff35d19cc7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyButtonCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp index 576cfae3de..523cbe1ca0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.h index 0286e3e7a3..d16d63b588 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCRCCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp index aadcd104db..b637bc61c6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.hxx index f34947d154..904d1254fe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyCheckBoxCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp index efc7286f6d..9368685af4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.hxx index a6a50d65aa..dfe53cd8a7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyColorCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp index f7e892c8b1..aac2d70d20 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.hxx index 6cbbcc82e4..0a378031d6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSliderCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp index 3e5b5d3f83..01c85f11c9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.hxx index 4155809e97..924619942e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyDoubleSpinCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h index 6cd54a1084..b61ad9ee40 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h index c42320cf30..bb3b624269 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals_Impl.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals_Impl.h index 1621de6c60..721e471321 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals_Impl.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI_Internals_Impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp index 96bad01bc7..ccd9c367bf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditorApi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditor_UITypes.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditor_UITypes.h index 9ed4f25f31..d97a269473 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditor_UITypes.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEditor_UITypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp index 2d41107669..92d0ea9139 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.hxx index 637b24c447..efdfaa3824 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEntityIdCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp index 59104205ff..571a293333 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.hxx index 16aa8d7619..0f38ddbd33 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyEnumComboBoxCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntCtrlCommon.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntCtrlCommon.h index 99b91781f2..e71639d2f2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntCtrlCommon.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntCtrlCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp index defc1cd91b..041fc2dab1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.hxx index a8331432e0..106dd53cf4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSliderCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp index e1952171dc..5edefdd8a1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.hxx index e23a4833aa..caf3468439 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyIntSpinCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp index 9ad039090c..617a6e2823 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.h index 7482c6c3ad..fbbd3e05e0 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyManagerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyQTConstants.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyQTConstants.h index 91276c07ac..5a711ed77b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyQTConstants.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyQTConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp index b7e52e176f..d66ee34c3b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx index 8dcff35b1f..b23691ea44 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyRowWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp index 3c1a8fe2e6..e8c8157c98 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.hxx index a5252fef24..9ab3dc9fae 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringComboBoxCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp index e784fa9b76..58414d6c37 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.hxx index 5d822ecc1a..c100d5498a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyStringLineEditCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp index 087dd0c71b..662a17ebb7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.hxx index a57f12fb74..851779ca96 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/PropertyVectorCtrl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/QtWidgetLimits.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/QtWidgetLimits.h index a8c79c052e..b7947a174d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/QtWidgetLimits.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/QtWidgetLimits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp index 56d0e742a1..1e7b0395c8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.hxx index 7286869f94..c27acaa374 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ReflectedPropertyEditor.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.cpp index 2f4da9619b..2da35d7de9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.h index bcf4daf4a2..fe5c18caa4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/ThumbnailPropertyCtrl.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.cpp index a6ac43eff6..984aba2aa2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.h index 31059694ea..439e6640d8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/PropertyEditor/View/AssetCompleterListView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp index 0ba4c58f05..15a7b7d482 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.hxx index 30dc8a06a0..9ed93aba93 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchCriteriaWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchWidgetTypes.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchWidgetTypes.hxx index b81b9c891d..052d7567ff 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchWidgetTypes.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/SearchWidget/SearchWidgetTypes.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/Constants.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/Constants.h index 7bb95fb8b9..7f2172abdc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/Constants.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/Constants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp index d243c2554c..b131e3d560 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx index ef49112d82..29314c32fe 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindow.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp index 9e26f3d911..f7b1521ee6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx index 3dd95950c4..8fbb397dd4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceOverridesNotificationWindowManager.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp index 550b535d8a..d88799d5aa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.hxx index 51242daf01..b78d9488d6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SlicePushWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipBus.h index b1b498743f..b0f8554cdc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp index b9a7cb3c17..61045de69a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx index ef1f0bbd39..2a1a7e74d9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Slice/SliceRelationshipWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp index dcd8cf9b9e..4e73acbb40 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.hxx index 95b680ef29..08c73d9198 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AZAutoSizingScrollArea.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp index bf7d110c04..b3b2c3ad21 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.hxx index 127c4493f6..269fa888c8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/AspectRatioAwarePixmapWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp index c4e0792d67..99400ae39d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.hxx index 46af1f7a81..ed822372e8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ClickableLabel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp index 820f4e0a44..814fa1c28f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.hxx index ee5404f265..3a48e1e5f9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ColorPickerDelegate.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.cpp index 718917541e..0374268dbb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.hxx index 0b8fc1fca6..84480965fa 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/IconButton.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp index 66cf145255..ad425ea615 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.hxx index 5afe37f313..cb74225e9f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/OverwritePromptDialog.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp index 7daaefd10a..ceaf0d0090 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.hxx index 87936c3c4c..469345a483 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/PlainTextEdit.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp index 7d0b0a2692..904cf417a4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.hxx index 582a6bd645..5fc353225e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/ProgressShield.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp index 1df0b0fe59..10fb8accfc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx index c4e9c8a480..5edf1cd56d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QTreeViewStateSaver.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp index 1fa4cb06cb..82b8a4aa92 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.h index b51f9b914b..6de3bb5b83 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/QWidgetSavedState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp index 8eb0087504..5c94a6c0bd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.hxx index 7b8e031c37..9d147c14fd 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/SaveChangesDialog.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp index 14b5017edf..7f65eefde5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.hxx b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.hxx index 8c2717e58d..a37a9c9e03 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.hxx +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/TargetSelectorButton.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/WidgetHelpers.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/WidgetHelpers.h index 6727e87c4f..b17ff2b434 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/WidgetHelpers.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/UICore/WidgetHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h index 8c1f86f9df..2a3689db41 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoCacheInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp index 7f522495f3..49e2f89854 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.h index aa9c8bf866..b47c7f0b42 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Undo/UndoSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp index 0030939c20..f268199a9f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.h index a4d97b5bb4..e6ea5642f1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/AzToolsFrameworkTestHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.cpp index ced20bd429..4c0f7a0581 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.h index d3ae5aabd9..ae06ca6c0d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UnitTest/ToolsTestApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ActionBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ActionBus.h index 9a764c0c19..a6aa7c30d6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ActionBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ActionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp index 070211c244..490ed683f4 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.h index e77c071369..622272bf00 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/EditorContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.cpp index 524c3cf441..6baf2a4982 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.h index 98072bec39..ca4de95060 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/VertexContainerDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h index 6c5821cc07..4d3af0e878 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.cpp index d477cc441d..7a48d9f8e2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h index ba2d494182..af0a7642b8 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Viewport/ViewportTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.cpp index d9adbcc679..386fed6894 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.h index 9b7a3e06d8..07bce3747d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorBoxSelect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.cpp index 39f80df0a2..4d795e8671 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.h index bacadd4cfa..f92ee6b00b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorDefaultSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.cpp index cbcdf60a43..f1d57e760c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.h index a25d5a0361..de8eb678bf 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.cpp index b5603920da..86852ed0ac 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.h index 76d15ed111..ec863dc6d2 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemViewportSelectionRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemViewportSelectionRequestBus.h index 260708dfdd..e342fbb050 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemViewportSelectionRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorInteractionSystemViewportSelectionRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.cpp index 404cd9d2e9..9de10788f5 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.h index db0efe9f24..147ac64795 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorPickEntitySelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.cpp index c213598b63..f9a5d17f4b 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.h index ff0cbe1aae..d2b7dfc648 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorSelectionUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp index e0b7dd2350..bd12cf9f23 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h index 2f1016cd6d..2de568cbd1 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.cpp index d8c59d7931..552dc8ee19 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.h index 6a158d71f7..0796eb67bc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorTransformComponentSelectionRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.cpp index c2609e94f1..05c78adfa3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.h index 52f0c1649c..929900d69c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportSelection/EditorVisibleEntityDataCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp index 8ce57ccfbb..8acb21ca18 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.h index 1d5c142bd5..ebe0741e67 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/Button.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.cpp index 372c1f189c..e151351099 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.h index 13ccb154d6..6be0e547b7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ButtonGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.cpp index bb230a524e..7f6917502c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.h index 71675711ec..b73765b83a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/TextField.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp index 87a1200777..9a4d7df01a 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.h index a7d05c4e0f..d4a8ba026d 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiCluster.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp index 44969c6537..a5564e7ad7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.h index 0947c06341..5e65b32f67 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp index 965846e101..2f6e88f9cb 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.h index 68ee1ddf4a..879383cae7 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiDisplayLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp index ab9b8ea098..5ee1b80f2e 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.h index 9b8f6af98e..7835ba2463 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiRequestBus.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiRequestBus.h index d507f90b54..58ec14b5a3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiRequestBus.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.cpp index 43124f56f2..af74c2a1f6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.h index bcc75195eb..a0d4973914 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiSwitcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp index 078bd4da76..95d36dec83 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h index b6b122c496..d3ca65a152 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiTextField.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp index 767cc1d90e..82db5bb7b9 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h index 4ed9d63014..4b422f0b80 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/ViewportUi/ViewportUiWidgetCallbacks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake index 3e853d4d52..a62a4a0783 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_files.cmake index 77cc02a498..d79b933d19 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_tests_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_tests_files.cmake index 2e32304c65..15322dd5b6 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_tests_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_linux_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_mac_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_mac_files.cmake index 77cc02a498..d79b933d19 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_mac_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_win_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_win_files.cmake index f64deff4a9..37791a3877 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_win_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_win_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_windows_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_windows_files.cmake index f64deff4a9..37791a3877 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_windows_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframework_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframeworktestcommon_files.cmake b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframeworktestcommon_files.cmake index ed096f26a5..ad13f0d515 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframeworktestcommon_files.cmake +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/aztoolsframeworktestcommon_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/newoverride.inl b/Code/Framework/AzToolsFramework/AzToolsFramework/newoverride.inl index d53a9ad078..73b46dd60f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/newoverride.inl +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/newoverride.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/CMakeLists.txt b/Code/Framework/AzToolsFramework/CMakeLists.txt index 36195be8bc..b2a9690948 100644 --- a/Code/Framework/AzToolsFramework/CMakeLists.txt +++ b/Code/Framework/AzToolsFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/Platform/Common/Clang/aztoolsframework_clang.cmake b/Code/Framework/AzToolsFramework/Platform/Common/Clang/aztoolsframework_clang.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/AzToolsFramework/Platform/Common/Clang/aztoolsframework_clang.cmake +++ b/Code/Framework/AzToolsFramework/Platform/Common/Clang/aztoolsframework_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/Platform/Common/MSVC/aztoolsframework_msvc.cmake b/Code/Framework/AzToolsFramework/Platform/Common/MSVC/aztoolsframework_msvc.cmake index 892f6725ef..8c9099fea3 100644 --- a/Code/Framework/AzToolsFramework/Platform/Common/MSVC/aztoolsframework_msvc.cmake +++ b/Code/Framework/AzToolsFramework/Platform/Common/MSVC/aztoolsframework_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/Archive/ArchiveComponent_Linux.cpp b/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/Archive/ArchiveComponent_Linux.cpp index d853c38156..fe8dec2b55 100644 --- a/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/Archive/ArchiveComponent_Linux.cpp +++ b/Code/Framework/AzToolsFramework/Platform/Linux/AzToolsFramework/Archive/ArchiveComponent_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Platform/Linux/platform_linux_files.cmake b/Code/Framework/AzToolsFramework/Platform/Linux/platform_linux_files.cmake index dbb0331fe2..a25032a679 100644 --- a/Code/Framework/AzToolsFramework/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/AzToolsFramework/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/Platform/Mac/AzToolsFramework/Archive/ArchiveComponent_Mac.cpp b/Code/Framework/AzToolsFramework/Platform/Mac/AzToolsFramework/Archive/ArchiveComponent_Mac.cpp index 3e93f39398..a1b1675e1f 100644 --- a/Code/Framework/AzToolsFramework/Platform/Mac/AzToolsFramework/Archive/ArchiveComponent_Mac.cpp +++ b/Code/Framework/AzToolsFramework/Platform/Mac/AzToolsFramework/Archive/ArchiveComponent_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Platform/Mac/platform_mac_files.cmake b/Code/Framework/AzToolsFramework/Platform/Mac/platform_mac_files.cmake index 2bcaacb0ab..8164ca7f9c 100644 --- a/Code/Framework/AzToolsFramework/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/AzToolsFramework/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/Platform/Windows/AzToolsFramework/Archive/ArchiveComponent_Windows.cpp b/Code/Framework/AzToolsFramework/Platform/Windows/AzToolsFramework/Archive/ArchiveComponent_Windows.cpp index 597faef34f..9c16d1b0d4 100644 --- a/Code/Framework/AzToolsFramework/Platform/Windows/AzToolsFramework/Archive/ArchiveComponent_Windows.cpp +++ b/Code/Framework/AzToolsFramework/Platform/Windows/AzToolsFramework/Archive/ArchiveComponent_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Platform/Windows/platform_windows_files.cmake b/Code/Framework/AzToolsFramework/Platform/Windows/platform_windows_files.cmake index 031142f42e..916ff5ce58 100644 --- a/Code/Framework/AzToolsFramework/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/AzToolsFramework/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/AzToolsFramework/Tests/ArchiveTests.cpp b/Code/Framework/AzToolsFramework/Tests/ArchiveTests.cpp index e3bad818e9..4335e42d62 100644 --- a/Code/Framework/AzToolsFramework/Tests/ArchiveTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ArchiveTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp b/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp index de253aa9a4..f950f43abc 100644 --- a/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp +++ b/Code/Framework/AzToolsFramework/Tests/AssetFileInfoListComparison.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp b/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp index e2c2752859..71e4184eb6 100644 --- a/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp +++ b/Code/Framework/AzToolsFramework/Tests/AssetSeedManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/AssetSystemMocks.h b/Code/Framework/AzToolsFramework/Tests/AssetSystemMocks.h index 3a95d8573d..1029616760 100644 --- a/Code/Framework/AzToolsFramework/Tests/AssetSystemMocks.h +++ b/Code/Framework/AzToolsFramework/Tests/AssetSystemMocks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/AssetUtils.cpp b/Code/Framework/AzToolsFramework/Tests/AssetUtils.cpp index 1b56818e05..8f61e27480 100644 --- a/Code/Framework/AzToolsFramework/Tests/AssetUtils.cpp +++ b/Code/Framework/AzToolsFramework/Tests/AssetUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.cpp b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.cpp index ae8d16199f..caf6411eda 100644 --- a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.h b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.h index 673a5261c8..9e7be21038 100644 --- a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.h +++ b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestDoubles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.cpp b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.cpp index 46b67ecb04..ebbc93963b 100644 --- a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.h b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.h index 52958947af..55b01bb350 100644 --- a/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.h +++ b/Code/Framework/AzToolsFramework/Tests/ComponentModeTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ComponentModeTests.cpp b/Code/Framework/AzToolsFramework/Tests/ComponentModeTests.cpp index 8d2ebce56e..775c771a8a 100644 --- a/Code/Framework/AzToolsFramework/Tests/ComponentModeTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ComponentModeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp b/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp index 5832052d62..92e583a319 100644 --- a/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EditorTransformComponentSelectionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/EditorVertexSelectionTests.cpp b/Code/Framework/AzToolsFramework/Tests/EditorVertexSelectionTests.cpp index cb8ea95e4c..e1656eb504 100644 --- a/Code/Framework/AzToolsFramework/Tests/EditorVertexSelectionTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EditorVertexSelectionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityContextComponentTests.cpp b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityContextComponentTests.cpp index 73517fab59..0b0f22a6fb 100644 --- a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityContextComponentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityContextComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityHelpersTests.cpp b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityHelpersTests.cpp index 93b5856be3..c75d14527e 100644 --- a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityHelpersTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntityHelpersTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp index 3480471565..b7790d72c8 100644 --- a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySearchComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySelectionTests.cpp b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySelectionTests.cpp index 83c79ae162..c60d3e4788 100644 --- a/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySelectionTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Entity/EditorEntitySelectionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp b/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp index 40edd2593e..8938351561 100644 --- a/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EntityIdQLabelTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp b/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp index 7daceafe25..3bc4c092dc 100644 --- a/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/EntityInspectorTests.cpp @@ -1,12 +1,12 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * */ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/FingerprintingTests.cpp b/Code/Framework/AzToolsFramework/Tests/FingerprintingTests.cpp index c44ca45de2..79407e6a90 100644 --- a/Code/Framework/AzToolsFramework/Tests/FingerprintingTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/FingerprintingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/IntegerPrimtitiveTestConfig.h b/Code/Framework/AzToolsFramework/Tests/IntegerPrimtitiveTestConfig.h index b3cafff4f2..5fedeed472 100644 --- a/Code/Framework/AzToolsFramework/Tests/IntegerPrimtitiveTestConfig.h +++ b/Code/Framework/AzToolsFramework/Tests/IntegerPrimtitiveTestConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/LogLines.cpp b/Code/Framework/AzToolsFramework/Tests/LogLines.cpp index 4d24b94fa9..6f1a11b635 100644 --- a/Code/Framework/AzToolsFramework/Tests/LogLines.cpp +++ b/Code/Framework/AzToolsFramework/Tests/LogLines.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Main.cpp b/Code/Framework/AzToolsFramework/Tests/Main.cpp index 5b298c00c0..ff94f9af5c 100644 --- a/Code/Framework/AzToolsFramework/Tests/Main.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ManipulatorBoundsTests.cpp b/Code/Framework/AzToolsFramework/Tests/ManipulatorBoundsTests.cpp index 5234d9dcf9..b2e11108b0 100644 --- a/Code/Framework/AzToolsFramework/Tests/ManipulatorBoundsTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ManipulatorBoundsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ManipulatorCoreTests.cpp b/Code/Framework/AzToolsFramework/Tests/ManipulatorCoreTests.cpp index 08e1cd6b38..ae484b8365 100644 --- a/Code/Framework/AzToolsFramework/Tests/ManipulatorCoreTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ManipulatorCoreTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ManipulatorViewTests.cpp b/Code/Framework/AzToolsFramework/Tests/ManipulatorViewTests.cpp index 2fa2e080df..8548c20abf 100644 --- a/Code/Framework/AzToolsFramework/Tests/ManipulatorViewTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ManipulatorViewTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PerforceComponentTests.cpp b/Code/Framework/AzToolsFramework/Tests/PerforceComponentTests.cpp index e1c96ea6b2..db7430085b 100644 --- a/Code/Framework/AzToolsFramework/Tests/PerforceComponentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PerforceComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PlatformAddressedAssetCatalogTests.cpp b/Code/Framework/AzToolsFramework/Tests/PlatformAddressedAssetCatalogTests.cpp index f84ea72769..e581f4fac7 100644 --- a/Code/Framework/AzToolsFramework/Tests/PlatformAddressedAssetCatalogTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PlatformAddressedAssetCatalogTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.cpp index b4441f3af4..58578939e3 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.h b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.h index d55df6839b..3d6d62349b 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabBenchmarkFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabCreateBenchmarks.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabCreateBenchmarks.cpp index f8d6ab646a..b77669fc01 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabCreateBenchmarks.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabCreateBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabInstantiateBenchmarks.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabInstantiateBenchmarks.cpp index a05a340814..fe879bc1f0 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabInstantiateBenchmarks.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabInstantiateBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabLoadBenchmarks.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabLoadBenchmarks.cpp index 142f54d239..1915a6886a 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabLoadBenchmarks.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabLoadBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabUpdateInstancesBenchmarks.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabUpdateInstancesBenchmarks.cpp index 99877fed0d..4fa17ad8dd 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabUpdateInstancesBenchmarks.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/PrefabUpdateInstancesBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/SpawnableCreateBenchmarks.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/SpawnableCreateBenchmarks.cpp index 181405ecdd..44723a04c6 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/SpawnableCreateBenchmarks.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Benchmark/SpawnableCreateBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.cpp index a94724410e..baab1099b0 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.h b/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.h index a0aae0139d..ce2dde3b36 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/MockPrefabFileIOActionValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabDuplicateTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabDuplicateTests.cpp index 0cf85be1d4..189aa7b0ee 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabDuplicateTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabDuplicateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp index f31669f4ce..b68d44ec61 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabEntityAliasTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstanceToTemplatePropagatorTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstanceToTemplatePropagatorTests.cpp index 5e56acd5f0..602339e426 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstanceToTemplatePropagatorTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstanceToTemplatePropagatorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp index 2a60f1dbbb..a08de99d3e 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabInstantiateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabLoadTemplateTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabLoadTemplateTests.cpp index 36a48d3542..9cf1194834 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabLoadTemplateTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabLoadTemplateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.cpp index 1c2d24e76f..f97535f72b 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.h b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.h index 69f59cd700..e8419a4454 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.cpp index ff7dfdc3ac..17627ace96 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.h b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.h index 58954604eb..595274cada 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.cpp index 1d09ac2db8..a8c23e274a 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.h b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.h index 23fe39da3c..45fe8ecd70 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDataUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp index 5b4790045e..34cff98a73 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.h b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.h index b0ca1be027..d7c30d8dfb 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestDomUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.cpp index 47aba7415f..a086ab84a1 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.h b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.h index e63db8a52e..763d3bec1f 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.cpp index 791090a977..c21677869e 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.h b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.h index a15e9f0c04..b65e9eb155 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUndoFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUtils.h b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUtils.h index 2f0532bb6e..08861e62ad 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUtils.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabTestUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp index 01640c334e..cdc5faaef0 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoLinkTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp index e672bfdb8a..c27541357d 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUndoTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateInstancesTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateInstancesTests.cpp index 36318372e3..27cc192c06 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateInstancesTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateInstancesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateTemplateTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateTemplateTests.cpp index f14e840e4b..108eb25641 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateTemplateTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateTemplateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateWithPatchesTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateWithPatchesTests.cpp index b7c6865e12..64552213f2 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateWithPatchesTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/PrefabUpdateWithPatchesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/Spawnable/SpawnableMetaDataTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/Spawnable/SpawnableMetaDataTests.cpp index 84f0caf928..a9b016055e 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/Spawnable/SpawnableMetaDataTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/Spawnable/SpawnableMetaDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableCreateTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableCreateTests.cpp index a31f3fcceb..90b55eaec6 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableCreateTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableCreateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.cpp index 530cd3ce09..2f57347dc3 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.h b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.h index 03997204e3..60e8c45460 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTests.cpp index 303cfe10cf..cb0427f8e3 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableRemoveEditorInfoTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.cpp index cf47eae897..abe8c321d3 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.h b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.h index bf02f0c348..d23292ccb4 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.h +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTests.cpp b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTests.cpp index fd036f2bd6..92e17ea882 100644 --- a/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Prefab/SpawnableSortEntitiesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.cpp b/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.cpp index 9001711ade..7aeaf392a9 100644 --- a/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.h b/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.h index 6364fc78fe..2d40427d0d 100644 --- a/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.h +++ b/Code/Framework/AzToolsFramework/Tests/PropertyIntCtrlCommonTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PropertyIntSliderCtrlTests.cpp b/Code/Framework/AzToolsFramework/Tests/PropertyIntSliderCtrlTests.cpp index 8d80186421..8e3e99146e 100644 --- a/Code/Framework/AzToolsFramework/Tests/PropertyIntSliderCtrlTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PropertyIntSliderCtrlTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PropertyIntSpinCtrlTests.cpp b/Code/Framework/AzToolsFramework/Tests/PropertyIntSpinCtrlTests.cpp index 13a2b03f48..40b693422e 100644 --- a/Code/Framework/AzToolsFramework/Tests/PropertyIntSpinCtrlTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PropertyIntSpinCtrlTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp b/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp index 2a8efe199e..99cf334dc9 100644 --- a/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PropertyTreeEditorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/PythonBindingTests.cpp b/Code/Framework/AzToolsFramework/Tests/PythonBindingTests.cpp index 4c4d6fb9ab..05efb746b8 100644 --- a/Code/Framework/AzToolsFramework/Tests/PythonBindingTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/PythonBindingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/QtWidgetLimitsTests.cpp b/Code/Framework/AzToolsFramework/Tests/QtWidgetLimitsTests.cpp index 0d3ac5be65..c2bd535850 100644 --- a/Code/Framework/AzToolsFramework/Tests/QtWidgetLimitsTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/QtWidgetLimitsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Slice.cpp b/Code/Framework/AzToolsFramework/Tests/Slice.cpp index 5ecd91ee2e..e0343e60aa 100644 --- a/Code/Framework/AzToolsFramework/Tests/Slice.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Slice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityCreateTests.cpp b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityCreateTests.cpp index e2e761a703..5987f78b76 100644 --- a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityCreateTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityCreateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityPushTests.cpp b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityPushTests.cpp index 9f9386ec45..259f1b9441 100644 --- a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityPushTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityPushTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityReParentTests.cpp b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityReParentTests.cpp index 18da45ea76..d7ef0dff6e 100644 --- a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityReParentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityReParentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.cpp b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.cpp index 2606b64641..c881a98baf 100644 --- a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.cpp +++ b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.h b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.h index 65ca218f5f..22023ccdd5 100644 --- a/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.h +++ b/Code/Framework/AzToolsFramework/Tests/SliceStabilityTests/SliceStabilityTestFramework.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTests.cpp b/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTests.cpp index 5c92c8b265..98b004feba 100644 --- a/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTestsData.h b/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTestsData.h index ecbbbbe7ba..aa45b4c155 100644 --- a/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTestsData.h +++ b/Code/Framework/AzToolsFramework/Tests/SliceUpgradeTestsData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/SpinBoxTests.cpp b/Code/Framework/AzToolsFramework/Tests/SpinBoxTests.cpp index 63d35c341d..4fa87ceb38 100644 --- a/Code/Framework/AzToolsFramework/Tests/SpinBoxTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/SpinBoxTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ThumbnailerTests.cpp b/Code/Framework/AzToolsFramework/Tests/ThumbnailerTests.cpp index 5065ed7b51..05ffc6055f 100644 --- a/Code/Framework/AzToolsFramework/Tests/ThumbnailerTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ThumbnailerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp b/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp index 2b1162f1b3..3007f12192 100644 --- a/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorLayerComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorTransformComponentTests.cpp b/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorTransformComponentTests.cpp index c2b2c56275..f1afdb2ff2 100644 --- a/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorTransformComponentTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/ToolsComponents/EditorTransformComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/UI/EntityIdQLineEditTests.cpp b/Code/Framework/AzToolsFramework/Tests/UI/EntityIdQLineEditTests.cpp index f2285da973..6d3dcf8e61 100644 --- a/Code/Framework/AzToolsFramework/Tests/UI/EntityIdQLineEditTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/UI/EntityIdQLineEditTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/UI/EntityPropertyEditorTests.cpp b/Code/Framework/AzToolsFramework/Tests/UI/EntityPropertyEditorTests.cpp index 8dd23b8b1f..cf9f95ef31 100644 --- a/Code/Framework/AzToolsFramework/Tests/UI/EntityPropertyEditorTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/UI/EntityPropertyEditorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp b/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp index faed9b4cc1..9ee830d7d9 100644 --- a/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp +++ b/Code/Framework/AzToolsFramework/Tests/UndoStack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ClusterTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ClusterTests.cpp index 4b7b8e856e..1139b8fc21 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ClusterTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ClusterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportScreenTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportScreenTests.cpp index bb4be77fbf..335424eda4 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportScreenTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportScreenTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiClusterTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiClusterTests.cpp index f1db4f4808..0c387c8a74 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiClusterTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiClusterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp index d2ea6a566c..a2f5ab8b36 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiDisplayTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp index a3c4568140..0fd570830f 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiWidgetManagerTests.cpp b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiWidgetManagerTests.cpp index 66418e7ebd..f1d282e869 100644 --- a/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiWidgetManagerTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Viewport/ViewportUiWidgetManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/Visibility/EditorVisibilityTests.cpp b/Code/Framework/AzToolsFramework/Tests/Visibility/EditorVisibilityTests.cpp index ce5934b9b2..ad08a7ca20 100644 --- a/Code/Framework/AzToolsFramework/Tests/Visibility/EditorVisibilityTests.cpp +++ b/Code/Framework/AzToolsFramework/Tests/Visibility/EditorVisibilityTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/AzToolsFramework/Tests/aztoolsframeworktests_files.cmake b/Code/Framework/AzToolsFramework/Tests/aztoolsframeworktests_files.cmake index 31a8dc7de8..2e2be6f921 100644 --- a/Code/Framework/AzToolsFramework/Tests/aztoolsframeworktests_files.cmake +++ b/Code/Framework/AzToolsFramework/Tests/aztoolsframeworktests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/CMakeLists.txt b/Code/Framework/CMakeLists.txt index ac006a8771..e12a8f4cab 100644 --- a/Code/Framework/CMakeLists.txt +++ b/Code/Framework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Crcfix/CMakeLists.txt b/Code/Framework/Crcfix/CMakeLists.txt index 269e73751e..e456fdd06d 100644 --- a/Code/Framework/Crcfix/CMakeLists.txt +++ b/Code/Framework/Crcfix/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Crcfix/Platform/Linux/PAL_linux.cmake b/Code/Framework/Crcfix/Platform/Linux/PAL_linux.cmake index 65ad844da5..360d3eea74 100644 --- a/Code/Framework/Crcfix/Platform/Linux/PAL_linux.cmake +++ b/Code/Framework/Crcfix/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Crcfix/Platform/Mac/PAL_mac.cmake b/Code/Framework/Crcfix/Platform/Mac/PAL_mac.cmake index 65ad844da5..360d3eea74 100644 --- a/Code/Framework/Crcfix/Platform/Mac/PAL_mac.cmake +++ b/Code/Framework/Crcfix/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Crcfix/Platform/Windows/PAL_windows.cmake b/Code/Framework/Crcfix/Platform/Windows/PAL_windows.cmake index 27e5814394..6ff80ae234 100644 --- a/Code/Framework/Crcfix/Platform/Windows/PAL_windows.cmake +++ b/Code/Framework/Crcfix/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Crcfix/crcfix.cpp b/Code/Framework/Crcfix/crcfix.cpp index 15543c6da2..ab39b19e3b 100644 --- a/Code/Framework/Crcfix/crcfix.cpp +++ b/Code/Framework/Crcfix/crcfix.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Crcfix/crcfix_files.cmake b/Code/Framework/Crcfix/crcfix_files.cmake index 6b04f18a6b..5a62b2ca47 100644 --- a/Code/Framework/Crcfix/crcfix_files.cmake +++ b/Code/Framework/Crcfix/crcfix_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GFxFramework/CMakeLists.txt b/Code/Framework/GFxFramework/CMakeLists.txt index 0e00ae7043..999d42caeb 100644 --- a/Code/Framework/GFxFramework/CMakeLists.txt +++ b/Code/Framework/GFxFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GFxFramework/GFxFramework/CMakeLists.txt b/Code/Framework/GFxFramework/GFxFramework/CMakeLists.txt index 7b09fbd2df..d31d586197 100644 --- a/Code/Framework/GFxFramework/GFxFramework/CMakeLists.txt +++ b/Code/Framework/GFxFramework/GFxFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GFxFramework/GFxFramework/MaterialIO/IMaterial.h b/Code/Framework/GFxFramework/GFxFramework/MaterialIO/IMaterial.h index 09c437cb5a..3fdfa17a4b 100644 --- a/Code/Framework/GFxFramework/GFxFramework/MaterialIO/IMaterial.h +++ b/Code/Framework/GFxFramework/GFxFramework/MaterialIO/IMaterial.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.cpp b/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.cpp index 3b44a7eb90..d187d60ff7 100644 --- a/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.cpp +++ b/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.h b/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.h index 71fcc15520..3def1b811b 100644 --- a/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.h +++ b/Code/Framework/GFxFramework/GFxFramework/MaterialIO/Material.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GFxFramework/GFxFramework/gfxframework_files.cmake b/Code/Framework/GFxFramework/GFxFramework/gfxframework_files.cmake index fc29aae71a..09fd8ca467 100644 --- a/Code/Framework/GFxFramework/GFxFramework/gfxframework_files.cmake +++ b/Code/Framework/GFxFramework/GFxFramework/gfxframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GFxFramework/Platform/Linux/platform_linux.cmake b/Code/Framework/GFxFramework/Platform/Linux/platform_linux.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/GFxFramework/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/GFxFramework/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GFxFramework/Platform/Mac/platform_mac.cmake b/Code/Framework/GFxFramework/Platform/Mac/platform_mac.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/GFxFramework/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/GFxFramework/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GFxFramework/Platform/Windows/platform_windows.cmake b/Code/Framework/GFxFramework/Platform/Windows/platform_windows.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/GFxFramework/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/GFxFramework/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/CMakeLists.txt b/Code/Framework/GridMate/CMakeLists.txt index bacd20c97f..c8db3f99f9 100644 --- a/Code/Framework/GridMate/CMakeLists.txt +++ b/Code/Framework/GridMate/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/GridMate/BuildInfo.h b/Code/Framework/GridMate/GridMate/BuildInfo.h index 5f30572c89..cf70213086 100644 --- a/Code/Framework/GridMate/GridMate/BuildInfo.h +++ b/Code/Framework/GridMate/GridMate/BuildInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp b/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp index d538240078..c511f01767 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/Carrier.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Carrier.h b/Code/Framework/GridMate/GridMate/Carrier/Carrier.h index adb162c3a6..95586daeb0 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Carrier.h +++ b/Code/Framework/GridMate/GridMate/Carrier/Carrier.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Compressor.h b/Code/Framework/GridMate/GridMate/Carrier/Compressor.h index 5cfc963abd..cdb31b2e64 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Compressor.h +++ b/Code/Framework/GridMate/GridMate/Carrier/Compressor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Cripter.h b/Code/Framework/GridMate/GridMate/Carrier/Cripter.h index 5a3feda026..a7677d944a 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Cripter.h +++ b/Code/Framework/GridMate/GridMate/Carrier/Cripter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.cpp b/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.cpp index 806cdde432..d30f15e15c 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.h b/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.h index 11e5a0ef06..4f84020c2f 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.h +++ b/Code/Framework/GridMate/GridMate/Carrier/DefaultHandshake.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.cpp b/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.cpp index 3deb771d94..c5ecb77cf1 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.h b/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.h index 127361e67e..147c58dc8c 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.h +++ b/Code/Framework/GridMate/GridMate/Carrier/DefaultSimulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp b/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp index a04ed6ca04..281f3c6acf 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.h b/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.h index db4b62dda5..c9b6b1227c 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.h +++ b/Code/Framework/GridMate/GridMate/Carrier/DefaultTrafficControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Driver.h b/Code/Framework/GridMate/GridMate/Carrier/Driver.h index 04a56a2aaa..650d485f52 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Driver.h +++ b/Code/Framework/GridMate/GridMate/Carrier/Driver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/DriverEvents.h b/Code/Framework/GridMate/GridMate/Carrier/DriverEvents.h index 93b1482e36..4ef7415efb 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/DriverEvents.h +++ b/Code/Framework/GridMate/GridMate/Carrier/DriverEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Handshake.h b/Code/Framework/GridMate/GridMate/Carrier/Handshake.h index d5da6afb76..3afa564a96 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Handshake.h +++ b/Code/Framework/GridMate/GridMate/Carrier/Handshake.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp b/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp index 8c6d8a7db1..70bcb2b051 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.h b/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.h index c6fa5d31c3..1167f03fac 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.h +++ b/Code/Framework/GridMate/GridMate/Carrier/SecureSocketDriver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Simulator.h b/Code/Framework/GridMate/GridMate/Carrier/Simulator.h index 5933654f88..a6df8cf0e6 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Simulator.h +++ b/Code/Framework/GridMate/GridMate/Carrier/Simulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp b/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp index 97f4379e0f..3d2a9e134c 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.h b/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.h index 3ae74a6421..3965777452 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.h +++ b/Code/Framework/GridMate/GridMate/Carrier/SocketDriver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp b/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp index 14713806d6..f08762781c 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.h b/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.h index 625c8e8f9d..789c9f3e20 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.h +++ b/Code/Framework/GridMate/GridMate/Carrier/StreamSecureSocketDriver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.cpp b/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.cpp index 0ab96b03aa..74978e1db5 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.cpp +++ b/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.h b/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.h index 364b4243d0..8fdcc8346b 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.h +++ b/Code/Framework/GridMate/GridMate/Carrier/StreamSocketDriver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/TrafficControl.h b/Code/Framework/GridMate/GridMate/Carrier/TrafficControl.h index 2e4296fbef..0e540091de 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/TrafficControl.h +++ b/Code/Framework/GridMate/GridMate/Carrier/TrafficControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Carrier/Utils.h b/Code/Framework/GridMate/GridMate/Carrier/Utils.h index ae6a4b6f4c..29618b6897 100644 --- a/Code/Framework/GridMate/GridMate/Carrier/Utils.h +++ b/Code/Framework/GridMate/GridMate/Carrier/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Containers/list.h b/Code/Framework/GridMate/GridMate/Containers/list.h index 19815ae465..1c34f65a50 100644 --- a/Code/Framework/GridMate/GridMate/Containers/list.h +++ b/Code/Framework/GridMate/GridMate/Containers/list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Containers/queue.h b/Code/Framework/GridMate/GridMate/Containers/queue.h index 5088f43d46..7ae04ffc3a 100644 --- a/Code/Framework/GridMate/GridMate/Containers/queue.h +++ b/Code/Framework/GridMate/GridMate/Containers/queue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Containers/set.h b/Code/Framework/GridMate/GridMate/Containers/set.h index b9f5af3b47..5cc3551476 100644 --- a/Code/Framework/GridMate/GridMate/Containers/set.h +++ b/Code/Framework/GridMate/GridMate/Containers/set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Containers/slist.h b/Code/Framework/GridMate/GridMate/Containers/slist.h index 25aad21d57..af90e7d12c 100644 --- a/Code/Framework/GridMate/GridMate/Containers/slist.h +++ b/Code/Framework/GridMate/GridMate/Containers/slist.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Containers/unordered_map.h b/Code/Framework/GridMate/GridMate/Containers/unordered_map.h index b33693124f..a7cfe4549a 100644 --- a/Code/Framework/GridMate/GridMate/Containers/unordered_map.h +++ b/Code/Framework/GridMate/GridMate/Containers/unordered_map.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Containers/unordered_set.h b/Code/Framework/GridMate/GridMate/Containers/unordered_set.h index 8fff2bc22a..4bd1c24782 100644 --- a/Code/Framework/GridMate/GridMate/Containers/unordered_set.h +++ b/Code/Framework/GridMate/GridMate/Containers/unordered_set.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Containers/vector.h b/Code/Framework/GridMate/GridMate/Containers/vector.h index 080f8f56cb..44922dd8c6 100644 --- a/Code/Framework/GridMate/GridMate/Containers/vector.h +++ b/Code/Framework/GridMate/GridMate/Containers/vector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Docs.h b/Code/Framework/GridMate/GridMate/Docs.h index 2d9df42bac..900b0528b0 100644 --- a/Code/Framework/GridMate/GridMate/Docs.h +++ b/Code/Framework/GridMate/GridMate/Docs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.cpp b/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.cpp index 7321c091e5..07f4605714 100644 --- a/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.cpp +++ b/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.h b/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.h index 6883adbc65..3d5fe15711 100644 --- a/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.h +++ b/Code/Framework/GridMate/GridMate/Drillers/CarrierDriller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.cpp b/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.cpp index 581f143866..9c21f3d625 100644 --- a/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.cpp +++ b/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.h b/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.h index 0eb776d946..35f123e594 100644 --- a/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.h +++ b/Code/Framework/GridMate/GridMate/Drillers/ReplicaDriller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.cpp b/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.cpp index daeee3c3d7..96fa20935f 100644 --- a/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.cpp +++ b/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.h b/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.h index 64cc848fe7..6446cca4c7 100644 --- a/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.h +++ b/Code/Framework/GridMate/GridMate/Drillers/SessionDriller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/EBus.h b/Code/Framework/GridMate/GridMate/EBus.h index 2c38059df2..0ed22edf55 100644 --- a/Code/Framework/GridMate/GridMate/EBus.h +++ b/Code/Framework/GridMate/GridMate/EBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/GridMate.cpp b/Code/Framework/GridMate/GridMate/GridMate.cpp index 72b36d0849..83acda4997 100644 --- a/Code/Framework/GridMate/GridMate/GridMate.cpp +++ b/Code/Framework/GridMate/GridMate/GridMate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/GridMate.h b/Code/Framework/GridMate/GridMate/GridMate.h index f85c4cf66d..5d58084b49 100644 --- a/Code/Framework/GridMate/GridMate/GridMate.h +++ b/Code/Framework/GridMate/GridMate/GridMate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/GridMateEventsBus.h b/Code/Framework/GridMate/GridMate/GridMateEventsBus.h index 69c22309d8..24eb1cfd73 100644 --- a/Code/Framework/GridMate/GridMate/GridMateEventsBus.h +++ b/Code/Framework/GridMate/GridMate/GridMateEventsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/GridMateService.h b/Code/Framework/GridMate/GridMate/GridMateService.h index 1443e0ac69..18cc4f2fad 100644 --- a/Code/Framework/GridMate/GridMate/GridMateService.h +++ b/Code/Framework/GridMate/GridMate/GridMateService.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/MathUtils.h b/Code/Framework/GridMate/GridMate/MathUtils.h index eb560e1528..8b8a1967e3 100644 --- a/Code/Framework/GridMate/GridMate/MathUtils.h +++ b/Code/Framework/GridMate/GridMate/MathUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Memory.h b/Code/Framework/GridMate/GridMate/Memory.h index 00c9f61342..d9755f5b95 100644 --- a/Code/Framework/GridMate/GridMate/Memory.h +++ b/Code/Framework/GridMate/GridMate/Memory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Online/OnlineUtilityThread.h b/Code/Framework/GridMate/GridMate/Online/OnlineUtilityThread.h index 5d8d45b6b0..b6e52c9b1c 100644 --- a/Code/Framework/GridMate/GridMate/Online/OnlineUtilityThread.h +++ b/Code/Framework/GridMate/GridMate/Online/OnlineUtilityThread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Online/UserServiceTypes.h b/Code/Framework/GridMate/GridMate/Online/UserServiceTypes.h index 911f423be2..7749c3aee2 100644 --- a/Code/Framework/GridMate/GridMate/Online/UserServiceTypes.h +++ b/Code/Framework/GridMate/GridMate/Online/UserServiceTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/BasicHostChunkDescriptor.h b/Code/Framework/GridMate/GridMate/Replica/BasicHostChunkDescriptor.h index ee6565c13c..add71b27ef 100644 --- a/Code/Framework/GridMate/GridMate/Replica/BasicHostChunkDescriptor.h +++ b/Code/Framework/GridMate/GridMate/Replica/BasicHostChunkDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/DataSet.cpp b/Code/Framework/GridMate/GridMate/Replica/DataSet.cpp index 902f1101a0..1e50ba0228 100644 --- a/Code/Framework/GridMate/GridMate/Replica/DataSet.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/DataSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/DataSet.h b/Code/Framework/GridMate/GridMate/Replica/DataSet.h index 59c26943d4..6e3d5c4717 100644 --- a/Code/Framework/GridMate/GridMate/Replica/DataSet.h +++ b/Code/Framework/GridMate/GridMate/Replica/DataSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/DeltaCompressedDataSet.h b/Code/Framework/GridMate/GridMate/Replica/DeltaCompressedDataSet.h index 8a6e66bcee..d4bc67f6fc 100644 --- a/Code/Framework/GridMate/GridMate/Replica/DeltaCompressedDataSet.h +++ b/Code/Framework/GridMate/GridMate/Replica/DeltaCompressedDataSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.cpp b/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.cpp index 5d01d91fae..9e35427c04 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.h b/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.h index 4e9d958ba2..d6bf57206c 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.h +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/BitmaskInterestHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestDefs.h b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestDefs.h index 57c4fdc7e7..19b78be546 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestDefs.h +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestDefs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestEvents.h b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestEvents.h index 4e5cb345c4..3c6ba51be6 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestEvents.h +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.cpp b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.cpp index 70c1cea63a..723ec7d35b 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.h b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.h index d836fa52bc..e37c6b68e7 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.h +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.cpp b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.cpp index 3392dd63ce..dd06adb453 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.h b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.h index 59c2ffd329..3c07589151 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.h +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/InterestQueryResult.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interest/RulesHandler.h b/Code/Framework/GridMate/GridMate/Replica/Interest/RulesHandler.h index 54a17820ef..dcf63ec2a6 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interest/RulesHandler.h +++ b/Code/Framework/GridMate/GridMate/Replica/Interest/RulesHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Interpolators.h b/Code/Framework/GridMate/GridMate/Replica/Interpolators.h index af903d4f49..30e78de9fe 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Interpolators.h +++ b/Code/Framework/GridMate/GridMate/Replica/Interpolators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.cpp b/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.cpp index d662ea3064..c55b449d56 100644 --- a/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.h b/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.h index f11eb7229d..8c479291eb 100644 --- a/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.h +++ b/Code/Framework/GridMate/GridMate/Replica/MigrationSequence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.cpp b/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.cpp index e594b0c928..da7af23b02 100644 --- a/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.h b/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.h index 23f2fdf88a..d33ee28b9e 100644 --- a/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.h +++ b/Code/Framework/GridMate/GridMate/Replica/RemoteProcedureCall.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Replica.cpp b/Code/Framework/GridMate/GridMate/Replica/Replica.cpp index 5602580c5a..63e42f41d5 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Replica.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Replica.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Replica.h b/Code/Framework/GridMate/GridMate/Replica/Replica.h index 1f5c8cc14b..b7bace0f8d 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Replica.h +++ b/Code/Framework/GridMate/GridMate/Replica/Replica.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.cpp b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.cpp index 50d021695e..16e186c163 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.h index 58c981827e..ecd3d5e711 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunk.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.cpp b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.cpp index 6d9d151037..2f60f95395 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.h index 7c3f767f81..4251ade1c0 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkInterface.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkInterface.h index 9be4c0760b..bc1db81410 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkInterface.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaChunkInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaCommon.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaCommon.h index 20f7ec0944..52760f6812 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaCommon.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h index 5f9a4d7b56..4722c5500c 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaDefs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaDrillerEvents.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaDrillerEvents.h index 8d53d2147c..6c3cadde0d 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaDrillerEvents.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaDrillerEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.h index d06e016c61..84367baca7 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.inl b/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.inl index c862df5004..013a9c0c4c 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.inl +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaFunctions.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaInline.inl b/Code/Framework/GridMate/GridMate/Replica/ReplicaInline.inl index 8f089129f9..aa4a9d5ead 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaInline.inl +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaInline.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp b/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp index 1388896e18..762172910e 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.h index a642818594..e7b856a16e 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.cpp b/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.cpp index faca465bc8..9cc161560f 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.h index a23c244678..95535daf92 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaStatus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaStatusInterface.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaStatusInterface.h index 23f9ae3bed..5d31676bad 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaStatusInterface.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaStatusInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.cpp b/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.cpp index 56e7e00db3..9a9a7cc577 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.h index 47c778644c..cd2e8a52d7 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaTarget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/ReplicaUtils.h b/Code/Framework/GridMate/GridMate/Replica/ReplicaUtils.h index aac5ddf3ce..3b84fc6150 100644 --- a/Code/Framework/GridMate/GridMate/Replica/ReplicaUtils.h +++ b/Code/Framework/GridMate/GridMate/Replica/ReplicaUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.cpp b/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.cpp index 2e42fd11e9..51b9f712d7 100644 --- a/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.h b/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.h index 3e352b3ddc..999d9e9c0f 100644 --- a/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.h +++ b/Code/Framework/GridMate/GridMate/Replica/SystemReplicas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp index 0781108709..bf1f51fce7 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.h b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.h index 433d5336e4..fcffa9cd18 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.h +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaMarshalTasks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaPriorityPolicy.h b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaPriorityPolicy.h index 1743f1bfaa..995148aa7d 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaPriorityPolicy.h +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaPriorityPolicy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.cpp b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.cpp index 9193093a6b..9751080462 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.h b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.h index afd7283509..f6f59dcf10 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.h +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaProcessPolicy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTask.h b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTask.h index 7e309cd4b3..c46b35f202 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTask.h +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTask.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTaskManager.h b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTaskManager.h index c77b885f0c..5665b6e2b5 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTaskManager.h +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaTaskManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.cpp b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.cpp index 17ea5a8f9a..f894a5b1bd 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.cpp +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.h b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.h index 90c3fda97b..0f455cb6df 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.h +++ b/Code/Framework/GridMate/GridMate/Replica/Tasks/ReplicaUpdateTasks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Replica/Throttles.h b/Code/Framework/GridMate/GridMate/Replica/Throttles.h index 0316f42a3c..f599a555a4 100644 --- a/Code/Framework/GridMate/GridMate/Replica/Throttles.h +++ b/Code/Framework/GridMate/GridMate/Replica/Throttles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/Buffer.cpp b/Code/Framework/GridMate/GridMate/Serialize/Buffer.cpp index 4abaaaf213..b14001b543 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/Buffer.cpp +++ b/Code/Framework/GridMate/GridMate/Serialize/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/Buffer.h b/Code/Framework/GridMate/GridMate/Serialize/Buffer.h index be451036fe..830d67c17f 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/Buffer.h +++ b/Code/Framework/GridMate/GridMate/Serialize/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.cpp b/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.cpp index e1f1f4c985..6f6ed549bd 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.cpp +++ b/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.h b/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.h index 9afe093f67..1eee912f65 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.h +++ b/Code/Framework/GridMate/GridMate/Serialize/CompressionMarshal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/ContainerMarshal.h b/Code/Framework/GridMate/GridMate/Serialize/ContainerMarshal.h index ead4d3dc7c..6c7af219b1 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/ContainerMarshal.h +++ b/Code/Framework/GridMate/GridMate/Serialize/ContainerMarshal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/DataMarshal.h b/Code/Framework/GridMate/GridMate/Serialize/DataMarshal.h index 1b841898ec..7b4a3e1aa0 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/DataMarshal.h +++ b/Code/Framework/GridMate/GridMate/Serialize/DataMarshal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/MarshalerTypes.h b/Code/Framework/GridMate/GridMate/Serialize/MarshalerTypes.h index 0a091ee1ce..bc8d0f6ef5 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/MarshalerTypes.h +++ b/Code/Framework/GridMate/GridMate/Serialize/MarshalerTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/MathMarshal.h b/Code/Framework/GridMate/GridMate/Serialize/MathMarshal.h index c56c88e17a..677be29dfc 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/MathMarshal.h +++ b/Code/Framework/GridMate/GridMate/Serialize/MathMarshal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/PackedSize.h b/Code/Framework/GridMate/GridMate/Serialize/PackedSize.h index 56648d4c77..2b7fa2f3c7 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/PackedSize.h +++ b/Code/Framework/GridMate/GridMate/Serialize/PackedSize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/UtilityMarshal.h b/Code/Framework/GridMate/GridMate/Serialize/UtilityMarshal.h index 1d3d1bb92c..4620b96db1 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/UtilityMarshal.h +++ b/Code/Framework/GridMate/GridMate/Serialize/UtilityMarshal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Serialize/UuidMarshal.h b/Code/Framework/GridMate/GridMate/Serialize/UuidMarshal.h index 262efac06b..5599e99ead 100644 --- a/Code/Framework/GridMate/GridMate/Serialize/UuidMarshal.h +++ b/Code/Framework/GridMate/GridMate/Serialize/UuidMarshal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Session/LANSession.cpp b/Code/Framework/GridMate/GridMate/Session/LANSession.cpp index 8e4f51e688..c6b57a972c 100644 --- a/Code/Framework/GridMate/GridMate/Session/LANSession.cpp +++ b/Code/Framework/GridMate/GridMate/Session/LANSession.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Session/LANSession.h b/Code/Framework/GridMate/GridMate/Session/LANSession.h index 8c12de4997..6dee34926c 100644 --- a/Code/Framework/GridMate/GridMate/Session/LANSession.h +++ b/Code/Framework/GridMate/GridMate/Session/LANSession.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Session/LANSessionServiceBus.h b/Code/Framework/GridMate/GridMate/Session/LANSessionServiceBus.h index ab8e0703e0..96aa02d170 100644 --- a/Code/Framework/GridMate/GridMate/Session/LANSessionServiceBus.h +++ b/Code/Framework/GridMate/GridMate/Session/LANSessionServiceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Session/LANSessionServiceTypes.h b/Code/Framework/GridMate/GridMate/Session/LANSessionServiceTypes.h index c5456988da..7a381e7cc4 100644 --- a/Code/Framework/GridMate/GridMate/Session/LANSessionServiceTypes.h +++ b/Code/Framework/GridMate/GridMate/Session/LANSessionServiceTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Session/Session.cpp b/Code/Framework/GridMate/GridMate/Session/Session.cpp index 25256f815c..ca54844c37 100644 --- a/Code/Framework/GridMate/GridMate/Session/Session.cpp +++ b/Code/Framework/GridMate/GridMate/Session/Session.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Session/Session.h b/Code/Framework/GridMate/GridMate/Session/Session.h index 966bd26a37..3796c11921 100644 --- a/Code/Framework/GridMate/GridMate/Session/Session.h +++ b/Code/Framework/GridMate/GridMate/Session/Session.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Session/SessionServiceBus.h b/Code/Framework/GridMate/GridMate/Session/SessionServiceBus.h index a6152ff582..874f3f5d18 100644 --- a/Code/Framework/GridMate/GridMate/Session/SessionServiceBus.h +++ b/Code/Framework/GridMate/GridMate/Session/SessionServiceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/String/StringUtils.h b/Code/Framework/GridMate/GridMate/String/StringUtils.h index d977bb6f85..b73043bff7 100644 --- a/Code/Framework/GridMate/GridMate/String/StringUtils.h +++ b/Code/Framework/GridMate/GridMate/String/StringUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/String/string.h b/Code/Framework/GridMate/GridMate/String/string.h index f265b85e32..a1fad474fd 100644 --- a/Code/Framework/GridMate/GridMate/String/string.h +++ b/Code/Framework/GridMate/GridMate/String/string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Types.h b/Code/Framework/GridMate/GridMate/Types.h index 2e07f4838d..50d6f4caaa 100644 --- a/Code/Framework/GridMate/GridMate/Types.h +++ b/Code/Framework/GridMate/GridMate/Types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/Version.h b/Code/Framework/GridMate/GridMate/Version.h index 7c2ffa4976..517bb1c396 100644 --- a/Code/Framework/GridMate/GridMate/Version.h +++ b/Code/Framework/GridMate/GridMate/Version.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/VoiceChat/VoiceChatServiceBus.h b/Code/Framework/GridMate/GridMate/VoiceChat/VoiceChatServiceBus.h index 9a0a7e8951..ad645eac0f 100644 --- a/Code/Framework/GridMate/GridMate/VoiceChat/VoiceChatServiceBus.h +++ b/Code/Framework/GridMate/GridMate/VoiceChat/VoiceChatServiceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/GridMate/gridmate_files.cmake b/Code/Framework/GridMate/GridMate/gridmate_files.cmake index e386f73e59..669e1a7cc2 100644 --- a/Code/Framework/GridMate/GridMate/gridmate_files.cmake +++ b/Code/Framework/GridMate/GridMate/gridmate_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/GridMate/gridmate_ssl_files.cmake b/Code/Framework/GridMate/GridMate/gridmate_ssl_files.cmake index 76c116ea18..51d2357a4f 100644 --- a/Code/Framework/GridMate/GridMate/gridmate_ssl_files.cmake +++ b/Code/Framework/GridMate/GridMate/gridmate_ssl_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Android.h b/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Android.h index 6f295fb547..77f9029fb6 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Android.h +++ b/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Android.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Platform.h b/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Platform.h index edc7f125f9..64653656af 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Platform.h +++ b/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/SocketDriver_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/Utils_Android.cpp b/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/Utils_Android.cpp index d9caea200b..300654d0fe 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/Utils_Android.cpp +++ b/Code/Framework/GridMate/Platform/Android/GridMate/Carrier/Utils_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/GridMate/Session/LANSession_Android.cpp b/Code/Framework/GridMate/Platform/Android/GridMate/Session/LANSession_Android.cpp index e146caac18..cb912512bd 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate/Session/LANSession_Android.cpp +++ b/Code/Framework/GridMate/Platform/Android/GridMate/Session/LANSession_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Android.h b/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Android.h index ad49d2df73..e41e011a88 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Android.h +++ b/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Platform.h b/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Platform.h index 46270ff119..8ea796554e 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Platform.h +++ b/Code/Framework/GridMate/Platform/Android/GridMate/Session/Session_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Android.h b/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Android.h index 1fd7d025fe..146fadfb8b 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Android.h +++ b/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Platform.h b/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Platform.h index e94398f645..dcbe9fcfe5 100644 --- a/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Platform.h +++ b/Code/Framework/GridMate/Platform/Android/GridMate_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Android/platform_android.cmake b/Code/Framework/GridMate/Platform/Android/platform_android.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/GridMate/Platform/Android/platform_android.cmake +++ b/Code/Framework/GridMate/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Android/platform_android_files.cmake b/Code/Framework/GridMate/Platform/Android/platform_android_files.cmake index 23d9be9f58..d5751bd3a7 100644 --- a/Code/Framework/GridMate/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/GridMate/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.cpp b/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.cpp index a759e6a6b3..f63e8cc2c1 100644 --- a/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.cpp +++ b/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.h b/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.h index 6e3b047086..58c1719c8a 100644 --- a/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.h +++ b/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/SocketDriver_UnixLike.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/Utils_UnixLike.cpp b/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/Utils_UnixLike.cpp index 93430978c7..df1098e0f2 100644 --- a/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/Utils_UnixLike.cpp +++ b/Code/Framework/GridMate/Platform/Common/UnixLike/GridMate/Carrier/Utils_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/SocketDriver_WinAPI.cpp b/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/SocketDriver_WinAPI.cpp index fabd0400fd..9c4e289f3b 100644 --- a/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/SocketDriver_WinAPI.cpp +++ b/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/SocketDriver_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/Utils_WinAPI.cpp b/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/Utils_WinAPI.cpp index 9b0d9e6089..d4832adf76 100644 --- a/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/Utils_WinAPI.cpp +++ b/Code/Framework/GridMate/Platform/Common/WinAPI/GridMate/Carrier/Utils_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Common/gridmate_clang.cmake b/Code/Framework/GridMate/Platform/Common/gridmate_clang.cmake index f1893b4f46..b17baf630e 100644 --- a/Code/Framework/GridMate/Platform/Common/gridmate_clang.cmake +++ b/Code/Framework/GridMate/Platform/Common/gridmate_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Common/gridmate_msvc.cmake b/Code/Framework/GridMate/Platform/Common/gridmate_msvc.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Framework/GridMate/Platform/Common/gridmate_msvc.cmake +++ b/Code/Framework/GridMate/Platform/Common/gridmate_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Linux/GridMate/Carrier/SocketDriver_Platform.h b/Code/Framework/GridMate/Platform/Linux/GridMate/Carrier/SocketDriver_Platform.h index a97f614686..15eba20540 100644 --- a/Code/Framework/GridMate/Platform/Linux/GridMate/Carrier/SocketDriver_Platform.h +++ b/Code/Framework/GridMate/Platform/Linux/GridMate/Carrier/SocketDriver_Platform.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Linux/GridMate/Session/LANSession_Linux.cpp b/Code/Framework/GridMate/Platform/Linux/GridMate/Session/LANSession_Linux.cpp index e146caac18..cb912512bd 100644 --- a/Code/Framework/GridMate/Platform/Linux/GridMate/Session/LANSession_Linux.cpp +++ b/Code/Framework/GridMate/Platform/Linux/GridMate/Session/LANSession_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Linux.h b/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Linux.h index dc129a5077..34c445c169 100644 --- a/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Linux.h +++ b/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Platform.h b/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Platform.h index 47af77ac29..a86ebc4c3b 100644 --- a/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Platform.h +++ b/Code/Framework/GridMate/Platform/Linux/GridMate/Session/Session_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Linux/GridMate/String/StringUtils_Platform.h b/Code/Framework/GridMate/Platform/Linux/GridMate/String/StringUtils_Platform.h index ad49d2df73..e41e011a88 100644 --- a/Code/Framework/GridMate/Platform/Linux/GridMate/String/StringUtils_Platform.h +++ b/Code/Framework/GridMate/Platform/Linux/GridMate/String/StringUtils_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Linux.h b/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Linux.h index a59e69d937..25cb21edd6 100644 --- a/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Linux.h +++ b/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Platform.h b/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Platform.h index 8c697bbb8f..dca67cb734 100644 --- a/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Platform.h +++ b/Code/Framework/GridMate/Platform/Linux/GridMate_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Linux/platform_linux.cmake b/Code/Framework/GridMate/Platform/Linux/platform_linux.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/GridMate/Platform/Linux/platform_linux.cmake +++ b/Code/Framework/GridMate/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Linux/platform_linux_files.cmake b/Code/Framework/GridMate/Platform/Linux/platform_linux_files.cmake index 1e8c715448..07f6b56c86 100644 --- a/Code/Framework/GridMate/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/GridMate/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Mac/GridMate/Carrier/SocketDriver_Platform.h b/Code/Framework/GridMate/Platform/Mac/GridMate/Carrier/SocketDriver_Platform.h index a97f614686..15eba20540 100644 --- a/Code/Framework/GridMate/Platform/Mac/GridMate/Carrier/SocketDriver_Platform.h +++ b/Code/Framework/GridMate/Platform/Mac/GridMate/Carrier/SocketDriver_Platform.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Mac/GridMate/Session/LANSession_Mac.cpp b/Code/Framework/GridMate/Platform/Mac/GridMate/Session/LANSession_Mac.cpp index e146caac18..cb912512bd 100644 --- a/Code/Framework/GridMate/Platform/Mac/GridMate/Session/LANSession_Mac.cpp +++ b/Code/Framework/GridMate/Platform/Mac/GridMate/Session/LANSession_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Mac.h b/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Mac.h index dc129a5077..34c445c169 100644 --- a/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Mac.h +++ b/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Platform.h b/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Platform.h index 4cf810781e..0413b0f3b9 100644 --- a/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Platform.h +++ b/Code/Framework/GridMate/Platform/Mac/GridMate/Session/Session_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Mac.h b/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Mac.h index 0f59b897ca..b5d2829fa7 100644 --- a/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Mac.h +++ b/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Platform.h b/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Platform.h index 15a7b01fd1..ede5b8e8f0 100644 --- a/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Platform.h +++ b/Code/Framework/GridMate/Platform/Mac/GridMate_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Mac/platform_mac.cmake b/Code/Framework/GridMate/Platform/Mac/platform_mac.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Code/Framework/GridMate/Platform/Mac/platform_mac.cmake +++ b/Code/Framework/GridMate/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Mac/platform_mac_files.cmake b/Code/Framework/GridMate/Platform/Mac/platform_mac_files.cmake index 97c9903b4d..77d1771061 100644 --- a/Code/Framework/GridMate/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/GridMate/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Platform.h b/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Platform.h index fef13b6733..833d25574f 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Platform.h +++ b/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Platform.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Windows.h b/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Windows.h index 8e2494e899..f6eb3609dd 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Windows.h +++ b/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/SocketDriver_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/Utils_Windows.cpp b/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/Utils_Windows.cpp index fff3774fec..330c17563a 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/Utils_Windows.cpp +++ b/Code/Framework/GridMate/Platform/Windows/GridMate/Carrier/Utils_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate/Session/LANSession_Windows.cpp b/Code/Framework/GridMate/Platform/Windows/GridMate/Session/LANSession_Windows.cpp index eed0a25e66..b9fb9bb225 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate/Session/LANSession_Windows.cpp +++ b/Code/Framework/GridMate/Platform/Windows/GridMate/Session/LANSession_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Platform.h b/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Platform.h index 48ec464f90..f8adc33b8b 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Platform.h +++ b/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Windows.h b/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Windows.h index 0dc42bf462..bd142402ab 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Windows.h +++ b/Code/Framework/GridMate/Platform/Windows/GridMate/Session/Session_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Platform.h b/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Platform.h index b4faf3b604..856705aeb3 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Platform.h +++ b/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Windows.h b/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Windows.h index f702544228..ccd697ed3f 100644 --- a/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Windows.h +++ b/Code/Framework/GridMate/Platform/Windows/GridMate_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/Windows/platform_windows.cmake b/Code/Framework/GridMate/Platform/Windows/platform_windows.cmake index d7b83d1d3f..1f16efff0b 100644 --- a/Code/Framework/GridMate/Platform/Windows/platform_windows.cmake +++ b/Code/Framework/GridMate/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/Windows/platform_windows_files.cmake b/Code/Framework/GridMate/Platform/Windows/platform_windows_files.cmake index 62eaaca1f4..bbbb9e9bb0 100644 --- a/Code/Framework/GridMate/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/GridMate/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/iOS/GridMate/Carrier/SocketDriver_Platform.h b/Code/Framework/GridMate/Platform/iOS/GridMate/Carrier/SocketDriver_Platform.h index a97f614686..15eba20540 100644 --- a/Code/Framework/GridMate/Platform/iOS/GridMate/Carrier/SocketDriver_Platform.h +++ b/Code/Framework/GridMate/Platform/iOS/GridMate/Carrier/SocketDriver_Platform.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/iOS/GridMate/Session/LANSession_iOS.cpp b/Code/Framework/GridMate/Platform/iOS/GridMate/Session/LANSession_iOS.cpp index e146caac18..cb912512bd 100644 --- a/Code/Framework/GridMate/Platform/iOS/GridMate/Session/LANSession_iOS.cpp +++ b/Code/Framework/GridMate/Platform/iOS/GridMate/Session/LANSession_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_Platform.h b/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_Platform.h index 0de3f37dc5..b6862a5369 100644 --- a/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_Platform.h +++ b/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_iOS.h b/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_iOS.h index dc129a5077..34c445c169 100644 --- a/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_iOS.h +++ b/Code/Framework/GridMate/Platform/iOS/GridMate/Session/Session_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_Platform.h b/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_Platform.h index 0b1899258e..087a910207 100644 --- a/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_Platform.h +++ b/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_iOS.h b/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_iOS.h index 0f59b897ca..b5d2829fa7 100644 --- a/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_iOS.h +++ b/Code/Framework/GridMate/Platform/iOS/GridMate_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Platform/iOS/platform_ios.cmake b/Code/Framework/GridMate/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Framework/GridMate/Platform/iOS/platform_ios.cmake +++ b/Code/Framework/GridMate/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Platform/iOS/platform_ios_files.cmake b/Code/Framework/GridMate/Platform/iOS/platform_ios_files.cmake index e79a39bf27..a5663ff518 100644 --- a/Code/Framework/GridMate/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/GridMate/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Tests/Carrier.cpp b/Code/Framework/GridMate/Tests/Carrier.cpp index 4c7e96b7ea..778747cf27 100644 --- a/Code/Framework/GridMate/Tests/Carrier.cpp +++ b/Code/Framework/GridMate/Tests/Carrier.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp b/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp index ded4509997..c1478aad06 100644 --- a/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp +++ b/Code/Framework/GridMate/Tests/CarrierStreamSocketDriverTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Certificates.cpp b/Code/Framework/GridMate/Tests/Certificates.cpp index 6bd403d723..abd728df60 100644 --- a/Code/Framework/GridMate/Tests/Certificates.cpp +++ b/Code/Framework/GridMate/Tests/Certificates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests/Tests_Platform.h b/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests/Tests_Platform.h index 44326e4a8c..de23de2bad 100644 --- a/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests/Tests_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests/Tests_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Android.h b/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Android.h index e03d7cb85a..b084c4aa7c 100644 --- a/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Android.h +++ b/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Platform.h b/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Platform.h index d4b52796fc..5173892461 100644 --- a/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Android/GridMateTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Android/platform_android_files.cmake b/Code/Framework/GridMate/Tests/Platform/Android/platform_android_files.cmake index 1b6da36626..f5bcc5730a 100644 --- a/Code/Framework/GridMate/Tests/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/GridMate/Tests/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Tests/Platform/Common/Unimplemented/GridMateTests/Tests_Unimplemented.h b/Code/Framework/GridMate/Tests/Platform/Common/Unimplemented/GridMateTests/Tests_Unimplemented.h index b6bfd1b5eb..f624cdf416 100644 --- a/Code/Framework/GridMate/Tests/Platform/Common/Unimplemented/GridMateTests/Tests_Unimplemented.h +++ b/Code/Framework/GridMate/Tests/Platform/Common/Unimplemented/GridMateTests/Tests_Unimplemented.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests/Tests_Platform.h b/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests/Tests_Platform.h index 44326e4a8c..de23de2bad 100644 --- a/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests/Tests_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests/Tests_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Linux.h b/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Linux.h index a0e9dabea0..3c6b3bdef1 100644 --- a/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Linux.h +++ b/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Platform.h b/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Platform.h index eb621b8323..3ba6d53bc8 100644 --- a/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Linux/GridMateTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Linux/platform_linux_files.cmake b/Code/Framework/GridMate/Tests/Platform/Linux/platform_linux_files.cmake index 0c5d20e09f..1ef165360e 100644 --- a/Code/Framework/GridMate/Tests/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/GridMate/Tests/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests/Tests_Platform.h b/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests/Tests_Platform.h index 44326e4a8c..de23de2bad 100644 --- a/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests/Tests_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests/Tests_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Mac.h b/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Mac.h index f3d06f1839..176b8826af 100644 --- a/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Mac.h +++ b/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Platform.h b/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Platform.h index d611a0434f..c8dcb249e4 100644 --- a/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Mac/GridMateTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Mac/platform_mac_files.cmake b/Code/Framework/GridMate/Tests/Platform/Mac/platform_mac_files.cmake index 4cd9f0825f..5a1cdaef92 100644 --- a/Code/Framework/GridMate/Tests/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/GridMate/Tests/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests/Tests_Platform.h b/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests/Tests_Platform.h index d9e0af1208..193d4fce2e 100644 --- a/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests/Tests_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests/Tests_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Platform.h b/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Platform.h index cc580b68ff..881cbe6b85 100644 --- a/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Windows.h b/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Windows.h index 8c0fc4bae3..3fe67a9057 100644 --- a/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Windows.h +++ b/Code/Framework/GridMate/Tests/Platform/Windows/GridMateTests_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/Windows/platform_windows_files.cmake b/Code/Framework/GridMate/Tests/Platform/Windows/platform_windows_files.cmake index bc754e6524..afa369b1de 100644 --- a/Code/Framework/GridMate/Tests/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/GridMate/Tests/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests/Tests_Platform.h b/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests/Tests_Platform.h index 44326e4a8c..de23de2bad 100644 --- a/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests/Tests_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests/Tests_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_Platform.h b/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_Platform.h index d6630c94ec..50d36cb500 100644 --- a/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_Platform.h +++ b/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_iOS.h b/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_iOS.h index f3d06f1839..176b8826af 100644 --- a/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_iOS.h +++ b/Code/Framework/GridMate/Tests/Platform/iOS/GridMateTests_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Platform/iOS/platform_ios_files.cmake b/Code/Framework/GridMate/Tests/Platform/iOS/platform_ios_files.cmake index 4e697ff263..5645b9b592 100644 --- a/Code/Framework/GridMate/Tests/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/GridMate/Tests/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Tests/Replica.cpp b/Code/Framework/GridMate/Tests/Replica.cpp index 91df9b68a9..588073acd8 100644 --- a/Code/Framework/GridMate/Tests/Replica.cpp +++ b/Code/Framework/GridMate/Tests/Replica.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp b/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp index a567a5d1df..ca419a5560 100644 --- a/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp +++ b/Code/Framework/GridMate/Tests/ReplicaBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/ReplicaMedium.cpp b/Code/Framework/GridMate/Tests/ReplicaMedium.cpp index 8a00f729e5..1d3f7d8c52 100644 --- a/Code/Framework/GridMate/Tests/ReplicaMedium.cpp +++ b/Code/Framework/GridMate/Tests/ReplicaMedium.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/ReplicaSmall.cpp b/Code/Framework/GridMate/Tests/ReplicaSmall.cpp index 8419c89eac..4cbd8baf1b 100644 --- a/Code/Framework/GridMate/Tests/ReplicaSmall.cpp +++ b/Code/Framework/GridMate/Tests/ReplicaSmall.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Serialize.cpp b/Code/Framework/GridMate/Tests/Serialize.cpp index 9561527d34..f2e0bf6a68 100644 --- a/Code/Framework/GridMate/Tests/Serialize.cpp +++ b/Code/Framework/GridMate/Tests/Serialize.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Session.cpp b/Code/Framework/GridMate/Tests/Session.cpp index f249448a3f..e386c0ed56 100644 --- a/Code/Framework/GridMate/Tests/Session.cpp +++ b/Code/Framework/GridMate/Tests/Session.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/StreamSecureSocketDriverTests.cpp b/Code/Framework/GridMate/Tests/StreamSecureSocketDriverTests.cpp index 603d555e6a..dd262fb24d 100644 --- a/Code/Framework/GridMate/Tests/StreamSecureSocketDriverTests.cpp +++ b/Code/Framework/GridMate/Tests/StreamSecureSocketDriverTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/StreamSocketDriverTests.cpp b/Code/Framework/GridMate/Tests/StreamSocketDriverTests.cpp index 48724c21d4..a9391b60e4 100644 --- a/Code/Framework/GridMate/Tests/StreamSocketDriverTests.cpp +++ b/Code/Framework/GridMate/Tests/StreamSocketDriverTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/TestProfiler.cpp b/Code/Framework/GridMate/Tests/TestProfiler.cpp index ea32b20a46..e747d69aa4 100644 --- a/Code/Framework/GridMate/Tests/TestProfiler.cpp +++ b/Code/Framework/GridMate/Tests/TestProfiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/TestProfiler.h b/Code/Framework/GridMate/Tests/TestProfiler.h index 31ee85e18a..d6cea91a55 100644 --- a/Code/Framework/GridMate/Tests/TestProfiler.h +++ b/Code/Framework/GridMate/Tests/TestProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/Tests.h b/Code/Framework/GridMate/Tests/Tests.h index db9bd7aeb9..4ea19392bf 100644 --- a/Code/Framework/GridMate/Tests/Tests.h +++ b/Code/Framework/GridMate/Tests/Tests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/GridMate/Tests/gridmate_test_files.cmake b/Code/Framework/GridMate/Tests/gridmate_test_files.cmake index 26b069f310..12633b0f8d 100644 --- a/Code/Framework/GridMate/Tests/gridmate_test_files.cmake +++ b/Code/Framework/GridMate/Tests/gridmate_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/GridMate/Tests/test_Main.cpp b/Code/Framework/GridMate/Tests/test_Main.cpp index 032dff4d3e..f1e9eb2b69 100644 --- a/Code/Framework/GridMate/Tests/test_Main.cpp +++ b/Code/Framework/GridMate/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Application.cpp b/Code/Framework/Tests/Application.cpp index 7037718ebf..375a950654 100644 --- a/Code/Framework/Tests/Application.cpp +++ b/Code/Framework/Tests/Application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/ArchiveCompressionTests.cpp b/Code/Framework/Tests/ArchiveCompressionTests.cpp index b536c1c4e9..80f23fde1f 100644 --- a/Code/Framework/Tests/ArchiveCompressionTests.cpp +++ b/Code/Framework/Tests/ArchiveCompressionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/ArchiveTests.cpp b/Code/Framework/Tests/ArchiveTests.cpp index 597a7d3b66..b05e3d4f96 100644 --- a/Code/Framework/Tests/ArchiveTests.cpp +++ b/Code/Framework/Tests/ArchiveTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/AssetCatalog.cpp b/Code/Framework/Tests/AssetCatalog.cpp index 7e9c6e4de7..9b0808295e 100644 --- a/Code/Framework/Tests/AssetCatalog.cpp +++ b/Code/Framework/Tests/AssetCatalog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/AssetProcessorConnection.cpp b/Code/Framework/Tests/AssetProcessorConnection.cpp index d5c0cbcfe6..a9a0d5b83e 100644 --- a/Code/Framework/Tests/AssetProcessorConnection.cpp +++ b/Code/Framework/Tests/AssetProcessorConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/BehaviorEntityTests.cpp b/Code/Framework/Tests/BehaviorEntityTests.cpp index 88863573e9..e918d5b28d 100644 --- a/Code/Framework/Tests/BehaviorEntityTests.cpp +++ b/Code/Framework/Tests/BehaviorEntityTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/BinToTextEncode.cpp b/Code/Framework/Tests/BinToTextEncode.cpp index 148e24f7ea..6e7a362f4d 100644 --- a/Code/Framework/Tests/BinToTextEncode.cpp +++ b/Code/Framework/Tests/BinToTextEncode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/CMakeLists.txt b/Code/Framework/Tests/CMakeLists.txt index 88ea05bee0..6781466413 100644 --- a/Code/Framework/Tests/CMakeLists.txt +++ b/Code/Framework/Tests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/CameraInputTests.cpp b/Code/Framework/Tests/CameraInputTests.cpp index 108af39abf..b4070dee5a 100644 --- a/Code/Framework/Tests/CameraInputTests.cpp +++ b/Code/Framework/Tests/CameraInputTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/CameraState.cpp b/Code/Framework/Tests/CameraState.cpp index 1ae9132b0e..d85d2ce22a 100644 --- a/Code/Framework/Tests/CameraState.cpp +++ b/Code/Framework/Tests/CameraState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/ClickDetectorTests.cpp b/Code/Framework/Tests/ClickDetectorTests.cpp index 05a74ea01f..d604f572ef 100644 --- a/Code/Framework/Tests/ClickDetectorTests.cpp +++ b/Code/Framework/Tests/ClickDetectorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/ComponentAdapterTests.cpp b/Code/Framework/Tests/ComponentAdapterTests.cpp index 0786d4ead6..47cf658b10 100644 --- a/Code/Framework/Tests/ComponentAdapterTests.cpp +++ b/Code/Framework/Tests/ComponentAdapterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/ComponentAddRemove.cpp b/Code/Framework/Tests/ComponentAddRemove.cpp index 241f830879..6050101f0e 100644 --- a/Code/Framework/Tests/ComponentAddRemove.cpp +++ b/Code/Framework/Tests/ComponentAddRemove.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/CursorStateTests.cpp b/Code/Framework/Tests/CursorStateTests.cpp index cb88fcec10..7ebdb94192 100644 --- a/Code/Framework/Tests/CursorStateTests.cpp +++ b/Code/Framework/Tests/CursorStateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/EntityContext.cpp b/Code/Framework/Tests/EntityContext.cpp index b7e740cb18..7f44ca54a0 100644 --- a/Code/Framework/Tests/EntityContext.cpp +++ b/Code/Framework/Tests/EntityContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.cpp b/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.cpp index 22a51e3217..79da3656bc 100644 --- a/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.cpp +++ b/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.h b/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.h index 429b98fd9f..4d2421dad1 100644 --- a/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.h +++ b/Code/Framework/Tests/EntityOwnershipService/EntityOwnershipServiceTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/EntityOwnershipService/SliceEditorEntityOwnershipTests.cpp b/Code/Framework/Tests/EntityOwnershipService/SliceEditorEntityOwnershipTests.cpp index 7bbbc8acb9..4f8d56c3dd 100644 --- a/Code/Framework/Tests/EntityOwnershipService/SliceEditorEntityOwnershipTests.cpp +++ b/Code/Framework/Tests/EntityOwnershipService/SliceEditorEntityOwnershipTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/EntityOwnershipService/SliceEntityOwnershipTests.cpp b/Code/Framework/Tests/EntityOwnershipService/SliceEntityOwnershipTests.cpp index 69ac60471e..fa693eca5e 100644 --- a/Code/Framework/Tests/EntityOwnershipService/SliceEntityOwnershipTests.cpp +++ b/Code/Framework/Tests/EntityOwnershipService/SliceEntityOwnershipTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/EntityTestbed.h b/Code/Framework/Tests/EntityTestbed.h index 54ee341a3e..719ffb371e 100644 --- a/Code/Framework/Tests/EntityTestbed.h +++ b/Code/Framework/Tests/EntityTestbed.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/FileFunc.cpp b/Code/Framework/Tests/FileFunc.cpp index e06f15d2ca..4edb91164c 100644 --- a/Code/Framework/Tests/FileFunc.cpp +++ b/Code/Framework/Tests/FileFunc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/FileIO.cpp b/Code/Framework/Tests/FileIO.cpp index 40cca873ec..670893ad46 100644 --- a/Code/Framework/Tests/FileIO.cpp +++ b/Code/Framework/Tests/FileIO.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/FileTagTests.cpp b/Code/Framework/Tests/FileTagTests.cpp index d0291668d4..16337ea24c 100644 --- a/Code/Framework/Tests/FileTagTests.cpp +++ b/Code/Framework/Tests/FileTagTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/FrameworkApplicationFixture.h b/Code/Framework/Tests/FrameworkApplicationFixture.h index 2095ac7abd..acc5a70b6c 100644 --- a/Code/Framework/Tests/FrameworkApplicationFixture.h +++ b/Code/Framework/Tests/FrameworkApplicationFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/GenAppDescriptors.cpp b/Code/Framework/Tests/GenAppDescriptors.cpp index 8f3077ddea..dde3800895 100644 --- a/Code/Framework/Tests/GenAppDescriptors.cpp +++ b/Code/Framework/Tests/GenAppDescriptors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/GenericComponentWrapperTest.cpp b/Code/Framework/Tests/GenericComponentWrapperTest.cpp index e0318d0338..23964774ab 100644 --- a/Code/Framework/Tests/GenericComponentWrapperTest.cpp +++ b/Code/Framework/Tests/GenericComponentWrapperTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/InputTests.cpp b/Code/Framework/Tests/InputTests.cpp index fba2ff9352..d5e0c8b72e 100644 --- a/Code/Framework/Tests/InputTests.cpp +++ b/Code/Framework/Tests/InputTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/InstanceDataHierarchy.cpp b/Code/Framework/Tests/InstanceDataHierarchy.cpp index c72cb38bfd..db0223c0cf 100644 --- a/Code/Framework/Tests/InstanceDataHierarchy.cpp +++ b/Code/Framework/Tests/InstanceDataHierarchy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Mocks/MockSpawnableEntitiesInterface.h b/Code/Framework/Tests/Mocks/MockSpawnableEntitiesInterface.h index 31b999cb22..eb7370aa16 100644 --- a/Code/Framework/Tests/Mocks/MockSpawnableEntitiesInterface.h +++ b/Code/Framework/Tests/Mocks/MockSpawnableEntitiesInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/NativeWindow.cpp b/Code/Framework/Tests/NativeWindow.cpp index 9b1c3eb691..f40d644288 100644 --- a/Code/Framework/Tests/NativeWindow.cpp +++ b/Code/Framework/Tests/NativeWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/OctreePerformanceTests.cpp b/Code/Framework/Tests/OctreePerformanceTests.cpp index 2b2c838ca4..0d0ac3e943 100644 --- a/Code/Framework/Tests/OctreePerformanceTests.cpp +++ b/Code/Framework/Tests/OctreePerformanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/OctreeTests.cpp b/Code/Framework/Tests/OctreeTests.cpp index bb45d42a7b..6c93dc7541 100644 --- a/Code/Framework/Tests/OctreeTests.cpp +++ b/Code/Framework/Tests/OctreeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Android.h b/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Android.h index 8f41f2ab40..95530f916e 100644 --- a/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Android.h +++ b/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Platform.h b/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Platform.h index 18e0699c76..3f1ac768c8 100644 --- a/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Platform.h +++ b/Code/Framework/Tests/Platform/Android/AzFrameworkTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Android/platform_android_files.cmake b/Code/Framework/Tests/Platform/Android/platform_android_files.cmake index 8d5dc85c64..bd315a50be 100644 --- a/Code/Framework/Tests/Platform/Android/platform_android_files.cmake +++ b/Code/Framework/Tests/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Linux.h b/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Linux.h index a7ead6e00c..70b7955ccd 100644 --- a/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Linux.h +++ b/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Platform.h b/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Platform.h index 38e594962a..a65f611fe9 100644 --- a/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Platform.h +++ b/Code/Framework/Tests/Platform/Linux/AzFrameworkTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Linux/platform_linux_files.cmake b/Code/Framework/Tests/Platform/Linux/platform_linux_files.cmake index 57ed1dec34..0b8dab3d7d 100644 --- a/Code/Framework/Tests/Platform/Linux/platform_linux_files.cmake +++ b/Code/Framework/Tests/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Mac.h b/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Mac.h index a7ead6e00c..70b7955ccd 100644 --- a/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Mac.h +++ b/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Platform.h b/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Platform.h index f96ffee5d7..0d48e6009f 100644 --- a/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Platform.h +++ b/Code/Framework/Tests/Platform/Mac/AzFrameworkTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Mac/platform_mac_files.cmake b/Code/Framework/Tests/Platform/Mac/platform_mac_files.cmake index 5921f69f79..7806d60019 100644 --- a/Code/Framework/Tests/Platform/Mac/platform_mac_files.cmake +++ b/Code/Framework/Tests/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Platform.h b/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Platform.h index f1b3f05da2..b34a3304f3 100644 --- a/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Platform.h +++ b/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Windows.h b/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Windows.h index 0d3313f0c3..c6395bda04 100644 --- a/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Windows.h +++ b/Code/Framework/Tests/Platform/Windows/AzFrameworkTests_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/Windows/platform_windows_files.cmake b/Code/Framework/Tests/Platform/Windows/platform_windows_files.cmake index 8b78e17f1d..4a653507c6 100644 --- a/Code/Framework/Tests/Platform/Windows/platform_windows_files.cmake +++ b/Code/Framework/Tests/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_Platform.h b/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_Platform.h index 625e445799..60af263fec 100644 --- a/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_Platform.h +++ b/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_iOS.h b/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_iOS.h index 8f41f2ab40..95530f916e 100644 --- a/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_iOS.h +++ b/Code/Framework/Tests/Platform/iOS/AzFrameworkTests_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Platform/iOS/platform_ios_files.cmake b/Code/Framework/Tests/Platform/iOS/platform_ios_files.cmake index 4fc0fe6a62..35a27755e5 100644 --- a/Code/Framework/Tests/Platform/iOS/platform_ios_files.cmake +++ b/Code/Framework/Tests/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/PlatformHelper.cpp b/Code/Framework/Tests/PlatformHelper.cpp index 4329706292..9e0b61968e 100644 --- a/Code/Framework/Tests/PlatformHelper.cpp +++ b/Code/Framework/Tests/PlatformHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/ProcessLaunchMain.cpp b/Code/Framework/Tests/ProcessLaunchMain.cpp index 5f943e8a20..ca9dca4284 100644 --- a/Code/Framework/Tests/ProcessLaunchMain.cpp +++ b/Code/Framework/Tests/ProcessLaunchMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/ProcessLaunchParseTests.cpp b/Code/Framework/Tests/ProcessLaunchParseTests.cpp index 15141941f2..2f19441688 100644 --- a/Code/Framework/Tests/ProcessLaunchParseTests.cpp +++ b/Code/Framework/Tests/ProcessLaunchParseTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/SQLiteConnectionTests.cpp b/Code/Framework/Tests/SQLiteConnectionTests.cpp index e6fe420606..984f9c5104 100644 --- a/Code/Framework/Tests/SQLiteConnectionTests.cpp +++ b/Code/Framework/Tests/SQLiteConnectionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Scene.cpp b/Code/Framework/Tests/Scene.cpp index 2192753632..32a0958692 100644 --- a/Code/Framework/Tests/Scene.cpp +++ b/Code/Framework/Tests/Scene.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Script/ScriptComponentTests.cpp b/Code/Framework/Tests/Script/ScriptComponentTests.cpp index 9b7c0852fa..9185d6a0bd 100644 --- a/Code/Framework/Tests/Script/ScriptComponentTests.cpp +++ b/Code/Framework/Tests/Script/ScriptComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Script/ScriptEntityTests.cpp b/Code/Framework/Tests/Script/ScriptEntityTests.cpp index 612cedf7cf..8e73fd8209 100644 --- a/Code/Framework/Tests/Script/ScriptEntityTests.cpp +++ b/Code/Framework/Tests/Script/ScriptEntityTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Slices.cpp b/Code/Framework/Tests/Slices.cpp index ac37d276db..ba413eb727 100644 --- a/Code/Framework/Tests/Slices.cpp +++ b/Code/Framework/Tests/Slices.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp b/Code/Framework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp index 3775a4b0bf..734ba03dba 100644 --- a/Code/Framework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp +++ b/Code/Framework/Tests/Spawnable/SpawnableEntitiesManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/TransformComponent.cpp b/Code/Framework/Tests/TransformComponent.cpp index 4fa287ddbd..57edbf7f74 100644 --- a/Code/Framework/Tests/TransformComponent.cpp +++ b/Code/Framework/Tests/TransformComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Utils/Utils.cpp b/Code/Framework/Tests/Utils/Utils.cpp index 832a26f14f..df3d08c6fa 100644 --- a/Code/Framework/Tests/Utils/Utils.cpp +++ b/Code/Framework/Tests/Utils/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/Utils/Utils.h b/Code/Framework/Tests/Utils/Utils.h index c58ec51338..c3f71dc1dc 100644 --- a/Code/Framework/Tests/Utils/Utils.h +++ b/Code/Framework/Tests/Utils/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Framework/Tests/framework_shared_tests_files.cmake b/Code/Framework/Tests/framework_shared_tests_files.cmake index e280ed9a4d..72ffdf0043 100644 --- a/Code/Framework/Tests/framework_shared_tests_files.cmake +++ b/Code/Framework/Tests/framework_shared_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/frameworktests_files.cmake b/Code/Framework/Tests/frameworktests_files.cmake index 0885684aec..398bb8f45b 100644 --- a/Code/Framework/Tests/frameworktests_files.cmake +++ b/Code/Framework/Tests/frameworktests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Framework/Tests/process_launch_test_files.cmake b/Code/Framework/Tests/process_launch_test_files.cmake index a49a323ec1..4deddbdfc9 100644 --- a/Code/Framework/Tests/process_launch_test_files.cmake +++ b/Code/Framework/Tests/process_launch_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/CMakeLists.txt b/Code/LauncherUnified/CMakeLists.txt index 5a74fb3fb7..0eaad4af64 100644 --- a/Code/LauncherUnified/CMakeLists.txt +++ b/Code/LauncherUnified/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/FindLauncherGenerator.cmake b/Code/LauncherUnified/FindLauncherGenerator.cmake index dcc8a83759..30bde3556b 100644 --- a/Code/LauncherUnified/FindLauncherGenerator.cmake +++ b/Code/LauncherUnified/FindLauncherGenerator.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Game.cpp b/Code/LauncherUnified/Game.cpp index 406754a2c1..140b579a02 100644 --- a/Code/LauncherUnified/Game.cpp +++ b/Code/LauncherUnified/Game.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Launcher.cpp b/Code/LauncherUnified/Launcher.cpp index 575c9d1c38..636b92e265 100644 --- a/Code/LauncherUnified/Launcher.cpp +++ b/Code/LauncherUnified/Launcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Launcher.h b/Code/LauncherUnified/Launcher.h index 6cce91a2ce..40d7a4befe 100644 --- a/Code/LauncherUnified/Launcher.h +++ b/Code/LauncherUnified/Launcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/LauncherProject.cpp b/Code/LauncherUnified/LauncherProject.cpp index 62669e4310..8aff6737c6 100644 --- a/Code/LauncherUnified/LauncherProject.cpp +++ b/Code/LauncherUnified/LauncherProject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Android/LauncherUnified_traits_android.cmake b/Code/LauncherUnified/Platform/Android/LauncherUnified_traits_android.cmake index 52da2f3a38..9e271cc9f3 100644 --- a/Code/LauncherUnified/Platform/Android/LauncherUnified_traits_android.cmake +++ b/Code/LauncherUnified/Platform/Android/LauncherUnified_traits_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Android/Launcher_Android.cpp b/Code/LauncherUnified/Platform/Android/Launcher_Android.cpp index f101ce007d..259c812173 100644 --- a/Code/LauncherUnified/Platform/Android/Launcher_Android.cpp +++ b/Code/LauncherUnified/Platform/Android/Launcher_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Android/Launcher_Traits_Android.h b/Code/LauncherUnified/Platform/Android/Launcher_Traits_Android.h index ef3b161308..7ce0cac011 100644 --- a/Code/LauncherUnified/Platform/Android/Launcher_Traits_Android.h +++ b/Code/LauncherUnified/Platform/Android/Launcher_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Android/Launcher_Traits_Platform.h b/Code/LauncherUnified/Platform/Android/Launcher_Traits_Platform.h index 170f44a458..fb19a0f9e9 100644 --- a/Code/LauncherUnified/Platform/Android/Launcher_Traits_Platform.h +++ b/Code/LauncherUnified/Platform/Android/Launcher_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Android/launcher_game_android_files.cmake b/Code/LauncherUnified/Platform/Android/launcher_game_android_files.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/LauncherUnified/Platform/Android/launcher_game_android_files.cmake +++ b/Code/LauncherUnified/Platform/Android/launcher_game_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Android/launcher_project_android.cmake b/Code/LauncherUnified/Platform/Android/launcher_project_android.cmake index 30503258bc..1fe051b062 100644 --- a/Code/LauncherUnified/Platform/Android/launcher_project_android.cmake +++ b/Code/LauncherUnified/Platform/Android/launcher_project_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Android/native_app_glue_include.c b/Code/LauncherUnified/Platform/Android/native_app_glue_include.c index 5a968aab31..1139b244f9 100644 --- a/Code/LauncherUnified/Platform/Android/native_app_glue_include.c +++ b/Code/LauncherUnified/Platform/Android/native_app_glue_include.c @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Android/platform_android.cmake b/Code/LauncherUnified/Platform/Android/platform_android.cmake index d6a0bc5464..e359965fc3 100644 --- a/Code/LauncherUnified/Platform/Android/platform_android.cmake +++ b/Code/LauncherUnified/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Android/platform_android_files.cmake b/Code/LauncherUnified/Platform/Android/platform_android_files.cmake index 033e288bab..dede18f903 100644 --- a/Code/LauncherUnified/Platform/Android/platform_android_files.cmake +++ b/Code/LauncherUnified/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.h b/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.h index 8fe0d148ee..d260ce19db 100644 --- a/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.h +++ b/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.mm b/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.mm index 496fa12113..045dd39305 100644 --- a/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.mm +++ b/Code/LauncherUnified/Platform/Common/Apple/Launcher_Apple.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp b/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp index 2bcdc7a0ce..426fe50236 100644 --- a/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp +++ b/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.h b/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.h index baec8c1cea..b1765dfa9d 100644 --- a/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.h +++ b/Code/LauncherUnified/Platform/Common/UnixLike/Launcher_UnixLike.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Linux/LauncherUnified_traits_linux.cmake b/Code/LauncherUnified/Platform/Linux/LauncherUnified_traits_linux.cmake index eb5a46f899..3beb8a2442 100644 --- a/Code/LauncherUnified/Platform/Linux/LauncherUnified_traits_linux.cmake +++ b/Code/LauncherUnified/Platform/Linux/LauncherUnified_traits_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Linux/Launcher_Linux.cpp b/Code/LauncherUnified/Platform/Linux/Launcher_Linux.cpp index 85541da20c..38a34a2c0f 100644 --- a/Code/LauncherUnified/Platform/Linux/Launcher_Linux.cpp +++ b/Code/LauncherUnified/Platform/Linux/Launcher_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Linux.h b/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Linux.h index 4609f8dc2f..fde9569211 100644 --- a/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Linux.h +++ b/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Platform.h b/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Platform.h index b2c5fcd986..643fb7c39a 100644 --- a/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Platform.h +++ b/Code/LauncherUnified/Platform/Linux/Launcher_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Linux/launcher_game_linux_files.cmake b/Code/LauncherUnified/Platform/Linux/launcher_game_linux_files.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/LauncherUnified/Platform/Linux/launcher_game_linux_files.cmake +++ b/Code/LauncherUnified/Platform/Linux/launcher_game_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Linux/launcher_project_linux.cmake b/Code/LauncherUnified/Platform/Linux/launcher_project_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Code/LauncherUnified/Platform/Linux/launcher_project_linux.cmake +++ b/Code/LauncherUnified/Platform/Linux/launcher_project_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Linux/platform_linux.cmake b/Code/LauncherUnified/Platform/Linux/platform_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/LauncherUnified/Platform/Linux/platform_linux.cmake +++ b/Code/LauncherUnified/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Linux/platform_linux_files.cmake b/Code/LauncherUnified/Platform/Linux/platform_linux_files.cmake index 7f3f76be63..0db96489dc 100644 --- a/Code/LauncherUnified/Platform/Linux/platform_linux_files.cmake +++ b/Code/LauncherUnified/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Mac/LauncherUnified_traits_mac.cmake b/Code/LauncherUnified/Platform/Mac/LauncherUnified_traits_mac.cmake index eb5a46f899..3beb8a2442 100644 --- a/Code/LauncherUnified/Platform/Mac/LauncherUnified_traits_mac.cmake +++ b/Code/LauncherUnified/Platform/Mac/LauncherUnified_traits_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Mac/Launcher_Mac.mm b/Code/LauncherUnified/Platform/Mac/Launcher_Mac.mm index 744f2cec3d..5f3d335530 100644 --- a/Code/LauncherUnified/Platform/Mac/Launcher_Mac.mm +++ b/Code/LauncherUnified/Platform/Mac/Launcher_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Mac.h b/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Mac.h index 0415b1016f..1ee87b5d96 100644 --- a/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Mac.h +++ b/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Platform.h b/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Platform.h index e16046ee09..dd9019f26c 100644 --- a/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Platform.h +++ b/Code/LauncherUnified/Platform/Mac/Launcher_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Mac/O3DEApplicationDelegate_Mac.mm b/Code/LauncherUnified/Platform/Mac/O3DEApplicationDelegate_Mac.mm index ecdf012ff2..aaedef56c2 100644 --- a/Code/LauncherUnified/Platform/Mac/O3DEApplicationDelegate_Mac.mm +++ b/Code/LauncherUnified/Platform/Mac/O3DEApplicationDelegate_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.h b/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.h index e230b1cbe5..ead851954d 100644 --- a/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.h +++ b/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.mm b/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.mm index 93a120e70d..a740a6b985 100644 --- a/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.mm +++ b/Code/LauncherUnified/Platform/Mac/O3DEApplication_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Mac/launcher_game_mac_files.cmake b/Code/LauncherUnified/Platform/Mac/launcher_game_mac_files.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/LauncherUnified/Platform/Mac/launcher_game_mac_files.cmake +++ b/Code/LauncherUnified/Platform/Mac/launcher_game_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Mac/launcher_project_mac.cmake b/Code/LauncherUnified/Platform/Mac/launcher_project_mac.cmake index 1130c01cd2..d00d7d3303 100644 --- a/Code/LauncherUnified/Platform/Mac/launcher_project_mac.cmake +++ b/Code/LauncherUnified/Platform/Mac/launcher_project_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Mac/platform_mac.cmake b/Code/LauncherUnified/Platform/Mac/platform_mac.cmake index 569a14d20e..f2e48c3e91 100644 --- a/Code/LauncherUnified/Platform/Mac/platform_mac.cmake +++ b/Code/LauncherUnified/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Mac/platform_mac_files.cmake b/Code/LauncherUnified/Platform/Mac/platform_mac_files.cmake index 2146f38e24..6ec9d6f295 100644 --- a/Code/LauncherUnified/Platform/Mac/platform_mac_files.cmake +++ b/Code/LauncherUnified/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Windows/LauncherUnified_traits_windows.cmake b/Code/LauncherUnified/Platform/Windows/LauncherUnified_traits_windows.cmake index eb5a46f899..3beb8a2442 100644 --- a/Code/LauncherUnified/Platform/Windows/LauncherUnified_traits_windows.cmake +++ b/Code/LauncherUnified/Platform/Windows/LauncherUnified_traits_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Windows/Launcher_Game_Windows.cpp b/Code/LauncherUnified/Platform/Windows/Launcher_Game_Windows.cpp index 2f77d4ad86..eec1e4fd5d 100644 --- a/Code/LauncherUnified/Platform/Windows/Launcher_Game_Windows.cpp +++ b/Code/LauncherUnified/Platform/Windows/Launcher_Game_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Platform.h b/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Platform.h index f12863372d..4f2b93bc33 100644 --- a/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Platform.h +++ b/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Windows.h b/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Windows.h index 6f89fa0e5c..846515c29e 100644 --- a/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Windows.h +++ b/Code/LauncherUnified/Platform/Windows/Launcher_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Windows/Launcher_Windows.cpp b/Code/LauncherUnified/Platform/Windows/Launcher_Windows.cpp index d7e9dc82ae..522921a90f 100644 --- a/Code/LauncherUnified/Platform/Windows/Launcher_Windows.cpp +++ b/Code/LauncherUnified/Platform/Windows/Launcher_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/Windows/launcher_game_windows_files.cmake b/Code/LauncherUnified/Platform/Windows/launcher_game_windows_files.cmake index 99927e16b4..38608e6da0 100644 --- a/Code/LauncherUnified/Platform/Windows/launcher_game_windows_files.cmake +++ b/Code/LauncherUnified/Platform/Windows/launcher_game_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Windows/launcher_project_windows.cmake b/Code/LauncherUnified/Platform/Windows/launcher_project_windows.cmake index 7c5962dc60..07cbceac29 100644 --- a/Code/LauncherUnified/Platform/Windows/launcher_project_windows.cmake +++ b/Code/LauncherUnified/Platform/Windows/launcher_project_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Windows/platform_windows.cmake b/Code/LauncherUnified/Platform/Windows/platform_windows.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/LauncherUnified/Platform/Windows/platform_windows.cmake +++ b/Code/LauncherUnified/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/Windows/platform_windows_files.cmake b/Code/LauncherUnified/Platform/Windows/platform_windows_files.cmake index bd33c684ee..ed7df1026a 100644 --- a/Code/LauncherUnified/Platform/Windows/platform_windows_files.cmake +++ b/Code/LauncherUnified/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/iOS/LauncherUnified_traits_ios.cmake b/Code/LauncherUnified/Platform/iOS/LauncherUnified_traits_ios.cmake index eb5a46f899..3beb8a2442 100644 --- a/Code/LauncherUnified/Platform/iOS/LauncherUnified_traits_ios.cmake +++ b/Code/LauncherUnified/Platform/iOS/LauncherUnified_traits_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/iOS/Launcher_Traits_Platform.h b/Code/LauncherUnified/Platform/iOS/Launcher_Traits_Platform.h index da0311c706..3be865221e 100644 --- a/Code/LauncherUnified/Platform/iOS/Launcher_Traits_Platform.h +++ b/Code/LauncherUnified/Platform/iOS/Launcher_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/iOS/Launcher_Traits_iOS.h b/Code/LauncherUnified/Platform/iOS/Launcher_Traits_iOS.h index 76f0474466..db1454bf52 100644 --- a/Code/LauncherUnified/Platform/iOS/Launcher_Traits_iOS.h +++ b/Code/LauncherUnified/Platform/iOS/Launcher_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/iOS/Launcher_iOS.mm b/Code/LauncherUnified/Platform/iOS/Launcher_iOS.mm index 9606e3e83e..286781bfb6 100644 --- a/Code/LauncherUnified/Platform/iOS/Launcher_iOS.mm +++ b/Code/LauncherUnified/Platform/iOS/Launcher_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/iOS/O3DEApplicationDelegate_iOS.mm b/Code/LauncherUnified/Platform/iOS/O3DEApplicationDelegate_iOS.mm index e056181d03..317b00d183 100644 --- a/Code/LauncherUnified/Platform/iOS/O3DEApplicationDelegate_iOS.mm +++ b/Code/LauncherUnified/Platform/iOS/O3DEApplicationDelegate_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/iOS/O3DEApplication_iOS.mm b/Code/LauncherUnified/Platform/iOS/O3DEApplication_iOS.mm index 3766d4b5f3..7ba4739578 100644 --- a/Code/LauncherUnified/Platform/iOS/O3DEApplication_iOS.mm +++ b/Code/LauncherUnified/Platform/iOS/O3DEApplication_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Platform/iOS/launcher_game_ios_files.cmake b/Code/LauncherUnified/Platform/iOS/launcher_game_ios_files.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/LauncherUnified/Platform/iOS/launcher_game_ios_files.cmake +++ b/Code/LauncherUnified/Platform/iOS/launcher_game_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake b/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake index 50e6e972a9..38aca405a6 100644 --- a/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake +++ b/Code/LauncherUnified/Platform/iOS/launcher_project_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/iOS/platform_ios.cmake b/Code/LauncherUnified/Platform/iOS/platform_ios.cmake index cc31ad670b..8aa815a176 100644 --- a/Code/LauncherUnified/Platform/iOS/platform_ios.cmake +++ b/Code/LauncherUnified/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Platform/iOS/platform_ios_files.cmake b/Code/LauncherUnified/Platform/iOS/platform_ios_files.cmake index 98eff11601..9ebcf485a1 100644 --- a/Code/LauncherUnified/Platform/iOS/platform_ios_files.cmake +++ b/Code/LauncherUnified/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/Server.cpp b/Code/LauncherUnified/Server.cpp index 509ee53349..8b4cd6beeb 100644 --- a/Code/LauncherUnified/Server.cpp +++ b/Code/LauncherUnified/Server.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Tests/LauncherUnifiedTests.cpp b/Code/LauncherUnified/Tests/LauncherUnifiedTests.cpp index adc24b64b8..3a0146f946 100644 --- a/Code/LauncherUnified/Tests/LauncherUnifiedTests.cpp +++ b/Code/LauncherUnified/Tests/LauncherUnifiedTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/Tests/Test.cpp b/Code/LauncherUnified/Tests/Test.cpp index 5aa5af78b2..cf4fc7ad38 100644 --- a/Code/LauncherUnified/Tests/Test.cpp +++ b/Code/LauncherUnified/Tests/Test.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/LauncherUnified/launcher_files.cmake b/Code/LauncherUnified/launcher_files.cmake index 810f52e39f..fb0708cd79 100644 --- a/Code/LauncherUnified/launcher_files.cmake +++ b/Code/LauncherUnified/launcher_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/launcher_game_files.cmake b/Code/LauncherUnified/launcher_game_files.cmake index b242e50516..b4e04b509c 100644 --- a/Code/LauncherUnified/launcher_game_files.cmake +++ b/Code/LauncherUnified/launcher_game_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/launcher_generator.cmake b/Code/LauncherUnified/launcher_generator.cmake index 349527e97d..85976e1cb9 100644 --- a/Code/LauncherUnified/launcher_generator.cmake +++ b/Code/LauncherUnified/launcher_generator.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/launcher_project_files.cmake b/Code/LauncherUnified/launcher_project_files.cmake index fdcc7296c2..9dd1b7d540 100644 --- a/Code/LauncherUnified/launcher_project_files.cmake +++ b/Code/LauncherUnified/launcher_project_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/launcher_server_files.cmake b/Code/LauncherUnified/launcher_server_files.cmake index 049e62d8b8..20af0fe051 100644 --- a/Code/LauncherUnified/launcher_server_files.cmake +++ b/Code/LauncherUnified/launcher_server_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/LauncherUnified/launcher_test_files.cmake b/Code/LauncherUnified/launcher_test_files.cmake index 1c35656d1d..c16934bafd 100644 --- a/Code/LauncherUnified/launcher_test_files.cmake +++ b/Code/LauncherUnified/launcher_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CMakeLists.txt b/Code/Legacy/CMakeLists.txt index 329bbca3fe..17a99bf460 100644 --- a/Code/Legacy/CMakeLists.txt +++ b/Code/Legacy/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CryCommon/AndroidSpecific.h b/Code/Legacy/CryCommon/AndroidSpecific.h index 49c2e5fa46..7868291a5d 100644 --- a/Code/Legacy/CryCommon/AndroidSpecific.h +++ b/Code/Legacy/CryCommon/AndroidSpecific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/AnimKey.h b/Code/Legacy/CryCommon/AnimKey.h index 9c5b91ab2d..8fe3a9d9c0 100644 --- a/Code/Legacy/CryCommon/AnimKey.h +++ b/Code/Legacy/CryCommon/AnimKey.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/AppleSpecific.h b/Code/Legacy/CryCommon/AppleSpecific.h index bbb5ce2b7c..213c1f004e 100644 --- a/Code/Legacy/CryCommon/AppleSpecific.h +++ b/Code/Legacy/CryCommon/AppleSpecific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/BaseTypes.h b/Code/Legacy/CryCommon/BaseTypes.h index cbd4f78fcd..ed110e35d7 100644 --- a/Code/Legacy/CryCommon/BaseTypes.h +++ b/Code/Legacy/CryCommon/BaseTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/BitFiddling.h b/Code/Legacy/CryCommon/BitFiddling.h index 328c883de1..a1daaebd97 100644 --- a/Code/Legacy/CryCommon/BitFiddling.h +++ b/Code/Legacy/CryCommon/BitFiddling.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CMakeLists.txt b/Code/Legacy/CryCommon/CMakeLists.txt index 93754aa9aa..f52b4c811a 100644 --- a/Code/Legacy/CryCommon/CMakeLists.txt +++ b/Code/Legacy/CryCommon/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CryCommon/Common_TypeInfo.cpp b/Code/Legacy/CryCommon/Common_TypeInfo.cpp index 5d43478c38..88e159b715 100644 --- a/Code/Legacy/CryCommon/Common_TypeInfo.cpp +++ b/Code/Legacy/CryCommon/Common_TypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CompileTimeAssert.h b/Code/Legacy/CryCommon/CompileTimeAssert.h index 603aa4cac3..33189e2080 100644 --- a/Code/Legacy/CryCommon/CompileTimeAssert.h +++ b/Code/Legacy/CryCommon/CompileTimeAssert.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryArray.h b/Code/Legacy/CryCommon/CryArray.h index 8a1170a4cf..07f49467e9 100644 --- a/Code/Legacy/CryCommon/CryArray.h +++ b/Code/Legacy/CryCommon/CryArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryAssert.h b/Code/Legacy/CryCommon/CryAssert.h index 49bbd8a573..40e53934eb 100644 --- a/Code/Legacy/CryCommon/CryAssert.h +++ b/Code/Legacy/CryCommon/CryAssert.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryAssert_Android.h b/Code/Legacy/CryCommon/CryAssert_Android.h index ccc72f0bd7..f740712adc 100644 --- a/Code/Legacy/CryCommon/CryAssert_Android.h +++ b/Code/Legacy/CryCommon/CryAssert_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryAssert_Linux.h b/Code/Legacy/CryCommon/CryAssert_Linux.h index 918977734e..445fc8a6cf 100644 --- a/Code/Legacy/CryCommon/CryAssert_Linux.h +++ b/Code/Legacy/CryCommon/CryAssert_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryAssert_Mac.h b/Code/Legacy/CryCommon/CryAssert_Mac.h index c618fb8c91..43894d2f05 100644 --- a/Code/Legacy/CryCommon/CryAssert_Mac.h +++ b/Code/Legacy/CryCommon/CryAssert_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryAssert_iOS.h b/Code/Legacy/CryCommon/CryAssert_iOS.h index d238a72d72..40e52b1ee6 100644 --- a/Code/Legacy/CryCommon/CryAssert_iOS.h +++ b/Code/Legacy/CryCommon/CryAssert_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryAssert_impl.h b/Code/Legacy/CryCommon/CryAssert_impl.h index e279b01c6a..9aa2f25e46 100644 --- a/Code/Legacy/CryCommon/CryAssert_impl.h +++ b/Code/Legacy/CryCommon/CryAssert_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryCommon.cpp b/Code/Legacy/CryCommon/CryCommon.cpp index a8caf86bb4..36a41a73c9 100644 --- a/Code/Legacy/CryCommon/CryCommon.cpp +++ b/Code/Legacy/CryCommon/CryCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryCrc32.h b/Code/Legacy/CryCommon/CryCrc32.h index 73c14bacea..3e76c94c17 100644 --- a/Code/Legacy/CryCommon/CryCrc32.h +++ b/Code/Legacy/CryCommon/CryCrc32.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryCustomTypes.h b/Code/Legacy/CryCommon/CryCustomTypes.h index 5c6be5b398..7bc2ed4824 100644 --- a/Code/Legacy/CryCommon/CryCustomTypes.h +++ b/Code/Legacy/CryCommon/CryCustomTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryEndian.h b/Code/Legacy/CryCommon/CryEndian.h index 554a8e0465..4b9873297d 100644 --- a/Code/Legacy/CryCommon/CryEndian.h +++ b/Code/Legacy/CryCommon/CryEndian.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryFile.h b/Code/Legacy/CryCommon/CryFile.h index 15c77af3ff..e3e619bce5 100644 --- a/Code/Legacy/CryCommon/CryFile.h +++ b/Code/Legacy/CryCommon/CryFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryFixedString.h b/Code/Legacy/CryCommon/CryFixedString.h index f0ba67cd6a..07038a51e0 100644 --- a/Code/Legacy/CryCommon/CryFixedString.h +++ b/Code/Legacy/CryCommon/CryFixedString.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryHalf.inl b/Code/Legacy/CryCommon/CryHalf.inl index b882e5e079..a32cc17814 100644 --- a/Code/Legacy/CryCommon/CryHalf.inl +++ b/Code/Legacy/CryCommon/CryHalf.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryHalf_info.h b/Code/Legacy/CryCommon/CryHalf_info.h index 4c9f0cf336..8261b0390e 100644 --- a/Code/Legacy/CryCommon/CryHalf_info.h +++ b/Code/Legacy/CryCommon/CryHalf_info.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryHeaders.h b/Code/Legacy/CryCommon/CryHeaders.h index a23d8d6978..0127e4cb8d 100644 --- a/Code/Legacy/CryCommon/CryHeaders.h +++ b/Code/Legacy/CryCommon/CryHeaders.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryHeaders_info.cpp b/Code/Legacy/CryCommon/CryHeaders_info.cpp index 4aefe61ee1..776894233b 100644 --- a/Code/Legacy/CryCommon/CryHeaders_info.cpp +++ b/Code/Legacy/CryCommon/CryHeaders_info.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryLegacyAllocator.h b/Code/Legacy/CryCommon/CryLegacyAllocator.h index f8024dac41..c4360f6b2c 100644 --- a/Code/Legacy/CryCommon/CryLegacyAllocator.h +++ b/Code/Legacy/CryCommon/CryLegacyAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryLibrary.cpp b/Code/Legacy/CryCommon/CryLibrary.cpp index 42f3ca3d09..72c87512da 100644 --- a/Code/Legacy/CryCommon/CryLibrary.cpp +++ b/Code/Legacy/CryCommon/CryLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryLibrary.h b/Code/Legacy/CryCommon/CryLibrary.h index 1d06d8ee1b..89e8e33825 100644 --- a/Code/Legacy/CryCommon/CryLibrary.h +++ b/Code/Legacy/CryCommon/CryLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryListenerSet.h b/Code/Legacy/CryCommon/CryListenerSet.h index 64b7807055..893baf5c0d 100644 --- a/Code/Legacy/CryCommon/CryListenerSet.h +++ b/Code/Legacy/CryCommon/CryListenerSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryName.h b/Code/Legacy/CryCommon/CryName.h index 966ed38c80..eb9cd584fd 100644 --- a/Code/Legacy/CryCommon/CryName.h +++ b/Code/Legacy/CryCommon/CryName.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryPath.h b/Code/Legacy/CryCommon/CryPath.h index f3f64fe43d..9f09ba31e4 100644 --- a/Code/Legacy/CryCommon/CryPath.h +++ b/Code/Legacy/CryCommon/CryPath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryPodArray.h b/Code/Legacy/CryCommon/CryPodArray.h index 17198b2437..7cb081a80c 100644 --- a/Code/Legacy/CryCommon/CryPodArray.h +++ b/Code/Legacy/CryCommon/CryPodArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryRandomInternal.h b/Code/Legacy/CryCommon/CryRandomInternal.h index 48441cdba8..e7c27a413e 100644 --- a/Code/Legacy/CryCommon/CryRandomInternal.h +++ b/Code/Legacy/CryCommon/CryRandomInternal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CrySizer.h b/Code/Legacy/CryCommon/CrySizer.h index be8bd71460..259bc80133 100644 --- a/Code/Legacy/CryCommon/CrySizer.h +++ b/Code/Legacy/CryCommon/CrySizer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryString.h b/Code/Legacy/CryCommon/CryString.h index 1a6487e373..bb010d80e0 100644 --- a/Code/Legacy/CryCommon/CryString.h +++ b/Code/Legacy/CryCommon/CryString.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CrySystemBus.h b/Code/Legacy/CryCommon/CrySystemBus.h index 93085f8819..3565e0f2c4 100644 --- a/Code/Legacy/CryCommon/CrySystemBus.h +++ b/Code/Legacy/CryCommon/CrySystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryThread.h b/Code/Legacy/CryCommon/CryThread.h index 7506f6767d..b4e9df07d9 100644 --- a/Code/Legacy/CryCommon/CryThread.h +++ b/Code/Legacy/CryCommon/CryThread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryThreadImpl.h b/Code/Legacy/CryCommon/CryThreadImpl.h index 1928ee0774..727f9e173e 100644 --- a/Code/Legacy/CryCommon/CryThreadImpl.h +++ b/Code/Legacy/CryCommon/CryThreadImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryThreadImpl_pthreads.h b/Code/Legacy/CryCommon/CryThreadImpl_pthreads.h index a8895f5bbc..b5d2e55ebd 100644 --- a/Code/Legacy/CryCommon/CryThreadImpl_pthreads.h +++ b/Code/Legacy/CryCommon/CryThreadImpl_pthreads.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryThreadImpl_windows.h b/Code/Legacy/CryCommon/CryThreadImpl_windows.h index 1dd8dd4c26..bede6be9bd 100644 --- a/Code/Legacy/CryCommon/CryThreadImpl_windows.h +++ b/Code/Legacy/CryCommon/CryThreadImpl_windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryThread_dummy.h b/Code/Legacy/CryCommon/CryThread_dummy.h index ea9804c6eb..94ce8192d7 100644 --- a/Code/Legacy/CryCommon/CryThread_dummy.h +++ b/Code/Legacy/CryCommon/CryThread_dummy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryThread_pthreads.h b/Code/Legacy/CryCommon/CryThread_pthreads.h index b1d40dc10f..b876ef2896 100644 --- a/Code/Legacy/CryCommon/CryThread_pthreads.h +++ b/Code/Legacy/CryCommon/CryThread_pthreads.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryThread_windows.h b/Code/Legacy/CryCommon/CryThread_windows.h index ae8068801e..a67de49fd4 100644 --- a/Code/Legacy/CryCommon/CryThread_windows.h +++ b/Code/Legacy/CryCommon/CryThread_windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryTypeInfo.cpp b/Code/Legacy/CryCommon/CryTypeInfo.cpp index 78dc92e9d1..b5c45f26bd 100644 --- a/Code/Legacy/CryCommon/CryTypeInfo.cpp +++ b/Code/Legacy/CryCommon/CryTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryTypeInfo.h b/Code/Legacy/CryCommon/CryTypeInfo.h index 849e8c6bf0..319bd054fd 100644 --- a/Code/Legacy/CryCommon/CryTypeInfo.h +++ b/Code/Legacy/CryCommon/CryTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryVersion.h b/Code/Legacy/CryCommon/CryVersion.h index 70a1a1bf28..0a850c47fb 100644 --- a/Code/Legacy/CryCommon/CryVersion.h +++ b/Code/Legacy/CryCommon/CryVersion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/CryWindows.h b/Code/Legacy/CryCommon/CryWindows.h index 3d57f6a24e..52810c01ec 100644 --- a/Code/Legacy/CryCommon/CryWindows.h +++ b/Code/Legacy/CryCommon/CryWindows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Camera.h b/Code/Legacy/CryCommon/Cry_Camera.h index b10134350c..5295535e28 100644 --- a/Code/Legacy/CryCommon/Cry_Camera.h +++ b/Code/Legacy/CryCommon/Cry_Camera.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Color.h b/Code/Legacy/CryCommon/Cry_Color.h index 7a1a971450..365c7a75be 100644 --- a/Code/Legacy/CryCommon/Cry_Color.h +++ b/Code/Legacy/CryCommon/Cry_Color.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Geo.h b/Code/Legacy/CryCommon/Cry_Geo.h index cb3061529a..d3bdeec105 100644 --- a/Code/Legacy/CryCommon/Cry_Geo.h +++ b/Code/Legacy/CryCommon/Cry_Geo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_GeoDistance.h b/Code/Legacy/CryCommon/Cry_GeoDistance.h index 615c0f1c08..af7f9f1efb 100644 --- a/Code/Legacy/CryCommon/Cry_GeoDistance.h +++ b/Code/Legacy/CryCommon/Cry_GeoDistance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_GeoIntersect.h b/Code/Legacy/CryCommon/Cry_GeoIntersect.h index f3afba461f..4ae20aa01c 100644 --- a/Code/Legacy/CryCommon/Cry_GeoIntersect.h +++ b/Code/Legacy/CryCommon/Cry_GeoIntersect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_GeoOverlap.h b/Code/Legacy/CryCommon/Cry_GeoOverlap.h index 3c469aacf0..f72ab6d190 100644 --- a/Code/Legacy/CryCommon/Cry_GeoOverlap.h +++ b/Code/Legacy/CryCommon/Cry_GeoOverlap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_HWMatrix.h b/Code/Legacy/CryCommon/Cry_HWMatrix.h index 63973dc26f..29444d59ec 100644 --- a/Code/Legacy/CryCommon/Cry_HWMatrix.h +++ b/Code/Legacy/CryCommon/Cry_HWMatrix.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_HWVector3.h b/Code/Legacy/CryCommon/Cry_HWVector3.h index 6cc1e043d8..bcc0ec0105 100644 --- a/Code/Legacy/CryCommon/Cry_HWVector3.h +++ b/Code/Legacy/CryCommon/Cry_HWVector3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Math.h b/Code/Legacy/CryCommon/Cry_Math.h index 315e96ecd9..bf9f6c38c8 100644 --- a/Code/Legacy/CryCommon/Cry_Math.h +++ b/Code/Legacy/CryCommon/Cry_Math.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Matrix33.h b/Code/Legacy/CryCommon/Cry_Matrix33.h index cdde89b5ff..9a8f8aeaaf 100644 --- a/Code/Legacy/CryCommon/Cry_Matrix33.h +++ b/Code/Legacy/CryCommon/Cry_Matrix33.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Matrix34.h b/Code/Legacy/CryCommon/Cry_Matrix34.h index 9f5deeaf17..edfde740b5 100644 --- a/Code/Legacy/CryCommon/Cry_Matrix34.h +++ b/Code/Legacy/CryCommon/Cry_Matrix34.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Matrix44.h b/Code/Legacy/CryCommon/Cry_Matrix44.h index ef996daaae..01c0e58c5c 100644 --- a/Code/Legacy/CryCommon/Cry_Matrix44.h +++ b/Code/Legacy/CryCommon/Cry_Matrix44.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_MatrixDiag.h b/Code/Legacy/CryCommon/Cry_MatrixDiag.h index dd3a182e03..9b07437ecf 100644 --- a/Code/Legacy/CryCommon/Cry_MatrixDiag.h +++ b/Code/Legacy/CryCommon/Cry_MatrixDiag.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Quat.h b/Code/Legacy/CryCommon/Cry_Quat.h index 5765e56d5f..74da78cc77 100644 --- a/Code/Legacy/CryCommon/Cry_Quat.h +++ b/Code/Legacy/CryCommon/Cry_Quat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_ValidNumber.h b/Code/Legacy/CryCommon/Cry_ValidNumber.h index af6e560455..d4f5d311e8 100644 --- a/Code/Legacy/CryCommon/Cry_ValidNumber.h +++ b/Code/Legacy/CryCommon/Cry_ValidNumber.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Vector2.h b/Code/Legacy/CryCommon/Cry_Vector2.h index c09db3e0f6..e5400362a3 100644 --- a/Code/Legacy/CryCommon/Cry_Vector2.h +++ b/Code/Legacy/CryCommon/Cry_Vector2.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Vector3.h b/Code/Legacy/CryCommon/Cry_Vector3.h index 6e75503fb4..b33225c712 100644 --- a/Code/Legacy/CryCommon/Cry_Vector3.h +++ b/Code/Legacy/CryCommon/Cry_Vector3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_Vector4.h b/Code/Legacy/CryCommon/Cry_Vector4.h index 90354ab6f1..bc5b8bdcde 100644 --- a/Code/Legacy/CryCommon/Cry_Vector4.h +++ b/Code/Legacy/CryCommon/Cry_Vector4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Cry_XOptimise.h b/Code/Legacy/CryCommon/Cry_XOptimise.h index 02d91e39ac..7a68545fa6 100644 --- a/Code/Legacy/CryCommon/Cry_XOptimise.h +++ b/Code/Legacy/CryCommon/Cry_XOptimise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/FrameProfiler.h b/Code/Legacy/CryCommon/FrameProfiler.h index 4a8614b8c1..01e6690777 100644 --- a/Code/Legacy/CryCommon/FrameProfiler.h +++ b/Code/Legacy/CryCommon/FrameProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/FunctorBaseFunction.h b/Code/Legacy/CryCommon/FunctorBaseFunction.h index 42677bf194..11a6858610 100644 --- a/Code/Legacy/CryCommon/FunctorBaseFunction.h +++ b/Code/Legacy/CryCommon/FunctorBaseFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/FunctorBaseMember.h b/Code/Legacy/CryCommon/FunctorBaseMember.h index 1d85e7fff1..364f168534 100644 --- a/Code/Legacy/CryCommon/FunctorBaseMember.h +++ b/Code/Legacy/CryCommon/FunctorBaseMember.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/HMDBus.h b/Code/Legacy/CryCommon/HMDBus.h index 3c92278c26..092d96ba9e 100644 --- a/Code/Legacy/CryCommon/HMDBus.h +++ b/Code/Legacy/CryCommon/HMDBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/HeapAllocator.h b/Code/Legacy/CryCommon/HeapAllocator.h index a033c57287..2d7387d109 100644 --- a/Code/Legacy/CryCommon/HeapAllocator.h +++ b/Code/Legacy/CryCommon/HeapAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/HeightmapUpdateNotificationBus.h b/Code/Legacy/CryCommon/HeightmapUpdateNotificationBus.h index 980318ac58..3f05c77b45 100644 --- a/Code/Legacy/CryCommon/HeightmapUpdateNotificationBus.h +++ b/Code/Legacy/CryCommon/HeightmapUpdateNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IAudioInterfacesCommonData.h b/Code/Legacy/CryCommon/IAudioInterfacesCommonData.h index afd31ee048..4455517301 100644 --- a/Code/Legacy/CryCommon/IAudioInterfacesCommonData.h +++ b/Code/Legacy/CryCommon/IAudioInterfacesCommonData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IAudioSystem.h b/Code/Legacy/CryCommon/IAudioSystem.h index 5248015b2b..6aa4525d1b 100644 --- a/Code/Legacy/CryCommon/IAudioSystem.h +++ b/Code/Legacy/CryCommon/IAudioSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ICmdLine.h b/Code/Legacy/CryCommon/ICmdLine.h index 3a9ccedfee..8dc5de2a42 100644 --- a/Code/Legacy/CryCommon/ICmdLine.h +++ b/Code/Legacy/CryCommon/ICmdLine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IConsole.h b/Code/Legacy/CryCommon/IConsole.h index 7306c027c9..01fae6fce3 100644 --- a/Code/Legacy/CryCommon/IConsole.h +++ b/Code/Legacy/CryCommon/IConsole.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IEntityRenderState.h b/Code/Legacy/CryCommon/IEntityRenderState.h index bd18a7407e..7e23bd9d92 100644 --- a/Code/Legacy/CryCommon/IEntityRenderState.h +++ b/Code/Legacy/CryCommon/IEntityRenderState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IEntityRenderState_info.cpp b/Code/Legacy/CryCommon/IEntityRenderState_info.cpp index 89876fb91a..73f404eddb 100644 --- a/Code/Legacy/CryCommon/IEntityRenderState_info.cpp +++ b/Code/Legacy/CryCommon/IEntityRenderState_info.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IFont.h b/Code/Legacy/CryCommon/IFont.h index e22c33eb09..e496215107 100644 --- a/Code/Legacy/CryCommon/IFont.h +++ b/Code/Legacy/CryCommon/IFont.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IFunctorBase.h b/Code/Legacy/CryCommon/IFunctorBase.h index 89fe3f9d55..40c6696209 100644 --- a/Code/Legacy/CryCommon/IFunctorBase.h +++ b/Code/Legacy/CryCommon/IFunctorBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IGem.h b/Code/Legacy/CryCommon/IGem.h index 9e3a3192b0..8c2de67dda 100644 --- a/Code/Legacy/CryCommon/IGem.h +++ b/Code/Legacy/CryCommon/IGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IIndexedMesh.h b/Code/Legacy/CryCommon/IIndexedMesh.h index 744bfebc1d..4256b6ab11 100644 --- a/Code/Legacy/CryCommon/IIndexedMesh.h +++ b/Code/Legacy/CryCommon/IIndexedMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IIndexedMesh_info.cpp b/Code/Legacy/CryCommon/IIndexedMesh_info.cpp index 11303ed16e..b58af435bb 100644 --- a/Code/Legacy/CryCommon/IIndexedMesh_info.cpp +++ b/Code/Legacy/CryCommon/IIndexedMesh_info.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ILevelSystem.h b/Code/Legacy/CryCommon/ILevelSystem.h index 949cf84c89..be0b1670ce 100644 --- a/Code/Legacy/CryCommon/ILevelSystem.h +++ b/Code/Legacy/CryCommon/ILevelSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ILocalizationManager.h b/Code/Legacy/CryCommon/ILocalizationManager.h index 207baeee7d..b7a6bf66e1 100644 --- a/Code/Legacy/CryCommon/ILocalizationManager.h +++ b/Code/Legacy/CryCommon/ILocalizationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ILog.h b/Code/Legacy/CryCommon/ILog.h index ad1c84f3de..98e0a46f59 100644 --- a/Code/Legacy/CryCommon/ILog.h +++ b/Code/Legacy/CryCommon/ILog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IMNM.h b/Code/Legacy/CryCommon/IMNM.h index 6aace5024c..0e12911089 100644 --- a/Code/Legacy/CryCommon/IMNM.h +++ b/Code/Legacy/CryCommon/IMNM.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IMaterial.h b/Code/Legacy/CryCommon/IMaterial.h index 02153cd031..55291c5835 100644 --- a/Code/Legacy/CryCommon/IMaterial.h +++ b/Code/Legacy/CryCommon/IMaterial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IMiniLog.h b/Code/Legacy/CryCommon/IMiniLog.h index 2c1069b11d..d6c2a800a2 100644 --- a/Code/Legacy/CryCommon/IMiniLog.h +++ b/Code/Legacy/CryCommon/IMiniLog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IMovieSystem.h b/Code/Legacy/CryCommon/IMovieSystem.h index fd30671296..2c9a4d0620 100644 --- a/Code/Legacy/CryCommon/IMovieSystem.h +++ b/Code/Legacy/CryCommon/IMovieSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/INavigationSystem.h b/Code/Legacy/CryCommon/INavigationSystem.h index 9d04a87132..9725cf35ae 100644 --- a/Code/Legacy/CryCommon/INavigationSystem.h +++ b/Code/Legacy/CryCommon/INavigationSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IPathfinder.h b/Code/Legacy/CryCommon/IPathfinder.h index 6678470be2..2863cec82b 100644 --- a/Code/Legacy/CryCommon/IPathfinder.h +++ b/Code/Legacy/CryCommon/IPathfinder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IPhysics.h b/Code/Legacy/CryCommon/IPhysics.h index 9abbe5431a..8148abacfd 100644 --- a/Code/Legacy/CryCommon/IPhysics.h +++ b/Code/Legacy/CryCommon/IPhysics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IPostEffectGroup.h b/Code/Legacy/CryCommon/IPostEffectGroup.h index 4e45fcff21..b60aaf6b26 100644 --- a/Code/Legacy/CryCommon/IPostEffectGroup.h +++ b/Code/Legacy/CryCommon/IPostEffectGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IProcess.h b/Code/Legacy/CryCommon/IProcess.h index c99bf2fbdc..d80a0f639d 100644 --- a/Code/Legacy/CryCommon/IProcess.h +++ b/Code/Legacy/CryCommon/IProcess.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IReadWriteXMLSink.h b/Code/Legacy/CryCommon/IReadWriteXMLSink.h index a36b9e5492..fba5841a56 100644 --- a/Code/Legacy/CryCommon/IReadWriteXMLSink.h +++ b/Code/Legacy/CryCommon/IReadWriteXMLSink.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IRenderAuxGeom.h b/Code/Legacy/CryCommon/IRenderAuxGeom.h index 8bce5bc477..4382a4fcb5 100644 --- a/Code/Legacy/CryCommon/IRenderAuxGeom.h +++ b/Code/Legacy/CryCommon/IRenderAuxGeom.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IRenderMesh.h b/Code/Legacy/CryCommon/IRenderMesh.h index 85797d45ea..4147c4b495 100644 --- a/Code/Legacy/CryCommon/IRenderMesh.h +++ b/Code/Legacy/CryCommon/IRenderMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IRenderer.h b/Code/Legacy/CryCommon/IRenderer.h index a72149f9c7..a3f47c7e0b 100644 --- a/Code/Legacy/CryCommon/IRenderer.h +++ b/Code/Legacy/CryCommon/IRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ISerialize.h b/Code/Legacy/CryCommon/ISerialize.h index 6b2eaa271a..48b0d8e3ca 100644 --- a/Code/Legacy/CryCommon/ISerialize.h +++ b/Code/Legacy/CryCommon/ISerialize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IShader.h b/Code/Legacy/CryCommon/IShader.h index c14a7a8af4..544a0b7ef7 100644 --- a/Code/Legacy/CryCommon/IShader.h +++ b/Code/Legacy/CryCommon/IShader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ISplines.h b/Code/Legacy/CryCommon/ISplines.h index 5f05786f19..31d0091f34 100644 --- a/Code/Legacy/CryCommon/ISplines.h +++ b/Code/Legacy/CryCommon/ISplines.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IStatObj.h b/Code/Legacy/CryCommon/IStatObj.h index 2ba9d0cd16..75a592efbf 100644 --- a/Code/Legacy/CryCommon/IStatObj.h +++ b/Code/Legacy/CryCommon/IStatObj.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IStereoRenderer.h b/Code/Legacy/CryCommon/IStereoRenderer.h index b75269264c..f03c554364 100644 --- a/Code/Legacy/CryCommon/IStereoRenderer.h +++ b/Code/Legacy/CryCommon/IStereoRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ISurfaceType.h b/Code/Legacy/CryCommon/ISurfaceType.h index b9fcad4633..1b970a6fd9 100644 --- a/Code/Legacy/CryCommon/ISurfaceType.h +++ b/Code/Legacy/CryCommon/ISurfaceType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ISystem.h b/Code/Legacy/CryCommon/ISystem.h index 67a7991d4e..80ce514784 100644 --- a/Code/Legacy/CryCommon/ISystem.h +++ b/Code/Legacy/CryCommon/ISystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ITexture.h b/Code/Legacy/CryCommon/ITexture.h index c2244b6840..f079a56558 100644 --- a/Code/Legacy/CryCommon/ITexture.h +++ b/Code/Legacy/CryCommon/ITexture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ITimer.h b/Code/Legacy/CryCommon/ITimer.h index dccdafae17..4a89875348 100644 --- a/Code/Legacy/CryCommon/ITimer.h +++ b/Code/Legacy/CryCommon/ITimer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IValidator.h b/Code/Legacy/CryCommon/IValidator.h index 610b8f8748..f28e67ecc1 100644 --- a/Code/Legacy/CryCommon/IValidator.h +++ b/Code/Legacy/CryCommon/IValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IViewSystem.h b/Code/Legacy/CryCommon/IViewSystem.h index 646e963653..716ea29f19 100644 --- a/Code/Legacy/CryCommon/IViewSystem.h +++ b/Code/Legacy/CryCommon/IViewSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IWindowMessageHandler.h b/Code/Legacy/CryCommon/IWindowMessageHandler.h index 855fc585d8..afbc064db4 100644 --- a/Code/Legacy/CryCommon/IWindowMessageHandler.h +++ b/Code/Legacy/CryCommon/IWindowMessageHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/IXml.h b/Code/Legacy/CryCommon/IXml.h index 19bc010a39..9dda8077f9 100644 --- a/Code/Legacy/CryCommon/IXml.h +++ b/Code/Legacy/CryCommon/IXml.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LCGRandom.h b/Code/Legacy/CryCommon/LCGRandom.h index 169f1b1be0..43cee149d3 100644 --- a/Code/Legacy/CryCommon/LCGRandom.h +++ b/Code/Legacy/CryCommon/LCGRandom.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LegacyAllocator.h b/Code/Legacy/CryCommon/LegacyAllocator.h index 0b79e99f7a..90e278197a 100644 --- a/Code/Legacy/CryCommon/LegacyAllocator.h +++ b/Code/Legacy/CryCommon/LegacyAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Linux32Specific.h b/Code/Legacy/CryCommon/Linux32Specific.h index 19f7a5bba0..08dde1de4b 100644 --- a/Code/Legacy/CryCommon/Linux32Specific.h +++ b/Code/Legacy/CryCommon/Linux32Specific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Linux64Specific.h b/Code/Legacy/CryCommon/Linux64Specific.h index f1a72ec236..820ee78147 100644 --- a/Code/Legacy/CryCommon/Linux64Specific.h +++ b/Code/Legacy/CryCommon/Linux64Specific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LinuxSpecific.h b/Code/Legacy/CryCommon/LinuxSpecific.h index b4f7f4e048..b785a5441c 100644 --- a/Code/Legacy/CryCommon/LinuxSpecific.h +++ b/Code/Legacy/CryCommon/LinuxSpecific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Linux_Win32Wrapper.h b/Code/Legacy/CryCommon/Linux_Win32Wrapper.h index 8b905ff025..6fbe6e100b 100644 --- a/Code/Legacy/CryCommon/Linux_Win32Wrapper.h +++ b/Code/Legacy/CryCommon/Linux_Win32Wrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LoadScreenBus.h b/Code/Legacy/CryCommon/LoadScreenBus.h index 65c87ade88..4e285183ec 100644 --- a/Code/Legacy/CryCommon/LoadScreenBus.h +++ b/Code/Legacy/CryCommon/LoadScreenBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LocalizationManagerBus.h b/Code/Legacy/CryCommon/LocalizationManagerBus.h index e21c19dc5a..7fa4336a2d 100644 --- a/Code/Legacy/CryCommon/LocalizationManagerBus.h +++ b/Code/Legacy/CryCommon/LocalizationManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LocalizationManagerBus.inl b/Code/Legacy/CryCommon/LocalizationManagerBus.inl index 617219a74c..adc4167e78 100644 --- a/Code/Legacy/CryCommon/LocalizationManagerBus.inl +++ b/Code/Legacy/CryCommon/LocalizationManagerBus.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h b/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h index 893147d7e6..21eba4c674 100644 --- a/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h +++ b/Code/Legacy/CryCommon/LyShine/Animation/IUiAnimation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h b/Code/Legacy/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h index 672eed2894..e6d46d38d2 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/Sprite/UiSpriteBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h b/Code/Legacy/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h index 69ecea5bbf..88cff6509a 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/Tools/UiSystemToolsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiAnimateEntityBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiAnimateEntityBus.h index 8465165056..b382cca8f2 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiAnimateEntityBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiAnimateEntityBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiAnimationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiAnimationBus.h index 63d0e4d84a..9297984e6a 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiAnimationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiAnimationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiButtonBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiButtonBus.h index 11e3dd3724..ab69348b97 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiButtonBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiButtonBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasBus.h index 0c278ea87a..894f97c9fe 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasManagerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasManagerBus.h index c964518c61..f42a5f4daf 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasManagerBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h index ce4eb37f4a..e17f8e90b0 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiCanvasUpdateNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiCheckboxBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCheckboxBus.h index c9fddd2be9..ceaa5d08ea 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiCheckboxBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiCheckboxBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiCursorBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiCursorBus.h index 09c3155f23..24a05a6c41 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiCursorBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiCursorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiDraggableBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDraggableBus.h index 4696e4c103..808ba513a4 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiDraggableBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiDraggableBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiDropTargetBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDropTargetBus.h index 42bdb14bcc..2d125d7594 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiDropTargetBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiDropTargetBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownBus.h index 18994b67d6..80a6730956 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownOptionBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownOptionBus.h index c46a52e207..f62288741d 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownOptionBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiDropdownOptionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h index 2ff0e81263..d8e5763de8 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicLayoutBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h index d09c1ce81a..f677e85304 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiDynamicScrollBoxBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiEditorBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorBus.h index ebac70479f..7f3bc94bed 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiEditorBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiEditorCanvasBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorCanvasBus.h index a2e7dd0c2b..138d7ea8f1 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiEditorCanvasBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h index 35b97fc359..a1615be297 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiEditorChangeNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiElementBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiElementBus.h index e1eac703aa..2a182a9dfc 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiElementBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiElementBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiEntityContextBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiEntityContextBus.h index 91dc64ed3e..febb8cc4d2 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiEntityContextBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiEntityContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiFaderBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiFaderBus.h index 6c03254571..dceac27a90 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiFaderBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiFaderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h index 54602dc3f2..ba39817066 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiFlipbookAnimationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiGameEntityContextBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiGameEntityContextBus.h index d2118361ae..4570481ec2 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiGameEntityContextBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiGameEntityContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiImageBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiImageBus.h index 5167978509..2e5058cb61 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiImageBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiImageBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiImageSequenceBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiImageSequenceBus.h index 76c7a81495..79a7707799 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiImageSequenceBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiImageSequenceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiIndexableImageBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiIndexableImageBus.h index c9b67aaab4..2c768b68ae 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiIndexableImageBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiIndexableImageBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiInitializationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInitializationBus.h index f0d6d95cc1..6dbb798fb7 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiInitializationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiInitializationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableActionsBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableActionsBus.h index a67a6b74b9..1049dad134 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableActionsBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableActionsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableBus.h index 4ad4551657..81e321f821 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableStatesBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableStatesBus.h index e961d315ee..6a91035270 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableStatesBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractableStatesBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractionMaskBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractionMaskBus.h index 71c54527c6..9279c0deda 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiInteractionMaskBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiInteractionMaskBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutBus.h index 429d44bc24..c12340901d 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellBus.h index 2cf19d09c2..e842748cea 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h index 9b0640b6e2..63abfdcc23 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutCellDefaultBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutColumnBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutColumnBus.h index 0327cbbe04..01f0b1df59 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutColumnBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutColumnBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutControllerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutControllerBus.h index 02fa66d847..bcc7afbb72 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutControllerBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutControllerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutFitterBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutFitterBus.h index a1eda7c30b..1da85c965e 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutFitterBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutFitterBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutGridBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutGridBus.h index 69d1ba7bd1..4a9fb131f7 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutGridBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutGridBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutManagerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutManagerBus.h index 836ae0d756..1b7ad0662b 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutManagerBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutRowBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutRowBus.h index 23db162b62..094e89695a 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutRowBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiLayoutRowBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiMarkupButtonBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiMarkupButtonBus.h index 919c66780a..8d6bb0a457 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiMarkupButtonBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiMarkupButtonBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiMaskBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiMaskBus.h index fc3fd897ac..0e70a436db 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiMaskBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiMaskBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiNavigationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiNavigationBus.h index 3b3bf9fbf7..6a99ba1948 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiNavigationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiNavigationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiParticleEmitterBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiParticleEmitterBus.h index 88d8da4551..0c90d1a1e4 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiParticleEmitterBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiParticleEmitterBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonBus.h index 5e39655e82..d209341461 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h index 64b9a44427..53d3d7f121 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonCommunicationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h index 0dafcd68ae..046fe24a1c 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h index a28435a2cd..34edb4e364 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiRadioButtonGroupCommunicationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiRenderBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRenderBus.h index b5eebb716b..b55af091eb 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiRenderBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiRenderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiRenderControlBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiRenderControlBus.h index 10835a4e3e..5bba959897 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiRenderControlBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiRenderControlBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBarBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBarBus.h index d124577cf9..941fc8100d 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBarBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBarBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBoxBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBoxBus.h index 9d49c6c0b0..4411630339 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBoxBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollBoxBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollableBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollableBus.h index a1272a07bf..5ebc6e279a 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollableBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollableBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollerBus.h index 36975e3e80..d02e0f2df4 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiScrollerBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiScrollerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiSliderBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiSliderBus.h index c6ffb68b3e..97819d099b 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiSliderBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiSliderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiSpawnerBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiSpawnerBus.h index b0674d1c78..1fe619f416 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiSpawnerBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiSpawnerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiSystemBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiSystemBus.h index 8b17ca591c..61ed8d177e 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiSystemBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiSystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTextBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTextBus.h index 63eab929e3..35e04079db 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTextBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTextInputBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTextInputBus.h index 838c74bf13..0a7863de1a 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTextInputBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTextInputBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipBus.h index 7446e93ce8..3063b29eb0 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h index ce0c96b417..bf6e3e686d 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDataPopulatorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h index c717f37a0e..ba114eabc5 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTooltipDisplayBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h index bdaa384ff0..49591cbc5f 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTransform2dBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h index 0f316c334c..05ae14c22c 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiTransformBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/UiVisualBus.h b/Code/Legacy/CryCommon/LyShine/Bus/UiVisualBus.h index a8a9987044..22c9a37bf1 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/UiVisualBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/UiVisualBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h b/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h index 5928562ccb..6f77265d47 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasOnMeshBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h b/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h index 2ad0ca218f..9086ced09c 100644 --- a/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h +++ b/Code/Legacy/CryCommon/LyShine/Bus/World/UiCanvasRefBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/IDraw2d.h b/Code/Legacy/CryCommon/LyShine/IDraw2d.h index 68eee0ce34..c45f7d1000 100644 --- a/Code/Legacy/CryCommon/LyShine/IDraw2d.h +++ b/Code/Legacy/CryCommon/LyShine/IDraw2d.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/ILyShine.h b/Code/Legacy/CryCommon/LyShine/ILyShine.h index 6746053596..84c61d561a 100644 --- a/Code/Legacy/CryCommon/LyShine/ILyShine.h +++ b/Code/Legacy/CryCommon/LyShine/ILyShine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/IRenderGraph.h b/Code/Legacy/CryCommon/LyShine/IRenderGraph.h index 402a8f3b25..a16890a1c8 100644 --- a/Code/Legacy/CryCommon/LyShine/IRenderGraph.h +++ b/Code/Legacy/CryCommon/LyShine/IRenderGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/ISprite.h b/Code/Legacy/CryCommon/LyShine/ISprite.h index 8789fc5d71..8d456383d3 100644 --- a/Code/Legacy/CryCommon/LyShine/ISprite.h +++ b/Code/Legacy/CryCommon/LyShine/ISprite.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/UiAssetTypes.h b/Code/Legacy/CryCommon/LyShine/UiAssetTypes.h index 169ec6e143..1cfca97562 100644 --- a/Code/Legacy/CryCommon/LyShine/UiAssetTypes.h +++ b/Code/Legacy/CryCommon/LyShine/UiAssetTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/UiBase.h b/Code/Legacy/CryCommon/LyShine/UiBase.h index f5aabc9141..26619291e0 100644 --- a/Code/Legacy/CryCommon/LyShine/UiBase.h +++ b/Code/Legacy/CryCommon/LyShine/UiBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/UiComponentTypes.h b/Code/Legacy/CryCommon/LyShine/UiComponentTypes.h index 1870ffd9ce..f5b78ffccd 100644 --- a/Code/Legacy/CryCommon/LyShine/UiComponentTypes.h +++ b/Code/Legacy/CryCommon/LyShine/UiComponentTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/UiEntityContext.h b/Code/Legacy/CryCommon/LyShine/UiEntityContext.h index 1c68646b7a..1ec969e912 100644 --- a/Code/Legacy/CryCommon/LyShine/UiEntityContext.h +++ b/Code/Legacy/CryCommon/LyShine/UiEntityContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/UiLayoutCellBase.h b/Code/Legacy/CryCommon/LyShine/UiLayoutCellBase.h index fe20273393..29bb764cc1 100644 --- a/Code/Legacy/CryCommon/LyShine/UiLayoutCellBase.h +++ b/Code/Legacy/CryCommon/LyShine/UiLayoutCellBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/LyShine/UiSerializeHelpers.h b/Code/Legacy/CryCommon/LyShine/UiSerializeHelpers.h index 090b622d9f..e203f6fb54 100644 --- a/Code/Legacy/CryCommon/LyShine/UiSerializeHelpers.h +++ b/Code/Legacy/CryCommon/LyShine/UiSerializeHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MTPseudoRandom.cpp b/Code/Legacy/CryCommon/MTPseudoRandom.cpp index a3d64bfb5d..e86320860a 100644 --- a/Code/Legacy/CryCommon/MTPseudoRandom.cpp +++ b/Code/Legacy/CryCommon/MTPseudoRandom.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MacSpecific.h b/Code/Legacy/CryCommon/MacSpecific.h index 9d1eb38cb3..196c42b3bf 100644 --- a/Code/Legacy/CryCommon/MacSpecific.h +++ b/Code/Legacy/CryCommon/MacSpecific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h index 7c50486567..2e2ca13cd7 100644 --- a/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h +++ b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceAgentComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceBus.h b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceBus.h index 8432372f2d..c00ebdea22 100644 --- a/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceBus.h +++ b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h index 7515b24735..3bbfcd9080 100644 --- a/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h +++ b/Code/Legacy/CryCommon/Maestro/Bus/EditorSequenceComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h index 6ff8e541fe..d4b340f434 100644 --- a/Code/Legacy/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h +++ b/Code/Legacy/CryCommon/Maestro/Bus/SequenceAgentComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Bus/SequenceComponentBus.h b/Code/Legacy/CryCommon/Maestro/Bus/SequenceComponentBus.h index 7aa9089991..1246eccc4a 100644 --- a/Code/Legacy/CryCommon/Maestro/Bus/SequenceComponentBus.h +++ b/Code/Legacy/CryCommon/Maestro/Bus/SequenceComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h index 67eea7b21d..192af7381f 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimNodeType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h index 3218769cc1..96533510ca 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimParamType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h b/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h index 73a3388678..54e5f0c21d 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimValue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h b/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h index bf3f7c245d..526212261a 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AnimValueType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Types/AssetBlendKey.h b/Code/Legacy/CryCommon/Maestro/Types/AssetBlendKey.h index 0d82272543..f6ff3b1382 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AssetBlendKey.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AssetBlendKey.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Types/AssetBlends.h b/Code/Legacy/CryCommon/Maestro/Types/AssetBlends.h index b3f6bcfd5b..5ed8b125f8 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/AssetBlends.h +++ b/Code/Legacy/CryCommon/Maestro/Types/AssetBlends.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h b/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h index 6eaa8df451..eb9ef09847 100644 --- a/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h +++ b/Code/Legacy/CryCommon/Maestro/Types/SequenceType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MainThreadRenderRequestBus.h b/Code/Legacy/CryCommon/MainThreadRenderRequestBus.h index db20c9cf88..2558356102 100644 --- a/Code/Legacy/CryCommon/MainThreadRenderRequestBus.h +++ b/Code/Legacy/CryCommon/MainThreadRenderRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MathConversion.h b/Code/Legacy/CryCommon/MathConversion.h index 39426031e3..39a017d599 100644 --- a/Code/Legacy/CryCommon/MathConversion.h +++ b/Code/Legacy/CryCommon/MathConversion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MemoryAccess.h b/Code/Legacy/CryCommon/MemoryAccess.h index 085c45339c..a6c42f0444 100644 --- a/Code/Legacy/CryCommon/MemoryAccess.h +++ b/Code/Legacy/CryCommon/MemoryAccess.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MetaUtils.h b/Code/Legacy/CryCommon/MetaUtils.h index 7ed2925672..aec3104604 100644 --- a/Code/Legacy/CryCommon/MetaUtils.h +++ b/Code/Legacy/CryCommon/MetaUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MicrophoneBus.h b/Code/Legacy/CryCommon/MicrophoneBus.h index 43ea57f839..0695fb7504 100644 --- a/Code/Legacy/CryCommon/MicrophoneBus.h +++ b/Code/Legacy/CryCommon/MicrophoneBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MiniQueue.h b/Code/Legacy/CryCommon/MiniQueue.h index 986d5b2505..24063b8a0f 100644 --- a/Code/Legacy/CryCommon/MiniQueue.h +++ b/Code/Legacy/CryCommon/MiniQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/IAudioSystemMock.h b/Code/Legacy/CryCommon/Mocks/IAudioSystemMock.h index 75dc792d41..fbeb6c89ce 100644 --- a/Code/Legacy/CryCommon/Mocks/IAudioSystemMock.h +++ b/Code/Legacy/CryCommon/Mocks/IAudioSystemMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/ICVarMock.h b/Code/Legacy/CryCommon/Mocks/ICVarMock.h index 96301e7733..791fd32bd3 100644 --- a/Code/Legacy/CryCommon/Mocks/ICVarMock.h +++ b/Code/Legacy/CryCommon/Mocks/ICVarMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/IConsoleMock.h b/Code/Legacy/CryCommon/Mocks/IConsoleMock.h index abeec34a3e..7527ced07a 100644 --- a/Code/Legacy/CryCommon/Mocks/IConsoleMock.h +++ b/Code/Legacy/CryCommon/Mocks/IConsoleMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/ICryPakMock.h b/Code/Legacy/CryCommon/Mocks/ICryPakMock.h index 7e2cf9e6c5..77665ae502 100644 --- a/Code/Legacy/CryCommon/Mocks/ICryPakMock.h +++ b/Code/Legacy/CryCommon/Mocks/ICryPakMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/ILogMock.h b/Code/Legacy/CryCommon/Mocks/ILogMock.h index 8cb6dfe1b3..88f5ab17ec 100644 --- a/Code/Legacy/CryCommon/Mocks/ILogMock.h +++ b/Code/Legacy/CryCommon/Mocks/ILogMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/IRemoteConsoleMock.h b/Code/Legacy/CryCommon/Mocks/IRemoteConsoleMock.h index 4c1d1f460b..a15eb9b687 100644 --- a/Code/Legacy/CryCommon/Mocks/IRemoteConsoleMock.h +++ b/Code/Legacy/CryCommon/Mocks/IRemoteConsoleMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/IRendererMock.h b/Code/Legacy/CryCommon/Mocks/IRendererMock.h index 9acd628056..d82d69fcab 100644 --- a/Code/Legacy/CryCommon/Mocks/IRendererMock.h +++ b/Code/Legacy/CryCommon/Mocks/IRendererMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/ISystemMock.h b/Code/Legacy/CryCommon/Mocks/ISystemMock.h index 551949d6c2..6769d964ba 100644 --- a/Code/Legacy/CryCommon/Mocks/ISystemMock.h +++ b/Code/Legacy/CryCommon/Mocks/ISystemMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/ITextureMock.h b/Code/Legacy/CryCommon/Mocks/ITextureMock.h index 691b8808d6..aba9412930 100644 --- a/Code/Legacy/CryCommon/Mocks/ITextureMock.h +++ b/Code/Legacy/CryCommon/Mocks/ITextureMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/ITimerMock.h b/Code/Legacy/CryCommon/Mocks/ITimerMock.h index 12d3a9e57b..780fea5a2f 100644 --- a/Code/Legacy/CryCommon/Mocks/ITimerMock.h +++ b/Code/Legacy/CryCommon/Mocks/ITimerMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Mocks/StubTimer.h b/Code/Legacy/CryCommon/Mocks/StubTimer.h index 1a2aec3e30..5ed509caf9 100644 --- a/Code/Legacy/CryCommon/Mocks/StubTimer.h +++ b/Code/Legacy/CryCommon/Mocks/StubTimer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MultiThread.h b/Code/Legacy/CryCommon/MultiThread.h index 94b311d459..a7354bb04b 100644 --- a/Code/Legacy/CryCommon/MultiThread.h +++ b/Code/Legacy/CryCommon/MultiThread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/MultiThread_Containers.h b/Code/Legacy/CryCommon/MultiThread_Containers.h index cc88fc42ef..9aa98bfbe8 100644 --- a/Code/Legacy/CryCommon/MultiThread_Containers.h +++ b/Code/Legacy/CryCommon/MultiThread_Containers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/NullAudioSystem.h b/Code/Legacy/CryCommon/NullAudioSystem.h index b5a893aa50..d30f3efaf3 100644 --- a/Code/Legacy/CryCommon/NullAudioSystem.h +++ b/Code/Legacy/CryCommon/NullAudioSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Options.h b/Code/Legacy/CryCommon/Options.h index 6cec7b61f6..ee60d482c8 100644 --- a/Code/Legacy/CryCommon/Options.h +++ b/Code/Legacy/CryCommon/Options.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/PoolAllocator.h b/Code/Legacy/CryCommon/PoolAllocator.h index 391e09cd31..4fbfeea4d9 100644 --- a/Code/Legacy/CryCommon/PoolAllocator.h +++ b/Code/Legacy/CryCommon/PoolAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ProjectDefines.h b/Code/Legacy/CryCommon/ProjectDefines.h index 0d98dd73e2..6c6ff3bb7e 100644 --- a/Code/Legacy/CryCommon/ProjectDefines.h +++ b/Code/Legacy/CryCommon/ProjectDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Random.h b/Code/Legacy/CryCommon/Random.h index 21f18f9c79..4eebbdbf61 100644 --- a/Code/Legacy/CryCommon/Random.h +++ b/Code/Legacy/CryCommon/Random.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Range.h b/Code/Legacy/CryCommon/Range.h index 1240f8123c..43626baa05 100644 --- a/Code/Legacy/CryCommon/Range.h +++ b/Code/Legacy/CryCommon/Range.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/RenderBus.h b/Code/Legacy/CryCommon/RenderBus.h index 2cb12fdec9..3c192a3019 100644 --- a/Code/Legacy/CryCommon/RenderBus.h +++ b/Code/Legacy/CryCommon/RenderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/SFunctor.h b/Code/Legacy/CryCommon/SFunctor.h index 05f08c8290..4f493f42a5 100644 --- a/Code/Legacy/CryCommon/SFunctor.h +++ b/Code/Legacy/CryCommon/SFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/ScopedVariableSetter.h b/Code/Legacy/CryCommon/ScopedVariableSetter.h index 5b2c36b7b9..f781552214 100644 --- a/Code/Legacy/CryCommon/ScopedVariableSetter.h +++ b/Code/Legacy/CryCommon/ScopedVariableSetter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/SerializationTypes.h b/Code/Legacy/CryCommon/SerializationTypes.h index 55b0144815..f9bcf528cb 100644 --- a/Code/Legacy/CryCommon/SerializationTypes.h +++ b/Code/Legacy/CryCommon/SerializationTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/SerializeFwd.h b/Code/Legacy/CryCommon/SerializeFwd.h index a7e06ec8b8..a4e8c018bc 100644 --- a/Code/Legacy/CryCommon/SerializeFwd.h +++ b/Code/Legacy/CryCommon/SerializeFwd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/SimpleSerialize.h b/Code/Legacy/CryCommon/SimpleSerialize.h index 01e5e3d9b4..b14788d7ee 100644 --- a/Code/Legacy/CryCommon/SimpleSerialize.h +++ b/Code/Legacy/CryCommon/SimpleSerialize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/StatObjBus.h b/Code/Legacy/CryCommon/StatObjBus.h index cefdc4b7c7..81f8d94036 100644 --- a/Code/Legacy/CryCommon/StatObjBus.h +++ b/Code/Legacy/CryCommon/StatObjBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/StaticInstance.h b/Code/Legacy/CryCommon/StaticInstance.h index 5303c3fd73..cae98e866d 100644 --- a/Code/Legacy/CryCommon/StaticInstance.h +++ b/Code/Legacy/CryCommon/StaticInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/StereoRendererBus.h b/Code/Legacy/CryCommon/StereoRendererBus.h index d89e347f9f..066be52c23 100644 --- a/Code/Legacy/CryCommon/StereoRendererBus.h +++ b/Code/Legacy/CryCommon/StereoRendererBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/StlUtils.h b/Code/Legacy/CryCommon/StlUtils.h index 0b8db7c76c..077af3b75d 100644 --- a/Code/Legacy/CryCommon/StlUtils.h +++ b/Code/Legacy/CryCommon/StlUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/StringUtils.h b/Code/Legacy/CryCommon/StringUtils.h index 6b34953c22..dc7e6092f6 100644 --- a/Code/Legacy/CryCommon/StringUtils.h +++ b/Code/Legacy/CryCommon/StringUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Synchronization.h b/Code/Legacy/CryCommon/Synchronization.h index 428b0d33df..82fb789d66 100644 --- a/Code/Legacy/CryCommon/Synchronization.h +++ b/Code/Legacy/CryCommon/Synchronization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Tarray.h b/Code/Legacy/CryCommon/Tarray.h index 9dfd410ffd..5a34b7d7e0 100644 --- a/Code/Legacy/CryCommon/Tarray.h +++ b/Code/Legacy/CryCommon/Tarray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/TimeValue.h b/Code/Legacy/CryCommon/TimeValue.h index b5a3135c9a..af0950d7ea 100644 --- a/Code/Legacy/CryCommon/TimeValue.h +++ b/Code/Legacy/CryCommon/TimeValue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/TimeValue_info.h b/Code/Legacy/CryCommon/TimeValue_info.h index 8d2b23b441..c8267f02cc 100644 --- a/Code/Legacy/CryCommon/TimeValue_info.h +++ b/Code/Legacy/CryCommon/TimeValue_info.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Timer.h b/Code/Legacy/CryCommon/Timer.h index ffd1d52014..5f2793d697 100644 --- a/Code/Legacy/CryCommon/Timer.h +++ b/Code/Legacy/CryCommon/Timer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/TypeInfo_decl.h b/Code/Legacy/CryCommon/TypeInfo_decl.h index dbab741bae..30b5cc9b1f 100644 --- a/Code/Legacy/CryCommon/TypeInfo_decl.h +++ b/Code/Legacy/CryCommon/TypeInfo_decl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/TypeInfo_impl.h b/Code/Legacy/CryCommon/TypeInfo_impl.h index 938a7b5e52..1a45ca430f 100644 --- a/Code/Legacy/CryCommon/TypeInfo_impl.h +++ b/Code/Legacy/CryCommon/TypeInfo_impl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/UnicodeBinding.h b/Code/Legacy/CryCommon/UnicodeBinding.h index afa2d0cc88..cbfc4122aa 100644 --- a/Code/Legacy/CryCommon/UnicodeBinding.h +++ b/Code/Legacy/CryCommon/UnicodeBinding.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/UnicodeEncoding.h b/Code/Legacy/CryCommon/UnicodeEncoding.h index 5a661513e1..01ad081f9b 100644 --- a/Code/Legacy/CryCommon/UnicodeEncoding.h +++ b/Code/Legacy/CryCommon/UnicodeEncoding.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/UnicodeFunctions.h b/Code/Legacy/CryCommon/UnicodeFunctions.h index 75d82ec0f1..e0c148ea48 100644 --- a/Code/Legacy/CryCommon/UnicodeFunctions.h +++ b/Code/Legacy/CryCommon/UnicodeFunctions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/UnicodeIterator.h b/Code/Legacy/CryCommon/UnicodeIterator.h index 2ffe942df5..da21a74916 100644 --- a/Code/Legacy/CryCommon/UnicodeIterator.h +++ b/Code/Legacy/CryCommon/UnicodeIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/VRCommon.h b/Code/Legacy/CryCommon/VRCommon.h index ea2abb9da7..767b94cfc5 100644 --- a/Code/Legacy/CryCommon/VRCommon.h +++ b/Code/Legacy/CryCommon/VRCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/VectorMap.h b/Code/Legacy/CryCommon/VectorMap.h index 4a0db13ae6..e9e57a7397 100644 --- a/Code/Legacy/CryCommon/VectorMap.h +++ b/Code/Legacy/CryCommon/VectorMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/VectorSet.h b/Code/Legacy/CryCommon/VectorSet.h index 578d8c0f28..9771c64c0a 100644 --- a/Code/Legacy/CryCommon/VectorSet.h +++ b/Code/Legacy/CryCommon/VectorSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Vertex.h b/Code/Legacy/CryCommon/Vertex.h index 26d62f4a60..f00d93b198 100644 --- a/Code/Legacy/CryCommon/Vertex.h +++ b/Code/Legacy/CryCommon/Vertex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/VertexFormats.h b/Code/Legacy/CryCommon/VertexFormats.h index 5cfc210a28..9f230c47c7 100644 --- a/Code/Legacy/CryCommon/VertexFormats.h +++ b/Code/Legacy/CryCommon/VertexFormats.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Win32specific.h b/Code/Legacy/CryCommon/Win32specific.h index 0352c66d79..abf49382c9 100644 --- a/Code/Legacy/CryCommon/Win32specific.h +++ b/Code/Legacy/CryCommon/Win32specific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/Win64specific.h b/Code/Legacy/CryCommon/Win64specific.h index f1b8f5d23a..11f15ee4bb 100644 --- a/Code/Legacy/CryCommon/Win64specific.h +++ b/Code/Legacy/CryCommon/Win64specific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/WinBase.cpp b/Code/Legacy/CryCommon/WinBase.cpp index 552d207934..e1e37b0e73 100644 --- a/Code/Legacy/CryCommon/WinBase.cpp +++ b/Code/Legacy/CryCommon/WinBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/XMLBinaryHeaders.h b/Code/Legacy/CryCommon/XMLBinaryHeaders.h index 2f5c23b3d2..08701465b5 100644 --- a/Code/Legacy/CryCommon/XMLBinaryHeaders.h +++ b/Code/Legacy/CryCommon/XMLBinaryHeaders.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/crycommon_files.cmake b/Code/Legacy/CryCommon/crycommon_files.cmake index a2cf782d83..ed9e81e20a 100644 --- a/Code/Legacy/CryCommon/crycommon_files.cmake +++ b/Code/Legacy/CryCommon/crycommon_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CryCommon/crycommon_testing_files.cmake b/Code/Legacy/CryCommon/crycommon_testing_files.cmake index 5e7177b07f..64bc0a81fb 100644 --- a/Code/Legacy/CryCommon/crycommon_testing_files.cmake +++ b/Code/Legacy/CryCommon/crycommon_testing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CryCommon/iOSSpecific.h b/Code/Legacy/CryCommon/iOSSpecific.h index 35fa769388..0bf8c6452a 100644 --- a/Code/Legacy/CryCommon/iOSSpecific.h +++ b/Code/Legacy/CryCommon/iOSSpecific.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/physinterface.h b/Code/Legacy/CryCommon/physinterface.h index 873c72cb4b..0ad0f149ff 100644 --- a/Code/Legacy/CryCommon/physinterface.h +++ b/Code/Legacy/CryCommon/physinterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/platform.h b/Code/Legacy/CryCommon/platform.h index 4835e23a1f..29b3f90c7e 100644 --- a/Code/Legacy/CryCommon/platform.h +++ b/Code/Legacy/CryCommon/platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/platform_impl.cpp b/Code/Legacy/CryCommon/platform_impl.cpp index 7f21348007..5496b6554c 100644 --- a/Code/Legacy/CryCommon/platform_impl.cpp +++ b/Code/Legacy/CryCommon/platform_impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/primitives.h b/Code/Legacy/CryCommon/primitives.h index 16a9ffbbd7..8455fcfa39 100644 --- a/Code/Legacy/CryCommon/primitives.h +++ b/Code/Legacy/CryCommon/primitives.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/smartptr.h b/Code/Legacy/CryCommon/smartptr.h index 74dcc6911a..9b5ff3f046 100644 --- a/Code/Legacy/CryCommon/smartptr.h +++ b/Code/Legacy/CryCommon/smartptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CryCommon/stridedptr.h b/Code/Legacy/CryCommon/stridedptr.h index d5e0ec632a..6ddb4439d8 100644 --- a/Code/Legacy/CryCommon/stridedptr.h +++ b/Code/Legacy/CryCommon/stridedptr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/AZCoreLogSink.h b/Code/Legacy/CrySystem/AZCoreLogSink.h index e5c0228a16..0aa193b04c 100644 --- a/Code/Legacy/CrySystem/AZCoreLogSink.h +++ b/Code/Legacy/CrySystem/AZCoreLogSink.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/AZCrySystemInitLogSink.cpp b/Code/Legacy/CrySystem/AZCrySystemInitLogSink.cpp index c34d990875..fbd510122e 100644 --- a/Code/Legacy/CrySystem/AZCrySystemInitLogSink.cpp +++ b/Code/Legacy/CrySystem/AZCrySystemInitLogSink.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/AZCrySystemInitLogSink.h b/Code/Legacy/CrySystem/AZCrySystemInitLogSink.h index e97c605b84..bca2ca04bc 100644 --- a/Code/Legacy/CrySystem/AZCrySystemInitLogSink.h +++ b/Code/Legacy/CrySystem/AZCrySystemInitLogSink.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/CMakeLists.txt b/Code/Legacy/CrySystem/CMakeLists.txt index 54a1ad9cc3..0e0337a59c 100644 --- a/Code/Legacy/CrySystem/CMakeLists.txt +++ b/Code/Legacy/CrySystem/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CrySystem/CmdLine.cpp b/Code/Legacy/CrySystem/CmdLine.cpp index 37bc109cc0..ad371626d4 100644 --- a/Code/Legacy/CrySystem/CmdLine.cpp +++ b/Code/Legacy/CrySystem/CmdLine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/CmdLine.h b/Code/Legacy/CrySystem/CmdLine.h index ea1bfb60ef..b382216918 100644 --- a/Code/Legacy/CrySystem/CmdLine.h +++ b/Code/Legacy/CrySystem/CmdLine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/CmdLineArg.cpp b/Code/Legacy/CrySystem/CmdLineArg.cpp index 07a0ee4024..20526b2727 100644 --- a/Code/Legacy/CrySystem/CmdLineArg.cpp +++ b/Code/Legacy/CrySystem/CmdLineArg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/CmdLineArg.h b/Code/Legacy/CrySystem/CmdLineArg.h index 40e9ac9907..7c9deae826 100644 --- a/Code/Legacy/CrySystem/CmdLineArg.h +++ b/Code/Legacy/CrySystem/CmdLineArg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ConsoleBatchFile.cpp b/Code/Legacy/CrySystem/ConsoleBatchFile.cpp index 22c455b7a8..97d6b582f4 100644 --- a/Code/Legacy/CrySystem/ConsoleBatchFile.cpp +++ b/Code/Legacy/CrySystem/ConsoleBatchFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ConsoleBatchFile.h b/Code/Legacy/CrySystem/ConsoleBatchFile.h index 52eaf053bc..0651c36187 100644 --- a/Code/Legacy/CrySystem/ConsoleBatchFile.h +++ b/Code/Legacy/CrySystem/ConsoleBatchFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ConsoleHelpGen.cpp b/Code/Legacy/CrySystem/ConsoleHelpGen.cpp index fb95164334..35be83b4ed 100644 --- a/Code/Legacy/CrySystem/ConsoleHelpGen.cpp +++ b/Code/Legacy/CrySystem/ConsoleHelpGen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ConsoleHelpGen.h b/Code/Legacy/CrySystem/ConsoleHelpGen.h index 1e1f04c34e..6dae022580 100644 --- a/Code/Legacy/CrySystem/ConsoleHelpGen.h +++ b/Code/Legacy/CrySystem/ConsoleHelpGen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/CrySystem_precompiled.h b/Code/Legacy/CrySystem/CrySystem_precompiled.h index 495df0e6c2..279cbef9fd 100644 --- a/Code/Legacy/CrySystem/CrySystem_precompiled.h +++ b/Code/Legacy/CrySystem/CrySystem_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/DebugCallStack.cpp b/Code/Legacy/CrySystem/DebugCallStack.cpp index 1b15bace16..f518c19d44 100644 --- a/Code/Legacy/CrySystem/DebugCallStack.cpp +++ b/Code/Legacy/CrySystem/DebugCallStack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/DebugCallStack.h b/Code/Legacy/CrySystem/DebugCallStack.h index 0c00540409..20eb78035f 100644 --- a/Code/Legacy/CrySystem/DebugCallStack.h +++ b/Code/Legacy/CrySystem/DebugCallStack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/DllMain.cpp b/Code/Legacy/CrySystem/DllMain.cpp index 1bc580c3f1..24391c07fa 100644 --- a/Code/Legacy/CrySystem/DllMain.cpp +++ b/Code/Legacy/CrySystem/DllMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/Huffman.cpp b/Code/Legacy/CrySystem/Huffman.cpp index 96e68a9954..9fa32ad3a4 100644 --- a/Code/Legacy/CrySystem/Huffman.cpp +++ b/Code/Legacy/CrySystem/Huffman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/Huffman.h b/Code/Legacy/CrySystem/Huffman.h index 5d8876b063..d002ee79b5 100644 --- a/Code/Legacy/CrySystem/Huffman.h +++ b/Code/Legacy/CrySystem/Huffman.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/IDebugCallStack.cpp b/Code/Legacy/CrySystem/IDebugCallStack.cpp index edc9e21f40..823342464d 100644 --- a/Code/Legacy/CrySystem/IDebugCallStack.cpp +++ b/Code/Legacy/CrySystem/IDebugCallStack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/IDebugCallStack.h b/Code/Legacy/CrySystem/IDebugCallStack.h index 2bc50051e7..4b8e66baa6 100644 --- a/Code/Legacy/CrySystem/IDebugCallStack.h +++ b/Code/Legacy/CrySystem/IDebugCallStack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp index b7e6d6ac70..08799c6393 100644 --- a/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp +++ b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/LevelSystem/LevelSystem.h b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.h index 1e46c76915..afe7ae998e 100644 --- a/Code/Legacy/CrySystem/LevelSystem/LevelSystem.h +++ b/Code/Legacy/CrySystem/LevelSystem/LevelSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp index 803b34d0d5..9181793366 100644 --- a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp +++ b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h index a261e7da9c..3b97a3ba9c 100644 --- a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h +++ b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/LocalizedStringManager.cpp b/Code/Legacy/CrySystem/LocalizedStringManager.cpp index 952b51e64e..2a9b4c9409 100644 --- a/Code/Legacy/CrySystem/LocalizedStringManager.cpp +++ b/Code/Legacy/CrySystem/LocalizedStringManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/LocalizedStringManager.h b/Code/Legacy/CrySystem/LocalizedStringManager.h index 5b747e1721..a0ceaf5fbd 100644 --- a/Code/Legacy/CrySystem/LocalizedStringManager.h +++ b/Code/Legacy/CrySystem/LocalizedStringManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/Log.cpp b/Code/Legacy/CrySystem/Log.cpp index b3230f9f5f..360b050753 100644 --- a/Code/Legacy/CrySystem/Log.cpp +++ b/Code/Legacy/CrySystem/Log.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/Log.h b/Code/Legacy/CrySystem/Log.h index b6b5f26c1f..25d063426b 100644 --- a/Code/Legacy/CrySystem/Log.h +++ b/Code/Legacy/CrySystem/Log.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.cpp b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.cpp index 8f232d81bc..4a06e1f635 100644 --- a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.cpp +++ b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h index a5c6099e5c..259a12dfeb 100644 --- a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h +++ b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_impl.inl b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_impl.inl index 375bc89327..a0e4a8e537 100644 --- a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_impl.inl +++ b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_impl.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_none.inl b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_none.inl index e7fb4f8cd5..82595defea 100644 --- a/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_none.inl +++ b/Code/Legacy/CrySystem/RemoteConsole/RemoteConsole_none.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/SimpleStringPool.h b/Code/Legacy/CrySystem/SimpleStringPool.h index 2bfe75176a..a8b7d7d06c 100644 --- a/Code/Legacy/CrySystem/SimpleStringPool.h +++ b/Code/Legacy/CrySystem/SimpleStringPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/System.cpp b/Code/Legacy/CrySystem/System.cpp index 2d3faf2b68..f28a540209 100644 --- a/Code/Legacy/CrySystem/System.cpp +++ b/Code/Legacy/CrySystem/System.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/System.h b/Code/Legacy/CrySystem/System.h index e5d7426415..0aecbbd799 100644 --- a/Code/Legacy/CrySystem/System.h +++ b/Code/Legacy/CrySystem/System.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/SystemCFG.cpp b/Code/Legacy/CrySystem/SystemCFG.cpp index 0930045b3c..0fd62b1f79 100644 --- a/Code/Legacy/CrySystem/SystemCFG.cpp +++ b/Code/Legacy/CrySystem/SystemCFG.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/SystemCFG.h b/Code/Legacy/CrySystem/SystemCFG.h index 4e8479d72f..5f35f5e3bc 100644 --- a/Code/Legacy/CrySystem/SystemCFG.h +++ b/Code/Legacy/CrySystem/SystemCFG.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/SystemEventDispatcher.cpp b/Code/Legacy/CrySystem/SystemEventDispatcher.cpp index c07bf8fb5d..3e39987ee2 100644 --- a/Code/Legacy/CrySystem/SystemEventDispatcher.cpp +++ b/Code/Legacy/CrySystem/SystemEventDispatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/SystemEventDispatcher.h b/Code/Legacy/CrySystem/SystemEventDispatcher.h index d07fea3a88..5536d32a4b 100644 --- a/Code/Legacy/CrySystem/SystemEventDispatcher.h +++ b/Code/Legacy/CrySystem/SystemEventDispatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/SystemInit.cpp b/Code/Legacy/CrySystem/SystemInit.cpp index c2b8eb9861..7602ed05aa 100644 --- a/Code/Legacy/CrySystem/SystemInit.cpp +++ b/Code/Legacy/CrySystem/SystemInit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/SystemWin32.cpp b/Code/Legacy/CrySystem/SystemWin32.cpp index 3dbac48321..7c33dd13f8 100644 --- a/Code/Legacy/CrySystem/SystemWin32.cpp +++ b/Code/Legacy/CrySystem/SystemWin32.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/Timer.cpp b/Code/Legacy/CrySystem/Timer.cpp index 9f5304020f..3d8585a6ea 100644 --- a/Code/Legacy/CrySystem/Timer.cpp +++ b/Code/Legacy/CrySystem/Timer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/Timer.h b/Code/Legacy/CrySystem/Timer.h index c55eed0ebb..9441aa8740 100644 --- a/Code/Legacy/CrySystem/Timer.h +++ b/Code/Legacy/CrySystem/Timer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ViewSystem/DebugCamera.cpp b/Code/Legacy/CrySystem/ViewSystem/DebugCamera.cpp index 89086d5c25..59149b1b39 100644 --- a/Code/Legacy/CrySystem/ViewSystem/DebugCamera.cpp +++ b/Code/Legacy/CrySystem/ViewSystem/DebugCamera.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ViewSystem/DebugCamera.h b/Code/Legacy/CrySystem/ViewSystem/DebugCamera.h index a8e24a7de9..083c96cee1 100644 --- a/Code/Legacy/CrySystem/ViewSystem/DebugCamera.h +++ b/Code/Legacy/CrySystem/ViewSystem/DebugCamera.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ViewSystem/View.cpp b/Code/Legacy/CrySystem/ViewSystem/View.cpp index 02b5625f9d..1d7d1d1502 100644 --- a/Code/Legacy/CrySystem/ViewSystem/View.cpp +++ b/Code/Legacy/CrySystem/ViewSystem/View.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ViewSystem/View.h b/Code/Legacy/CrySystem/ViewSystem/View.h index 8565f53ec8..070d1dd0c6 100644 --- a/Code/Legacy/CrySystem/ViewSystem/View.h +++ b/Code/Legacy/CrySystem/ViewSystem/View.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp index 18404b5d5d..7896d63715 100644 --- a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp +++ b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h index 739f89efb4..89d0117d9d 100644 --- a/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h +++ b/Code/Legacy/CrySystem/ViewSystem/ViewSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/WindowsErrorReporting.cpp b/Code/Legacy/CrySystem/WindowsErrorReporting.cpp index 73dce0678b..b0fdeebfa4 100644 --- a/Code/Legacy/CrySystem/WindowsErrorReporting.cpp +++ b/Code/Legacy/CrySystem/WindowsErrorReporting.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XConsole.cpp b/Code/Legacy/CrySystem/XConsole.cpp index 0e75e4910d..9f75eea429 100644 --- a/Code/Legacy/CrySystem/XConsole.cpp +++ b/Code/Legacy/CrySystem/XConsole.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XConsole.h b/Code/Legacy/CrySystem/XConsole.h index b1c5348b6d..7f6bbe97a3 100644 --- a/Code/Legacy/CrySystem/XConsole.h +++ b/Code/Legacy/CrySystem/XConsole.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XConsoleVariable.cpp b/Code/Legacy/CrySystem/XConsoleVariable.cpp index 1190c893e4..79c674c9a8 100644 --- a/Code/Legacy/CrySystem/XConsoleVariable.cpp +++ b/Code/Legacy/CrySystem/XConsoleVariable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XConsoleVariable.h b/Code/Legacy/CrySystem/XConsoleVariable.h index a4db880898..3405cea482 100644 --- a/Code/Legacy/CrySystem/XConsoleVariable.h +++ b/Code/Legacy/CrySystem/XConsoleVariable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/CMakeLists.txt b/Code/Legacy/CrySystem/XML/CMakeLists.txt index cc63dbf9c1..e96d54cab9 100644 --- a/Code/Legacy/CrySystem/XML/CMakeLists.txt +++ b/Code/Legacy/CrySystem/XML/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CrySystem/XML/ReadWriteXMLSink.h b/Code/Legacy/CrySystem/XML/ReadWriteXMLSink.h index ad6c057c23..7db2feb4e7 100644 --- a/Code/Legacy/CrySystem/XML/ReadWriteXMLSink.h +++ b/Code/Legacy/CrySystem/XML/ReadWriteXMLSink.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/ReadXMLSink.cpp b/Code/Legacy/CrySystem/XML/ReadXMLSink.cpp index aef4f06801..a0c54aeeac 100644 --- a/Code/Legacy/CrySystem/XML/ReadXMLSink.cpp +++ b/Code/Legacy/CrySystem/XML/ReadXMLSink.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/SerializeXMLReader.cpp b/Code/Legacy/CrySystem/XML/SerializeXMLReader.cpp index 94f2812ba3..96c222a7a2 100644 --- a/Code/Legacy/CrySystem/XML/SerializeXMLReader.cpp +++ b/Code/Legacy/CrySystem/XML/SerializeXMLReader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/SerializeXMLReader.h b/Code/Legacy/CrySystem/XML/SerializeXMLReader.h index 70860632d4..85ec08cb6c 100644 --- a/Code/Legacy/CrySystem/XML/SerializeXMLReader.h +++ b/Code/Legacy/CrySystem/XML/SerializeXMLReader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/SerializeXMLWriter.cpp b/Code/Legacy/CrySystem/XML/SerializeXMLWriter.cpp index 2a4e317994..d5e5340d22 100644 --- a/Code/Legacy/CrySystem/XML/SerializeXMLWriter.cpp +++ b/Code/Legacy/CrySystem/XML/SerializeXMLWriter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/SerializeXMLWriter.h b/Code/Legacy/CrySystem/XML/SerializeXMLWriter.h index add59166b1..b40467db03 100644 --- a/Code/Legacy/CrySystem/XML/SerializeXMLWriter.h +++ b/Code/Legacy/CrySystem/XML/SerializeXMLWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/WriteXMLSource.cpp b/Code/Legacy/CrySystem/XML/WriteXMLSource.cpp index 8b4063722e..ff86bfcc92 100644 --- a/Code/Legacy/CrySystem/XML/WriteXMLSource.cpp +++ b/Code/Legacy/CrySystem/XML/WriteXMLSource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLBinaryNode.cpp b/Code/Legacy/CrySystem/XML/XMLBinaryNode.cpp index 0495db417e..56ae764b61 100644 --- a/Code/Legacy/CrySystem/XML/XMLBinaryNode.cpp +++ b/Code/Legacy/CrySystem/XML/XMLBinaryNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLBinaryNode.h b/Code/Legacy/CrySystem/XML/XMLBinaryNode.h index d4b0aaf5ae..cc686fdbde 100644 --- a/Code/Legacy/CrySystem/XML/XMLBinaryNode.h +++ b/Code/Legacy/CrySystem/XML/XMLBinaryNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLBinaryReader.cpp b/Code/Legacy/CrySystem/XML/XMLBinaryReader.cpp index 6a2cc68d4e..5c4a6742a1 100644 --- a/Code/Legacy/CrySystem/XML/XMLBinaryReader.cpp +++ b/Code/Legacy/CrySystem/XML/XMLBinaryReader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLBinaryReader.h b/Code/Legacy/CrySystem/XML/XMLBinaryReader.h index 59eaa0b77c..e6939df686 100644 --- a/Code/Legacy/CrySystem/XML/XMLBinaryReader.h +++ b/Code/Legacy/CrySystem/XML/XMLBinaryReader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLBinaryWriter.cpp b/Code/Legacy/CrySystem/XML/XMLBinaryWriter.cpp index 6bbe1eb494..4b552b0b82 100644 --- a/Code/Legacy/CrySystem/XML/XMLBinaryWriter.cpp +++ b/Code/Legacy/CrySystem/XML/XMLBinaryWriter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLBinaryWriter.h b/Code/Legacy/CrySystem/XML/XMLBinaryWriter.h index c1a4d54e67..f04c9a3ebe 100644 --- a/Code/Legacy/CrySystem/XML/XMLBinaryWriter.h +++ b/Code/Legacy/CrySystem/XML/XMLBinaryWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLPatcher.cpp b/Code/Legacy/CrySystem/XML/XMLPatcher.cpp index e585ecd53b..797f025ba2 100644 --- a/Code/Legacy/CrySystem/XML/XMLPatcher.cpp +++ b/Code/Legacy/CrySystem/XML/XMLPatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XMLPatcher.h b/Code/Legacy/CrySystem/XML/XMLPatcher.h index 64a0badbd5..233957d081 100644 --- a/Code/Legacy/CrySystem/XML/XMLPatcher.h +++ b/Code/Legacy/CrySystem/XML/XMLPatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XmlUtils.cpp b/Code/Legacy/CrySystem/XML/XmlUtils.cpp index 9dfca6aa17..cdb0e68b77 100644 --- a/Code/Legacy/CrySystem/XML/XmlUtils.cpp +++ b/Code/Legacy/CrySystem/XML/XmlUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/XmlUtils.h b/Code/Legacy/CrySystem/XML/XmlUtils.h index 07e3034120..492a552940 100644 --- a/Code/Legacy/CrySystem/XML/XmlUtils.h +++ b/Code/Legacy/CrySystem/XML/XmlUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/crysystem_xmlbinary_files.cmake b/Code/Legacy/CrySystem/XML/crysystem_xmlbinary_files.cmake index 683a286220..aa69dad759 100644 --- a/Code/Legacy/CrySystem/XML/crysystem_xmlbinary_files.cmake +++ b/Code/Legacy/CrySystem/XML/crysystem_xmlbinary_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CrySystem/XML/xml.cpp b/Code/Legacy/CrySystem/XML/xml.cpp index c8357907d7..be9b1d8787 100644 --- a/Code/Legacy/CrySystem/XML/xml.cpp +++ b/Code/Legacy/CrySystem/XML/xml.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/xml.h b/Code/Legacy/CrySystem/XML/xml.h index 4ba48a570b..5253095c0b 100644 --- a/Code/Legacy/CrySystem/XML/xml.h +++ b/Code/Legacy/CrySystem/XML/xml.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/XML/xml_string.h b/Code/Legacy/CrySystem/XML/xml_string.h index 83624672c7..463314bb5e 100644 --- a/Code/Legacy/CrySystem/XML/xml_string.h +++ b/Code/Legacy/CrySystem/XML/xml_string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Legacy/CrySystem/crysystem_files.cmake b/Code/Legacy/CrySystem/crysystem_files.cmake index 34dc27922b..91a8f9fab8 100644 --- a/Code/Legacy/CrySystem/crysystem_files.cmake +++ b/Code/Legacy/CrySystem/crysystem_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Legacy/CrySystem/crysystem_shared_files.cmake b/Code/Legacy/CrySystem/crysystem_shared_files.cmake index c476c71c04..2bb8abacff 100644 --- a/Code/Legacy/CrySystem/crysystem_shared_files.cmake +++ b/Code/Legacy/CrySystem/crysystem_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AWSNativeSDKInit/CMakeLists.txt b/Code/Tools/AWSNativeSDKInit/CMakeLists.txt index 2d85e796a4..48ae3691be 100644 --- a/Code/Tools/AWSNativeSDKInit/CMakeLists.txt +++ b/Code/Tools/AWSNativeSDKInit/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AWSNativeSDKInit/aws_native_sdk_init_files.cmake b/Code/Tools/AWSNativeSDKInit/aws_native_sdk_init_files.cmake index 6fef805893..da24797b81 100644 --- a/Code/Tools/AWSNativeSDKInit/aws_native_sdk_init_files.cmake +++ b/Code/Tools/AWSNativeSDKInit/aws_native_sdk_init_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSLogSystemInterface.h b/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSLogSystemInterface.h index ba1c5884ae..90533abc16 100644 --- a/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSLogSystemInterface.h +++ b/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSLogSystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSMemoryInterface.h b/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSMemoryInterface.h index 2d85358b99..6d7ddb3ebf 100644 --- a/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSMemoryInterface.h +++ b/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSMemoryInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSNativeSDKInit.h b/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSNativeSDKInit.h index 7524f40515..c73963ba35 100644 --- a/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSNativeSDKInit.h +++ b/Code/Tools/AWSNativeSDKInit/include/AWSNativeSDKInit/AWSNativeSDKInit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AWSNativeSDKInit/source/AWSLogSystemInterface.cpp b/Code/Tools/AWSNativeSDKInit/source/AWSLogSystemInterface.cpp index 76fbb7b44e..12698d021b 100644 --- a/Code/Tools/AWSNativeSDKInit/source/AWSLogSystemInterface.cpp +++ b/Code/Tools/AWSNativeSDKInit/source/AWSLogSystemInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AWSNativeSDKInit/source/AWSMemoryInterface.cpp b/Code/Tools/AWSNativeSDKInit/source/AWSMemoryInterface.cpp index c78b57991a..b38d229631 100644 --- a/Code/Tools/AWSNativeSDKInit/source/AWSMemoryInterface.cpp +++ b/Code/Tools/AWSNativeSDKInit/source/AWSMemoryInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AWSNativeSDKInit/source/AWSNativeSDKInit.cpp b/Code/Tools/AWSNativeSDKInit/source/AWSNativeSDKInit.cpp index 8ec944031b..97802a1516 100644 --- a/Code/Tools/AWSNativeSDKInit/source/AWSNativeSDKInit.cpp +++ b/Code/Tools/AWSNativeSDKInit/source/AWSNativeSDKInit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AWSNativeSDKInit/source/Platform/Android/platform_android_files.cmake b/Code/Tools/AWSNativeSDKInit/source/Platform/Android/platform_android_files.cmake index 3ecd6f22d1..0ec1f30fea 100644 --- a/Code/Tools/AWSNativeSDKInit/source/Platform/Android/platform_android_files.cmake +++ b/Code/Tools/AWSNativeSDKInit/source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AWSNativeSDKInit/source/Platform/Common/Default/AWSNativeSDKInit_Default.cpp b/Code/Tools/AWSNativeSDKInit/source/Platform/Common/Default/AWSNativeSDKInit_Default.cpp index bf9b7070e2..d38c3507d5 100644 --- a/Code/Tools/AWSNativeSDKInit/source/Platform/Common/Default/AWSNativeSDKInit_Default.cpp +++ b/Code/Tools/AWSNativeSDKInit/source/Platform/Common/Default/AWSNativeSDKInit_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AWSNativeSDKInit/source/Platform/Linux/platform_linux_files.cmake b/Code/Tools/AWSNativeSDKInit/source/Platform/Linux/platform_linux_files.cmake index 3ecd6f22d1..0ec1f30fea 100644 --- a/Code/Tools/AWSNativeSDKInit/source/Platform/Linux/platform_linux_files.cmake +++ b/Code/Tools/AWSNativeSDKInit/source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AWSNativeSDKInit/source/Platform/Mac/platform_mac_files.cmake b/Code/Tools/AWSNativeSDKInit/source/Platform/Mac/platform_mac_files.cmake index 3ecd6f22d1..0ec1f30fea 100644 --- a/Code/Tools/AWSNativeSDKInit/source/Platform/Mac/platform_mac_files.cmake +++ b/Code/Tools/AWSNativeSDKInit/source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AWSNativeSDKInit/source/Platform/Windows/platform_windows_files.cmake b/Code/Tools/AWSNativeSDKInit/source/Platform/Windows/platform_windows_files.cmake index 3ecd6f22d1..0ec1f30fea 100644 --- a/Code/Tools/AWSNativeSDKInit/source/Platform/Windows/platform_windows_files.cmake +++ b/Code/Tools/AWSNativeSDKInit/source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AWSNativeSDKInit/source/Platform/iOS/platform_ios_files.cmake b/Code/Tools/AWSNativeSDKInit/source/Platform/iOS/platform_ios_files.cmake index 3ecd6f22d1..0ec1f30fea 100644 --- a/Code/Tools/AWSNativeSDKInit/source/Platform/iOS/platform_ios_files.cmake +++ b/Code/Tools/AWSNativeSDKInit/source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Android/ProjectBuilder/ProjectActivity.java b/Code/Tools/Android/ProjectBuilder/ProjectActivity.java index ab1eadb126..c1ce080b83 100644 --- a/Code/Tools/Android/ProjectBuilder/ProjectActivity.java +++ b/Code/Tools/Android/ProjectBuilder/ProjectActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/CMakeLists.txt b/Code/Tools/AssetBundler/CMakeLists.txt index 289905255d..8aad0b830a 100644 --- a/Code/Tools/AssetBundler/CMakeLists.txt +++ b/Code/Tools/AssetBundler/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/Platform/Linux/PAL_linux.cmake b/Code/Tools/AssetBundler/Platform/Linux/PAL_linux.cmake index 0499b5d3cd..b98656c564 100644 --- a/Code/Tools/AssetBundler/Platform/Linux/PAL_linux.cmake +++ b/Code/Tools/AssetBundler/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/Platform/Linux/assetbundlergui_linux_files.cmake b/Code/Tools/AssetBundler/Platform/Linux/assetbundlergui_linux_files.cmake index 87d1da1cec..fa1e3e8629 100644 --- a/Code/Tools/AssetBundler/Platform/Linux/assetbundlergui_linux_files.cmake +++ b/Code/Tools/AssetBundler/Platform/Linux/assetbundlergui_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/Platform/Linux/source/utils/GUIApplicationManager_Linux.cpp b/Code/Tools/AssetBundler/Platform/Linux/source/utils/GUIApplicationManager_Linux.cpp index d8c367a2ab..76379a4bf0 100644 --- a/Code/Tools/AssetBundler/Platform/Linux/source/utils/GUIApplicationManager_Linux.cpp +++ b/Code/Tools/AssetBundler/Platform/Linux/source/utils/GUIApplicationManager_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/Platform/Mac/PAL_mac.cmake b/Code/Tools/AssetBundler/Platform/Mac/PAL_mac.cmake index 0499b5d3cd..b98656c564 100644 --- a/Code/Tools/AssetBundler/Platform/Mac/PAL_mac.cmake +++ b/Code/Tools/AssetBundler/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/Platform/Mac/assetbundlergui_mac_files.cmake b/Code/Tools/AssetBundler/Platform/Mac/assetbundlergui_mac_files.cmake index 86c8917a41..46b2cab58b 100644 --- a/Code/Tools/AssetBundler/Platform/Mac/assetbundlergui_mac_files.cmake +++ b/Code/Tools/AssetBundler/Platform/Mac/assetbundlergui_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/Platform/Mac/source/utils/GUIApplicationManager_OSX.cpp b/Code/Tools/AssetBundler/Platform/Mac/source/utils/GUIApplicationManager_OSX.cpp index d8c367a2ab..76379a4bf0 100644 --- a/Code/Tools/AssetBundler/Platform/Mac/source/utils/GUIApplicationManager_OSX.cpp +++ b/Code/Tools/AssetBundler/Platform/Mac/source/utils/GUIApplicationManager_OSX.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/Platform/Windows/PAL_windows.cmake b/Code/Tools/AssetBundler/Platform/Windows/PAL_windows.cmake index 0499b5d3cd..b98656c564 100644 --- a/Code/Tools/AssetBundler/Platform/Windows/PAL_windows.cmake +++ b/Code/Tools/AssetBundler/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/Platform/Windows/assetbundlergui_windows_files.cmake b/Code/Tools/AssetBundler/Platform/Windows/assetbundlergui_windows_files.cmake index eb2d845d61..006ae7bea4 100644 --- a/Code/Tools/AssetBundler/Platform/Windows/assetbundlergui_windows_files.cmake +++ b/Code/Tools/AssetBundler/Platform/Windows/assetbundlergui_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/Platform/Windows/source/utils/GUIApplicationManager_Win.cpp b/Code/Tools/AssetBundler/Platform/Windows/source/utils/GUIApplicationManager_Win.cpp index f9723008fb..cb53797fb4 100644 --- a/Code/Tools/AssetBundler/Platform/Windows/source/utils/GUIApplicationManager_Win.cpp +++ b/Code/Tools/AssetBundler/Platform/Windows/source/utils/GUIApplicationManager_Win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/assetbundler_exe_files.cmake b/Code/Tools/AssetBundler/assetbundler_exe_files.cmake index 27bc857d44..baa200aacd 100644 --- a/Code/Tools/AssetBundler/assetbundler_exe_files.cmake +++ b/Code/Tools/AssetBundler/assetbundler_exe_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/assetbundlerbatch_exe_files.cmake b/Code/Tools/AssetBundler/assetbundlerbatch_exe_files.cmake index 27c7de8545..59edf3cfd5 100644 --- a/Code/Tools/AssetBundler/assetbundlerbatch_exe_files.cmake +++ b/Code/Tools/AssetBundler/assetbundlerbatch_exe_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/assetbundlerbatch_files.cmake b/Code/Tools/AssetBundler/assetbundlerbatch_files.cmake index 02731afe87..63a1854ad9 100644 --- a/Code/Tools/AssetBundler/assetbundlerbatch_files.cmake +++ b/Code/Tools/AssetBundler/assetbundlerbatch_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/assetbundlerbatch_test_files.cmake b/Code/Tools/AssetBundler/assetbundlerbatch_test_files.cmake index 3e2611c889..5fc1cb3af1 100644 --- a/Code/Tools/AssetBundler/assetbundlerbatch_test_files.cmake +++ b/Code/Tools/AssetBundler/assetbundlerbatch_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/assetbundlergui_files.cmake b/Code/Tools/AssetBundler/assetbundlergui_files.cmake index ce99dc176f..029409d01d 100644 --- a/Code/Tools/AssetBundler/assetbundlergui_files.cmake +++ b/Code/Tools/AssetBundler/assetbundlergui_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetBundler/source/main.cpp b/Code/Tools/AssetBundler/source/main.cpp index 4bfa86842e..2f5631e2a4 100644 --- a/Code/Tools/AssetBundler/source/main.cpp +++ b/Code/Tools/AssetBundler/source/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.cpp b/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.cpp index cba749677e..02d57a214d 100644 --- a/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.cpp +++ b/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.h b/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.h index dd79301155..c49aa01f63 100644 --- a/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.h +++ b/Code/Tools/AssetBundler/source/models/AssetBundlerAbstractFileTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.cpp b/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.cpp index 84e9cbd242..02e982c8b0 100644 --- a/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.cpp +++ b/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.h b/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.h index e1b29f49e6..8ec3ed929f 100644 --- a/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.h +++ b/Code/Tools/AssetBundler/source/models/AssetBundlerFileTableFilterModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.cpp b/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.cpp index 78ff61ff7c..025284a722 100644 --- a/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.cpp +++ b/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.h b/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.h index 53e703b537..5622209c63 100644 --- a/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.h +++ b/Code/Tools/AssetBundler/source/models/AssetListFileTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetListTableModel.cpp b/Code/Tools/AssetBundler/source/models/AssetListTableModel.cpp index 2748d323ae..e6b74f9506 100644 --- a/Code/Tools/AssetBundler/source/models/AssetListTableModel.cpp +++ b/Code/Tools/AssetBundler/source/models/AssetListTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/AssetListTableModel.h b/Code/Tools/AssetBundler/source/models/AssetListTableModel.h index d249b1f72a..cfa4eb589f 100644 --- a/Code/Tools/AssetBundler/source/models/AssetListTableModel.h +++ b/Code/Tools/AssetBundler/source/models/AssetListTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/BundleFileListModel.cpp b/Code/Tools/AssetBundler/source/models/BundleFileListModel.cpp index 514734c94d..0ecef3cf8b 100644 --- a/Code/Tools/AssetBundler/source/models/BundleFileListModel.cpp +++ b/Code/Tools/AssetBundler/source/models/BundleFileListModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/BundleFileListModel.h b/Code/Tools/AssetBundler/source/models/BundleFileListModel.h index 0de09c82ca..dd908a9551 100644 --- a/Code/Tools/AssetBundler/source/models/BundleFileListModel.h +++ b/Code/Tools/AssetBundler/source/models/BundleFileListModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/RulesFileTableModel.cpp b/Code/Tools/AssetBundler/source/models/RulesFileTableModel.cpp index 2a9dcd3be3..e34a6a5613 100644 --- a/Code/Tools/AssetBundler/source/models/RulesFileTableModel.cpp +++ b/Code/Tools/AssetBundler/source/models/RulesFileTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/RulesFileTableModel.h b/Code/Tools/AssetBundler/source/models/RulesFileTableModel.h index 5af7da48ec..afc7301856 100644 --- a/Code/Tools/AssetBundler/source/models/RulesFileTableModel.h +++ b/Code/Tools/AssetBundler/source/models/RulesFileTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.cpp b/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.cpp index b125a5ef4f..fe57c92a11 100644 --- a/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.cpp +++ b/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.h b/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.h index 18c8ba0e77..040d581797 100644 --- a/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.h +++ b/Code/Tools/AssetBundler/source/models/SeedListFileTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/SeedListTableModel.cpp b/Code/Tools/AssetBundler/source/models/SeedListTableModel.cpp index 5b21ac00da..051716ee08 100644 --- a/Code/Tools/AssetBundler/source/models/SeedListTableModel.cpp +++ b/Code/Tools/AssetBundler/source/models/SeedListTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/models/SeedListTableModel.h b/Code/Tools/AssetBundler/source/models/SeedListTableModel.h index be9f6fb8d8..914a1a2f54 100644 --- a/Code/Tools/AssetBundler/source/models/SeedListTableModel.h +++ b/Code/Tools/AssetBundler/source/models/SeedListTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/AddSeedDialog.cpp b/Code/Tools/AssetBundler/source/ui/AddSeedDialog.cpp index 87961cb96b..a1b8f83395 100644 --- a/Code/Tools/AssetBundler/source/ui/AddSeedDialog.cpp +++ b/Code/Tools/AssetBundler/source/ui/AddSeedDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h b/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h index 5f6fccd9fd..000ad2c4c7 100644 --- a/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h +++ b/Code/Tools/AssetBundler/source/ui/AddSeedDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.cpp b/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.cpp index 7bb2f38b00..a5f2f256fd 100644 --- a/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.cpp +++ b/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.h b/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.h index 6293188a1c..d1b383c0e1 100644 --- a/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.h +++ b/Code/Tools/AssetBundler/source/ui/AssetBundlerTabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.cpp b/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.cpp index 0117a50e1f..5aabbfbca6 100644 --- a/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.cpp +++ b/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.h b/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.h index bf381e2753..72e61a9711 100644 --- a/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.h +++ b/Code/Tools/AssetBundler/source/ui/AssetListTabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.cpp b/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.cpp index edef96bfc5..bdf5f07478 100644 --- a/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.cpp +++ b/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.h b/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.h index ef36fe8c48..72774d29c1 100644 --- a/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.h +++ b/Code/Tools/AssetBundler/source/ui/BundleListTabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.cpp b/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.cpp index bcffda7130..5bfb163b96 100644 --- a/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.cpp +++ b/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.h b/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.h index 4a296317e4..e02533813e 100644 --- a/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.h +++ b/Code/Tools/AssetBundler/source/ui/ComparisonDataWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/EditSeedDialog.cpp b/Code/Tools/AssetBundler/source/ui/EditSeedDialog.cpp index 0406cb44c0..61cac828ec 100644 --- a/Code/Tools/AssetBundler/source/ui/EditSeedDialog.cpp +++ b/Code/Tools/AssetBundler/source/ui/EditSeedDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/EditSeedDialog.h b/Code/Tools/AssetBundler/source/ui/EditSeedDialog.h index f8b5782f4d..78d4da4916 100644 --- a/Code/Tools/AssetBundler/source/ui/EditSeedDialog.h +++ b/Code/Tools/AssetBundler/source/ui/EditSeedDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.cpp b/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.cpp index bd724f0f0e..4b28cfdc8b 100644 --- a/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.cpp +++ b/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.h b/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.h index 06fc173ff1..4b2948eae3 100644 --- a/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.h +++ b/Code/Tools/AssetBundler/source/ui/GenerateBundlesModal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/MainWindow.cpp b/Code/Tools/AssetBundler/source/ui/MainWindow.cpp index 0846a1e995..ea8b2456b9 100644 --- a/Code/Tools/AssetBundler/source/ui/MainWindow.cpp +++ b/Code/Tools/AssetBundler/source/ui/MainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/MainWindow.h b/Code/Tools/AssetBundler/source/ui/MainWindow.h index fec26253d5..86af90e3eb 100644 --- a/Code/Tools/AssetBundler/source/ui/MainWindow.h +++ b/Code/Tools/AssetBundler/source/ui/MainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/NewFileDialog.cpp b/Code/Tools/AssetBundler/source/ui/NewFileDialog.cpp index e2548d9f46..cb63f0e9a4 100644 --- a/Code/Tools/AssetBundler/source/ui/NewFileDialog.cpp +++ b/Code/Tools/AssetBundler/source/ui/NewFileDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/NewFileDialog.h b/Code/Tools/AssetBundler/source/ui/NewFileDialog.h index 2f28c26e17..78def818c0 100644 --- a/Code/Tools/AssetBundler/source/ui/NewFileDialog.h +++ b/Code/Tools/AssetBundler/source/ui/NewFileDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.cpp b/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.cpp index dea74434ab..8fafcf06a9 100644 --- a/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.cpp +++ b/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.h b/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.h index 882df8dcb6..562e192314 100644 --- a/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.h +++ b/Code/Tools/AssetBundler/source/ui/PlatformSelectionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/RulesTabWidget.cpp b/Code/Tools/AssetBundler/source/ui/RulesTabWidget.cpp index d197be080a..69535d1d17 100644 --- a/Code/Tools/AssetBundler/source/ui/RulesTabWidget.cpp +++ b/Code/Tools/AssetBundler/source/ui/RulesTabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/RulesTabWidget.h b/Code/Tools/AssetBundler/source/ui/RulesTabWidget.h index 6e9d070099..bee04db1ea 100644 --- a/Code/Tools/AssetBundler/source/ui/RulesTabWidget.h +++ b/Code/Tools/AssetBundler/source/ui/RulesTabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/SeedTabWidget.cpp b/Code/Tools/AssetBundler/source/ui/SeedTabWidget.cpp index 516ba1bb46..9c8d8e1f06 100644 --- a/Code/Tools/AssetBundler/source/ui/SeedTabWidget.cpp +++ b/Code/Tools/AssetBundler/source/ui/SeedTabWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/SeedTabWidget.h b/Code/Tools/AssetBundler/source/ui/SeedTabWidget.h index 2bdd8d7b23..b093bebbaf 100644 --- a/Code/Tools/AssetBundler/source/ui/SeedTabWidget.h +++ b/Code/Tools/AssetBundler/source/ui/SeedTabWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/ui/style/AssetBundler.qss b/Code/Tools/AssetBundler/source/ui/style/AssetBundler.qss index d125968da8..ee7465181b 100644 --- a/Code/Tools/AssetBundler/source/ui/style/AssetBundler.qss +++ b/Code/Tools/AssetBundler/source/ui/style/AssetBundler.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.cpp b/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.cpp index cbc082f67b..dccc1977f4 100644 --- a/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.cpp +++ b/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.h b/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.h index 9a7b0d5915..9924774381 100644 --- a/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.h +++ b/Code/Tools/AssetBundler/source/utils/GUIApplicationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/utils/applicationManager.cpp b/Code/Tools/AssetBundler/source/utils/applicationManager.cpp index 4763b237d2..66974ca6a8 100644 --- a/Code/Tools/AssetBundler/source/utils/applicationManager.cpp +++ b/Code/Tools/AssetBundler/source/utils/applicationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/utils/applicationManager.h b/Code/Tools/AssetBundler/source/utils/applicationManager.h index 71fcbdd0c4..673c9ddc0e 100644 --- a/Code/Tools/AssetBundler/source/utils/applicationManager.h +++ b/Code/Tools/AssetBundler/source/utils/applicationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/utils/utils.cpp b/Code/Tools/AssetBundler/source/utils/utils.cpp index f137716283..604a780f1d 100644 --- a/Code/Tools/AssetBundler/source/utils/utils.cpp +++ b/Code/Tools/AssetBundler/source/utils/utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/source/utils/utils.h b/Code/Tools/AssetBundler/source/utils/utils.h index d1edbf9739..fd07b266cc 100644 --- a/Code/Tools/AssetBundler/source/utils/utils.h +++ b/Code/Tools/AssetBundler/source/utils/utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/tests/UtilsTests.cpp b/Code/Tools/AssetBundler/tests/UtilsTests.cpp index e5886adc54..e54a6ac848 100644 --- a/Code/Tools/AssetBundler/tests/UtilsTests.cpp +++ b/Code/Tools/AssetBundler/tests/UtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/tests/applicationManagerTests.cpp b/Code/Tools/AssetBundler/tests/applicationManagerTests.cpp index d6833c79b2..a0c94c1754 100644 --- a/Code/Tools/AssetBundler/tests/applicationManagerTests.cpp +++ b/Code/Tools/AssetBundler/tests/applicationManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/tests/main.h b/Code/Tools/AssetBundler/tests/main.h index 4836a763e9..334e27e263 100644 --- a/Code/Tools/AssetBundler/tests/main.h +++ b/Code/Tools/AssetBundler/tests/main.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetBundler/tests/tests_main.cpp b/Code/Tools/AssetBundler/tests/tests_main.cpp index 9c0be26695..3c4f57c7dc 100644 --- a/Code/Tools/AssetBundler/tests/tests_main.cpp +++ b/Code/Tools/AssetBundler/tests/tests_main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.cpp b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.cpp index 7e4b66a578..0222f7c977 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.h b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.h index 70eb261563..532d7bd23c 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.h +++ b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.cpp b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.cpp index 6760d27f74..64a4c98ad6 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.h b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.h index adea735d39..969427334b 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.h +++ b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.cpp b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.cpp index 3623d98574..3f70b1dd8a 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.h b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.h index 2a17bd8c7a..07bd55a2b1 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.h +++ b/Code/Tools/AssetProcessor/AssetBuilder/AssetBuilderInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt b/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt index e153c9b5fd..c9d149ef6c 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt +++ b/Code/Tools/AssetProcessor/AssetBuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/AssetBuilderApplication_linux.cpp b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/AssetBuilderApplication_linux.cpp index d907642600..6111d146ba 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/AssetBuilderApplication_linux.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/AssetBuilderApplication_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/asset_builder_linux_files.cmake b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/asset_builder_linux_files.cmake index 6a3c2abeab..7b61e81be4 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/asset_builder_linux_files.cmake +++ b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Linux/asset_builder_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/AssetBuilderApplication_mac.cpp b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/AssetBuilderApplication_mac.cpp index d907642600..6111d146ba 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/AssetBuilderApplication_mac.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/AssetBuilderApplication_mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/asset_builder_mac_files.cmake b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/asset_builder_mac_files.cmake index ca6d325dcf..5f359f1618 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/asset_builder_mac_files.cmake +++ b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Mac/asset_builder_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/AssetBuilderApplication_windows.cpp b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/AssetBuilderApplication_windows.cpp index b5e5fef3a7..8f4ddf4c4e 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/AssetBuilderApplication_windows.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/AssetBuilderApplication_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/asset_builder_windows_files.cmake b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/asset_builder_windows_files.cmake index 102642cff0..810a86f3ba 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/asset_builder_windows_files.cmake +++ b/Code/Tools/AssetProcessor/AssetBuilder/Platform/Windows/asset_builder_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/AssetBuilder/Tests/AssetBuilderApplicationTests.cpp b/Code/Tools/AssetProcessor/AssetBuilder/Tests/AssetBuilderApplicationTests.cpp index ecc7cfdda3..1eafa7c085 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/Tests/AssetBuilderApplicationTests.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/Tests/AssetBuilderApplicationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.cpp b/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.cpp index 0a94883b31..3369066495 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.h b/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.h index 4d38759ef0..c98be70256 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.h +++ b/Code/Tools/AssetProcessor/AssetBuilder/TraceMessageHook.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_darwin_files.cmake b/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_darwin_files.cmake index 136b8da031..73559e1a73 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_darwin_files.cmake +++ b/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_darwin_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_files.cmake b/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_files.cmake index 83a40364f8..107b790520 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_files.cmake +++ b/Code/Tools/AssetProcessor/AssetBuilder/asset_builder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/AssetBuilder/main.cpp b/Code/Tools/AssetProcessor/AssetBuilder/main.cpp index 188a2c6073..3e4f1b6b52 100644 --- a/Code/Tools/AssetProcessor/AssetBuilder/main.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilder/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderBusses.h b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderBusses.h index 208a8cb1be..bb5b17ee0d 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderBusses.h +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderBusses.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderEBusHelper.h b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderEBusHelper.h index 06434e6879..1f480d6e55 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderEBusHelper.h +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderEBusHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp index 869215ec00..9da09c119c 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h index ac36700f99..f1fe3ae901 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/AssetBuilderSDK.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp index 1b8fb16f57..bbe1608db0 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.h b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.h index 4fa42e4d9c..6cebabdb72 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.h +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/AssetBuilderSDK/SerializationDependencies.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/CMakeLists.txt b/Code/Tools/AssetProcessor/AssetBuilderSDK/CMakeLists.txt index cba64b830e..2e0e92af2a 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/CMakeLists.txt +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/AssetBuilderSDK/assetbuilder_files.cmake b/Code/Tools/AssetProcessor/AssetBuilderSDK/assetbuilder_files.cmake index 9753350361..7a3cc831ec 100644 --- a/Code/Tools/AssetProcessor/AssetBuilderSDK/assetbuilder_files.cmake +++ b/Code/Tools/AssetProcessor/AssetBuilderSDK/assetbuilder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/CMakeLists.txt b/Code/Tools/AssetProcessor/CMakeLists.txt index fa6f63e3a8..2e6d3cb1b5 100644 --- a/Code/Tools/AssetProcessor/CMakeLists.txt +++ b/Code/Tools/AssetProcessor/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Linux.h b/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Linux.h index 9ae9b82ae2..a26538e661 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Linux.h +++ b/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Platform.h b/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Platform.h index 54a6ebf1b9..f4d38978ee 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Platform.h +++ b/Code/Tools/AssetProcessor/Platform/Linux/AssetProcessor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_gui_linux_files.cmake b/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_gui_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_gui_linux_files.cmake +++ b/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_gui_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux.cmake b/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux.cmake +++ b/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux_files.cmake b/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux_files.cmake index fefcb63b8b..4e529f1e16 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux_files.cmake +++ b/Code/Tools/AssetProcessor/Platform/Linux/assetprocessor_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp b/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp index 6f976b160a..c2a6774116 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp +++ b/Code/Tools/AssetProcessor/Platform/Linux/native/FileWatcher/FileWatcher_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Linux/native/resource.h b/Code/Tools/AssetProcessor/Platform/Linux/native/resource.h index 8cd7c2bc49..3e58e34b39 100644 --- a/Code/Tools/AssetProcessor/Platform/Linux/native/resource.h +++ b/Code/Tools/AssetProcessor/Platform/Linux/native/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Mac.h b/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Mac.h index e2e36b1233..e9269e79ac 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Mac.h +++ b/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Platform.h b/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Platform.h index 9a34e0a48c..87a42bfe1a 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Platform.h +++ b/Code/Tools/AssetProcessor/Platform/Mac/AssetProcessor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_gui_mac_files.cmake b/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_gui_mac_files.cmake index 382b3138cc..0713de3200 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_gui_mac_files.cmake +++ b/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_gui_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac.cmake b/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac.cmake index 64bcc75baf..da749112dd 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac.cmake +++ b/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac_files.cmake b/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac_files.cmake index 7acdbb2246..0fbd903b8c 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac_files.cmake +++ b/Code/Tools/AssetProcessor/Platform/Mac/assetprocessor_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_macos.cpp b/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_macos.cpp index c873d2fdfb..81a19ce98c 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_macos.cpp +++ b/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_macos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_win.cpp b/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_win.cpp index 96844578b7..b0517f27a4 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_win.cpp +++ b/Code/Tools/AssetProcessor/Platform/Mac/native/FileWatcher/FileWatcher_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Mac/native/resource.h b/Code/Tools/AssetProcessor/Platform/Mac/native/resource.h index 8cd7c2bc49..3e58e34b39 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/native/resource.h +++ b/Code/Tools/AssetProcessor/Platform/Mac/native/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.h b/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.h index 16ef8b8dc5..23380d63c1 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.h +++ b/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.mm b/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.mm index 5c76b3e1e6..96820e6305 100644 --- a/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.mm +++ b/Code/Tools/AssetProcessor/Platform/Mac/native/utilities/MacDockIconHandler.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Platform.h b/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Platform.h index 4ca72b8f27..c8fccd156b 100644 --- a/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Platform.h +++ b/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Windows.h b/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Windows.h index 2daf4e2bfc..d29ec9ae20 100644 --- a/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Windows.h +++ b/Code/Tools/AssetProcessor/Platform/Windows/AssetProcessor_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_gui_windows_files.cmake b/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_gui_windows_files.cmake index 8eef0b6148..8edeb2bfa8 100644 --- a/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_gui_windows_files.cmake +++ b/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_gui_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows.cmake b/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows.cmake +++ b/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows_files.cmake b/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows_files.cmake index cb00bca797..53724bf052 100644 --- a/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows_files.cmake +++ b/Code/Tools/AssetProcessor/Platform/Windows/assetprocessor_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/Platform/Windows/native/FileWatcher/FileWatcher_win.cpp b/Code/Tools/AssetProcessor/Platform/Windows/native/FileWatcher/FileWatcher_win.cpp index 96844578b7..b0517f27a4 100644 --- a/Code/Tools/AssetProcessor/Platform/Windows/native/FileWatcher/FileWatcher_win.cpp +++ b/Code/Tools/AssetProcessor/Platform/Windows/native/FileWatcher/FileWatcher_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/Platform/Windows/native/resource.h b/Code/Tools/AssetProcessor/Platform/Windows/native/resource.h index 8cd7c2bc49..3e58e34b39 100644 --- a/Code/Tools/AssetProcessor/Platform/Windows/native/resource.h +++ b/Code/Tools/AssetProcessor/Platform/Windows/native/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/assetprocessor_batch_files.cmake b/Code/Tools/AssetProcessor/assetprocessor_batch_files.cmake index 267edac4b1..3d1a8a9065 100644 --- a/Code/Tools/AssetProcessor/assetprocessor_batch_files.cmake +++ b/Code/Tools/AssetProcessor/assetprocessor_batch_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/assetprocessor_gui_files.cmake b/Code/Tools/AssetProcessor/assetprocessor_gui_files.cmake index 4ea184edda..cdc089c321 100644 --- a/Code/Tools/AssetProcessor/assetprocessor_gui_files.cmake +++ b/Code/Tools/AssetProcessor/assetprocessor_gui_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/assetprocessor_static_batch_files.cmake b/Code/Tools/AssetProcessor/assetprocessor_static_batch_files.cmake index 28fa0a9784..de4d799b6a 100644 --- a/Code/Tools/AssetProcessor/assetprocessor_static_batch_files.cmake +++ b/Code/Tools/AssetProcessor/assetprocessor_static_batch_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake b/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake index fabb8119b9..589eaf8f8f 100644 --- a/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake +++ b/Code/Tools/AssetProcessor/assetprocessor_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake b/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake index 84959654fe..b7e504ee6e 100644 --- a/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake +++ b/Code/Tools/AssetProcessor/assetprocessor_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp b/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp index b218678dbe..3a334d2065 100644 --- a/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp +++ b/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.h b/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.h index 09634ade07..642aba511e 100644 --- a/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.h +++ b/Code/Tools/AssetProcessor/native/AssetDatabase/AssetDatabase.h @@ -2,7 +2,7 @@ #define ASSETPROCESSOR_ASSETDATABASE_H /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.cpp b/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.cpp index c0d6159a8b..09aa9e475c 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.h b/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.h index eac5cd0ff0..ba0cef563b 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/AssetCatalog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/AssetData.h b/Code/Tools/AssetProcessor/native/AssetManager/AssetData.h index 8b1879c44c..e7713fce1a 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/AssetData.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/AssetData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.cpp b/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.cpp index 59a96fcee8..3a1d2c209e 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h b/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h index e76c56efe2..bea01b6462 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/AssetRequestHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.cpp b/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.cpp index 2245416be6..1b03d09f95 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.h b/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.h index 6ef5c4eb71..c9d4d08148 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/ControlRequestHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.cpp b/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.cpp index 66faded3bc..ccdbcc2a8e 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.h b/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.h index 6036089a43..32b3a12e86 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/FileStateCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.cpp b/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.cpp index fb56accc22..36b789b2e2 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.h b/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.h index 408d080140..920f52c817 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/PathDependencyManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp b/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp index 014ffc677a..1d411026b9 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.h b/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.h index 2195284ffe..6c4904f104 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/SourceFileRelocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp b/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp index 5b107557ce..91abc032f2 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.h b/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.h index d6a121069c..93a5dedc5e 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetProcessorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.cpp b/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.cpp index affc471053..09b1f3153f 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.h b/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.h index 8402f98187..53e9e9b963 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetScanFolderInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.cpp b/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.cpp index d338aa68ae..26399196e4 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.h b/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.h index 377f6b3b37..91253d90b9 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetScanner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.cpp b/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.cpp index d7767f82f5..cb66d107dc 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.h b/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.h index 028a023cba..78ee18373a 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.h +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetScannerWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetManager/assetdata.cpp b/Code/Tools/AssetProcessor/native/AssetManager/assetdata.cpp index 9169691ed1..9dc0633649 100644 --- a/Code/Tools/AssetProcessor/native/AssetManager/assetdata.cpp +++ b/Code/Tools/AssetProcessor/native/AssetManager/assetdata.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetProcessorBatchBuildTarget.cpp b/Code/Tools/AssetProcessor/native/AssetProcessorBatchBuildTarget.cpp index 6d75bac7ec..6c6d681813 100644 --- a/Code/Tools/AssetProcessor/native/AssetProcessorBatchBuildTarget.cpp +++ b/Code/Tools/AssetProcessor/native/AssetProcessorBatchBuildTarget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/AssetProcessorBuildTarget.cpp b/Code/Tools/AssetProcessor/native/AssetProcessorBuildTarget.cpp index e29ccc42db..2dceb34c2e 100644 --- a/Code/Tools/AssetProcessor/native/AssetProcessorBuildTarget.cpp +++ b/Code/Tools/AssetProcessor/native/AssetProcessorBuildTarget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.cpp b/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.cpp index 47c7e8c94c..c1ae2f60c0 100644 --- a/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.cpp +++ b/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.h b/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.h index 66053c349b..f13fc44f34 100644 --- a/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.h +++ b/Code/Tools/AssetProcessor/native/FileProcessor/FileProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/FileServer/fileServer.cpp b/Code/Tools/AssetProcessor/native/FileServer/fileServer.cpp index 6c4e2ed74b..573948542c 100644 --- a/Code/Tools/AssetProcessor/native/FileServer/fileServer.cpp +++ b/Code/Tools/AssetProcessor/native/FileServer/fileServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/FileServer/fileServer.h b/Code/Tools/AssetProcessor/native/FileServer/fileServer.h index ecfad9cd66..f7b0b805cc 100644 --- a/Code/Tools/AssetProcessor/native/FileServer/fileServer.h +++ b/Code/Tools/AssetProcessor/native/FileServer/fileServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.cpp b/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.cpp index 79542d42b2..5fc6ce6ac0 100644 --- a/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.cpp +++ b/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.h b/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.h index e513836fe4..950544e2eb 100644 --- a/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.h +++ b/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcherAPI.h b/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcherAPI.h index 7e63eefde4..abc64114b8 100644 --- a/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcherAPI.h +++ b/Code/Tools/AssetProcessor/native/FileWatcher/FileWatcherAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp b/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp index 20dc9990f1..87bb0dfc24 100644 --- a/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp +++ b/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.h b/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.h index 7e102b41b6..e9c9282413 100644 --- a/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.h +++ b/Code/Tools/AssetProcessor/native/InternalBuilders/SettingsRegistryBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/assetprocessor.h b/Code/Tools/AssetProcessor/native/assetprocessor.h index 404ddce9ca..1ffbb0dde8 100644 --- a/Code/Tools/AssetProcessor/native/assetprocessor.h +++ b/Code/Tools/AssetProcessor/native/assetprocessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/connection/connection.cpp b/Code/Tools/AssetProcessor/native/connection/connection.cpp index 6e91aac61b..bbd984344f 100644 --- a/Code/Tools/AssetProcessor/native/connection/connection.cpp +++ b/Code/Tools/AssetProcessor/native/connection/connection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/connection/connection.h b/Code/Tools/AssetProcessor/native/connection/connection.h index d86f7d6791..34f78deec6 100644 --- a/Code/Tools/AssetProcessor/native/connection/connection.h +++ b/Code/Tools/AssetProcessor/native/connection/connection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/connection/connectionManager.cpp b/Code/Tools/AssetProcessor/native/connection/connectionManager.cpp index 2f9c2169ed..c0b16af722 100644 --- a/Code/Tools/AssetProcessor/native/connection/connectionManager.cpp +++ b/Code/Tools/AssetProcessor/native/connection/connectionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/connection/connectionManager.h b/Code/Tools/AssetProcessor/native/connection/connectionManager.h index 1ce8cf2d1c..ca876d07bd 100644 --- a/Code/Tools/AssetProcessor/native/connection/connectionManager.h +++ b/Code/Tools/AssetProcessor/native/connection/connectionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/connection/connectionMessages.h b/Code/Tools/AssetProcessor/native/connection/connectionMessages.h index 2cdff5634b..0718b1d15b 100644 --- a/Code/Tools/AssetProcessor/native/connection/connectionMessages.h +++ b/Code/Tools/AssetProcessor/native/connection/connectionMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/connection/connectionworker.cpp b/Code/Tools/AssetProcessor/native/connection/connectionworker.cpp index 12c584e4ce..01ffbdffcd 100644 --- a/Code/Tools/AssetProcessor/native/connection/connectionworker.cpp +++ b/Code/Tools/AssetProcessor/native/connection/connectionworker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/connection/connectionworker.h b/Code/Tools/AssetProcessor/native/connection/connectionworker.h index 48962b8900..6ed4049dba 100644 --- a/Code/Tools/AssetProcessor/native/connection/connectionworker.h +++ b/Code/Tools/AssetProcessor/native/connection/connectionworker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/main_batch.cpp b/Code/Tools/AssetProcessor/native/main_batch.cpp index c2ed9d5bfb..945119daae 100644 --- a/Code/Tools/AssetProcessor/native/main_batch.cpp +++ b/Code/Tools/AssetProcessor/native/main_batch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/main_gui.cpp b/Code/Tools/AssetProcessor/native/main_gui.cpp index d8a6b44a04..537270e97c 100644 --- a/Code/Tools/AssetProcessor/native/main_gui.cpp +++ b/Code/Tools/AssetProcessor/native/main_gui.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/precompiled.h b/Code/Tools/AssetProcessor/native/precompiled.h index 52ba500d07..3b4f041458 100644 --- a/Code/Tools/AssetProcessor/native/precompiled.h +++ b/Code/Tools/AssetProcessor/native/precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.cpp index 79a104bc29..44e9fb9920 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.h b/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.h index d9f4f4b7bb..d19c7fc0f6 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/JobsModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.cpp index e54603c400..8f342776c9 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.h b/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.h index 5f3c118784..040f72f772 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.cpp index 3d04560ba7..6187ba606c 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.h b/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.h index d3428217a6..cdebd08e14 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.cpp index be0fbdffbd..3de4d15325 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.h b/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.h index 2e31d13a1c..f1c0bd170e 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCJobSortFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.cpp index aa9993c26e..b44a5fd3aa 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.h b/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.h index a63598f9cf..f3a942eff2 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/RCQueueSortModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.cpp index 4c6446d470..581b9c70ac 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.h b/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.h index cace90a0a2..bc81774f6f 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rccontroller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp index f31a7d6380..b65ed10212 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.h b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.h index 0a5bee43eb..b84cfa4d2d 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp index 72aa44e16d..63dff8d914 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.h b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.h index 57f6c26562..ba4b8be688 100644 --- a/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.h +++ b/Code/Tools/AssetProcessor/native/resourcecompiler/rcjoblistmodel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.cpp b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.cpp index e660c12a71..6fb83ea861 100644 --- a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.cpp +++ b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.h b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.h index 8d13b8007b..96013d435a 100644 --- a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.h +++ b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerMessages.h b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerMessages.h index 05c8ced803..243a19fe10 100644 --- a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerMessages.h +++ b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.cpp b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.cpp index 23eb0d0224..36971d4dfb 100644 --- a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.cpp +++ b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.h b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.h index 05d74e6cc4..660f01fbba 100644 --- a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.h +++ b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.cpp b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.cpp index 7ad5440d3b..a9849b3444 100644 --- a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.cpp +++ b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.h b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.h index 86ccf008ca..c49ffdf57e 100644 --- a/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.h +++ b/Code/Tools/AssetProcessor/native/shadercompiler/shadercompilerjob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/AssetCatalog/AssetCatalogUnitTests.cpp b/Code/Tools/AssetProcessor/native/tests/AssetCatalog/AssetCatalogUnitTests.cpp index 790948fd79..de6e65b416 100644 --- a/Code/Tools/AssetProcessor/native/tests/AssetCatalog/AssetCatalogUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/AssetCatalog/AssetCatalogUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/AssetProcessorMessagesTests.cpp b/Code/Tools/AssetProcessor/native/tests/AssetProcessorMessagesTests.cpp index cc22347428..aa4d5539b7 100644 --- a/Code/Tools/AssetProcessor/native/tests/AssetProcessorMessagesTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/AssetProcessorMessagesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp index 1cab7e3fe4..8c39c37439 100644 --- a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.h b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.h index a14f852675..24a409fe3b 100644 --- a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.h +++ b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/BaseAssetProcessorTest.h b/Code/Tools/AssetProcessor/native/tests/BaseAssetProcessorTest.h index c4807f24f2..629763474d 100644 --- a/Code/Tools/AssetProcessor/native/tests/BaseAssetProcessorTest.h +++ b/Code/Tools/AssetProcessor/native/tests/BaseAssetProcessorTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/BuilderConfiguration/BuilderConfigurationTests.cpp b/Code/Tools/AssetProcessor/native/tests/BuilderConfiguration/BuilderConfigurationTests.cpp index 0dd8ba4ff2..38ef040be2 100644 --- a/Code/Tools/AssetProcessor/native/tests/BuilderConfiguration/BuilderConfigurationTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/BuilderConfiguration/BuilderConfigurationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.cpp b/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.cpp index 2f27890c22..b3a52fca7b 100644 --- a/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.h b/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.h index 25e89c0df0..5db09a82f6 100644 --- a/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.h +++ b/Code/Tools/AssetProcessor/native/tests/FileProcessor/FileProcessorTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.cpp b/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.cpp index 0a1670de5b..367dfa9678 100644 --- a/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.h b/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.h index 0c54edd974..3eb22b50a2 100644 --- a/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.h +++ b/Code/Tools/AssetProcessor/native/tests/FileStateCache/FileStateCacheTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/InternalBuilders/SettingsRegistryBuilderTests.cpp b/Code/Tools/AssetProcessor/native/tests/InternalBuilders/SettingsRegistryBuilderTests.cpp index b9d999958d..e54da7458f 100644 --- a/Code/Tools/AssetProcessor/native/tests/InternalBuilders/SettingsRegistryBuilderTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/InternalBuilders/SettingsRegistryBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/MissingDependencyScannerTests.cpp b/Code/Tools/AssetProcessor/native/tests/MissingDependencyScannerTests.cpp index 94b331032e..89c2ec52ac 100644 --- a/Code/Tools/AssetProcessor/native/tests/MissingDependencyScannerTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/MissingDependencyScannerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/PathDependencyManagerTests.cpp b/Code/Tools/AssetProcessor/native/tests/PathDependencyManagerTests.cpp index b3d5af502a..2d0106f887 100644 --- a/Code/Tools/AssetProcessor/native/tests/PathDependencyManagerTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/PathDependencyManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/SourceFileRelocatorTests.cpp b/Code/Tools/AssetProcessor/native/tests/SourceFileRelocatorTests.cpp index e451047b6d..5629241250 100644 --- a/Code/Tools/AssetProcessor/native/tests/SourceFileRelocatorTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/SourceFileRelocatorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/AssetBuilderSDKBehaviorTests.cpp b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/AssetBuilderSDKBehaviorTests.cpp index fda006f77b..107bf204bf 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/AssetBuilderSDKBehaviorTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/AssetBuilderSDKBehaviorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/SerializationDependenciesTests.cpp b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/SerializationDependenciesTests.cpp index e9a39bed47..f8c4d61ac9 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/SerializationDependenciesTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/SerializationDependenciesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.cpp b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.cpp index ec65e90d7a..cd846b22c6 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.h b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.h index 4b1d504cdf..8c2364da60 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.h +++ b/Code/Tools/AssetProcessor/native/tests/assetBuilderSDK/assetBuilderSDKTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetdatabase/AssetDatabaseTest.cpp b/Code/Tools/AssetProcessor/native/tests/assetdatabase/AssetDatabaseTest.cpp index 0a9316f7e3..1a9779f853 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetdatabase/AssetDatabaseTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/assetdatabase/AssetDatabaseTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp b/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp index e00a9c3513..4e98a1a259 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.h b/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.h index f2c91e4856..c86973eaf7 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.h +++ b/Code/Tools/AssetProcessor/native/tests/assetmanager/AssetProcessorManagerTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.cpp b/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.cpp index be3ca7841f..0e5a1b9556 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.h b/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.h index 0e53d22358..59ace7fd2b 100644 --- a/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.h +++ b/Code/Tools/AssetProcessor/native/tests/assetscanner/AssetScannerTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.cpp b/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.cpp index f34cab7005..1d0821f30f 100644 --- a/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.cpp +++ b/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.h b/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.h index 5a2971e613..274587c1a1 100644 --- a/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.h +++ b/Code/Tools/AssetProcessor/native/tests/platformconfiguration/platformconfigurationtests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp index 0245e0e9e8..00b75168db 100644 --- a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.h b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.h index 647e0cf688..1dcacdb386 100644 --- a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.h +++ b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCBuilderTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.cpp b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.cpp index 15138095b0..2af884726c 100644 --- a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.h b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.h index ab6bf85160..d9d15b64ee 100644 --- a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.h +++ b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCControllerTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.cpp b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.cpp index 3cd7c34a60..8a9c65573b 100644 --- a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.h b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.h index 0ab332865e..a022f6fd44 100644 --- a/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.h +++ b/Code/Tools/AssetProcessor/native/tests/resourcecompiler/RCJobTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/test_main.cpp b/Code/Tools/AssetProcessor/native/tests/test_main.cpp index 1120104df3..2fd78b7751 100644 --- a/Code/Tools/AssetProcessor/native/tests/test_main.cpp +++ b/Code/Tools/AssetProcessor/native/tests/test_main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.cpp b/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.cpp index 85bdc5b53f..66993eec3a 100644 --- a/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.h b/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.h index 752c5d8a2c..5f99bfae07 100644 --- a/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.h +++ b/Code/Tools/AssetProcessor/native/tests/utilities/JobModelTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/tests/utilities/assetUtilsTest.cpp b/Code/Tools/AssetProcessor/native/tests/utilities/assetUtilsTest.cpp index ea1cf2ce6f..327f860a61 100644 --- a/Code/Tools/AssetProcessor/native/tests/utilities/assetUtilsTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/utilities/assetUtilsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.cpp b/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.cpp index e30924b4de..c2113714b1 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.h b/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.h index c2a25941b4..d54ff017f1 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.h +++ b/Code/Tools/AssetProcessor/native/ui/AssetDetailsPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.cpp b/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.cpp index 1737449cba..83f01ff239 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.h b/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.h index 52be99561e..0cc3629221 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.h +++ b/Code/Tools/AssetProcessor/native/ui/AssetTreeFilterModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.cpp b/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.cpp index e69d9f3818..25b27f9230 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.cpp +++ b/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.h b/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.h index 242867c42d..396a9685e6 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.h +++ b/Code/Tools/AssetProcessor/native/ui/AssetTreeItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.cpp b/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.cpp index fbe2878ec2..baec0f9fd1 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.h b/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.h index e34bbcea01..874169f8c6 100644 --- a/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.h +++ b/Code/Tools/AssetProcessor/native/ui/AssetTreeModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.cpp b/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.cpp index 53cd889ce0..79ba21e0a9 100644 --- a/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.cpp +++ b/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.h b/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.h index d835cbeac7..f5f77a97b3 100644 --- a/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.h +++ b/Code/Tools/AssetProcessor/native/ui/ConnectionEditDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/GoToButton.cpp b/Code/Tools/AssetProcessor/native/ui/GoToButton.cpp index 6bc9ea303c..a66d45bcee 100644 --- a/Code/Tools/AssetProcessor/native/ui/GoToButton.cpp +++ b/Code/Tools/AssetProcessor/native/ui/GoToButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/GoToButton.h b/Code/Tools/AssetProcessor/native/ui/GoToButton.h index 13029751a6..86b19c00ed 100644 --- a/Code/Tools/AssetProcessor/native/ui/GoToButton.h +++ b/Code/Tools/AssetProcessor/native/ui/GoToButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.cpp b/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.cpp index 90766bb9fa..60a3f44376 100644 --- a/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.cpp +++ b/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.h b/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.h index aa08ae81ba..2356fa2f06 100644 --- a/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.h +++ b/Code/Tools/AssetProcessor/native/ui/JobTreeViewItemDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/MainWindow.cpp b/Code/Tools/AssetProcessor/native/ui/MainWindow.cpp index af5b16a2a2..e208454d29 100644 --- a/Code/Tools/AssetProcessor/native/ui/MainWindow.cpp +++ b/Code/Tools/AssetProcessor/native/ui/MainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/MainWindow.h b/Code/Tools/AssetProcessor/native/ui/MainWindow.h index 3f770d9dbb..d2cc4769bb 100644 --- a/Code/Tools/AssetProcessor/native/ui/MainWindow.h +++ b/Code/Tools/AssetProcessor/native/ui/MainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.cpp b/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.cpp index d5ec717764..a2db2cbe43 100644 --- a/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.h b/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.h index 0220789e20..1b499761e9 100644 --- a/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.h +++ b/Code/Tools/AssetProcessor/native/ui/ProductAssetDetailsPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.cpp b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.cpp index 1c02ef92e5..3a2fb5fc07 100644 --- a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.cpp +++ b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.h b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.h index 46da2123fc..23fa6e6c84 100644 --- a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.h +++ b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeItemData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.cpp b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.cpp index 6c936420f4..474c2e4582 100644 --- a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.h b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.h index cf59705cf9..f95961ac57 100644 --- a/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.h +++ b/Code/Tools/AssetProcessor/native/ui/ProductAssetTreeModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.cpp b/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.cpp index e90f05209f..7adb767a21 100644 --- a/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.h b/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.h index 5f430d9e54..439651fc9b 100644 --- a/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.h +++ b/Code/Tools/AssetProcessor/native/ui/SourceAssetDetailsPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.cpp b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.cpp index 9a451aeb25..bc3641120c 100644 --- a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.cpp +++ b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.h b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.h index 1a8823b673..9598486905 100644 --- a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.h +++ b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeItemData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp index 3b0f197bdb..52130e8ba7 100644 --- a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp +++ b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.h b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.h index 6fd6a47b08..ed9f497b27 100644 --- a/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.h +++ b/Code/Tools/AssetProcessor/native/ui/SourceAssetTreeModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qss b/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qss index e428363a7d..1e787ad052 100644 --- a/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qss +++ b/Code/Tools/AssetProcessor/native/ui/style/AssetProcessor.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/style/AssetsTab.qss b/Code/Tools/AssetProcessor/native/ui/style/AssetsTab.qss index 023198251d..1981c84aac 100644 --- a/Code/Tools/AssetProcessor/native/ui/style/AssetsTab.qss +++ b/Code/Tools/AssetProcessor/native/ui/style/AssetsTab.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/ui/style/LogsTab.qss b/Code/Tools/AssetProcessor/native/ui/style/LogsTab.qss index be10bbe96e..9403a6dd60 100644 --- a/Code/Tools/AssetProcessor/native/ui/style/LogsTab.qss +++ b/Code/Tools/AssetProcessor/native/ui/style/LogsTab.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp index 3f44fc59cd..976182a422 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.h index 61f6a1e3f5..81c19fb6e9 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/AssetProcessingStateDataUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.cpp index 99f496b839..1919fd73ba 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.h index d5a5e25da3..59166353a4 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorManagerUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.cpp index ad73821c2d..49736c0563 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.h index 31f56f9a83..f61de7e2f5 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/AssetProcessorServerUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.cpp index 73683081b3..ced8ccc408 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.h index 212a0d06aa..9ee7b115ad 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/AssetRequestHandlerUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.cpp index 2e2e4a4323..5e3ea205dd 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.h index 967c3b49a4..6881af90c0 100644 --- a/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/AssetScannerUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/BuilderSDKUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/BuilderSDKUnitTests.cpp index 9dd945ae0a..cce7e0e783 100644 --- a/Code/Tools/AssetProcessor/native/unittests/BuilderSDKUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/BuilderSDKUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.cpp index e15391898c..4a8e61ea28 100644 --- a/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.h index 8c981d8dcc..ac99af3178 100644 --- a/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/ConnectionManagerUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.cpp index ed244ad43c..200354e84c 100644 --- a/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.h index 42c62ff80c..d897d61a23 100644 --- a/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/ConnectionUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.cpp index 9f8e8484a8..2ffe6a7996 100644 --- a/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.h index b6d2d1b534..47f181b05d 100644 --- a/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/FileWatcherUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.cpp b/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.cpp index 3cd7f14237..0333420ebb 100644 --- a/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.h b/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.h index 9486cdb84b..423c393a9b 100644 --- a/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.h +++ b/Code/Tools/AssetProcessor/native/unittests/MockApplicationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/MockConnectionHandler.h b/Code/Tools/AssetProcessor/native/unittests/MockConnectionHandler.h index 515a69373d..27a7ca8280 100644 --- a/Code/Tools/AssetProcessor/native/unittests/MockConnectionHandler.h +++ b/Code/Tools/AssetProcessor/native/unittests/MockConnectionHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.cpp index f1b3c8c37a..bae7bd7473 100644 --- a/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.h index cfc0e8b69d..cf22fed6d3 100644 --- a/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/PlatformConfigurationUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp index 15868a9941..c20dc92e8c 100644 --- a/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.h index 65675c3aff..eaa3a76597 100644 --- a/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/RCcontrollerUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.cpp index 544ffd8066..62de53773e 100644 --- a/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.h index e133ec98c3..3ae891681f 100644 --- a/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/ShaderCompilerUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.cpp b/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.cpp index 40fbd3eaa8..90d6125212 100644 --- a/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.h b/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.h index 525b46f5d9..9c76a35370 100644 --- a/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.h +++ b/Code/Tools/AssetProcessor/native/unittests/UnitTestRunner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp b/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp index de2e111d3d..7657930a37 100644 --- a/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp +++ b/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.h b/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.h index a402453e2a..6a60116ab7 100644 --- a/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.h +++ b/Code/Tools/AssetProcessor/native/unittests/UtilitiesUnitTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp index e3b6377023..33f5f43962 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.h b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.h index f5d3c61474..6a30cbb919 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.h +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerAPI.h b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerAPI.h index b5e90421bc..4da75565d9 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerAPI.h +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp index c9c6b124c6..7ac957c6b7 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.h b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.h index c76405e6cd..be730d2eae 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.h +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManagerBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.cpp index 0a087cf1d2..e9933c354e 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.h b/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.h index c3950fab50..f5c9ac7938 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.h +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.cpp b/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.cpp index c7bc903d79..c459722b99 100644 --- a/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.h b/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.h index 1b4cde2780..4f9963b31d 100644 --- a/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.h +++ b/Code/Tools/AssetProcessor/native/utilities/AssetBuilderInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.cpp b/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.cpp index 3ed49c4961..3e77a494ea 100644 --- a/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.h b/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.h index 69c9e85fef..fecd53ca08 100644 --- a/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.h +++ b/Code/Tools/AssetProcessor/native/utilities/AssetServerHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/AssetUtilEBusHelper.h b/Code/Tools/AssetProcessor/native/utilities/AssetUtilEBusHelper.h index b9ed664ede..bfd394d9f6 100644 --- a/Code/Tools/AssetProcessor/native/utilities/AssetUtilEBusHelper.h +++ b/Code/Tools/AssetProcessor/native/utilities/AssetUtilEBusHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.cpp index 5ed950c8ad..337bcd39d1 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.h b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.h index 9275e329aa..598818f9ad 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.h +++ b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.cpp b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.cpp index 15ce9afa0b..df14422067 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.h b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.h index 7ed3768664..0c57d300dd 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.h +++ b/Code/Tools/AssetProcessor/native/utilities/BatchApplicationServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationBus.h b/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationBus.h index af7d2d1f69..c538df845a 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationBus.h +++ b/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.cpp index c532b3d8e0..fbf3b0001d 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.h b/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.h index 2cd60505bc..49bc04cfa6 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.h +++ b/Code/Tools/AssetProcessor/native/utilities/BuilderConfigurationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BuilderManager.cpp b/Code/Tools/AssetProcessor/native/utilities/BuilderManager.cpp index 08ae9b94eb..363fdf7d55 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BuilderManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/BuilderManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BuilderManager.h b/Code/Tools/AssetProcessor/native/utilities/BuilderManager.h index 5728e230c0..b1c5690bf1 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BuilderManager.h +++ b/Code/Tools/AssetProcessor/native/utilities/BuilderManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/BuilderManager.inl b/Code/Tools/AssetProcessor/native/utilities/BuilderManager.inl index a18389a1a9..2da985ca04 100644 --- a/Code/Tools/AssetProcessor/native/utilities/BuilderManager.inl +++ b/Code/Tools/AssetProcessor/native/utilities/BuilderManager.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp b/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp index 7e741684b5..c0c7ec76b6 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.h b/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.h index 717dd83f95..7a451f5263 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.h +++ b/Code/Tools/AssetProcessor/native/utilities/ByteArrayStream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.cpp b/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.cpp index fff526d6b9..981e04a100 100644 --- a/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.h b/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.h index 24bea5ec3f..ffd0d6cbf6 100644 --- a/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.h +++ b/Code/Tools/AssetProcessor/native/utilities/CommunicatorTracePrinter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp index dff571af44..01c2e21f28 100644 --- a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.h b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.h index 0ce84629cb..bb164ff2f6 100644 --- a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.h +++ b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.cpp b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.cpp index 9a98156989..737bb3b1e3 100644 --- a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.h b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.h index e1900ccc58..3aab0d9145 100644 --- a/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.h +++ b/Code/Tools/AssetProcessor/native/utilities/GUIApplicationServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.cpp b/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.cpp index e351acb53d..575b440fbb 100644 --- a/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.h b/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.h index c3b9207369..b3995b8e45 100644 --- a/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.h +++ b/Code/Tools/AssetProcessor/native/utilities/IniConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.cpp b/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.cpp index 2466c3dfee..e33b00d115 100644 --- a/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.h b/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.h index 5364b148d2..4239c0cc53 100644 --- a/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.h +++ b/Code/Tools/AssetProcessor/native/utilities/JobDiagnosticTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.cpp b/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.cpp index 8dd53f047f..850a3852a4 100644 --- a/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.h b/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.h index edce9fca4b..8a05e367cd 100644 --- a/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.h +++ b/Code/Tools/AssetProcessor/native/utilities/LineByLineDependencyScanner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/LogPanel.cpp b/Code/Tools/AssetProcessor/native/utilities/LogPanel.cpp index f1fd202469..c335404704 100644 --- a/Code/Tools/AssetProcessor/native/utilities/LogPanel.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/LogPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/LogPanel.h b/Code/Tools/AssetProcessor/native/utilities/LogPanel.h index e370b1aa3f..4933e58009 100644 --- a/Code/Tools/AssetProcessor/native/utilities/LogPanel.h +++ b/Code/Tools/AssetProcessor/native/utilities/LogPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.cpp b/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.cpp index 7f69974d19..a8aa5a6821 100644 --- a/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.h b/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.h index 3e05b809c3..e4206d64a7 100644 --- a/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.h +++ b/Code/Tools/AssetProcessor/native/utilities/MissingDependencyScanner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp b/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp index a7e172c7fc..9f89e89268 100644 --- a/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.h b/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.h index c8ea99fea8..a3a17d98b2 100644 --- a/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.h +++ b/Code/Tools/AssetProcessor/native/utilities/PlatformConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/PotentialDependencies.h b/Code/Tools/AssetProcessor/native/utilities/PotentialDependencies.h index 1905ac0f56..cf548f4c1b 100644 --- a/Code/Tools/AssetProcessor/native/utilities/PotentialDependencies.h +++ b/Code/Tools/AssetProcessor/native/utilities/PotentialDependencies.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/SpecializedDependencyScanner.h b/Code/Tools/AssetProcessor/native/utilities/SpecializedDependencyScanner.h index f990090c61..a31dbd3cf7 100644 --- a/Code/Tools/AssetProcessor/native/utilities/SpecializedDependencyScanner.h +++ b/Code/Tools/AssetProcessor/native/utilities/SpecializedDependencyScanner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.cpp b/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.cpp index ef88c36532..8c2a07613c 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.h b/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.h index 4598937757..ac9f49297a 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.h +++ b/Code/Tools/AssetProcessor/native/utilities/ThreadHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.cpp b/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.cpp index e0c2a44ff7..1f6f4eb4ec 100644 --- a/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.h b/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.h index d1f6bfe759..03f25f1099 100644 --- a/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.h +++ b/Code/Tools/AssetProcessor/native/utilities/UnitTestShaderCompilerServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp index 904e049c71..c241b52084 100644 --- a/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/assetUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/assetUtils.h b/Code/Tools/AssetProcessor/native/utilities/assetUtils.h index 0b829318b9..d6739fc544 100644 --- a/Code/Tools/AssetProcessor/native/utilities/assetUtils.h +++ b/Code/Tools/AssetProcessor/native/utilities/assetUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/windowscreen.cpp b/Code/Tools/AssetProcessor/native/utilities/windowscreen.cpp index 071d519c05..b549510dbe 100644 --- a/Code/Tools/AssetProcessor/native/utilities/windowscreen.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/windowscreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AssetProcessor/native/utilities/windowscreen.h b/Code/Tools/AssetProcessor/native/utilities/windowscreen.h index 486dfdfead..a687cd8b4d 100644 --- a/Code/Tools/AssetProcessor/native/utilities/windowscreen.h +++ b/Code/Tools/AssetProcessor/native/utilities/windowscreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/CMakeLists.txt b/Code/Tools/AzTestRunner/CMakeLists.txt index 40df8624a2..465d0f7ef8 100644 --- a/Code/Tools/AzTestRunner/CMakeLists.txt +++ b/Code/Tools/AzTestRunner/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Android/native_app_glue_include.c b/Code/Tools/AzTestRunner/Platform/Android/native_app_glue_include.c index 5a968aab31..1139b244f9 100644 --- a/Code/Tools/AzTestRunner/Platform/Android/native_app_glue_include.c +++ b/Code/Tools/AzTestRunner/Platform/Android/native_app_glue_include.c @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/Platform/Android/platform_android.cmake b/Code/Tools/AzTestRunner/Platform/Android/platform_android.cmake index 80ccce0b65..3e7cbc049c 100644 --- a/Code/Tools/AzTestRunner/Platform/Android/platform_android.cmake +++ b/Code/Tools/AzTestRunner/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp b/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp index 5142157f0d..14e68ab900 100644 --- a/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp +++ b/Code/Tools/AzTestRunner/Platform/Android/platform_android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/Platform/Android/platform_android_files.cmake b/Code/Tools/AzTestRunner/Platform/Android/platform_android_files.cmake index 06366bec50..3042d42652 100644 --- a/Code/Tools/AzTestRunner/Platform/Android/platform_android_files.cmake +++ b/Code/Tools/AzTestRunner/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Android/platform_traits_android.cmake b/Code/Tools/AzTestRunner/Platform/Android/platform_traits_android.cmake index 3aacde3802..da2c167142 100644 --- a/Code/Tools/AzTestRunner/Platform/Android/platform_traits_android.cmake +++ b/Code/Tools/AzTestRunner/Platform/Android/platform_traits_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Common/platform_host_main.cpp b/Code/Tools/AzTestRunner/Platform/Common/platform_host_main.cpp index be9c0d69f7..b64ab4407e 100644 --- a/Code/Tools/AzTestRunner/Platform/Common/platform_host_main.cpp +++ b/Code/Tools/AzTestRunner/Platform/Common/platform_host_main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/Platform/Common/platform_host_posix.cpp b/Code/Tools/AzTestRunner/Platform/Common/platform_host_posix.cpp index bacc29340a..e79c9c5ccf 100644 --- a/Code/Tools/AzTestRunner/Platform/Common/platform_host_posix.cpp +++ b/Code/Tools/AzTestRunner/Platform/Common/platform_host_posix.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/Platform/Linux/platform_linux.cmake b/Code/Tools/AzTestRunner/Platform/Linux/platform_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Tools/AzTestRunner/Platform/Linux/platform_linux.cmake +++ b/Code/Tools/AzTestRunner/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Linux/platform_linux_files.cmake b/Code/Tools/AzTestRunner/Platform/Linux/platform_linux_files.cmake index 607f877249..0989dfeea0 100644 --- a/Code/Tools/AzTestRunner/Platform/Linux/platform_linux_files.cmake +++ b/Code/Tools/AzTestRunner/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Linux/platform_traits_linux.cmake b/Code/Tools/AzTestRunner/Platform/Linux/platform_traits_linux.cmake index 666caa5855..6ea3b3d543 100644 --- a/Code/Tools/AzTestRunner/Platform/Linux/platform_traits_linux.cmake +++ b/Code/Tools/AzTestRunner/Platform/Linux/platform_traits_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Mac/platform_mac.cmake b/Code/Tools/AzTestRunner/Platform/Mac/platform_mac.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Tools/AzTestRunner/Platform/Mac/platform_mac.cmake +++ b/Code/Tools/AzTestRunner/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Mac/platform_mac_files.cmake b/Code/Tools/AzTestRunner/Platform/Mac/platform_mac_files.cmake index 607f877249..0989dfeea0 100644 --- a/Code/Tools/AzTestRunner/Platform/Mac/platform_mac_files.cmake +++ b/Code/Tools/AzTestRunner/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Mac/platform_traits_mac.cmake b/Code/Tools/AzTestRunner/Platform/Mac/platform_traits_mac.cmake index 666caa5855..6ea3b3d543 100644 --- a/Code/Tools/AzTestRunner/Platform/Mac/platform_traits_mac.cmake +++ b/Code/Tools/AzTestRunner/Platform/Mac/platform_traits_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Windows/platform_traits_windows.cmake b/Code/Tools/AzTestRunner/Platform/Windows/platform_traits_windows.cmake index 666caa5855..6ea3b3d543 100644 --- a/Code/Tools/AzTestRunner/Platform/Windows/platform_traits_windows.cmake +++ b/Code/Tools/AzTestRunner/Platform/Windows/platform_traits_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cmake b/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cmake +++ b/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cpp b/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cpp index 37fc2f1530..9b6091b303 100644 --- a/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cpp +++ b/Code/Tools/AzTestRunner/Platform/Windows/platform_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/Platform/Windows/platform_windows_files.cmake b/Code/Tools/AzTestRunner/Platform/Windows/platform_windows_files.cmake index a6021cf274..d0353b09e6 100644 --- a/Code/Tools/AzTestRunner/Platform/Windows/platform_windows_files.cmake +++ b/Code/Tools/AzTestRunner/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/iOS/Launcher_iOS.mm b/Code/Tools/AzTestRunner/Platform/iOS/Launcher_iOS.mm index f55ff9b4fc..2efefd54fd 100644 --- a/Code/Tools/AzTestRunner/Platform/iOS/Launcher_iOS.mm +++ b/Code/Tools/AzTestRunner/Platform/iOS/Launcher_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/Platform/iOS/TestLauncherTarget.mm b/Code/Tools/AzTestRunner/Platform/iOS/TestLauncherTarget.mm index e17b130147..b7b5b0dc37 100644 --- a/Code/Tools/AzTestRunner/Platform/iOS/TestLauncherTarget.mm +++ b/Code/Tools/AzTestRunner/Platform/iOS/TestLauncherTarget.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/Platform/iOS/platform_ios.cmake b/Code/Tools/AzTestRunner/Platform/iOS/platform_ios.cmake index 1870ad32be..8f0a229c14 100644 --- a/Code/Tools/AzTestRunner/Platform/iOS/platform_ios.cmake +++ b/Code/Tools/AzTestRunner/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/iOS/platform_ios_files.cmake b/Code/Tools/AzTestRunner/Platform/iOS/platform_ios_files.cmake index d4b2e46b74..7036c2e248 100644 --- a/Code/Tools/AzTestRunner/Platform/iOS/platform_ios_files.cmake +++ b/Code/Tools/AzTestRunner/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/Platform/iOS/platform_traits_ios.cmake b/Code/Tools/AzTestRunner/Platform/iOS/platform_traits_ios.cmake index 666caa5855..6ea3b3d543 100644 --- a/Code/Tools/AzTestRunner/Platform/iOS/platform_traits_ios.cmake +++ b/Code/Tools/AzTestRunner/Platform/iOS/platform_traits_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/aztestrunner_files.cmake b/Code/Tools/AzTestRunner/aztestrunner_files.cmake index 37f169f782..e9cce66175 100644 --- a/Code/Tools/AzTestRunner/aztestrunner_files.cmake +++ b/Code/Tools/AzTestRunner/aztestrunner_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/aztestrunner_test_files.cmake b/Code/Tools/AzTestRunner/aztestrunner_test_files.cmake index ee8357d070..5394ef0937 100644 --- a/Code/Tools/AzTestRunner/aztestrunner_test_files.cmake +++ b/Code/Tools/AzTestRunner/aztestrunner_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/AzTestRunner/src/aztestrunner.h b/Code/Tools/AzTestRunner/src/aztestrunner.h index 4ad0447838..9d21a13b2d 100644 --- a/Code/Tools/AzTestRunner/src/aztestrunner.h +++ b/Code/Tools/AzTestRunner/src/aztestrunner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/src/main.cpp b/Code/Tools/AzTestRunner/src/main.cpp index ab2682e60a..c6d887244f 100644 --- a/Code/Tools/AzTestRunner/src/main.cpp +++ b/Code/Tools/AzTestRunner/src/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/AzTestRunner/test/RunnerTest.cpp b/Code/Tools/AzTestRunner/test/RunnerTest.cpp index 6ea51058fa..759946ab07 100644 --- a/Code/Tools/AzTestRunner/test/RunnerTest.cpp +++ b/Code/Tools/AzTestRunner/test/RunnerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CMakeLists.txt b/Code/Tools/CMakeLists.txt index 171eba29b8..6c025a0543 100644 --- a/Code/Tools/CMakeLists.txt +++ b/Code/Tools/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/CMakeLists.txt b/Code/Tools/CrashHandler/CMakeLists.txt index d43960a42c..22d37b2c5d 100644 --- a/Code/Tools/CrashHandler/CMakeLists.txt +++ b/Code/Tools/CrashHandler/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Android.h b/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Android.h index 2ca908a12c..51d0ff7766 100644 --- a/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Android.h +++ b/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Platform.h b/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Platform.h index 346dc60b9b..df4a82dff5 100644 --- a/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Platform.h +++ b/Code/Tools/CrashHandler/Platform/Android/CrashHandler_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Android/PAL_android.cmake b/Code/Tools/CrashHandler/Platform/Android/PAL_android.cmake index 570a4d1592..0c07a18151 100644 --- a/Code/Tools/CrashHandler/Platform/Android/PAL_android.cmake +++ b/Code/Tools/CrashHandler/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Platform/CrashHandler_mac.cpp b/Code/Tools/CrashHandler/Platform/CrashHandler_mac.cpp index 72679fe065..e74311c24b 100644 --- a/Code/Tools/CrashHandler/Platform/CrashHandler_mac.cpp +++ b/Code/Tools/CrashHandler/Platform/CrashHandler_mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/CrashHandler_win.cpp b/Code/Tools/CrashHandler/Platform/CrashHandler_win.cpp index ffd9339a84..47841e1d04 100644 --- a/Code/Tools/CrashHandler/Platform/CrashHandler_win.cpp +++ b/Code/Tools/CrashHandler/Platform/CrashHandler_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Linux.h b/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Linux.h index 2ca908a12c..51d0ff7766 100644 --- a/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Linux.h +++ b/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Platform.h b/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Platform.h index 8b4e08d91d..b6c4bfd5b8 100644 --- a/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Platform.h +++ b/Code/Tools/CrashHandler/Platform/Linux/CrashHandler_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Linux/PAL_linux.cmake b/Code/Tools/CrashHandler/Platform/Linux/PAL_linux.cmake index 570a4d1592..0c07a18151 100644 --- a/Code/Tools/CrashHandler/Platform/Linux/PAL_linux.cmake +++ b/Code/Tools/CrashHandler/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Mac.h b/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Mac.h index 2ca908a12c..51d0ff7766 100644 --- a/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Mac.h +++ b/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Platform.h b/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Platform.h index c60b3bc385..e5afa2fd54 100644 --- a/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Platform.h +++ b/Code/Tools/CrashHandler/Platform/Mac/CrashHandler_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Mac/PAL_mac.cmake b/Code/Tools/CrashHandler/Platform/Mac/PAL_mac.cmake index 570a4d1592..0c07a18151 100644 --- a/Code/Tools/CrashHandler/Platform/Mac/PAL_mac.cmake +++ b/Code/Tools/CrashHandler/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Platform.h b/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Platform.h index d9724a4dc1..2ae9c33985 100644 --- a/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Platform.h +++ b/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Windows.h b/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Windows.h index c22879f4eb..3ffc1e77b9 100644 --- a/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Windows.h +++ b/Code/Tools/CrashHandler/Platform/Windows/CrashHandler_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/Windows/PAL_windows.cmake b/Code/Tools/CrashHandler/Platform/Windows/PAL_windows.cmake index 2ec4e2d13c..8360363c3d 100644 --- a/Code/Tools/CrashHandler/Platform/Windows/PAL_windows.cmake +++ b/Code/Tools/CrashHandler/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Platform/Windows/crash_handler_windows_files.cmake b/Code/Tools/CrashHandler/Platform/Windows/crash_handler_windows_files.cmake index 3097d796ee..16aff06747 100644 --- a/Code/Tools/CrashHandler/Platform/Windows/crash_handler_windows_files.cmake +++ b/Code/Tools/CrashHandler/Platform/Windows/crash_handler_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Platform/Windows/platform_windows_files.cmake b/Code/Tools/CrashHandler/Platform/Windows/platform_windows_files.cmake index f688b1f068..59251ada42 100644 --- a/Code/Tools/CrashHandler/Platform/Windows/platform_windows_files.cmake +++ b/Code/Tools/CrashHandler/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_Platform.h b/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_Platform.h index 1a3128bd22..71cdc8d4ff 100644 --- a/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_Platform.h +++ b/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_iOS.h b/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_iOS.h index 2ca908a12c..51d0ff7766 100644 --- a/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_iOS.h +++ b/Code/Tools/CrashHandler/Platform/iOS/CrashHandler_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Platform/iOS/PAL_ios.cmake b/Code/Tools/CrashHandler/Platform/iOS/PAL_ios.cmake index 570a4d1592..0c07a18151 100644 --- a/Code/Tools/CrashHandler/Platform/iOS/PAL_ios.cmake +++ b/Code/Tools/CrashHandler/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Shared/CrashHandler.cpp b/Code/Tools/CrashHandler/Shared/CrashHandler.cpp index 94e61fe933..bf675a6804 100644 --- a/Code/Tools/CrashHandler/Shared/CrashHandler.cpp +++ b/Code/Tools/CrashHandler/Shared/CrashHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Shared/CrashHandler.h b/Code/Tools/CrashHandler/Shared/CrashHandler.h index 1d490623c8..7237992362 100644 --- a/Code/Tools/CrashHandler/Shared/CrashHandler.h +++ b/Code/Tools/CrashHandler/Shared/CrashHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Support/CMakeLists.txt b/Code/Tools/CrashHandler/Support/CMakeLists.txt index 14b7d446cc..427a57b49e 100644 --- a/Code/Tools/CrashHandler/Support/CMakeLists.txt +++ b/Code/Tools/CrashHandler/Support/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Support/crash_handler_support_files.cmake b/Code/Tools/CrashHandler/Support/crash_handler_support_files.cmake index b30482cc9a..8c1bbeba7a 100644 --- a/Code/Tools/CrashHandler/Support/crash_handler_support_files.cmake +++ b/Code/Tools/CrashHandler/Support/crash_handler_support_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Support/include/CrashSupport.h b/Code/Tools/CrashHandler/Support/include/CrashSupport.h index 36b8da6fd8..f9364f211f 100644 --- a/Code/Tools/CrashHandler/Support/include/CrashSupport.h +++ b/Code/Tools/CrashHandler/Support/include/CrashSupport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Support/platform/Windows/crash_handler_support_windows_files.cmake b/Code/Tools/CrashHandler/Support/platform/Windows/crash_handler_support_windows_files.cmake index 72b8647371..b040998de6 100644 --- a/Code/Tools/CrashHandler/Support/platform/Windows/crash_handler_support_windows_files.cmake +++ b/Code/Tools/CrashHandler/Support/platform/Windows/crash_handler_support_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Support/platform/mac/CrashSupport_mac.cpp b/Code/Tools/CrashHandler/Support/platform/mac/CrashSupport_mac.cpp index 37ff1f6f93..cf037f087d 100644 --- a/Code/Tools/CrashHandler/Support/platform/mac/CrashSupport_mac.cpp +++ b/Code/Tools/CrashHandler/Support/platform/mac/CrashSupport_mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Support/platform/win/CrashSupport_win.cpp b/Code/Tools/CrashHandler/Support/platform/win/CrashSupport_win.cpp index cfa3f8cfbf..d169a870ab 100644 --- a/Code/Tools/CrashHandler/Support/platform/win/CrashSupport_win.cpp +++ b/Code/Tools/CrashHandler/Support/platform/win/CrashSupport_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Support/src/CrashSupport.cpp b/Code/Tools/CrashHandler/Support/src/CrashSupport.cpp index e19a706a5a..ef91b9a7e7 100644 --- a/Code/Tools/CrashHandler/Support/src/CrashSupport.cpp +++ b/Code/Tools/CrashHandler/Support/src/CrashSupport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/CMakeLists.txt b/Code/Tools/CrashHandler/Tools/CMakeLists.txt index 0fdd56762a..9d1fc46096 100644 --- a/Code/Tools/CrashHandler/Tools/CMakeLists.txt +++ b/Code/Tools/CrashHandler/Tools/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_handler_windows_files.cmake b/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_handler_windows_files.cmake index bc14c37980..4133a9719c 100644 --- a/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_handler_windows_files.cmake +++ b/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_handler_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_uploader_windows_files.cmake b/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_uploader_windows_files.cmake index 683589455f..e6ff877b14 100644 --- a/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_uploader_windows_files.cmake +++ b/Code/Tools/CrashHandler/Tools/Platform/Windows/tools_crash_uploader_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.cpp b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.cpp index f6a7a3455c..8d209d400a 100644 --- a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.cpp +++ b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.h b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.h index 4d0033465b..1adad2878e 100644 --- a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.h +++ b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_mac.cpp b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_mac.cpp index a49a8e1c45..1498eacb0e 100644 --- a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_mac.cpp +++ b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_win.cpp b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_win.cpp index 9e82e15a68..ee7692c84c 100644 --- a/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_win.cpp +++ b/Code/Tools/CrashHandler/Tools/ToolsCrashHandler_win.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.cpp b/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.cpp index 87bdb2d7a0..a253ea56ce 100644 --- a/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.cpp +++ b/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.h b/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.h index bdef3fc366..61483411ee 100644 --- a/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.h +++ b/Code/Tools/CrashHandler/Tools/Uploader/SendReportDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.cpp b/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.cpp index de68198374..79b88d7c48 100644 --- a/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.cpp +++ b/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.h b/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.h index 411268c242..71f28b702f 100644 --- a/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.h +++ b/Code/Tools/CrashHandler/Tools/Uploader/ToolsCrashUploader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/Uploader/platforms/posix/main.cpp b/Code/Tools/CrashHandler/Tools/Uploader/platforms/posix/main.cpp index 74db3b9435..d43a793bc8 100644 --- a/Code/Tools/CrashHandler/Tools/Uploader/platforms/posix/main.cpp +++ b/Code/Tools/CrashHandler/Tools/Uploader/platforms/posix/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp b/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp index 7954abbb95..02ceb9afcf 100644 --- a/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp +++ b/Code/Tools/CrashHandler/Tools/Uploader/platforms/win/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Tools/tools_crash_handler_files.cmake b/Code/Tools/CrashHandler/Tools/tools_crash_handler_files.cmake index eb958068f7..729d2f8150 100644 --- a/Code/Tools/CrashHandler/Tools/tools_crash_handler_files.cmake +++ b/Code/Tools/CrashHandler/Tools/tools_crash_handler_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Tools/tools_crash_uploader_files.cmake b/Code/Tools/CrashHandler/Tools/tools_crash_uploader_files.cmake index bdac7d6a5f..9abe1ad446 100644 --- a/Code/Tools/CrashHandler/Tools/tools_crash_uploader_files.cmake +++ b/Code/Tools/CrashHandler/Tools/tools_crash_uploader_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/Uploader/include/Uploader/BufferedDataStream.h b/Code/Tools/CrashHandler/Uploader/include/Uploader/BufferedDataStream.h index 00e5c26cc1..7f4ea07adf 100644 --- a/Code/Tools/CrashHandler/Uploader/include/Uploader/BufferedDataStream.h +++ b/Code/Tools/CrashHandler/Uploader/include/Uploader/BufferedDataStream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h b/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h index 32a73e8257..ecf11b3d38 100644 --- a/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h +++ b/Code/Tools/CrashHandler/Uploader/include/Uploader/CrashUploader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Uploader/include/Uploader/FileStreamDataSource.h b/Code/Tools/CrashHandler/Uploader/include/Uploader/FileStreamDataSource.h index bb725eba4c..698ebfd359 100644 --- a/Code/Tools/CrashHandler/Uploader/include/Uploader/FileStreamDataSource.h +++ b/Code/Tools/CrashHandler/Uploader/include/Uploader/FileStreamDataSource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Uploader/src/BufferedDataStream.cpp b/Code/Tools/CrashHandler/Uploader/src/BufferedDataStream.cpp index 103cf2b5d7..85a43d8462 100644 --- a/Code/Tools/CrashHandler/Uploader/src/BufferedDataStream.cpp +++ b/Code/Tools/CrashHandler/Uploader/src/BufferedDataStream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Uploader/src/CrashUploader.cpp b/Code/Tools/CrashHandler/Uploader/src/CrashUploader.cpp index dc5fca4c7c..73fd41d395 100644 --- a/Code/Tools/CrashHandler/Uploader/src/CrashUploader.cpp +++ b/Code/Tools/CrashHandler/Uploader/src/CrashUploader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/Uploader/src/FileStreamDataSource.cpp b/Code/Tools/CrashHandler/Uploader/src/FileStreamDataSource.cpp index ddd7d48955..956144d61b 100644 --- a/Code/Tools/CrashHandler/Uploader/src/FileStreamDataSource.cpp +++ b/Code/Tools/CrashHandler/Uploader/src/FileStreamDataSource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/CrashHandler/crash_handler_files.cmake b/Code/Tools/CrashHandler/crash_handler_files.cmake index 39043fb41d..0579fa0c0e 100644 --- a/Code/Tools/CrashHandler/crash_handler_files.cmake +++ b/Code/Tools/CrashHandler/crash_handler_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/CrashHandler/crash_uploader_support_files.cmake b/Code/Tools/CrashHandler/crash_uploader_support_files.cmake index 4a613f0f0f..d22b17c3f4 100644 --- a/Code/Tools/CrashHandler/crash_uploader_support_files.cmake +++ b/Code/Tools/CrashHandler/crash_uploader_support_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/DeltaCataloger/CMakeLists.txt b/Code/Tools/DeltaCataloger/CMakeLists.txt index 92d7e4b05a..2f12f50afc 100644 --- a/Code/Tools/DeltaCataloger/CMakeLists.txt +++ b/Code/Tools/DeltaCataloger/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/DeltaCataloger/Tests/tests_main.cpp b/Code/Tools/DeltaCataloger/Tests/tests_main.cpp index 1d9cb7bf96..f34c970010 100644 --- a/Code/Tools/DeltaCataloger/Tests/tests_main.cpp +++ b/Code/Tools/DeltaCataloger/Tests/tests_main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/DeltaCataloger/deltacataloger_files.cmake b/Code/Tools/DeltaCataloger/deltacataloger_files.cmake index 2bc0ab4c8b..36ed8b5737 100644 --- a/Code/Tools/DeltaCataloger/deltacataloger_files.cmake +++ b/Code/Tools/DeltaCataloger/deltacataloger_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/DeltaCataloger/deltacataloger_test_files.cmake b/Code/Tools/DeltaCataloger/deltacataloger_test_files.cmake index d357afa85d..f643462064 100644 --- a/Code/Tools/DeltaCataloger/deltacataloger_test_files.cmake +++ b/Code/Tools/DeltaCataloger/deltacataloger_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/DeltaCataloger/deltacataloger_win_files.cmake b/Code/Tools/DeltaCataloger/deltacataloger_win_files.cmake index f07893add2..0d32443deb 100644 --- a/Code/Tools/DeltaCataloger/deltacataloger_win_files.cmake +++ b/Code/Tools/DeltaCataloger/deltacataloger_win_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/DeltaCataloger/source/main.cpp b/Code/Tools/DeltaCataloger/source/main.cpp index e496e3e96b..00d54f2885 100644 --- a/Code/Tools/DeltaCataloger/source/main.cpp +++ b/Code/Tools/DeltaCataloger/source/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/GridHub/CMakeLists.txt b/Code/Tools/GridHub/CMakeLists.txt index bb2f9fa9ef..30a29ea7e2 100644 --- a/Code/Tools/GridHub/CMakeLists.txt +++ b/Code/Tools/GridHub/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/GridHub/GridHub/gridhub.cpp b/Code/Tools/GridHub/GridHub/gridhub.cpp index 270325d56b..9c494e41fa 100644 --- a/Code/Tools/GridHub/GridHub/gridhub.cpp +++ b/Code/Tools/GridHub/GridHub/gridhub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/GridHub/GridHub/gridhub.hxx b/Code/Tools/GridHub/GridHub/gridhub.hxx index fc32a789ec..c8a9c336d4 100644 --- a/Code/Tools/GridHub/GridHub/gridhub.hxx +++ b/Code/Tools/GridHub/GridHub/gridhub.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/GridHub/GridHub/main.cpp b/Code/Tools/GridHub/GridHub/main.cpp index 56afa47158..5b35abff6c 100644 --- a/Code/Tools/GridHub/GridHub/main.cpp +++ b/Code/Tools/GridHub/GridHub/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/GridHub/Platform/Linux/gridhub_linux_files.cmake b/Code/Tools/GridHub/Platform/Linux/gridhub_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Code/Tools/GridHub/Platform/Linux/gridhub_linux_files.cmake +++ b/Code/Tools/GridHub/Platform/Linux/gridhub_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/GridHub/Platform/Linux/platform_linux.cmake b/Code/Tools/GridHub/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Tools/GridHub/Platform/Linux/platform_linux.cmake +++ b/Code/Tools/GridHub/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/GridHub/Platform/Mac/gridhub_mac_files.cmake b/Code/Tools/GridHub/Platform/Mac/gridhub_mac_files.cmake index caec1043b9..d36cb02e87 100644 --- a/Code/Tools/GridHub/Platform/Mac/gridhub_mac_files.cmake +++ b/Code/Tools/GridHub/Platform/Mac/gridhub_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/GridHub/Platform/Mac/platform_mac.cmake b/Code/Tools/GridHub/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Tools/GridHub/Platform/Mac/platform_mac.cmake +++ b/Code/Tools/GridHub/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/GridHub/Platform/Windows/gridhub_windows_files.cmake b/Code/Tools/GridHub/Platform/Windows/gridhub_windows_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Code/Tools/GridHub/Platform/Windows/gridhub_windows_files.cmake +++ b/Code/Tools/GridHub/Platform/Windows/gridhub_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/GridHub/Platform/Windows/platform_windows.cmake b/Code/Tools/GridHub/Platform/Windows/platform_windows.cmake index a3af578d12..724222b437 100644 --- a/Code/Tools/GridHub/Platform/Windows/platform_windows.cmake +++ b/Code/Tools/GridHub/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/GridHub/gridhub_files.cmake b/Code/Tools/GridHub/gridhub_files.cmake index 5b539730e6..ee4c60f9b6 100644 --- a/Code/Tools/GridHub/gridhub_files.cmake +++ b/Code/Tools/GridHub/gridhub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/CMakeLists.txt b/Code/Tools/News/CMakeLists.txt index d60a91b9cc..78c5774ef0 100644 --- a/Code/Tools/News/CMakeLists.txt +++ b/Code/Tools/News/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsBuilder/CMakeLists.txt b/Code/Tools/News/NewsBuilder/CMakeLists.txt index eb8d514c60..218f4e28f5 100644 --- a/Code/Tools/News/NewsBuilder/CMakeLists.txt +++ b/Code/Tools/News/NewsBuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsBuilder/EndpointManager.cpp b/Code/Tools/News/NewsBuilder/EndpointManager.cpp index 6ef3af1065..0b2ea4dd5c 100644 --- a/Code/Tools/News/NewsBuilder/EndpointManager.cpp +++ b/Code/Tools/News/NewsBuilder/EndpointManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/EndpointManager.h b/Code/Tools/News/NewsBuilder/EndpointManager.h index fbfbd2bf2b..cc44951d16 100644 --- a/Code/Tools/News/NewsBuilder/EndpointManager.h +++ b/Code/Tools/News/NewsBuilder/EndpointManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Platform/Android/PAL_android.cmake b/Code/Tools/News/NewsBuilder/Platform/Android/PAL_android.cmake index 9914df67d0..929d864fc4 100644 --- a/Code/Tools/News/NewsBuilder/Platform/Android/PAL_android.cmake +++ b/Code/Tools/News/NewsBuilder/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsBuilder/Platform/Linux/PAL_linux.cmake b/Code/Tools/News/NewsBuilder/Platform/Linux/PAL_linux.cmake index 9914df67d0..929d864fc4 100644 --- a/Code/Tools/News/NewsBuilder/Platform/Linux/PAL_linux.cmake +++ b/Code/Tools/News/NewsBuilder/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsBuilder/Platform/Mac/PAL_mac.cmake b/Code/Tools/News/NewsBuilder/Platform/Mac/PAL_mac.cmake index 9914df67d0..929d864fc4 100644 --- a/Code/Tools/News/NewsBuilder/Platform/Mac/PAL_mac.cmake +++ b/Code/Tools/News/NewsBuilder/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsBuilder/Platform/Windows/PAL_windows.cmake b/Code/Tools/News/NewsBuilder/Platform/Windows/PAL_windows.cmake index f144bf0e49..180b7b9492 100644 --- a/Code/Tools/News/NewsBuilder/Platform/Windows/PAL_windows.cmake +++ b/Code/Tools/News/NewsBuilder/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsBuilder/Platform/iOS/PAL_ios.cmake b/Code/Tools/News/NewsBuilder/Platform/iOS/PAL_ios.cmake index 9914df67d0..929d864fc4 100644 --- a/Code/Tools/News/NewsBuilder/Platform/iOS/PAL_ios.cmake +++ b/Code/Tools/News/NewsBuilder/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.cpp b/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.cpp index 8fa6bdbf38..2872a714e8 100644 --- a/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.h b/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.h index 55f8e72bb8..7f8d482e3f 100644 --- a/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.h +++ b/Code/Tools/News/NewsBuilder/Qt/ArticleDetails.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.cpp b/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.cpp index e10ce2ae97..586978a562 100644 --- a/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.h b/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.h index abb49d0797..1df42198c3 100644 --- a/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.h +++ b/Code/Tools/News/NewsBuilder/Qt/ArticleDetailsContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.cpp b/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.cpp index 73f37140ed..bf77a89895 100644 --- a/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.h b/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.h index 6f4a4ccf21..94712ca768 100644 --- a/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.h +++ b/Code/Tools/News/NewsBuilder/Qt/BuilderArticleViewContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.cpp b/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.cpp index d63375c23e..5e698eea97 100644 --- a/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.h b/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.h index edaeac6144..c8b014c167 100644 --- a/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.h +++ b/Code/Tools/News/NewsBuilder/Qt/EndpointEntryView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.cpp b/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.cpp index 1ff8ddbf2b..e28245b895 100644 --- a/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.h b/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.h index 2f5cb2b30b..c6362a06af 100644 --- a/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.h +++ b/Code/Tools/News/NewsBuilder/Qt/EndpointManagerView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/ImageItem.cpp b/Code/Tools/News/NewsBuilder/Qt/ImageItem.cpp index e818f627c0..1566b8309d 100644 --- a/Code/Tools/News/NewsBuilder/Qt/ImageItem.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/ImageItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/ImageItem.h b/Code/Tools/News/NewsBuilder/Qt/ImageItem.h index 0d8875bd8e..ba883bc736 100644 --- a/Code/Tools/News/NewsBuilder/Qt/ImageItem.h +++ b/Code/Tools/News/NewsBuilder/Qt/ImageItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/LogContainer.cpp b/Code/Tools/News/NewsBuilder/Qt/LogContainer.cpp index 9a4140eb5d..5efda641db 100644 --- a/Code/Tools/News/NewsBuilder/Qt/LogContainer.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/LogContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/LogContainer.h b/Code/Tools/News/NewsBuilder/Qt/LogContainer.h index c9fcecb328..8f46f3b406 100644 --- a/Code/Tools/News/NewsBuilder/Qt/LogContainer.h +++ b/Code/Tools/News/NewsBuilder/Qt/LogContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.cpp b/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.cpp index cd6fa24736..5cbb510dd6 100644 --- a/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.h b/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.h index 4203ad9f8b..61e25bda1b 100644 --- a/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.h +++ b/Code/Tools/News/NewsBuilder/Qt/NewsBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.cpp b/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.cpp index 5ef43def5b..1b92f91e42 100644 --- a/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.h b/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.h index 26862d4cbc..6cd6771514 100644 --- a/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.h +++ b/Code/Tools/News/NewsBuilder/Qt/QCustomMessageBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/SelectImage.cpp b/Code/Tools/News/NewsBuilder/Qt/SelectImage.cpp index fb2e798d0d..7a9e427f4b 100644 --- a/Code/Tools/News/NewsBuilder/Qt/SelectImage.cpp +++ b/Code/Tools/News/NewsBuilder/Qt/SelectImage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/Qt/SelectImage.h b/Code/Tools/News/NewsBuilder/Qt/SelectImage.h index f9a15f9074..5fc80cfe5a 100644 --- a/Code/Tools/News/NewsBuilder/Qt/SelectImage.h +++ b/Code/Tools/News/NewsBuilder/Qt/SelectImage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.cpp b/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.cpp index 95f94ebfbb..0a845216fe 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.cpp +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.h b/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.h index 3bc3dcb0e1..b6c20df571 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.h +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/BuilderResourceManifest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.cpp b/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.cpp index 7021878842..63cdb46218 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.cpp +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.h b/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.h index a800b4e27e..8928e9e19d 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.h +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/DeleteDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.cpp b/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.cpp index 308d1098be..a16ec48851 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.cpp +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.h b/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.h index 906b276358..ba4533b0c0 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.h +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/ImageDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.cpp b/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.cpp index b63b30df3c..699959ed85 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.cpp +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.h b/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.h index e4de17cddf..71a7732c1e 100644 --- a/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.h +++ b/Code/Tools/News/NewsBuilder/ResourceManagement/UploadDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/S3Connector.cpp b/Code/Tools/News/NewsBuilder/S3Connector.cpp index 4b7df592f9..a54b6fa8f8 100644 --- a/Code/Tools/News/NewsBuilder/S3Connector.cpp +++ b/Code/Tools/News/NewsBuilder/S3Connector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/S3Connector.h b/Code/Tools/News/NewsBuilder/S3Connector.h index ce4cdae457..d0404bfddb 100644 --- a/Code/Tools/News/NewsBuilder/S3Connector.h +++ b/Code/Tools/News/NewsBuilder/S3Connector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/UidGenerator.cpp b/Code/Tools/News/NewsBuilder/UidGenerator.cpp index 439ba8b23f..060f593996 100644 --- a/Code/Tools/News/NewsBuilder/UidGenerator.cpp +++ b/Code/Tools/News/NewsBuilder/UidGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/UidGenerator.h b/Code/Tools/News/NewsBuilder/UidGenerator.h index 0a6a707069..825df9e340 100644 --- a/Code/Tools/News/NewsBuilder/UidGenerator.h +++ b/Code/Tools/News/NewsBuilder/UidGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/main.cpp b/Code/Tools/News/NewsBuilder/main.cpp index e120768280..6a43c681b1 100644 --- a/Code/Tools/News/NewsBuilder/main.cpp +++ b/Code/Tools/News/NewsBuilder/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsBuilder/news_builder_files.cmake b/Code/Tools/News/NewsBuilder/news_builder_files.cmake index 7fcaea7d83..c46e66a357 100644 --- a/Code/Tools/News/NewsBuilder/news_builder_files.cmake +++ b/Code/Tools/News/NewsBuilder/news_builder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/News/NewsShared/ErrorCodes.h b/Code/Tools/News/NewsShared/ErrorCodes.h index 64f0d5ecf8..444e0c6f67 100644 --- a/Code/Tools/News/NewsShared/ErrorCodes.h +++ b/Code/Tools/News/NewsShared/ErrorCodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/LogType.h b/Code/Tools/News/NewsShared/LogType.h index 80570638b7..92834adc58 100644 --- a/Code/Tools/News/NewsShared/LogType.h +++ b/Code/Tools/News/NewsShared/LogType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/ArticleErrorView.cpp b/Code/Tools/News/NewsShared/Qt/ArticleErrorView.cpp index 898e6cbf41..6f2a7e3c9c 100644 --- a/Code/Tools/News/NewsShared/Qt/ArticleErrorView.cpp +++ b/Code/Tools/News/NewsShared/Qt/ArticleErrorView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/ArticleErrorView.h b/Code/Tools/News/NewsShared/Qt/ArticleErrorView.h index 0f098f7644..3130690dc1 100644 --- a/Code/Tools/News/NewsShared/Qt/ArticleErrorView.h +++ b/Code/Tools/News/NewsShared/Qt/ArticleErrorView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/ArticleView.cpp b/Code/Tools/News/NewsShared/Qt/ArticleView.cpp index 8ca71776ed..082a29d38a 100644 --- a/Code/Tools/News/NewsShared/Qt/ArticleView.cpp +++ b/Code/Tools/News/NewsShared/Qt/ArticleView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/ArticleView.h b/Code/Tools/News/NewsShared/Qt/ArticleView.h index 5e517f84d6..16a29732f0 100644 --- a/Code/Tools/News/NewsShared/Qt/ArticleView.h +++ b/Code/Tools/News/NewsShared/Qt/ArticleView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.cpp b/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.cpp index 0fd7eeac87..1d718d1bb8 100644 --- a/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.cpp +++ b/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.h b/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.h index 458077af94..c0ae3b2701 100644 --- a/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.h +++ b/Code/Tools/News/NewsShared/Qt/ArticleViewContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/KeepInTouchView.cpp b/Code/Tools/News/NewsShared/Qt/KeepInTouchView.cpp index 64f69d66ef..43c32c43fc 100644 --- a/Code/Tools/News/NewsShared/Qt/KeepInTouchView.cpp +++ b/Code/Tools/News/NewsShared/Qt/KeepInTouchView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/Qt/KeepInTouchView.h b/Code/Tools/News/NewsShared/Qt/KeepInTouchView.h index f79e487cb9..5d5c6a9e36 100644 --- a/Code/Tools/News/NewsShared/Qt/KeepInTouchView.h +++ b/Code/Tools/News/NewsShared/Qt/KeepInTouchView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.cpp b/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.cpp index ccee650c11..c26d2357d7 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.cpp +++ b/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.h b/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.h index ca8ef907c4..c0ca459cf4 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.h +++ b/Code/Tools/News/NewsShared/ResourceManagement/ArticleDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.cpp b/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.cpp index de5eba673b..0d21a18c05 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.cpp +++ b/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.h b/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.h index ae585a1baa..3d56037543 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.h +++ b/Code/Tools/News/NewsShared/ResourceManagement/Descriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.cpp b/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.cpp index 72743f2c58..5e71c8f10b 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.cpp +++ b/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.h b/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.h index f58ec610cf..286e66c4ac 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.h +++ b/Code/Tools/News/NewsShared/ResourceManagement/JsonDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.cpp b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.cpp index 1abc20ed2d..e70285fd31 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.cpp +++ b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.h b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.h index a4230c6f21..6a7c93a51f 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.h +++ b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloadManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.cpp b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.cpp index 938f34ae25..0139ec5344 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.cpp +++ b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.h b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.h index edb5dd7886..0dcc86e951 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.h +++ b/Code/Tools/News/NewsShared/ResourceManagement/QtDownloader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/Resource.cpp b/Code/Tools/News/NewsShared/ResourceManagement/Resource.cpp index 92a717ed95..d40b66d6d7 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/Resource.cpp +++ b/Code/Tools/News/NewsShared/ResourceManagement/Resource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/Resource.h b/Code/Tools/News/NewsShared/ResourceManagement/Resource.h index 562a9d76ac..1174fea788 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/Resource.h +++ b/Code/Tools/News/NewsShared/ResourceManagement/Resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.cpp b/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.cpp index 04f7c5a523..969c4ec8f1 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.cpp +++ b/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.h b/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.h index f7bed3d5b1..3a0f31de8f 100644 --- a/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.h +++ b/Code/Tools/News/NewsShared/ResourceManagement/ResourceManifest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/News/news_shared_files.cmake b/Code/Tools/News/news_shared_files.cmake index f7c1262a52..2f20029068 100644 --- a/Code/Tools/News/news_shared_files.cmake +++ b/Code/Tools/News/news_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/CMakeLists.txt b/Code/Tools/ProjectManager/CMakeLists.txt index fc3fcc351c..ceabbbd1ed 100644 --- a/Code/Tools/ProjectManager/CMakeLists.txt +++ b/Code/Tools/ProjectManager/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Android/PAL_android.cmake b/Code/Tools/ProjectManager/Platform/Android/PAL_android.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Tools/ProjectManager/Platform/Android/PAL_android.cmake +++ b/Code/Tools/ProjectManager/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Common/Clang/projectmanager_clang.cmake b/Code/Tools/ProjectManager/Platform/Common/Clang/projectmanager_clang.cmake index e5c49c47cd..89a2dfa866 100644 --- a/Code/Tools/ProjectManager/Platform/Common/Clang/projectmanager_clang.cmake +++ b/Code/Tools/ProjectManager/Platform/Common/Clang/projectmanager_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Common/MSVC/projectmanager_msvc.cmake b/Code/Tools/ProjectManager/Platform/Common/MSVC/projectmanager_msvc.cmake index 002a8c63ef..e7e2742b9d 100644 --- a/Code/Tools/ProjectManager/Platform/Common/MSVC/projectmanager_msvc.cmake +++ b/Code/Tools/ProjectManager/Platform/Common/MSVC/projectmanager_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux.cmake b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux.cmake +++ b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake index 5ccb16a784..4c94567793 100644 --- a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_tests_files.cmake b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_tests_files.cmake index 44a79aeb13..f130838aad 100644 --- a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_tests_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Linux.h b/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Linux.h index 634b6271f9..122783a3bc 100644 --- a/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Linux.h +++ b/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Platform.h b/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Platform.h index f0e5832b01..6f732d11ea 100644 --- a/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Platform.h +++ b/Code/Tools/ProjectManager/Platform/Linux/ProjectManager_Test_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Linux/Python_linux.cpp b/Code/Tools/ProjectManager/Platform/Linux/Python_linux.cpp index 507baa5801..755bb26c03 100644 --- a/Code/Tools/ProjectManager/Platform/Linux/Python_linux.cpp +++ b/Code/Tools/ProjectManager/Platform/Linux/Python_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac.cmake b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac.cmake +++ b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake index 93b5848b4f..f3ecbd9678 100644 --- a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_tests_files.cmake b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_tests_files.cmake index 9ba11556f4..83db835e8b 100644 --- a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_tests_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Mac.h b/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Mac.h index f2965bd3fc..6c3dd46a76 100644 --- a/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Mac.h +++ b/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Platform.h b/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Platform.h index beea09b815..86faa4ea06 100644 --- a/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Platform.h +++ b/Code/Tools/ProjectManager/Platform/Mac/ProjectManager_Test_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Mac/Python_mac.cpp b/Code/Tools/ProjectManager/Platform/Mac/Python_mac.cpp index 45bf24b363..17e29ccf1e 100644 --- a/Code/Tools/ProjectManager/Platform/Mac/Python_mac.cpp +++ b/Code/Tools/ProjectManager/Platform/Mac/Python_mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows.cmake b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows.cmake index c1d9d8b6b5..db62374d57 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows.cmake +++ b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake index 34be367381..44023b791b 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_tests_files.cmake b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_tests_files.cmake index dbe2f59dc1..42352646b8 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_tests_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Platform.h b/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Platform.h index 1639941f86..aaf66ddf15 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Platform.h +++ b/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Windows.h b/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Windows.h index f2965bd3fc..6c3dd46a76 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Windows.h +++ b/Code/Tools/ProjectManager/Platform/Windows/ProjectManager_Test_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/Windows/Python_windows.cpp b/Code/Tools/ProjectManager/Platform/Windows/Python_windows.cpp index bc4358dc2d..9c6e483c37 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/Python_windows.cpp +++ b/Code/Tools/ProjectManager/Platform/Windows/Python_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Platform/iOS/PAL_ios.cmake b/Code/Tools/ProjectManager/Platform/iOS/PAL_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Code/Tools/ProjectManager/Platform/iOS/PAL_ios.cmake +++ b/Code/Tools/ProjectManager/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/Source/Application.cpp b/Code/Tools/ProjectManager/Source/Application.cpp index dd0a3447c3..3f46929f76 100644 --- a/Code/Tools/ProjectManager/Source/Application.cpp +++ b/Code/Tools/ProjectManager/Source/Application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/Application.h b/Code/Tools/ProjectManager/Source/Application.h index d1688f93b9..c9449e5845 100644 --- a/Code/Tools/ProjectManager/Source/Application.h +++ b/Code/Tools/ProjectManager/Source/Application.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp index 3c3afba106..0ec395a6df 100644 --- a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp +++ b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h index 0c87b58b78..c2b4528802 100644 --- a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h +++ b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/EngineInfo.cpp b/Code/Tools/ProjectManager/Source/EngineInfo.cpp index 9ee4d4ea0b..20cb755356 100644 --- a/Code/Tools/ProjectManager/Source/EngineInfo.cpp +++ b/Code/Tools/ProjectManager/Source/EngineInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/EngineInfo.h b/Code/Tools/ProjectManager/Source/EngineInfo.h index ff3f356c02..2dd15e8756 100644 --- a/Code/Tools/ProjectManager/Source/EngineInfo.h +++ b/Code/Tools/ProjectManager/Source/EngineInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/EngineSettingsScreen.cpp b/Code/Tools/ProjectManager/Source/EngineSettingsScreen.cpp index 8b232048a7..296b28e2b9 100644 --- a/Code/Tools/ProjectManager/Source/EngineSettingsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/EngineSettingsScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/EngineSettingsScreen.h b/Code/Tools/ProjectManager/Source/EngineSettingsScreen.h index 037492852c..9868045cb4 100644 --- a/Code/Tools/ProjectManager/Source/EngineSettingsScreen.h +++ b/Code/Tools/ProjectManager/Source/EngineSettingsScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp index 667513022e..be60638cbf 100644 --- a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp +++ b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h index ec5a4dd968..1d698c0052 100644 --- a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h +++ b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp index d9f80351e2..8053cfbfe6 100644 --- a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp +++ b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h index d9f489b348..5ad3025c39 100644 --- a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h +++ b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.cpp b/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.cpp index 570ba40f2b..5592ae18c2 100644 --- a/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.cpp +++ b/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.h b/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.h index 5bb9039693..306499a904 100644 --- a/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.h +++ b/Code/Tools/ProjectManager/Source/FormImageBrowseEditWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp b/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp index b06ae08274..25c76ddd6b 100644 --- a/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp +++ b/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/FormLineEditWidget.h b/Code/Tools/ProjectManager/Source/FormLineEditWidget.h index d6cf39bdb5..2d3802d6f6 100644 --- a/Code/Tools/ProjectManager/Source/FormLineEditWidget.h +++ b/Code/Tools/ProjectManager/Source/FormLineEditWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp index 8fb35b906c..3c8ae5fcc3 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.h index dc8f687b31..8270d5e4ae 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogHeaderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp index 21edb8c4fe..4ca94f6081 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h index b218f52397..0fdfc6bdf5 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.cpp index d509a66ee2..753371ba52 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.h index eabeb05649..8d911f4b39 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemFilterWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.cpp index fb6a2b5761..2f6491a77d 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.h index be813ede3c..6c9580b19a 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp index fd298b0146..e3ec010e12 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.h index 6b2fce59aa..9d2d92feac 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemInspector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp index ca0ec2faff..2718165993 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.h index 7bc54a9002..07c25a5ad4 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp index c61cc22c82..5e2f93c2fc 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.h index 7ebd1d950f..a9b3b3aa36 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemListHeaderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp index e54891d736..657dcce691 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.h index 43472bac80..51913c42bc 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemListView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp index 2a599658ea..8d1e263a66 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h index d128687572..49fb5c6f37 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp index 65500791c7..8a89f8b047 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.h index cfd3ddba13..60822741bc 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.cpp index 44f1c828be..5690c0bd1f 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.h index 0f861d8a46..7c2d84a943 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.cpp index a4cebda284..b596b8767f 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.h index 2da1325f60..8f3706bd62 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.cpp index f0634ef61a..06351e51f0 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.h index b5a6b029b8..23dab413a2 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemRequirementListView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp index 1f1ca507c0..832aeb5178 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.h index f8c66db249..0d176bf017 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemSortFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/LinkWidget.cpp b/Code/Tools/ProjectManager/Source/LinkWidget.cpp index 5069ae6508..b30d23d240 100644 --- a/Code/Tools/ProjectManager/Source/LinkWidget.cpp +++ b/Code/Tools/ProjectManager/Source/LinkWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/LinkWidget.h b/Code/Tools/ProjectManager/Source/LinkWidget.h index 24ad718be3..e576e324c7 100644 --- a/Code/Tools/ProjectManager/Source/LinkWidget.h +++ b/Code/Tools/ProjectManager/Source/LinkWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp index 268edb679e..efecb2d901 100644 --- a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h index 0c5844d43c..4238ef98be 100644 --- a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h +++ b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/PathValidator.cpp b/Code/Tools/ProjectManager/Source/PathValidator.cpp index e75f9518be..130f1ecfa5 100644 --- a/Code/Tools/ProjectManager/Source/PathValidator.cpp +++ b/Code/Tools/ProjectManager/Source/PathValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/PathValidator.h b/Code/Tools/ProjectManager/Source/PathValidator.h index 4375599fa9..bdf53324bb 100644 --- a/Code/Tools/ProjectManager/Source/PathValidator.h +++ b/Code/Tools/ProjectManager/Source/PathValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilder.cpp b/Code/Tools/ProjectManager/Source/ProjectBuilder.cpp index 4dfe46b3bf..a1dddf818c 100644 --- a/Code/Tools/ProjectManager/Source/ProjectBuilder.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilder.h b/Code/Tools/ProjectManager/Source/ProjectBuilder.h index c676eb5e7b..e6a539bb36 100644 --- a/Code/Tools/ProjectManager/Source/ProjectBuilder.h +++ b/Code/Tools/ProjectManager/Source/ProjectBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp index c7bc948e8d..fef2639498 100644 --- a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h index 5e2aa045e8..fe2fd73324 100644 --- a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h +++ b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectInfo.cpp b/Code/Tools/ProjectManager/Source/ProjectInfo.cpp index a2fc82ae9c..1e335d9d67 100644 --- a/Code/Tools/ProjectManager/Source/ProjectInfo.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectInfo.h b/Code/Tools/ProjectManager/Source/ProjectInfo.h index a792f91fa7..d78ef54c83 100644 --- a/Code/Tools/ProjectManager/Source/ProjectInfo.h +++ b/Code/Tools/ProjectManager/Source/ProjectInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h b/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h index 1058dae68a..0b1b3fba4e 100644 --- a/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h +++ b/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectManagerWindow.cpp b/Code/Tools/ProjectManager/Source/ProjectManagerWindow.cpp index 173cd07720..3dc006b24c 100644 --- a/Code/Tools/ProjectManager/Source/ProjectManagerWindow.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectManagerWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectManagerWindow.h b/Code/Tools/ProjectManager/Source/ProjectManagerWindow.h index 8adf108c5d..5b8f2f68f4 100644 --- a/Code/Tools/ProjectManager/Source/ProjectManagerWindow.h +++ b/Code/Tools/ProjectManager/Source/ProjectManagerWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.cpp b/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.cpp index 7371307087..8be7e200f2 100644 --- a/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.h b/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.h index fa6ebe642e..fdbdb82ef2 100644 --- a/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.h +++ b/Code/Tools/ProjectManager/Source/ProjectSettingsScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.cpp b/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.cpp index 533353be24..76db878f98 100644 --- a/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.h b/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.h index d59d5a76de..c6262e4f0f 100644 --- a/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.h +++ b/Code/Tools/ProjectManager/Source/ProjectTemplateInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectUtils.cpp b/Code/Tools/ProjectManager/Source/ProjectUtils.cpp index 5b93e4faca..f7a90f5e0c 100644 --- a/Code/Tools/ProjectManager/Source/ProjectUtils.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectUtils.h b/Code/Tools/ProjectManager/Source/ProjectUtils.h index 17af6b132c..786ff34b88 100644 --- a/Code/Tools/ProjectManager/Source/ProjectUtils.h +++ b/Code/Tools/ProjectManager/Source/ProjectUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp index e079d97a8b..9ea0b3ec2c 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.h b/Code/Tools/ProjectManager/Source/ProjectsScreen.h index 2fbbd3ad82..12152e908b 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.h +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/PythonBindings.cpp b/Code/Tools/ProjectManager/Source/PythonBindings.cpp index 599dc430b8..f8c45bedeb 100644 --- a/Code/Tools/ProjectManager/Source/PythonBindings.cpp +++ b/Code/Tools/ProjectManager/Source/PythonBindings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/PythonBindings.h b/Code/Tools/ProjectManager/Source/PythonBindings.h index 3075a9690d..1d98505457 100644 --- a/Code/Tools/ProjectManager/Source/PythonBindings.h +++ b/Code/Tools/ProjectManager/Source/PythonBindings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/PythonBindingsInterface.h b/Code/Tools/ProjectManager/Source/PythonBindingsInterface.h index fb89c5e185..0adc842a05 100644 --- a/Code/Tools/ProjectManager/Source/PythonBindingsInterface.h +++ b/Code/Tools/ProjectManager/Source/PythonBindingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreenDefs.h b/Code/Tools/ProjectManager/Source/ScreenDefs.h index 8547587f13..28311089cc 100644 --- a/Code/Tools/ProjectManager/Source/ScreenDefs.h +++ b/Code/Tools/ProjectManager/Source/ScreenDefs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreenFactory.cpp b/Code/Tools/ProjectManager/Source/ScreenFactory.cpp index 17e90e71c4..698061360e 100644 --- a/Code/Tools/ProjectManager/Source/ScreenFactory.cpp +++ b/Code/Tools/ProjectManager/Source/ScreenFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreenFactory.h b/Code/Tools/ProjectManager/Source/ScreenFactory.h index a6a79d85da..654d29c3b4 100644 --- a/Code/Tools/ProjectManager/Source/ScreenFactory.h +++ b/Code/Tools/ProjectManager/Source/ScreenFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.cpp b/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.cpp index 37cdb91113..bce7bd6076 100644 --- a/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.cpp +++ b/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.h b/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.h index 5398b9d20a..51567fce9e 100644 --- a/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.h +++ b/Code/Tools/ProjectManager/Source/ScreenHeaderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreenWidget.h b/Code/Tools/ProjectManager/Source/ScreenWidget.h index bfaa5d61c5..a5c005902e 100644 --- a/Code/Tools/ProjectManager/Source/ScreenWidget.h +++ b/Code/Tools/ProjectManager/Source/ScreenWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp b/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp index ca3d882a54..fa474c05e7 100644 --- a/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp +++ b/Code/Tools/ProjectManager/Source/ScreensCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/ScreensCtrl.h b/Code/Tools/ProjectManager/Source/ScreensCtrl.h index 28b26eda38..a93ad18da0 100644 --- a/Code/Tools/ProjectManager/Source/ScreensCtrl.h +++ b/Code/Tools/ProjectManager/Source/ScreensCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/TagWidget.cpp b/Code/Tools/ProjectManager/Source/TagWidget.cpp index 22c420ddae..1e9a1fc33b 100644 --- a/Code/Tools/ProjectManager/Source/TagWidget.cpp +++ b/Code/Tools/ProjectManager/Source/TagWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/TagWidget.h b/Code/Tools/ProjectManager/Source/TagWidget.h index ba05c2a186..7ccabc7d37 100644 --- a/Code/Tools/ProjectManager/Source/TagWidget.h +++ b/Code/Tools/ProjectManager/Source/TagWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/TemplateButtonWidget.cpp b/Code/Tools/ProjectManager/Source/TemplateButtonWidget.cpp index b61c24b8ae..d20b91ac8e 100644 --- a/Code/Tools/ProjectManager/Source/TemplateButtonWidget.cpp +++ b/Code/Tools/ProjectManager/Source/TemplateButtonWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/TemplateButtonWidget.h b/Code/Tools/ProjectManager/Source/TemplateButtonWidget.h index 5bc0f83eaa..2b2b3474c2 100644 --- a/Code/Tools/ProjectManager/Source/TemplateButtonWidget.h +++ b/Code/Tools/ProjectManager/Source/TemplateButtonWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp index 3f72b7058e..5bd6cc4552 100644 --- a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp +++ b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.h b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.h index e9e06f7209..cf360d3dc7 100644 --- a/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.h +++ b/Code/Tools/ProjectManager/Source/UpdateProjectCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.cpp b/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.cpp index 0cc3f6047e..5fa1a96f55 100644 --- a/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.h b/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.h index 934779332f..e25cfa8d16 100644 --- a/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.h +++ b/Code/Tools/ProjectManager/Source/UpdateProjectSettingsScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/Source/main.cpp b/Code/Tools/ProjectManager/Source/main.cpp index e3460dd67f..2e6e06e765 100644 --- a/Code/Tools/ProjectManager/Source/main.cpp +++ b/Code/Tools/ProjectManager/Source/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/project_manager_app_files.cmake b/Code/Tools/ProjectManager/project_manager_app_files.cmake index a1dbd18686..6f064381cd 100644 --- a/Code/Tools/ProjectManager/project_manager_app_files.cmake +++ b/Code/Tools/ProjectManager/project_manager_app_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/project_manager_files.cmake b/Code/Tools/ProjectManager/project_manager_files.cmake index 3fb45f3531..0aa7a6c86c 100644 --- a/Code/Tools/ProjectManager/project_manager_files.cmake +++ b/Code/Tools/ProjectManager/project_manager_files.cmake @@ -1,6 +1,6 @@ # # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/project_manager_tests_files.cmake b/Code/Tools/ProjectManager/project_manager_tests_files.cmake index 20c5a223d8..90fbe5db5c 100644 --- a/Code/Tools/ProjectManager/project_manager_tests_files.cmake +++ b/Code/Tools/ProjectManager/project_manager_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/ProjectManager/tests/ApplicationTests.cpp b/Code/Tools/ProjectManager/tests/ApplicationTests.cpp index e5e2dcf08f..450ea88066 100644 --- a/Code/Tools/ProjectManager/tests/ApplicationTests.cpp +++ b/Code/Tools/ProjectManager/tests/ApplicationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/tests/PythonBindingsTests.cpp b/Code/Tools/ProjectManager/tests/PythonBindingsTests.cpp index 4fe6ba4654..eb59068f78 100644 --- a/Code/Tools/ProjectManager/tests/PythonBindingsTests.cpp +++ b/Code/Tools/ProjectManager/tests/PythonBindingsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/tests/UtilsTests.cpp b/Code/Tools/ProjectManager/tests/UtilsTests.cpp index 3d9530da58..51f7162278 100644 --- a/Code/Tools/ProjectManager/tests/UtilsTests.cpp +++ b/Code/Tools/ProjectManager/tests/UtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/ProjectManager/tests/main.cpp b/Code/Tools/ProjectManager/tests/main.cpp index 9d6bbc2cd7..f9499f9afe 100644 --- a/Code/Tools/ProjectManager/tests/main.cpp +++ b/Code/Tools/ProjectManager/tests/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/CMakeLists.txt b/Code/Tools/PythonBindingsExample/CMakeLists.txt index 16acccfea8..9760368daf 100644 --- a/Code/Tools/PythonBindingsExample/CMakeLists.txt +++ b/Code/Tools/PythonBindingsExample/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/PythonBindingsExample/pythonbindingsexample_app_files.cmake b/Code/Tools/PythonBindingsExample/pythonbindingsexample_app_files.cmake index 2bc0ab4c8b..36ed8b5737 100644 --- a/Code/Tools/PythonBindingsExample/pythonbindingsexample_app_files.cmake +++ b/Code/Tools/PythonBindingsExample/pythonbindingsexample_app_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/PythonBindingsExample/pythonbindingsexample_files.cmake b/Code/Tools/PythonBindingsExample/pythonbindingsexample_files.cmake index c732806058..fddfcc0466 100644 --- a/Code/Tools/PythonBindingsExample/pythonbindingsexample_files.cmake +++ b/Code/Tools/PythonBindingsExample/pythonbindingsexample_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/PythonBindingsExample/pythonbindingsexample_tests_files.cmake b/Code/Tools/PythonBindingsExample/pythonbindingsexample_tests_files.cmake index 037f6b452f..5180357346 100644 --- a/Code/Tools/PythonBindingsExample/pythonbindingsexample_tests_files.cmake +++ b/Code/Tools/PythonBindingsExample/pythonbindingsexample_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/PythonBindingsExample/source/Application.cpp b/Code/Tools/PythonBindingsExample/source/Application.cpp index 0601179182..9fdcab4c12 100644 --- a/Code/Tools/PythonBindingsExample/source/Application.cpp +++ b/Code/Tools/PythonBindingsExample/source/Application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/source/Application.h b/Code/Tools/PythonBindingsExample/source/Application.h index afbcd4f05a..ff42533f04 100644 --- a/Code/Tools/PythonBindingsExample/source/Application.h +++ b/Code/Tools/PythonBindingsExample/source/Application.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/source/ApplicationParameters.cpp b/Code/Tools/PythonBindingsExample/source/ApplicationParameters.cpp index 4b994c6c64..929f4456bf 100644 --- a/Code/Tools/PythonBindingsExample/source/ApplicationParameters.cpp +++ b/Code/Tools/PythonBindingsExample/source/ApplicationParameters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/source/ApplicationParameters.h b/Code/Tools/PythonBindingsExample/source/ApplicationParameters.h index fbde1978cb..7d1b258bac 100644 --- a/Code/Tools/PythonBindingsExample/source/ApplicationParameters.h +++ b/Code/Tools/PythonBindingsExample/source/ApplicationParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/source/Platform/Common/Clang/pythonbindingsexample_clang.cmake b/Code/Tools/PythonBindingsExample/source/Platform/Common/Clang/pythonbindingsexample_clang.cmake index e75bb7f45a..fb29e53c94 100644 --- a/Code/Tools/PythonBindingsExample/source/Platform/Common/Clang/pythonbindingsexample_clang.cmake +++ b/Code/Tools/PythonBindingsExample/source/Platform/Common/Clang/pythonbindingsexample_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/PythonBindingsExample/source/Platform/Common/MSVC/pythonbindingsexample_msvc.cmake b/Code/Tools/PythonBindingsExample/source/Platform/Common/MSVC/pythonbindingsexample_msvc.cmake index 8727d11eab..bf44d5754d 100644 --- a/Code/Tools/PythonBindingsExample/source/Platform/Common/MSVC/pythonbindingsexample_msvc.cmake +++ b/Code/Tools/PythonBindingsExample/source/Platform/Common/MSVC/pythonbindingsexample_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/PythonBindingsExample/source/main.cpp b/Code/Tools/PythonBindingsExample/source/main.cpp index 73f380db8c..402b0f2436 100644 --- a/Code/Tools/PythonBindingsExample/source/main.cpp +++ b/Code/Tools/PythonBindingsExample/source/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp b/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp index b9bed86c28..c2b4d6f6c2 100644 --- a/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp +++ b/Code/Tools/PythonBindingsExample/tests/ApplicationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/tests/TestMain.cpp b/Code/Tools/PythonBindingsExample/tests/TestMain.cpp index daba5dc657..fce6c9e9a2 100644 --- a/Code/Tools/PythonBindingsExample/tests/TestMain.cpp +++ b/Code/Tools/PythonBindingsExample/tests/TestMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/PythonBindingsExample/tests/run_python_tests.bat b/Code/Tools/PythonBindingsExample/tests/run_python_tests.bat index fef216277a..2d80c2a813 100644 --- a/Code/Tools/PythonBindingsExample/tests/run_python_tests.bat +++ b/Code/Tools/PythonBindingsExample/tests/run_python_tests.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Code/Tools/PythonBindingsExample/tests/test_framework.py b/Code/Tools/PythonBindingsExample/tests/test_framework.py index adc1e3b7b8..2079511e2e 100755 --- a/Code/Tools/PythonBindingsExample/tests/test_framework.py +++ b/Code/Tools/PythonBindingsExample/tests/test_framework.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Code/Tools/PythonBindingsExample/tests/test_hello_tool.py b/Code/Tools/PythonBindingsExample/tests/test_hello_tool.py index 7d16a5d881..2336a5bdbc 100755 --- a/Code/Tools/PythonBindingsExample/tests/test_hello_tool.py +++ b/Code/Tools/PythonBindingsExample/tests/test_hello_tool.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Code/Tools/PythonBindingsExample/tool_dependencies.cmake b/Code/Tools/PythonBindingsExample/tool_dependencies.cmake index 8b1a630bac..03da861928 100644 --- a/Code/Tools/PythonBindingsExample/tool_dependencies.cmake +++ b/Code/Tools/PythonBindingsExample/tool_dependencies.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/RemoteConsole/CMakeLists.txt b/Code/Tools/RemoteConsole/CMakeLists.txt index 22944db2ba..18dcdbaf23 100644 --- a/Code/Tools/RemoteConsole/CMakeLists.txt +++ b/Code/Tools/RemoteConsole/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp index 18781b36e6..ec3951c558 100644 --- a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp +++ b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h index 176fdc93aa..105f541c31 100644 --- a/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h +++ b/Code/Tools/RemoteConsole/Core/RemoteConsoleCore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Core/remoteconsolecore_files.cmake b/Code/Tools/RemoteConsole/Core/remoteconsolecore_files.cmake index 9db37db76b..d948d83a39 100644 --- a/Code/Tools/RemoteConsole/Core/remoteconsolecore_files.cmake +++ b/Code/Tools/RemoteConsole/Core/remoteconsolecore_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Android.h b/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Android.h index 2a0f2b01e3..62cc13cf8c 100644 --- a/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Android.h +++ b/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Platform.h b/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Platform.h index 2e5f5c5e98..0b09092627 100644 --- a/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Platform.h +++ b/Code/Tools/RemoteConsole/Platform/Android/RemoteConsole_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Android/platform_android_files.cmake b/Code/Tools/RemoteConsole/Platform/Android/platform_android_files.cmake index d8c1d08ff3..4ef3043145 100644 --- a/Code/Tools/RemoteConsole/Platform/Android/platform_android_files.cmake +++ b/Code/Tools/RemoteConsole/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Linux.h b/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Linux.h index 2a0f2b01e3..62cc13cf8c 100644 --- a/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Linux.h +++ b/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Platform.h b/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Platform.h index 052d753e28..5e88ef1124 100644 --- a/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Platform.h +++ b/Code/Tools/RemoteConsole/Platform/Linux/RemoteConsole_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Linux/platform_linux_files.cmake b/Code/Tools/RemoteConsole/Platform/Linux/platform_linux_files.cmake index b215cd76b7..7ae9810d7b 100644 --- a/Code/Tools/RemoteConsole/Platform/Linux/platform_linux_files.cmake +++ b/Code/Tools/RemoteConsole/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Mac.h b/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Mac.h index 2a0f2b01e3..62cc13cf8c 100644 --- a/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Mac.h +++ b/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Platform.h b/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Platform.h index 4189c249c5..062e2d332f 100644 --- a/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Platform.h +++ b/Code/Tools/RemoteConsole/Platform/Mac/RemoteConsole_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Mac/platform_mac_files.cmake b/Code/Tools/RemoteConsole/Platform/Mac/platform_mac_files.cmake index 0ba12eb9c5..4e62368114 100644 --- a/Code/Tools/RemoteConsole/Platform/Mac/platform_mac_files.cmake +++ b/Code/Tools/RemoteConsole/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Platform.h b/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Platform.h index 4f640b13de..4bba9a18fb 100644 --- a/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Platform.h +++ b/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Windows.h b/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Windows.h index 2a0f2b01e3..62cc13cf8c 100644 --- a/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Windows.h +++ b/Code/Tools/RemoteConsole/Platform/Windows/RemoteConsole_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/Windows/platform_windows_files.cmake b/Code/Tools/RemoteConsole/Platform/Windows/platform_windows_files.cmake index 90d6ad0466..f69668845f 100644 --- a/Code/Tools/RemoteConsole/Platform/Windows/platform_windows_files.cmake +++ b/Code/Tools/RemoteConsole/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_Platform.h b/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_Platform.h index 92796e33cd..d01419c3ee 100644 --- a/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_Platform.h +++ b/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_iOS.h b/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_iOS.h index 2a0f2b01e3..62cc13cf8c 100644 --- a/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_iOS.h +++ b/Code/Tools/RemoteConsole/Platform/iOS/RemoteConsole_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/RemoteConsole/Platform/iOS/platform_ios_files.cmake b/Code/Tools/RemoteConsole/Platform/iOS/platform_ios_files.cmake index d80120bd96..9081267c71 100644 --- a/Code/Tools/RemoteConsole/Platform/iOS/platform_ios_files.cmake +++ b/Code/Tools/RemoteConsole/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/CMakeLists.txt b/Code/Tools/SceneAPI/CMakeLists.txt index ca5e420cf9..6085b7a691 100644 --- a/Code/Tools/SceneAPI/CMakeLists.txt +++ b/Code/Tools/SceneAPI/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/CMakeLists.txt b/Code/Tools/SceneAPI/FbxSceneBuilder/CMakeLists.txt index 29b81886c2..5df1777048 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/CMakeLists.txt +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp index 19b082a814..a9ff537910 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp index df725aed32..8df2ca71c2 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h index 77224ad749..88c7322807 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.cpp index 22b4a5a7ca..0a2df783f1 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.h index fb2dd35477..9eb85e4f2d 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneBuilderConfiguration.h b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneBuilderConfiguration.h index a3ba6cedca..6f1bed9665 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneBuilderConfiguration.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneBuilderConfiguration.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.cpp index d764a39ae6..bb1f0e71b1 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.h b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.h index f5aa10e16a..0667b9969e 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.cpp index 2ce7a384ad..a3ba23065d 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.h b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.h index db8db25a01..99002d1528 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.cpp index 2e3a2803f0..130501533d 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.h b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.h index 9a63305d16..590b585661 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.cpp index e5dd401c5f..071f17a687 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.h index 3d2faf3e9f..07a4fe362f 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.cpp index b317c3cfa2..214ced0dc3 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.h index 7625c0f483..363beabcf6 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.cpp index a8d1c2d730..dbf431a50a 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.h index 6f1b6d475e..fd1b18f812 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp index 1828919c46..2df34fc42e 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.h index f1371c8d11..9b1fc6c390 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.cpp index 83fe50919e..f220f861e3 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.h index 2e98f397d9..6551f6434c 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.cpp index 95025851f7..706f0bda29 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.h index 26e65f9cda..a7bb2d3c7c 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.cpp index 6ae53a87b9..57ae04cc19 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.h index 5a13dc1c7a..1879159432 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.cpp index 95c43a444f..1f1f2c3567 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.h index 95c748b209..b7da6e375f 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.cpp index d8a095b5ef..a8e954cf35 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.h index fbd59ead14..3183acb665 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.cpp index db81422a61..b83ec3872e 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.h index a442a90b39..76b196b8e2 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.cpp index d762b21671..e4a85b15b9 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.h index 63e3ed4dc0..91a479f341 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp index 5f9ffbd9b3..5025017923 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.h index 4e1bc8c05e..418c673dd4 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.cpp index b92b86fa25..7c3569a159 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.h index 0334fa01d1..21ef69c8bc 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.cpp index 0b8c51d079..89ec1142d8 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.h index c035630ea6..2f6ce68561 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.inl b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.inl index f04497613b..aede722b0b 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.inl +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp index b691964a74..9ced6af005 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h index 60e08177b7..a57fbb98ae 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.cpp index d5dd8fae3f..d87c81bcb6 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.h index 012f0febab..8bbba5c8c8 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Linux/platform_linux_files.cmake b/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Linux/platform_linux_files.cmake index e3f589e1b5..086f882c8e 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Linux/platform_linux_files.cmake +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Mac/platform_mac_files.cmake b/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Mac/platform_mac_files.cmake index e3f589e1b5..086f882c8e 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Mac/platform_mac_files.cmake +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Windows/platform_windows_files.cmake b/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Windows/platform_windows_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Windows/platform_windows_files.cmake +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp index 652cbcf362..ed606e32b1 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp index 6636deb44e..7f25508b5d 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.cpp index c1fcfcaa4b..5ffde190e9 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.h index f99008c436..077e387e08 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.cpp index 63a6083f03..8824070ff4 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.h index 350e8095b0..8ba9d6f036 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.cpp index 816816158d..dbd3c175b7 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.h b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.h index 4806f5680b..6c741479a8 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.h +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestsMain.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestsMain.cpp index d0714f7f93..841e76da4c 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestsMain.cpp +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestsMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_files.cmake b/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_files.cmake index 4dddbc061c..0e3a793af1 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_files.cmake +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_shared_files.cmake b/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_shared_files.cmake index c476c71c04..2bb8abacff 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_shared_files.cmake +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_testing_files.cmake b/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_testing_files.cmake index b9240d192e..8f84805438 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_testing_files.cmake +++ b/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_testing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.cpp index 80937fe6f5..de0e4f53a5 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.h index 6d45120d52..1a1ec42e43 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpMaterialWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp index 194ce4ca0f..8819053152 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h index efc30e1899..203f0a5fa5 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.cpp index 0900b3d9ad..8a01d70094 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.h index e65782b1cd..0850789a23 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpSceneWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.cpp b/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.cpp index 314ba37f7b..79b007b771 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.h b/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.h index e838accb8f..6e9e42b4bb 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.h +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpTypeConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/CMakeLists.txt b/Code/Tools/SceneAPI/SDKWrapper/CMakeLists.txt index 45fb49fe05..1dc0c5b316 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/CMakeLists.txt +++ b/Code/Tools/SceneAPI/SDKWrapper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp index fe213670a2..efcab5cc2c 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h index 97bf030bba..7ad4148ad8 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp index 6e1e7b9d05..9adc93ff69 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h index 70ef3cc7dc..1863bc3751 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp index 5275d5b4c3..2329221a2c 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h index 7bbe401c89..f5dcc0d862 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SDKWrapper/sdkwrapper_files.cmake b/Code/Tools/SceneAPI/SDKWrapper/sdkwrapper_files.cmake index 6a9ca722f9..1337820131 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/sdkwrapper_files.cmake +++ b/Code/Tools/SceneAPI/SDKWrapper/sdkwrapper_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneCore/CMakeLists.txt b/Code/Tools/SceneAPI/SceneCore/CMakeLists.txt index f29f6406b3..54484455cb 100644 --- a/Code/Tools/SceneAPI/SceneCore/CMakeLists.txt +++ b/Code/Tools/SceneAPI/SceneCore/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.cpp b/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.cpp index 20e51ba6ab..14cd4ba0ff 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.h b/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.h index f2ff11ba6a..bc23ab1702 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/BehaviorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.cpp b/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.cpp index 117f2fe2c2..62daba1197 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.h b/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.h index 92cfaa7d37..1d778e55bc 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/ExportingComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.cpp b/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.cpp index 2dd0e7f3b7..0f50a54fc9 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.h b/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.h index 853d56cf14..e9176192ae 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/GenerationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.cpp b/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.cpp index c65310ea14..14fc216b61 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.h b/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.h index c5e3c0c192..0c9e0973ea 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/LoadingComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.cpp b/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.cpp index edb419e2c5..1c717876a8 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.h b/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.h index 88ea14fb81..1628d527d5 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/RCExportingComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.cpp b/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.cpp index 9129e29e73..e139a74c6b 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h b/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h index 4bc582ff61..ef2661523a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/SceneSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.cpp b/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.cpp index b8415a5217..832e77b4ad 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.h b/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.h index df0c54b596..d49122f72d 100644 --- a/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.h +++ b/Code/Tools/SceneAPI/SceneCore/Components/Utilities/EntityConstructor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.cpp index 11bff26630..1cb01654da 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.h b/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.h index cb8916d3b4..bb49b88ba7 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/GraphObjectProxy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.cpp index 42c43b9e4f..8312852a3c 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.h b/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.h index f890204dc7..0fc9cf770a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.inl b/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.inl index 5d8bf6c5de..ee5baef150 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/RuleContainer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Scene.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/Scene.cpp index 57f909d188..63efd4ec23 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Scene.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Scene.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h b/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h index 914e3012b7..fa8b98e5e4 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Scene.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.cpp index 891f638d20..1893fafb3d 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h index b2160fda32..2b0cb968a8 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.inl b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.inl index 19c23fec4f..158ba60f91 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp index 049a1f9f05..8d390c2c09 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h index 5143b5e455..c7518b475d 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.inl b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.inl index b4de910009..5b1c1484f2 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneManifest.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.h b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.h index 15f71e1df7..0148e3d967 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.inl index fb050c4579..9f3c1afbc1 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/Filters.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.h b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.h index f652e4fdc1..fe70d8d0f4 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.inl index ed80c42b97..8aeca4e750 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/ProxyPointer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.cpp index 81f4bcba9b..8820f524b9 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.h b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.h index 545b1bbe28..9eb5d4cc91 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.inl index e2ebae6f40..99bc4ad8ea 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneGraphUtilities.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.cpp b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.cpp index f4d7623a26..9eb7236bfc 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.h b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.h index b79ac1617a..dcb143d696 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Utilities/SceneUtilities.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.h b/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.h index 6d6de089bd..422c934474 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.inl index 681929047f..bdddd1ada6 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/ConvertIterator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.h b/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.h index fca46d3609..60e15c8e3b 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.inl index 9720dced37..1c19278145 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/FilterIterator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.h b/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.h index 0a56a09679..34eb543e55 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.inl index 900d792339..525186cc8f 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/PairIterator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.h b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.h index ca57c0dcde..2b22c7dd61 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.inl index ba366f3b6a..d6ef6c5151 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphChildIterator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.h b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.h index cc6346e208..a16779c555 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.inl index 504dd499d0..90edee819c 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphDownwardsIterator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.h b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.h index 46c329c956..feb8979222 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.inl index 16103aa98d..48e13945b4 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/SceneGraphUpwardsIterator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.h b/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.h index 6f38ac8deb..90c781ae12 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.inl b/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.inl index 2078f91372..f4a5bfbeb0 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.inl +++ b/Code/Tools/SceneAPI/SceneCore/Containers/Views/View.inl @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.cpp b/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.cpp index c49274bf89..dae2515e0b 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.cpp +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.h index 8dd6b288c4..94cd587f32 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.inl b/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.inl index 25ca18d52b..461b613103 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.inl +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/DataTypeUtilities.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IAnimationData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IAnimationData.h index 96378f97e2..ff11ceb4f6 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IAnimationData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IAnimationData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBlendShapeData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBlendShapeData.h index 86e9c9f016..46a5f021aa 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBlendShapeData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBlendShapeData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBoneData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBoneData.h index 807ac23b4a..01d6bb5fe2 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBoneData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IBoneData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMaterialData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMaterialData.h index eb6c512e5a..66f62d45c2 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMaterialData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMaterialData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h index 4cd5862324..16a5f509e0 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexBitangentData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexBitangentData.h index 3a3a820db7..d15a6664e8 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexBitangentData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexBitangentData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexColorData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexColorData.h index c24edf51bb..4537b160e6 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexColorData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexColorData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h index e73be1a8a9..908c1a2420 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexUVData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexUVData.h index 431c988ade..89d09b9889 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexUVData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexUVData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ISkinWeightData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ISkinWeightData.h index eb44744659..378aa59242 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ISkinWeightData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ISkinWeightData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ITransform.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ITransform.h index 8c056fead1..f6496abd94 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ITransform.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/ITransform.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IAnimationGroup.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IAnimationGroup.h index 55865e2347..268e1b27b8 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IAnimationGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IAnimationGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IGroup.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IGroup.h index e793f71738..7544d37a35 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IMeshGroup.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IMeshGroup.h index 173c547e88..fecfd11638 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IMeshGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/IMeshGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISceneNodeGroup.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISceneNodeGroup.h index 41777e636c..2c57d39878 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISceneNodeGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISceneNodeGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkeletonGroup.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkeletonGroup.h index 8b11f18f45..2ed759fa70 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkeletonGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkeletonGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkinGroup.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkinGroup.h index d6a8d6e45f..43c401ac90 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkinGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Groups/ISkinGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/IGraphObject.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/IGraphObject.h index 9719175d48..a17e5c5957 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/IGraphObject.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/IGraphObject.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/IManifestObject.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/IManifestObject.h index 908dd57319..0b1474b20d 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/IManifestObject.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/IManifestObject.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/ManifestBase/ISceneNodeSelectionList.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/ManifestBase/ISceneNodeSelectionList.h index 49737dc27b..5901963411 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/ManifestBase/ISceneNodeSelectionList.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/ManifestBase/ISceneNodeSelectionList.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/MatrixType.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/MatrixType.h index a048237879..4de668936d 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/MatrixType.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/MatrixType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IBlendShapeRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IBlendShapeRule.h index b5559c10cd..977079ab85 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IBlendShapeRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IBlendShapeRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IClothRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IClothRule.h index f198e0a76a..2c4230a6d5 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IClothRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IClothRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICommentRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICommentRule.h index feea6c6612..f57dddd0e1 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICommentRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICommentRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICoordinateSystemRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICoordinateSystemRule.h index e0256386e2..6a284abd23 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICoordinateSystemRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ICoordinateSystemRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ILodRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ILodRule.h index 3bafb24577..921f76aa0c 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ILodRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ILodRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMaterialRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMaterialRule.h index fc128b019e..8070a0082d 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMaterialRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMaterialRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMeshAdvancedRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMeshAdvancedRule.h index 05c8d6d828..6b46e1d15c 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMeshAdvancedRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IMeshAdvancedRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IRule.h index a9ddf00f3d..b85d89bef2 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IScriptProcessorRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IScriptProcessorRule.h index d01934044d..257fa53a17 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IScriptProcessorRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/IScriptProcessorRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkeletonProxyRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkeletonProxyRule.h index a0e4999071..e5105a67e2 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkeletonProxyRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkeletonProxyRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkinRule.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkinRule.h index 20a83cd068..21f165700c 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkinRule.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/Rules/ISkinRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/DllMain.cpp b/Code/Tools/SceneAPI/SceneCore/DllMain.cpp index 348d2fde97..7874ada7be 100644 --- a/Code/Tools/SceneAPI/SceneCore/DllMain.cpp +++ b/Code/Tools/SceneAPI/SceneCore/DllMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.cpp b/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.cpp index a1351307dd..a4de7ab41a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.h b/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.h index 72157de5b7..46b02bb515 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/AssetImportRequest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.cpp b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.cpp index b0872522b6..ea6c8a4791 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.h b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.h index c63bf8e240..5ca2d0cc18 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.inl b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.inl index 5d6cc92710..83e37c5629 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.inl +++ b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBinder.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.cpp b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.cpp index cea84b4e05..8b1b818c43 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.h b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.h index 3c401d231c..5ac3a79eca 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.inl b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.inl index c9a901a626..630c3b2f90 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.inl +++ b/Code/Tools/SceneAPI/SceneCore/Events/CallProcessorBus.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.cpp b/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.cpp index 47181f08da..e9d6cc4d89 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.h b/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.h index 89a65a47d4..aa38155604 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/ExportEventContext.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.cpp b/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.cpp index 21998cc8f2..c3a9abcbd2 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.h b/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.h index f903a13f42..38deea3f9f 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/ExportProductList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.cpp b/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.cpp index 5708a10a6a..0a0438f6f4 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.h b/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.h index 29cc8fd8ab..6836b40a92 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/GenerateEventContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/GraphMetaInfoBus.h b/Code/Tools/SceneAPI/SceneCore/Events/GraphMetaInfoBus.h index 404ed96f8b..e200cccf43 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/GraphMetaInfoBus.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/GraphMetaInfoBus.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.cpp b/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.cpp index 4a4bdd3de8..707e0ef1e2 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.h b/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.h index 225d1dbbc0..e5e7428cd1 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/ImportEventContext.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.cpp b/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.cpp index 84723dcc0a..d4e72b673a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.h b/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.h index da71cd8061..100bdc9d99 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/ManifestMetaInfoBus.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.cpp b/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.cpp index b718b6745d..1a128d9b0d 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.h b/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.h index 83316d4334..1cc1b50668 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/ProcessingResult.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Events/SceneSerializationBus.h b/Code/Tools/SceneAPI/SceneCore/Events/SceneSerializationBus.h index 838ba904f8..ccdc15bcf9 100644 --- a/Code/Tools/SceneAPI/SceneCore/Events/SceneSerializationBus.h +++ b/Code/Tools/SceneAPI/SceneCore/Events/SceneSerializationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.cpp b/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.cpp index 07a0361636..75d74f369a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.h b/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.h index d0a2e4d8be..78cd2a5937 100644 --- a/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.h +++ b/Code/Tools/SceneAPI/SceneCore/Export/MtlMaterialExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.cpp b/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.cpp index 7c5039c328..a4b002db7d 100644 --- a/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.h b/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.h index e337c1536f..dc1ddc4433 100644 --- a/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.h +++ b/Code/Tools/SceneAPI/SceneCore/Import/ManifestImportRequestHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/Containers/MockScene.h b/Code/Tools/SceneAPI/SceneCore/Mocks/Containers/MockScene.h index 86e05cec21..2fa4494de2 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/Containers/MockScene.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/Containers/MockScene.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIBlendShapeData.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIBlendShapeData.h index 6d0980686c..5a74fd4dd9 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIBlendShapeData.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIBlendShapeData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshData.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshData.h index eb65ad79bc..be3dd9e0bf 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshData.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexColorData.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexColorData.h index 0392a5ca46..de26281e96 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexColorData.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexColorData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexUVData.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexUVData.h index 0a940ddd2c..078b13de9d 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexUVData.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockIMeshVertexUVData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockITransform.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockITransform.h index 5f99ce3ff5..fcf08d02f6 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockITransform.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/GraphData/MockITransform.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIGroup.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIGroup.h index b53ae3afec..804e169cc5 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIMeshGroup.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIMeshGroup.h index 89aaa84f63..bfed32d283 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIMeshGroup.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Groups/MockIMeshGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/ManifestBase/MockISceneNodeSelectionList.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/ManifestBase/MockISceneNodeSelectionList.h index 17f1bc2136..0a9861b530 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/ManifestBase/MockISceneNodeSelectionList.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/ManifestBase/MockISceneNodeSelectionList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/MockIGraphObject.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/MockIGraphObject.h index 9f51e15443..14b03e9e24 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/MockIGraphObject.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/MockIGraphObject.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIBlendShapeRule.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIBlendShapeRule.h index ffbb69ef99..8531c23eda 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIBlendShapeRule.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIBlendShapeRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIMeshAdvancedRule.h b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIMeshAdvancedRule.h index a130cc18ff..0194033be9 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIMeshAdvancedRule.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/DataTypes/Rules/MockIMeshAdvancedRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Mocks/Events/MockAssetImportRequest.h b/Code/Tools/SceneAPI/SceneCore/Mocks/Events/MockAssetImportRequest.h index c0c2f73155..5c28c2ff0e 100644 --- a/Code/Tools/SceneAPI/SceneCore/Mocks/Events/MockAssetImportRequest.h +++ b/Code/Tools/SceneAPI/SceneCore/Mocks/Events/MockAssetImportRequest.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h b/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h index c632f99da2..c6b2898c49 100644 --- a/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h +++ b/Code/Tools/SceneAPI/SceneCore/SceneBuilderDependencyBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/SceneCoreConfiguration.h b/Code/Tools/SceneAPI/SceneCore/SceneCoreConfiguration.h index bbc092fdb5..16b5031e11 100644 --- a/Code/Tools/SceneAPI/SceneCore/SceneCoreConfiguration.h +++ b/Code/Tools/SceneAPI/SceneCore/SceneCoreConfiguration.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.cpp b/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.cpp index 817538ee15..84395d3292 100644 --- a/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.cpp +++ b/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.h b/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.h index c7c0cefaec..8dc831d3aa 100644 --- a/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.h +++ b/Code/Tools/SceneAPI/SceneCore/SceneCoreStandaloneAllocator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp index 5e5a6086dd..e1c72bc8b4 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneBehaviorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp index 9da5c9e9e2..37d4302197 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneGraphTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp index dbcbc0ac7e..e263b88164 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneManifestTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneTests.cpp index 1305c4f18a..d5579f2a47 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/SceneTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Utilities/FiltersTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Utilities/FiltersTests.cpp index 2150c6640f..153308666f 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Utilities/FiltersTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Utilities/FiltersTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/ConvertIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/ConvertIteratorTests.cpp index 17daab23ff..42be341c90 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/ConvertIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/ConvertIteratorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/FilterIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/FilterIteratorTests.cpp index 726c3479f8..6be47c57bc 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/FilterIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/FilterIteratorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorConformityTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorConformityTests.cpp index 6b6843aece..023ecf2357 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorConformityTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorConformityTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorTestsBase.h b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorTestsBase.h index 39c6295df6..94312ba012 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorTestsBase.h +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/IteratorTestsBase.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp index 8c4e7a8dbd..c681718df8 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/PairIteratorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphChildIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphChildIteratorTests.cpp index a6e1c6136f..0332b4b4d2 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphChildIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphChildIteratorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp index e90a55e9e1..e57df2ad2e 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphDownwardsIteratorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphUpwardsIteratorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphUpwardsIteratorTests.cpp index 0c521890aa..c32ba6a69a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphUpwardsIteratorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Containers/Views/SceneGraphUpwardsIteratorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/DataObjectTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/DataObjectTests.cpp index 1a2edfd022..4d78480680 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/DataObjectTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/DataObjectTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Events/AssetImporterRequestTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Events/AssetImporterRequestTests.cpp index 796da1b87b..bea11e0351 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Events/AssetImporterRequestTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Events/AssetImporterRequestTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Export/MaterialIOTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Export/MaterialIOTests.cpp index c413ae7353..499373fedd 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Export/MaterialIOTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Export/MaterialIOTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/TestsMain.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/TestsMain.cpp index 897842f52d..d4493d491a 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/TestsMain.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/TestsMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/PatternMatcherTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/PatternMatcherTests.cpp index 4f29f9a7d2..2e49cdc2c7 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/PatternMatcherTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/PatternMatcherTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/SceneGraphSelectorTests.cpp b/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/SceneGraphSelectorTests.cpp index d22abadf78..179df616a7 100644 --- a/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/SceneGraphSelectorTests.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Tests/Utilities/SceneGraphSelectorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.cpp b/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.cpp index 50a88685a2..c8822a42d6 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h b/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h index 462c97c608..c042578efa 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/CoordinateSystemConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.cpp b/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.cpp index 900393f95a..b71f1d1a1c 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.h b/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.h index b3dcd8386c..a83e901135 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.inl b/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.inl index ebd3483149..30648e66b7 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.inl +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/DebugOutput.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.cpp b/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.cpp index f335eabc65..809ad153ee 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.h b/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.h index 89f4a7e307..742b013198 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/FileUtilities.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/HashHelper.h b/Code/Tools/SceneAPI/SceneCore/Utilities/HashHelper.h index 937614a5ab..4d341627d1 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/HashHelper.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/HashHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.cpp b/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.cpp index 84f2906491..d28597cade 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.h b/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.h index 562c60fc41..73eab08024 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/PatternMatcher.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/Reporting.h b/Code/Tools/SceneAPI/SceneCore/Utilities/Reporting.h index eba9d207f0..ba60fa1d62 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/Reporting.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/Reporting.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.cpp b/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.cpp index 8eaa3a9a4a..ebe77cc05d 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.cpp +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.h b/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.h index 515b9f7b7f..d264889e04 100644 --- a/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.h +++ b/Code/Tools/SceneAPI/SceneCore/Utilities/SceneGraphSelector.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneCore/scenecore_files.cmake b/Code/Tools/SceneAPI/SceneCore/scenecore_files.cmake index 62162d3560..0702527465 100644 --- a/Code/Tools/SceneAPI/SceneCore/scenecore_files.cmake +++ b/Code/Tools/SceneAPI/SceneCore/scenecore_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneCore/scenecore_testing_files.cmake b/Code/Tools/SceneAPI/SceneCore/scenecore_testing_files.cmake index 1872225a63..255ced71d5 100644 --- a/Code/Tools/SceneAPI/SceneCore/scenecore_testing_files.cmake +++ b/Code/Tools/SceneAPI/SceneCore/scenecore_testing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/AnimationGroup.h b/Code/Tools/SceneAPI/SceneData/Behaviors/AnimationGroup.h index 3b52ec5e1c..1f0744aa73 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/AnimationGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/AnimationGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsAnimationGroup.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsAnimationGroup.cpp index 9c7b29bb52..a27277cf64 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsAnimationGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsAnimationGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsMeshGroup.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsMeshGroup.cpp index aa392f622d..24cc6db49d 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsMeshGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsMeshGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkeletonGroup.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkeletonGroup.cpp index 01a652f45d..639d4a16b7 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkeletonGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkeletonGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkinGroup.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkinGroup.cpp index 3fe03f4178..8f82783199 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkinGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/BehaviorsSkinGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.cpp index de6c8edef5..e24e1001f1 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.h b/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.h index 9fa2e01de9..405dcab342 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/BlendShapeRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.cpp index 94967e9469..e2b70d5cd2 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.h b/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.h index 077492a449..d23bb3892c 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/LodRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.cpp index bf17eeeea3..682a8212b3 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.h b/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.h index bdbdabc475..524f96abe3 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/MaterialRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.cpp index ecdd5baac9..2a050def60 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.h b/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.h index 6a3790126f..4b71283dd2 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/MeshAdvancedRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/MeshGroup.h b/Code/Tools/SceneAPI/SceneData/Behaviors/MeshGroup.h index ebe518c6f3..d5387030dc 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/MeshGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/MeshGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.cpp index 3a77a111a2..a8c43c65ed 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.h b/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.h index f59b6ef69d..277b00251a 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/Registry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.cpp index a5d77a16ba..5ae547b577 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.h b/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.h index 2ed26ba8e6..da11614459 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/ScriptProcessorRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/SkeletonGroup.h b/Code/Tools/SceneAPI/SceneData/Behaviors/SkeletonGroup.h index 9f259f44a8..24c70698f2 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/SkeletonGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/SkeletonGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/SkinGroup.h b/Code/Tools/SceneAPI/SceneData/Behaviors/SkinGroup.h index 5682400cb1..391d1e1bf2 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/SkinGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/SkinGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.cpp b/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.cpp index db31f98e5a..b2fc1e66fe 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.cpp +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.h b/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.h index 0a4522dd87..15f6bc9a7b 100644 --- a/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.h +++ b/Code/Tools/SceneAPI/SceneData/Behaviors/SkinRuleBehavior.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/CMakeLists.txt b/Code/Tools/SceneAPI/SceneData/CMakeLists.txt index d2fba62bb4..63f0730020 100644 --- a/Code/Tools/SceneAPI/SceneData/CMakeLists.txt +++ b/Code/Tools/SceneAPI/SceneData/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/DllMain.cpp b/Code/Tools/SceneAPI/SceneData/DllMain.cpp index e7d04f4b19..8e1412cfa2 100644 --- a/Code/Tools/SceneAPI/SceneData/DllMain.cpp +++ b/Code/Tools/SceneAPI/SceneData/DllMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.cpp index 38420f9b3e..9c968eafe6 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.h b/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.h index 0b5c9b6d52..923d8a1fdf 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/AnimationData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.cpp index 4e862c7c4d..b271106119 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.h b/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.h index 1c7c812352..44ce184868 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/BlendShapeData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.cpp index 777f1c8928..b1d68ad18b 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.h b/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.h index 90fc5688a0..ac816dbb11 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/BoneData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp index 0b1d7293e8..4163ce8b18 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.h index 687933ea7f..cb08253b87 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MaterialData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.cpp index 81573a4228..9bf1fc7632 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.h index a5b1956e41..7b9528a288 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.cpp index c5939aee7e..8546a916a5 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.h index 4add9b6bac..3256a4f16a 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshDataPrimitiveUtils.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp index 9288dfdc7b..9ed9d41824 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h index d6d300b555..8ef10f3e2a 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.cpp index 45fbf78993..6cb667adbd 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.h index 28278d3183..22f3cb1c97 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexColorData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp index 559a223435..58d59c04cb 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h index e28090aa17..333ab68f7e 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.cpp index 11dbe84f1f..e5c57f884f 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.h index 2fa3c664d2..db4ae8eed5 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexUVData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.cpp index bd3b9b5e0f..dc75f6d127 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.h b/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.h index 57a609d1d8..38e573e72a 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/RootBoneData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/SkinMeshData.h b/Code/Tools/SceneAPI/SceneData/GraphData/SkinMeshData.h index 56aa883a6a..80e80eadea 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/SkinMeshData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/SkinMeshData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.cpp index ecc2024316..3e1757227e 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.h b/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.h index 0179a6df56..8d9145cf7e 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/SkinWeightData.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.cpp index ab3aabfd52..4595a9ee04 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.h b/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.h index 26f7516c04..adc3dacfca 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/TransformData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.cpp b/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.cpp index 1fc92859d2..6c1ecbbc28 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.h b/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.h index d85301cf27..5e196b59e7 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Groups/AnimationGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.cpp b/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.cpp index f0132122ea..f2f7405eed 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.h b/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.h index aaa9375b0e..c06c91a808 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Groups/MeshGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.cpp b/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.cpp index fd3076de05..83fca4954d 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.h b/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.h index 934b8ae91a..b68ee3684f 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Groups/SkeletonGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.cpp b/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.cpp index 55e69fa6a1..39785b1d6e 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.cpp +++ b/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.h b/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.h index 7e7b660dec..7ff46a85cd 100644 --- a/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.h +++ b/Code/Tools/SceneAPI/SceneData/Groups/SkinGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.cpp b/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.cpp index 62288b78eb..4113e4daa4 100644 --- a/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.cpp +++ b/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.h b/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.h index 103a4e4edd..40379c4d20 100644 --- a/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.h +++ b/Code/Tools/SceneAPI/SceneData/ManifestBase/SceneNodeSelectionList.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.cpp b/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.cpp index 8b24d470ae..0ea5091419 100644 --- a/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.cpp +++ b/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.h b/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.h index e2a4e9699d..379b988854 100644 --- a/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.h +++ b/Code/Tools/SceneAPI/SceneData/ManifestMetaInfoHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Platform/Linux/platform_linux_files.cmake b/Code/Tools/SceneAPI/SceneData/Platform/Linux/platform_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Code/Tools/SceneAPI/SceneData/Platform/Linux/platform_linux_files.cmake +++ b/Code/Tools/SceneAPI/SceneData/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/Platform/Mac/platform_mac_files.cmake b/Code/Tools/SceneAPI/SceneData/Platform/Mac/platform_mac_files.cmake index ab4fa27e96..7df1e1ec44 100644 --- a/Code/Tools/SceneAPI/SceneData/Platform/Mac/platform_mac_files.cmake +++ b/Code/Tools/SceneAPI/SceneData/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/Platform/Windows/platform_windows_files.cmake b/Code/Tools/SceneAPI/SceneData/Platform/Windows/platform_windows_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Code/Tools/SceneAPI/SceneData/Platform/Windows/platform_windows_files.cmake +++ b/Code/Tools/SceneAPI/SceneData/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp b/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp index 6af93bba6b..04018c7bd7 100644 --- a/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp +++ b/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.h b/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.h index 6d0b19d9ee..e00edfa30b 100644 --- a/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.h +++ b/Code/Tools/SceneAPI/SceneData/ReflectionRegistrar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.cpp index 19076b6772..5cab1d9a7e 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.h b/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.h index 6cf5e9dc8d..3ce87cef8d 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/BlendShapeRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.cpp index cd4895572e..5b86f7c24d 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.h b/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.h index fb30d0c467..3a99055fc9 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/CommentRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.cpp index 32eb7b9379..6876db8bee 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.h b/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.h index 5a4f98f1c4..c327b3fc45 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/CoordinateSystemRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/LodRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/LodRule.cpp index d0262e77bd..d8d861b991 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/LodRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/LodRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/LodRule.h b/Code/Tools/SceneAPI/SceneData/Rules/LodRule.h index 8c8fe2c278..f94e61f346 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/LodRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/LodRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.cpp index b15372a8d4..c04d01b61b 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.h b/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.h index fdf2d74d90..c275e00f88 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/MaterialRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.cpp index 65fcf95060..72f019c952 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.h b/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.h index 02ebc175f7..b477615f66 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/ScriptProcessorRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.cpp index a246e039bc..b782f4abe3 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.h b/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.h index 5d50a38322..ebb7b9a0f4 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/SkeletonProxyRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.cpp index 3f67a10f9c..551a2d29e4 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.h b/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.h index 1f44a17bbd..5b81d5c8b4 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/SkinMeshAdvancedRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.cpp index 08cc424d26..8813cbe2ed 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.h b/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.h index d6ee0d05b3..078c4a6905 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/SkinRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.cpp index dca98140f0..045ead8090 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.h b/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.h index cf76f28b3e..878d9b01a2 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/StaticMeshAdvancedRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp index fd994d2ec6..9387d833cc 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.h b/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.h index 526ceb9f0f..66029f02ac 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.h +++ b/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/SceneDataConfiguration.h b/Code/Tools/SceneAPI/SceneData/SceneDataConfiguration.h index 7b740659f2..bb37a315bb 100644 --- a/Code/Tools/SceneAPI/SceneData/SceneDataConfiguration.h +++ b/Code/Tools/SceneAPI/SceneData/SceneDataConfiguration.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.cpp b/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.cpp index e98a4f5a78..66b355579c 100644 --- a/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.cpp +++ b/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.h b/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.h index 6dde2bcefe..22b5adeb93 100644 --- a/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.h +++ b/Code/Tools/SceneAPI/SceneData/SceneDataStandaloneAllocator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/SceneData_darwin_files.cmake b/Code/Tools/SceneAPI/SceneData/SceneData_darwin_files.cmake index 01cf15e996..c2bf68d4d2 100644 --- a/Code/Tools/SceneAPI/SceneData/SceneData_darwin_files.cmake +++ b/Code/Tools/SceneAPI/SceneData/SceneData_darwin_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/SceneData_files.cmake b/Code/Tools/SceneAPI/SceneData/SceneData_files.cmake index 2d682c40d7..1ad2491f52 100644 --- a/Code/Tools/SceneAPI/SceneData/SceneData_files.cmake +++ b/Code/Tools/SceneAPI/SceneData/SceneData_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/SceneData_testing_files.cmake b/Code/Tools/SceneAPI/SceneData/SceneData_testing_files.cmake index 5d76dffe99..4d62252e52 100644 --- a/Code/Tools/SceneAPI/SceneData/SceneData_testing_files.cmake +++ b/Code/Tools/SceneAPI/SceneData/SceneData_testing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp index d56e184cea..d9827e738a 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataPrimitiveUtilsTests.cpp b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataPrimitiveUtilsTests.cpp index 682c24ae36..368431ce85 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataPrimitiveUtilsTests.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataPrimitiveUtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataTests.cpp b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataTests.cpp index 7635633c10..1adec26000 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataTests.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/MeshDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp b/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp index b0aa2fa60e..d246e3a406 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/SceneManifest/SceneManifestRuleTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneData/Tests/TestsMain.cpp b/Code/Tools/SceneAPI/SceneData/Tests/TestsMain.cpp index 68d408dd5e..b44516e4e4 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/TestsMain.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/TestsMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CMakeLists.txt b/Code/Tools/SceneAPI/SceneUI/CMakeLists.txt index d5d40b3bc8..df9d21b71d 100644 --- a/Code/Tools/SceneAPI/SceneUI/CMakeLists.txt +++ b/Code/Tools/SceneAPI/SceneUI/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.cpp b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.cpp index fd3c7dc98b..b0701cab11 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.h b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.h index aa4df4a168..9599310328 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.h +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ExpandCollapseToggler.h @@ -1,6 +1,6 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.cpp b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.cpp index a5c082d2c0..bc03258c0c 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.cpp +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.h b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.h index 75fdeb8ba5..d60f755fd7 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.h +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/JobWatcher.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidget.h b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidget.h index 5f1db50ba6..6056034be6 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidgetLayer.h b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidgetLayer.h index 379a6bd7c2..5a23d31c29 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidgetLayer.h +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/OverlayWidgetLayer.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.cpp b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.cpp index d8c1780bf8..cf96ff5276 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.h b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.h index 4c4f8ac593..bfab1b2054 100644 --- a/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/CommonWidgets/ProcessingOverlayWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/DllMain.cpp b/Code/Tools/SceneAPI/SceneUI/DllMain.cpp index 90f10fd816..f590adca3a 100644 --- a/Code/Tools/SceneAPI/SceneUI/DllMain.cpp +++ b/Code/Tools/SceneAPI/SceneUI/DllMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.cpp b/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.cpp index 5f979da7c6..296661721d 100644 --- a/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.h b/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.h index 6fb68dd139..9f7695a680 100644 --- a/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/GraphMetaInfoHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.cpp b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.cpp index e6a656f6b8..25dcdb943e 100644 --- a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.h b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.h index 21be234792..5d3cd43932 100644 --- a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/AsyncOperationProcessingHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.cpp b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.cpp index 97f5a5b9a8..d1a70c1f90 100644 --- a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.h b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.h index de713ebb73..d8187fe340 100644 --- a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ExportJobProcessingHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.cpp b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.cpp index 4c42c6a6d9..e7923906e7 100644 --- a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.h b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.h index cbb40733dc..bafe244c3f 100644 --- a/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/Handlers/ProcessingHandlers/ProcessingHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.cpp b/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.cpp index bac3fabe60..7422a3904b 100644 --- a/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.h b/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.h index 5e16d68c20..97b6c0b4f7 100644 --- a/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/ManifestMetaInfoHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.cpp index b17b5c1f8b..11944e0b48 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.h index ba4497a70d..ce5ee5708e 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.cpp index 2628e9a1a3..d116a95f47 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.h index 9cae91e757..7b2ccb4ce3 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/HeaderWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.cpp index bb014f49fc..0266626900 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.h index cef4a92ee5..bccbd424fa 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.cpp index 57d32733e9..ec68243c22 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.h index eb0a3c7926..05507d61ed 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestNameWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.cpp index 27f853634b..f5ecb6dd3c 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.h index 42096778cb..c38c973e42 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.cpp index 6d8036e99d..3ddd29099a 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.h index 0e86ee2d2e..421eefee92 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/ManifestVectorWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.cpp index d154ac641a..3c00f6d317 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.h index c55542adce..283b02ffac 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.cpp index 68aed6b349..98b5e034fb 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.h index 28fa46f67e..827f6be8fb 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeListSelectionWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.cpp index 863e6a0ca6..9254a30261 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.h index 1be0beb985..e4af6287ff 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionHandler.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.cpp index 444abf7b9d..950778e4f3 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.h index fa7d691488..ce1ef87601 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/NodeTreeSelectionWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.cpp index 1abaca05b9..331fc9e8ee 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.h index 4ae70af4c1..e0dffeef1a 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp index 82ccd2dc6d..a8103cf798 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.h b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.h index ed69a0632a..77c36028aa 100644 --- a/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/RowWidgets/TransformRowWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneUIConfiguration.h b/Code/Tools/SceneAPI/SceneUI/SceneUIConfiguration.h index 9050cb4226..cf42b2857c 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneUIConfiguration.h +++ b/Code/Tools/SceneAPI/SceneUI/SceneUIConfiguration.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.cpp b/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.cpp index d91dbeec26..1c802666f1 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.cpp +++ b/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.h b/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.h index 9866512340..7fbf7ab038 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.h +++ b/Code/Tools/SceneAPI/SceneUI/SceneUIStandaloneAllocator.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneUI_files.cmake b/Code/Tools/SceneAPI/SceneUI/SceneUI_files.cmake index 57c252b503..e892f5bb0f 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneUI_files.cmake +++ b/Code/Tools/SceneAPI/SceneUI/SceneUI_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneUI/SceneUI_testing_files.cmake b/Code/Tools/SceneAPI/SceneUI/SceneUI_testing_files.cmake index 018cb0c048..5f270be242 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneUI_testing_files.cmake +++ b/Code/Tools/SceneAPI/SceneUI/SceneUI_testing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.cpp b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.cpp index f2fb1d6e79..d0dc287767 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.h b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.h index feb5b45be5..a83d1e4e0b 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.cpp b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.cpp index b39e1d17bf..692d36b4fc 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.cpp +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.h b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.h index ad7efd1b3e..79fa7bebbc 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.h +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/ManifestWidgetPage.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.cpp b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.cpp index 0de8092f9a..8835768fc5 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.h b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.h index c588591ca7..13369ebd94 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphInspectWidget.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.cpp b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.cpp index ccdaf48959..2b812fe254 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.cpp +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.h b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.h index 99c89e8351..c8bc4f45a5 100644 --- a/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.h +++ b/Code/Tools/SceneAPI/SceneUI/SceneWidgets/SceneGraphWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Tests/RowWidgets/TransformRowWidgetTests.cpp b/Code/Tools/SceneAPI/SceneUI/Tests/RowWidgets/TransformRowWidgetTests.cpp index aa239ba132..e42e327d83 100644 --- a/Code/Tools/SceneAPI/SceneUI/Tests/RowWidgets/TransformRowWidgetTests.cpp +++ b/Code/Tools/SceneAPI/SceneUI/Tests/RowWidgets/TransformRowWidgetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SceneAPI/SceneUI/Tests/TestsMain.cpp b/Code/Tools/SceneAPI/SceneUI/Tests/TestsMain.cpp index 911241cee1..241ed9b373 100644 --- a/Code/Tools/SceneAPI/SceneUI/Tests/TestsMain.cpp +++ b/Code/Tools/SceneAPI/SceneUI/Tests/TestsMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Application.cpp b/Code/Tools/SerializeContextTools/Application.cpp index 98224cceb8..410602a19d 100644 --- a/Code/Tools/SerializeContextTools/Application.cpp +++ b/Code/Tools/SerializeContextTools/Application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Application.h b/Code/Tools/SerializeContextTools/Application.h index 31a2cce948..f3c9a3b7c3 100644 --- a/Code/Tools/SerializeContextTools/Application.h +++ b/Code/Tools/SerializeContextTools/Application.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/CMakeLists.txt b/Code/Tools/SerializeContextTools/CMakeLists.txt index 38affa9eb0..abf3d77e0d 100644 --- a/Code/Tools/SerializeContextTools/CMakeLists.txt +++ b/Code/Tools/SerializeContextTools/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SerializeContextTools/Converter.cpp b/Code/Tools/SerializeContextTools/Converter.cpp index 3b9388c201..b8e2e1154f 100644 --- a/Code/Tools/SerializeContextTools/Converter.cpp +++ b/Code/Tools/SerializeContextTools/Converter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Converter.h b/Code/Tools/SerializeContextTools/Converter.h index ef4dd045f7..f20ad31c9d 100644 --- a/Code/Tools/SerializeContextTools/Converter.h +++ b/Code/Tools/SerializeContextTools/Converter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Dumper.cpp b/Code/Tools/SerializeContextTools/Dumper.cpp index 1b8ee9a9e2..663a7a9572 100644 --- a/Code/Tools/SerializeContextTools/Dumper.cpp +++ b/Code/Tools/SerializeContextTools/Dumper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Dumper.h b/Code/Tools/SerializeContextTools/Dumper.h index eadde699fd..c49ce55b9d 100644 --- a/Code/Tools/SerializeContextTools/Dumper.h +++ b/Code/Tools/SerializeContextTools/Dumper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Platform/Linux/PAL_linux.cmake b/Code/Tools/SerializeContextTools/Platform/Linux/PAL_linux.cmake index 7b05dac9b0..84188fb3c9 100644 --- a/Code/Tools/SerializeContextTools/Platform/Linux/PAL_linux.cmake +++ b/Code/Tools/SerializeContextTools/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SerializeContextTools/Platform/Mac/PAL_mac.cmake b/Code/Tools/SerializeContextTools/Platform/Mac/PAL_mac.cmake index 859b64a84b..1e514a7d9b 100644 --- a/Code/Tools/SerializeContextTools/Platform/Mac/PAL_mac.cmake +++ b/Code/Tools/SerializeContextTools/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SerializeContextTools/Platform/Windows/PAL_windows.cmake b/Code/Tools/SerializeContextTools/Platform/Windows/PAL_windows.cmake index 859b64a84b..1e514a7d9b 100644 --- a/Code/Tools/SerializeContextTools/Platform/Windows/PAL_windows.cmake +++ b/Code/Tools/SerializeContextTools/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/SerializeContextTools/SliceConverter.cpp b/Code/Tools/SerializeContextTools/SliceConverter.cpp index 291db1b9e0..5672f20543 100644 --- a/Code/Tools/SerializeContextTools/SliceConverter.cpp +++ b/Code/Tools/SerializeContextTools/SliceConverter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/SliceConverter.h b/Code/Tools/SerializeContextTools/SliceConverter.h index 88f69fb3e4..07fddc8fa1 100644 --- a/Code/Tools/SerializeContextTools/SliceConverter.h +++ b/Code/Tools/SerializeContextTools/SliceConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/SliceConverterEditorEntityContextComponent.h b/Code/Tools/SerializeContextTools/SliceConverterEditorEntityContextComponent.h index d308e01485..d3d10a997e 100644 --- a/Code/Tools/SerializeContextTools/SliceConverterEditorEntityContextComponent.h +++ b/Code/Tools/SerializeContextTools/SliceConverterEditorEntityContextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Utilities.cpp b/Code/Tools/SerializeContextTools/Utilities.cpp index 0f6933f045..9b068305c2 100644 --- a/Code/Tools/SerializeContextTools/Utilities.cpp +++ b/Code/Tools/SerializeContextTools/Utilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/Utilities.h b/Code/Tools/SerializeContextTools/Utilities.h index d7cf570854..36cadc1e26 100644 --- a/Code/Tools/SerializeContextTools/Utilities.h +++ b/Code/Tools/SerializeContextTools/Utilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/main.cpp b/Code/Tools/SerializeContextTools/main.cpp index cbfbcb314d..205ed3e603 100644 --- a/Code/Tools/SerializeContextTools/main.cpp +++ b/Code/Tools/SerializeContextTools/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/SerializeContextTools/serializecontexttools_files.cmake b/Code/Tools/SerializeContextTools/serializecontexttools_files.cmake index 09ba9223ed..acc1641236 100644 --- a/Code/Tools/SerializeContextTools/serializecontexttools_files.cmake +++ b/Code/Tools/SerializeContextTools/serializecontexttools_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/CMakeLists.txt b/Code/Tools/Standalone/CMakeLists.txt index 58d4985691..f2f4999ed6 100644 --- a/Code/Tools/Standalone/CMakeLists.txt +++ b/Code/Tools/Standalone/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/Driller/EvenTrace/EventTraceDataAggregator_Unimplemented.cpp b/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/Driller/EvenTrace/EventTraceDataAggregator_Unimplemented.cpp index 0b19244431..498ec05d4e 100644 --- a/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/Driller/EvenTrace/EventTraceDataAggregator_Unimplemented.cpp +++ b/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/Driller/EvenTrace/EventTraceDataAggregator_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp b/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp index 62cc576117..10c6c7acce 100644 --- a/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp +++ b/Code/Tools/Standalone/Platform/Common/Unimplemented/Source/StandaloneApplication_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Platform/Linux/lua_ide_linux_files.cmake b/Code/Tools/Standalone/Platform/Linux/lua_ide_linux_files.cmake index 90131ecc18..b197d4537b 100644 --- a/Code/Tools/Standalone/Platform/Linux/lua_ide_linux_files.cmake +++ b/Code/Tools/Standalone/Platform/Linux/lua_ide_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/Platform/Linux/profiler_linux_files.cmake b/Code/Tools/Standalone/Platform/Linux/profiler_linux_files.cmake index f192754d22..5dba015243 100644 --- a/Code/Tools/Standalone/Platform/Linux/profiler_linux_files.cmake +++ b/Code/Tools/Standalone/Platform/Linux/profiler_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/Platform/Mac/Source/Driller/EvenTrace/EventTraceDataAggregator_Mac.cpp b/Code/Tools/Standalone/Platform/Mac/Source/Driller/EvenTrace/EventTraceDataAggregator_Mac.cpp index 4dce8f4878..009b726c1b 100644 --- a/Code/Tools/Standalone/Platform/Mac/Source/Driller/EvenTrace/EventTraceDataAggregator_Mac.cpp +++ b/Code/Tools/Standalone/Platform/Mac/Source/Driller/EvenTrace/EventTraceDataAggregator_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp b/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp index 1630e4cd64..9d8f8ef7f4 100644 --- a/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp +++ b/Code/Tools/Standalone/Platform/Mac/Source/StandaloneApplication_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Platform/Mac/lua_ide_mac_files.cmake b/Code/Tools/Standalone/Platform/Mac/lua_ide_mac_files.cmake index 1eed54fb97..3e017743ca 100644 --- a/Code/Tools/Standalone/Platform/Mac/lua_ide_mac_files.cmake +++ b/Code/Tools/Standalone/Platform/Mac/lua_ide_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/Platform/Mac/profiler_mac_files.cmake b/Code/Tools/Standalone/Platform/Mac/profiler_mac_files.cmake index c24b1cbf2e..60845d96d5 100644 --- a/Code/Tools/Standalone/Platform/Mac/profiler_mac_files.cmake +++ b/Code/Tools/Standalone/Platform/Mac/profiler_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/Platform/Windows/Source/Driller/EvenTrace/EventTraceDataAggregator_Windows.cpp b/Code/Tools/Standalone/Platform/Windows/Source/Driller/EvenTrace/EventTraceDataAggregator_Windows.cpp index f537b1ee69..85771ed4e9 100644 --- a/Code/Tools/Standalone/Platform/Windows/Source/Driller/EvenTrace/EventTraceDataAggregator_Windows.cpp +++ b/Code/Tools/Standalone/Platform/Windows/Source/Driller/EvenTrace/EventTraceDataAggregator_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp b/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp index 6c4ac0a70a..265f8945e1 100644 --- a/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp +++ b/Code/Tools/Standalone/Platform/Windows/Source/StandaloneApplication_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Platform/Windows/lua_ide_windows_files.cmake b/Code/Tools/Standalone/Platform/Windows/lua_ide_windows_files.cmake index af33aef159..1314849df4 100644 --- a/Code/Tools/Standalone/Platform/Windows/lua_ide_windows_files.cmake +++ b/Code/Tools/Standalone/Platform/Windows/lua_ide_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/Platform/Windows/profiler_windows_files.cmake b/Code/Tools/Standalone/Platform/Windows/profiler_windows_files.cmake index fb46a8fb3e..85b4553488 100644 --- a/Code/Tools/Standalone/Platform/Windows/profiler_windows_files.cmake +++ b/Code/Tools/Standalone/Platform/Windows/profiler_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.cpp b/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.cpp index aed7642c69..476b6657d4 100644 --- a/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.cpp +++ b/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.h b/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.h index 523e9f3a7c..1994d22500 100644 --- a/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.h +++ b/Code/Tools/Standalone/Source/AssetDatabaseLocationListener.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp index 747e359c6d..9231400e72 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.hxx index e6e3473a45..a278142f12 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.hxx +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationHeaderView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp index 46726e6a73..c402734a37 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx index c7061e96cd..0802a16149 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx +++ b/Code/Tools/Standalone/Source/Driller/Annotations/Annotations.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp index ae7f571d86..19ae075bc4 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.hxx index 4e16e4f55e..b392051bbe 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.hxx +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp index e004f4da33..6728acd216 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.hxx index b5b74d666d..7f2138444a 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.hxx +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsDataView_Events.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp index ba92bdebf9..47784b76b1 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx index c988ea76d5..1a80da59e8 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx +++ b/Code/Tools/Standalone/Source/Driller/Annotations/AnnotationsHeaderView_Events.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp index 05d978975f..75e34fea36 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp +++ b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx index 90b9b3912b..47796a604a 100644 --- a/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx +++ b/Code/Tools/Standalone/Source/Driller/Annotations/ConfigureAnnotationsWindow.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/AreaChart.cpp b/Code/Tools/Standalone/Source/Driller/AreaChart.cpp index aa6eda3463..10032e5c2c 100644 --- a/Code/Tools/Standalone/Source/Driller/AreaChart.cpp +++ b/Code/Tools/Standalone/Source/Driller/AreaChart.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/AreaChart.hxx b/Code/Tools/Standalone/Source/Driller/AreaChart.hxx index 11ffb10a19..52855db99d 100644 --- a/Code/Tools/Standalone/Source/Driller/AreaChart.hxx +++ b/Code/Tools/Standalone/Source/Driller/AreaChart.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Axis.cpp b/Code/Tools/Standalone/Source/Driller/Axis.cpp index 8acb69cd35..51fd0fb556 100644 --- a/Code/Tools/Standalone/Source/Driller/Axis.cpp +++ b/Code/Tools/Standalone/Source/Driller/Axis.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Axis.hxx b/Code/Tools/Standalone/Source/Driller/Axis.hxx index bbc180e871..19dadea6ef 100644 --- a/Code/Tools/Standalone/Source/Driller/Axis.hxx +++ b/Code/Tools/Standalone/Source/Driller/Axis.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/CSVExportSettings.h b/Code/Tools/Standalone/Source/Driller/CSVExportSettings.h index 767b26a7ab..a8803c6701 100644 --- a/Code/Tools/Standalone/Source/Driller/CSVExportSettings.h +++ b/Code/Tools/Standalone/Source/Driller/CSVExportSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp index 3cc03b11fb..0ce93296ac 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.hxx index e6d753b146..ae7cec649e 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h index 99a866c5d0..c95797aed5 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp index 2720233551..3343ec6493 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.h b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.h index 6299353a7f..5620f4f6b0 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp index d03f7e5de7..990672a28e 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.hxx b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.hxx index e8daebb5ee..65c820e695 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.hxx +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierDataView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierOperationTelemetryEvent.h index cbc051e344..af8751f570 100644 --- a/Code/Tools/Standalone/Source/Driller/Carrier/CarrierOperationTelemetryEvent.h +++ b/Code/Tools/Standalone/Source/Driller/Carrier/CarrierOperationTelemetryEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp index 51f9c8b152..7b1117b7cc 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.hxx b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.hxx index 8a7c1e45bb..f659f898cc 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.hxx +++ b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationDialog.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp index 0e7d48b0ad..20b250c6a9 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.hxx b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.hxx index 9830623f04..52950ecf23 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.hxx +++ b/Code/Tools/Standalone/Source/Driller/ChannelConfigurationWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp b/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp index e034efb07c..37628de1bc 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelControl.hxx b/Code/Tools/Standalone/Source/Driller/ChannelControl.hxx index 14edad4702..b0cb675cd9 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelControl.hxx +++ b/Code/Tools/Standalone/Source/Driller/ChannelControl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp b/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp index eff028172f..69c7cc1b5f 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelDataView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelDataView.hxx b/Code/Tools/Standalone/Source/Driller/ChannelDataView.hxx index 0dda6a80f5..5bff5ceaa4 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelDataView.hxx +++ b/Code/Tools/Standalone/Source/Driller/ChannelDataView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp index acc9aa7b5c..863f9db826 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.hxx b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.hxx index 51a3980849..40a40bb5a5 100644 --- a/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.hxx +++ b/Code/Tools/Standalone/Source/Driller/ChannelProfilerWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp index f94e01cb70..761b531b53 100644 --- a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.h b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.h index f3fe9179ba..89071cbfff 100644 --- a/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.h +++ b/Code/Tools/Standalone/Source/Driller/ChartNumberFormats.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp b/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp index 42c9c2f54a..e2e65415ba 100644 --- a/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp +++ b/Code/Tools/Standalone/Source/Driller/ChartTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/ChartTypes.hxx b/Code/Tools/Standalone/Source/Driller/ChartTypes.hxx index 91ca915380..468f69d39a 100644 --- a/Code/Tools/Standalone/Source/Driller/ChartTypes.hxx +++ b/Code/Tools/Standalone/Source/Driller/ChartTypes.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp index 53f4a105ac..795b30254e 100644 --- a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp +++ b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.hxx b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.hxx index 9f0a9bb36d..71e98f4d40 100644 --- a/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.hxx +++ b/Code/Tools/Standalone/Source/Driller/CollapsiblePanel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp index 732002d482..c4710565a0 100644 --- a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp +++ b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.hxx b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.hxx index 3c0de81687..85c9d2dbb0 100644 --- a/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.hxx +++ b/Code/Tools/Standalone/Source/Driller/CombinedEventsControl.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp index 3ec61073be..b7b47f51f7 100644 --- a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.hxx b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.hxx index a8802c91b4..3128bb7518 100644 --- a/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.hxx +++ b/Code/Tools/Standalone/Source/Driller/CustomizeCSVExportWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp index 701385b6de..986f41c849 100644 --- a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp +++ b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.hxx b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.hxx index 4f61854d49..c415cf6444 100644 --- a/Code/Tools/Standalone/Source/Driller/DoubleListSelector.hxx +++ b/Code/Tools/Standalone/Source/Driller/DoubleListSelector.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp index 2ddbb3e1f6..1e4022be86 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.hxx b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.hxx index 0ef07a4c45..c6b5fbb8ff 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/DrillerAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerAggregatorOptions.hxx b/Code/Tools/Standalone/Source/Driller/DrillerAggregatorOptions.hxx index 8dd5cd72cb..b6c08f2ccb 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerAggregatorOptions.hxx +++ b/Code/Tools/Standalone/Source/Driller/DrillerAggregatorOptions.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp index e55b6ec237..65e05a8cee 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.hxx b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.hxx index b740524e82..168700a62a 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.hxx +++ b/Code/Tools/Standalone/Source/Driller/DrillerCaptureWindow.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp b/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp index 3cbf128b8c..70be41cedf 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerContext.h b/Code/Tools/Standalone/Source/Driller/DrillerContext.h index ac06836f10..ba939f9a39 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerContext.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerContextInterface.h b/Code/Tools/Standalone/Source/Driller/DrillerContextInterface.h index cdbbbc2e9e..ce5e34bf1c 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerContextInterface.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerContextInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp index b2b733bf5e..c60e40e3dd 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.h b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.h index 521991124a..9b8068efea 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerDataContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerDataTypes.h b/Code/Tools/Standalone/Source/Driller/DrillerDataTypes.h index 9cd478c558..029c4a8bd7 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerDataTypes.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerDataTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp b/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp index 5bf03251e6..9d0ff44014 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerEvent.h b/Code/Tools/Standalone/Source/Driller/DrillerEvent.h index ac010f8017..62799ae671 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerEvent.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp index b6788b1857..fe6ac686b2 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.hxx b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.hxx index 4b680c2d01..67d0a0d6d4 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.hxx +++ b/Code/Tools/Standalone/Source/Driller/DrillerMainWindow.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp b/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp index 121db190aa..a900fb1b2a 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.h b/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.h index eb6f16f4ee..3c62b465e1 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerMainWindowMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerNetworkMessages.h b/Code/Tools/Standalone/Source/Driller/DrillerNetworkMessages.h index 9df18f9690..fe430b5963 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerNetworkMessages.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerNetworkMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.cpp b/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.cpp index 46de324f0e..eb422f9d12 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.cpp +++ b/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.h index 2ef6f69d84..8e9e2b81a7 100644 --- a/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.h +++ b/Code/Tools/Standalone/Source/Driller/DrillerOperationTelemetryEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp index 0b0da422ff..9f36a6e857 100644 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.h b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.h index 4c4057aea8..a6e8630db5 100644 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.h +++ b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataAggregator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp index 28fdc69b3a..c5a2c931d9 100644 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.h b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.h index 1253503f3c..5d57a35579 100644 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceEvents.h b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceEvents.h index 2dc15dc7cc..31a3667f4c 100644 --- a/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceEvents.h +++ b/Code/Tools/Standalone/Source/Driller/EventTrace/EventTraceEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp b/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp index 161f1bf508..32f93b5238 100644 --- a/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp +++ b/Code/Tools/Standalone/Source/Driller/FilteredListView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/FilteredListView.hxx b/Code/Tools/Standalone/Source/Driller/FilteredListView.hxx index 6bd3a81589..10e34b0134 100644 --- a/Code/Tools/Standalone/Source/Driller/FilteredListView.hxx +++ b/Code/Tools/Standalone/Source/Driller/FilteredListView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp index 8ec2f3c97d..a9027ace40 100644 --- a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp +++ b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.hxx b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.hxx index fd2825027b..965640af9a 100644 --- a/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.hxx +++ b/Code/Tools/Standalone/Source/Driller/GenericCustomizeCSVExportWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp index 069b20042a..99adf9626f 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp index 02840b06d1..9cb7c90c4b 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp index 6c56fd9b9e..37f08aabb7 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDataView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp index 49da091501..2034045ea5 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerDrillerDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp b/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp index 21c4eab12d..0fb70f12cf 100644 --- a/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/IO/StreamerEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp index db718e56a8..c3b877a743 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.hxx index 373692b46d..329855fb4b 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp index 52b8bd8506..5028869d3c 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.h b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.h index e9bf97673a..ebcf17a664 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp index 9473d80be1..ec909c136d 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.hxx b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.hxx index 5aca0c3e67..dfb097a966 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.hxx +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryDataView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp index b21f0c4b10..a69bee6dc5 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.h b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.h index e5db499def..2ea2538cfd 100644 --- a/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Memory/MemoryEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp index 32d71c44e9..886afe336c 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.hxx index eda29db44a..9b8625c745 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp index 14d8e7cf3d..964cdeb343 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.hxx b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.hxx index 2e83b65de6..0c21ace400 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.hxx +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataPanel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp index 25e5b6bcc0..b1bd484cec 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.h b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.h index f6106cc280..9a749f2530 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp index d8d4ca2c9d..d578883d24 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.hxx b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.hxx index 20cbca7c24..c80e555236 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.hxx +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerDataView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp index 5b6fbf533e..b356b7a7ad 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h index 8fb79c70f3..2f5f4905a9 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h index 2084381da6..9b99b7d57e 100644 --- a/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h +++ b/Code/Tools/Standalone/Source/Driller/Profiler/ProfilerOperationTelemetryEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp b/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp index de3fe6c3b1..f73550b8b9 100644 --- a/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp +++ b/Code/Tools/Standalone/Source/Driller/RacetrackChart.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/RacetrackChart.hxx b/Code/Tools/Standalone/Source/Driller/RacetrackChart.hxx index 608122c514..0ce1d9a784 100644 --- a/Code/Tools/Standalone/Source/Driller/RacetrackChart.hxx +++ b/Code/Tools/Standalone/Source/Driller/RacetrackChart.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp index 4ed12c9fe5..352107aca0 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx index f7590873a9..48aed7b5aa 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp index f57fd67fc8..c4d159f3fa 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.h b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.h index d9fa3f11f0..d33b1a44e5 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp index caf8b37198..475f9fb04f 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.h b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.h index dde8f7607f..367ecc2a92 100644 --- a/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Rendering/VRAM/VRAMEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.h b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.h index 32822fb31e..51aac4f888 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.inl b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.inl index e7faf391e1..4435215d45 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.inl +++ b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailView.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp index 6cd88b6a05..0d5002e4df 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.hxx b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.hxx index b50ace5b96..0402ccf03c 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.hxx +++ b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewQObject.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h index c9b142d3e8..9fcacf411a 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/BaseDetailViewSavedState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp index 17b35a46b4..d463bab9ba 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.hxx b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.hxx index 70c285c8b8..2eec0509bf 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.hxx +++ b/Code/Tools/Standalone/Source/Driller/Replica/OverallReplicaDetailView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp index dc0ee75a83..557aa3f912 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.h index f3432ba5a5..054b6b58f1 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaBandwidthChartData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp index 6850768efe..e3012c9ca3 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.h index 063b3c8ace..6309f7855e 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkTypeDetailView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp index 3e24c34e05..1b6e212579 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.h index cafd864b6a..994e5b7676 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaChunkUsageDataContainers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp index 274fced111..bda37901d3 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.hxx index 0fb64c0c39..85f2c635b3 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp index 55b2b3347a..abfed45ff8 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx index 336fd9e4f6..80b067c917 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataAggregatorConfigurationPanel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataEvents.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataEvents.h index 9295c9a047..662f05b754 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp index d38bb501e3..c33234c74e 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.h index 6e060b1ff3..0b4e2654b0 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp index f4b8eadaba..488c878586 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.hxx index 0e98b7e29d..ba9d263a1c 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.hxx +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDataView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp index 3b69184ad7..34a09857c3 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.h index f092332f4c..a034ac0873 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDetailView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp index 57b17a03bf..caebdd3f01 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.h index f97d005e7b..251407aaa6 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp index 376e20311a..fd2ed1d310 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.h index 6b16f8a916..16518b818d 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDisplayTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp index ff1492390e..44d90d82e5 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx index 465fad2c25..8d1bdc0b49 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaDrillerConfigToolbar.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaOperationTelemetryEvent.h index 55bfa76097..c37c884e55 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaOperationTelemetryEvent.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaOperationTelemetryEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp index 46f5be4da0..15ee5c290f 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.hxx b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.hxx index 09136015d8..e9be8a9225 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.hxx +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaTreeViewModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp index eb7e46fe4f..f2b633a950 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.h b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.h index e8922a747b..c62ea65f02 100644 --- a/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.h +++ b/Code/Tools/Standalone/Source/Driller/Replica/ReplicaUsageDataContainers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/StripChart.cpp b/Code/Tools/Standalone/Source/Driller/StripChart.cpp index df3eafc2c7..376d6de0b7 100644 --- a/Code/Tools/Standalone/Source/Driller/StripChart.cpp +++ b/Code/Tools/Standalone/Source/Driller/StripChart.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/StripChart.hxx b/Code/Tools/Standalone/Source/Driller/StripChart.hxx index 5e55d5f0d7..6117ed95d4 100644 --- a/Code/Tools/Standalone/Source/Driller/StripChart.hxx +++ b/Code/Tools/Standalone/Source/Driller/StripChart.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp index 64feba7bfb..39b27474d9 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.hxx b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.hxx index 28f6b01cd7..a604fac8c4 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.hxx +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceDrillerDialog.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp index fe19fd79d2..da51477556 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.hxx index 1fc3537422..b733243eca 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp index bee1a5491b..a7dcf5539b 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.h b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.h index e536356848..4d7e8b8491 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageEvents.h b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageEvents.h index 7ef9397aaa..ac53706c3d 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceMessageEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Trace/TraceOperationTelemetryEvent.h b/Code/Tools/Standalone/Source/Driller/Trace/TraceOperationTelemetryEvent.h index 391d108a44..fed7e17994 100644 --- a/Code/Tools/Standalone/Source/Driller/Trace/TraceOperationTelemetryEvent.h +++ b/Code/Tools/Standalone/Source/Driller/Trace/TraceOperationTelemetryEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp index 44f6d6cd0c..9ea7c17614 100644 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp +++ b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.hxx b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.hxx index b74211f9c3..c23fd61cde 100644 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.hxx +++ b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataAggregator.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp index 3418e3ec04..aad0f92e1d 100644 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp +++ b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.h b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.h index 5136dd3684..18d703714d 100644 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.h +++ b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedDataParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedEvents.h b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedEvents.h index adb160f142..3b0661f32a 100644 --- a/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedEvents.h +++ b/Code/Tools/Standalone/Source/Driller/Unsupported/UnsupportedEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp index 7f485424f6..aa1cf09777 100644 --- a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp +++ b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.h b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.h index 5705b4a6fb..687a45f76e 100644 --- a/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.h +++ b/Code/Tools/Standalone/Source/Driller/Workspaces/Workspace.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp b/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp index 84152897e1..3375b94d40 100644 --- a/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp +++ b/Code/Tools/Standalone/Source/Editor/LuaEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Editor/LuaEditor.h b/Code/Tools/Standalone/Source/Editor/LuaEditor.h index 0eb554cc0c..cc8a920d01 100644 --- a/Code/Tools/Standalone/Source/Editor/LuaEditor.h +++ b/Code/Tools/Standalone/Source/Editor/LuaEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp b/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp index e899e2d53d..3d613ef282 100644 --- a/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp +++ b/Code/Tools/Standalone/Source/Editor/ProfilerEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Editor/ProfilerEditor.h b/Code/Tools/Standalone/Source/Editor/ProfilerEditor.h index 0eb554cc0c..cc8a920d01 100644 --- a/Code/Tools/Standalone/Source/Editor/ProfilerEditor.h +++ b/Code/Tools/Standalone/Source/Editor/ProfilerEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Editor/Resource.h b/Code/Tools/Standalone/Source/Editor/Resource.h index 175cb69e3e..5c860f9f05 100644 --- a/Code/Tools/Standalone/Source/Editor/Resource.h +++ b/Code/Tools/Standalone/Source/Editor/Resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Editor/targetver.h b/Code/Tools/Standalone/Source/Editor/targetver.h index 84d4fe2be8..750a1ef013 100644 --- a/Code/Tools/Standalone/Source/Editor/targetver.h +++ b/Code/Tools/Standalone/Source/Editor/targetver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/BasicScriptChecker.h b/Code/Tools/Standalone/Source/LUA/BasicScriptChecker.h index cde306556d..5412e31396 100644 --- a/Code/Tools/Standalone/Source/LUA/BasicScriptChecker.h +++ b/Code/Tools/Standalone/Source/LUA/BasicScriptChecker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp b/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp index a6355ec2f8..ef60994adc 100644 --- a/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/BreakpointPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/BreakpointPanel.hxx b/Code/Tools/Standalone/Source/LUA/BreakpointPanel.hxx index 1506b7e5f6..425cb818a7 100644 --- a/Code/Tools/Standalone/Source/LUA/BreakpointPanel.hxx +++ b/Code/Tools/Standalone/Source/LUA/BreakpointPanel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp b/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp index 3100997143..fa254bfc8e 100644 --- a/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp +++ b/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.hxx b/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.hxx index 0dbdf42372..32d64e1a0f 100644 --- a/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.hxx +++ b/Code/Tools/Standalone/Source/LUA/ClassReferenceFilter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp b/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp index 4cb49923d6..50ebe78e0f 100644 --- a/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.hxx b/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.hxx index 7346e2e89a..eeb0c86a15 100644 --- a/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.hxx +++ b/Code/Tools/Standalone/Source/LUA/ClassReferencePanel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp index b92405789f..58898a5473 100644 --- a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp +++ b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.hxx b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.hxx index fe9b4f314c..d2bc2f79a2 100644 --- a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.hxx +++ b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompleter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp index 64be82f75b..01e9663940 100644 --- a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp +++ b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.hxx b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.hxx index 55a7253127..ccbd226453 100644 --- a/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.hxx +++ b/Code/Tools/Standalone/Source/LUA/CodeCompletion/LUACompletionModel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp b/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp index 8d00a6b268..cc1898a813 100644 --- a/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp +++ b/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.hxx b/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.hxx index 978440df02..6d91ecf3c8 100644 --- a/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.hxx +++ b/Code/Tools/Standalone/Source/LUA/DebugAttachmentButton.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp b/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp index 4a1df323e3..49578ace72 100644 --- a/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.h b/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.h index 4ee8b3c638..d4b7720d4a 100644 --- a/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUABreakpointTrackerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAContextControlMessages.h b/Code/Tools/Standalone/Source/LUA/LUAContextControlMessages.h index 44ca515c77..665be59d74 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAContextControlMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUAContextControlMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp b/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp index 880ff8d882..04aad2832f 100644 --- a/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.h b/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.h index d25f4de3c3..41805fd84a 100644 --- a/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.h +++ b/Code/Tools/Standalone/Source/LUA/LUADebuggerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUADebuggerMessages.h b/Code/Tools/Standalone/Source/LUA/LUADebuggerMessages.h index 8140a53377..e7ad687291 100644 --- a/Code/Tools/Standalone/Source/LUA/LUADebuggerMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUADebuggerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorBlockState.h b/Code/Tools/Standalone/Source/LUA/LUAEditorBlockState.h index 6a563e1b28..302328aae9 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorBlockState.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorBlockState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp index 463a1e4e4a..c6bd1e01f1 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.hxx index b5f608b884..c58ccf38ec 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorBreakpointWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp index 1b15f5cf94..b513e5dd8d 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.h b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.h index 8b8a81f64e..26af9cca86 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorContext.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h b/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h index 52cb5f3ede..7b6fb5ddbe 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorContextInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorContextMessages.h b/Code/Tools/Standalone/Source/LUA/LUAEditorContextMessages.h index 368d4fc19a..bb00f429ae 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorContextMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorContextMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorDebuggerMessages.h b/Code/Tools/Standalone/Source/LUA/LUAEditorDebuggerMessages.h index 8f37946e1a..8447d6fe40 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorDebuggerMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorDebuggerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp index f8b2e13ab4..e023bf3046 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.hxx index a772294f27..e0821c7371 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFindDialog.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp index 6921ed0336..c5c01e60c2 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.hxx index 7247809104..f6fc243f8d 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFindResults.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp index 9aee6eb586..d93305ee0f 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.hxx index 849b70657c..10f416b73d 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorFoldingWidget.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp index d726efd7c8..3af34e5133 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.hxx index 978e6d5595..85be798b4f 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorGoToLineDialog.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp index a276f440d1..d233c7e462 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.hxx index edb9e59de8..73d334f7fc 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorMainWindow.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp index 49e08f2b3b..2482c1c2a8 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.hxx index 67fa7d7ace..bf17c76c5d 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorPlainTextEdit.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp index d8240f47c8..6fd77a7dff 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.hxx index fb960dcf9b..d0ce075883 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorSettingsDialog.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp index 53a2b95e3f..ed0efe7d83 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.h b/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.h index f84e4c02c2..30ddad4111 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorStyleMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp index e18e911b33..4cff52956b 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.hxx index f4af0cce3c..f96f5cfb6e 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorSyntaxHighlighter.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp b/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp index 3b8a876618..2c5ff7d13e 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorView.hxx b/Code/Tools/Standalone/Source/LUA/LUAEditorView.hxx index 88569f885e..2540f6c1c9 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorView.hxx +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorView.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAEditorViewMessages.h b/Code/Tools/Standalone/Source/LUA/LUAEditorViewMessages.h index ba2b55adfe..1f925e7228 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAEditorViewMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUAEditorViewMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUALocalsTrackerMessages.h b/Code/Tools/Standalone/Source/LUA/LUALocalsTrackerMessages.h index cf5ce97393..eb3efe9649 100644 --- a/Code/Tools/Standalone/Source/LUA/LUALocalsTrackerMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUALocalsTrackerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAStackTrackerMessages.h b/Code/Tools/Standalone/Source/LUA/LUAStackTrackerMessages.h index 488a4b6bb1..5dd67f3a64 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAStackTrackerMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUAStackTrackerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp b/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp index 8fa622912d..51728d7dbe 100644 --- a/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp +++ b/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.h b/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.h index 44a0385d8c..2ac2612885 100644 --- a/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUATargetContextTrackerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/LUAWatchesDebuggerMessages.h b/Code/Tools/Standalone/Source/LUA/LUAWatchesDebuggerMessages.h index c25184805b..ab805bd4b0 100644 --- a/Code/Tools/Standalone/Source/LUA/LUAWatchesDebuggerMessages.h +++ b/Code/Tools/Standalone/Source/LUA/LUAWatchesDebuggerMessages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/ScriptCheckerAPI.h b/Code/Tools/Standalone/Source/LUA/ScriptCheckerAPI.h index 645421de3d..f93c100986 100644 --- a/Code/Tools/Standalone/Source/LUA/ScriptCheckerAPI.h +++ b/Code/Tools/Standalone/Source/LUA/ScriptCheckerAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/StackPanel.cpp b/Code/Tools/Standalone/Source/LUA/StackPanel.cpp index 1806bc3568..87dcdbf15f 100644 --- a/Code/Tools/Standalone/Source/LUA/StackPanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/StackPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/StackPanel.hxx b/Code/Tools/Standalone/Source/LUA/StackPanel.hxx index fdcca97d68..bc2770cfc7 100644 --- a/Code/Tools/Standalone/Source/LUA/StackPanel.hxx +++ b/Code/Tools/Standalone/Source/LUA/StackPanel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp b/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp index 3cd605fe93..4ac6f4ec34 100644 --- a/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp +++ b/Code/Tools/Standalone/Source/LUA/TargetContextButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/TargetContextButton.hxx b/Code/Tools/Standalone/Source/LUA/TargetContextButton.hxx index 67aa2f1b22..d0cd1f7696 100644 --- a/Code/Tools/Standalone/Source/LUA/TargetContextButton.hxx +++ b/Code/Tools/Standalone/Source/LUA/TargetContextButton.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp b/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp index a4fcac9c94..991c1b3cd8 100644 --- a/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp +++ b/Code/Tools/Standalone/Source/LUA/WatchesPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LUA/WatchesPanel.hxx b/Code/Tools/Standalone/Source/LUA/WatchesPanel.hxx index 66d8b8d46a..a7c74e86b3 100644 --- a/Code/Tools/Standalone/Source/LUA/WatchesPanel.hxx +++ b/Code/Tools/Standalone/Source/LUA/WatchesPanel.hxx @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LuaIDEApplication.cpp b/Code/Tools/Standalone/Source/LuaIDEApplication.cpp index af5ddb796e..596089441d 100644 --- a/Code/Tools/Standalone/Source/LuaIDEApplication.cpp +++ b/Code/Tools/Standalone/Source/LuaIDEApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/LuaIDEApplication.h b/Code/Tools/Standalone/Source/LuaIDEApplication.h index 0d55ed9e48..68234adddc 100644 --- a/Code/Tools/Standalone/Source/LuaIDEApplication.h +++ b/Code/Tools/Standalone/Source/LuaIDEApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/ProfilerApplication.cpp b/Code/Tools/Standalone/Source/ProfilerApplication.cpp index d1f9991c73..022d1ccb18 100644 --- a/Code/Tools/Standalone/Source/ProfilerApplication.cpp +++ b/Code/Tools/Standalone/Source/ProfilerApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/ProfilerApplication.h b/Code/Tools/Standalone/Source/ProfilerApplication.h index e6d9ede820..34d0616e49 100644 --- a/Code/Tools/Standalone/Source/ProfilerApplication.h +++ b/Code/Tools/Standalone/Source/ProfilerApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp b/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp index e9f2dc8137..f527540d1b 100644 --- a/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp +++ b/Code/Tools/Standalone/Source/StandaloneToolsApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/StandaloneToolsApplication.h b/Code/Tools/Standalone/Source/StandaloneToolsApplication.h index dffec7b182..307a3ac4db 100644 --- a/Code/Tools/Standalone/Source/StandaloneToolsApplication.h +++ b/Code/Tools/Standalone/Source/StandaloneToolsApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Telemetry/TelemetryBus.h b/Code/Tools/Standalone/Source/Telemetry/TelemetryBus.h index af89eb9e00..37c8490314 100644 --- a/Code/Tools/Standalone/Source/Telemetry/TelemetryBus.h +++ b/Code/Tools/Standalone/Source/Telemetry/TelemetryBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp b/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp index 97bde7babf..a3a1bf0447 100644 --- a/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp +++ b/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.h b/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.h index 08ff9317e3..06e6cd1008 100644 --- a/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.h +++ b/Code/Tools/Standalone/Source/Telemetry/TelemetryComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp b/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp index 7399ed89c2..90e86ff7dc 100644 --- a/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp +++ b/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.h b/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.h index 164e293761..a6c626a8e7 100644 --- a/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.h +++ b/Code/Tools/Standalone/Source/Telemetry/TelemetryEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/StandaloneTools_precompiled.h b/Code/Tools/Standalone/StandaloneTools_precompiled.h index ea2e8e3a68..f4771d3aed 100644 --- a/Code/Tools/Standalone/StandaloneTools_precompiled.h +++ b/Code/Tools/Standalone/StandaloneTools_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/Standalone/lua_ide_files.cmake b/Code/Tools/Standalone/lua_ide_files.cmake index 92da44e83a..600ee51713 100644 --- a/Code/Tools/Standalone/lua_ide_files.cmake +++ b/Code/Tools/Standalone/lua_ide_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/profiler_files.cmake b/Code/Tools/Standalone/profiler_files.cmake index 947c2f25ad..84fa8e81ec 100644 --- a/Code/Tools/Standalone/profiler_files.cmake +++ b/Code/Tools/Standalone/profiler_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/standalone_tools_files.cmake b/Code/Tools/Standalone/standalone_tools_files.cmake index 48a974b145..f93285a91a 100644 --- a/Code/Tools/Standalone/standalone_tools_files.cmake +++ b/Code/Tools/Standalone/standalone_tools_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/Standalone/targetver.h b/Code/Tools/Standalone/targetver.h index 84d4fe2be8..750a1ef013 100644 --- a/Code/Tools/Standalone/targetver.h +++ b/Code/Tools/Standalone/targetver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/TestImpactFramework/CMakeLists.txt b/Code/Tools/TestImpactFramework/CMakeLists.txt index ddf6494324..10450025c8 100644 --- a/Code/Tools/TestImpactFramework/CMakeLists.txt +++ b/Code/Tools/TestImpactFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Frontend/CMakeLists.txt b/Code/Tools/TestImpactFramework/Frontend/CMakeLists.txt index 769af4631d..8a89497a79 100644 --- a/Code/Tools/TestImpactFramework/Frontend/CMakeLists.txt +++ b/Code/Tools/TestImpactFramework/Frontend/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Frontend/Console/CMakeLists.txt b/Code/Tools/TestImpactFramework/Frontend/Console/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Code/Tools/TestImpactFramework/Frontend/Console/CMakeLists.txt +++ b/Code/Tools/TestImpactFramework/Frontend/Console/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Frontend/Console/Code/CMakeLists.txt b/Code/Tools/TestImpactFramework/Frontend/Console/Code/CMakeLists.txt index bb0e892820..4cba86b14f 100644 --- a/Code/Tools/TestImpactFramework/Frontend/Console/Code/CMakeLists.txt +++ b/Code/Tools/TestImpactFramework/Frontend/Console/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsole.cpp b/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsole.cpp index a8e51d9232..7547c0fdfe 100644 --- a/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsole.cpp +++ b/Code/Tools/TestImpactFramework/Frontend/Console/Code/Source/TestImpactConsole.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/TestImpactFramework/Frontend/Console/Code/testimpactframework_frontend_console_files.cmake b/Code/Tools/TestImpactFramework/Frontend/Console/Code/testimpactframework_frontend_console_files.cmake index da135a5666..8944524252 100644 --- a/Code/Tools/TestImpactFramework/Frontend/Console/Code/testimpactframework_frontend_console_files.cmake +++ b/Code/Tools/TestImpactFramework/Frontend/Console/Code/testimpactframework_frontend_console_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Platform/Android/PAL_android.cmake b/Code/Tools/TestImpactFramework/Platform/Android/PAL_android.cmake index f8709d2270..557bd47ebe 100644 --- a/Code/Tools/TestImpactFramework/Platform/Android/PAL_android.cmake +++ b/Code/Tools/TestImpactFramework/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Platform/Linux/PAL_linux.cmake b/Code/Tools/TestImpactFramework/Platform/Linux/PAL_linux.cmake index f8709d2270..557bd47ebe 100644 --- a/Code/Tools/TestImpactFramework/Platform/Linux/PAL_linux.cmake +++ b/Code/Tools/TestImpactFramework/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Platform/Mac/PAL_mac.cmake b/Code/Tools/TestImpactFramework/Platform/Mac/PAL_mac.cmake index f8709d2270..557bd47ebe 100644 --- a/Code/Tools/TestImpactFramework/Platform/Mac/PAL_mac.cmake +++ b/Code/Tools/TestImpactFramework/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Platform/Windows/PAL_windows.cmake b/Code/Tools/TestImpactFramework/Platform/Windows/PAL_windows.cmake index 31a92ea988..bb658ec11f 100644 --- a/Code/Tools/TestImpactFramework/Platform/Windows/PAL_windows.cmake +++ b/Code/Tools/TestImpactFramework/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Platform/iOS/PAL_ios.cmake b/Code/Tools/TestImpactFramework/Platform/iOS/PAL_ios.cmake index f8709d2270..557bd47ebe 100644 --- a/Code/Tools/TestImpactFramework/Platform/iOS/PAL_ios.cmake +++ b/Code/Tools/TestImpactFramework/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Runtime/CMakeLists.txt b/Code/Tools/TestImpactFramework/Runtime/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Code/Tools/TestImpactFramework/Runtime/CMakeLists.txt +++ b/Code/Tools/TestImpactFramework/Runtime/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/CMakeLists.txt b/Code/Tools/TestImpactFramework/Runtime/Code/CMakeLists.txt index 5328def2e9..6ca01988e1 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/CMakeLists.txt +++ b/Code/Tools/TestImpactFramework/Runtime/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dummy.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dummy.cpp index b76ed5be95..6ea16f020d 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dummy.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Dummy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/Dummy_Windows.cpp b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/Dummy_Windows.cpp index b76ed5be95..6ea16f020d 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/Dummy_Windows.cpp +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/Dummy_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/platform_windows_files.cmake b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/platform_windows_files.cmake index 1bc535d443..ea776cf3f4 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Code/Tools/TestImpactFramework/Runtime/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Code/Tools/TestImpactFramework/Runtime/Code/testimpactframework_runtime_files.cmake b/Code/Tools/TestImpactFramework/Runtime/Code/testimpactframework_runtime_files.cmake index e84c606312..9590a4e4b1 100644 --- a/Code/Tools/TestImpactFramework/Runtime/Code/testimpactframework_runtime_files.cmake +++ b/Code/Tools/TestImpactFramework/Runtime/Code/testimpactframework_runtime_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSClientAuth/CMakeLists.txt b/Gems/AWSClientAuth/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AWSClientAuth/CMakeLists.txt +++ b/Gems/AWSClientAuth/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSClientAuth/Code/CMakeLists.txt b/Gems/AWSClientAuth/Code/CMakeLists.txt index 559562a937..0b4d9ff8e1 100644 --- a/Gems/AWSClientAuth/Code/CMakeLists.txt +++ b/Gems/AWSClientAuth/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthBus.h b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthBus.h index db3865e5ed..2a8b0435c4 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthBus.h +++ b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthModule.h b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthModule.h index a6af567c78..1ed3cf6bb3 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthModule.h +++ b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthResourceMappingConstants.h b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthResourceMappingConstants.h index fe2bd0f7c6..878cf0cf7d 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthResourceMappingConstants.h +++ b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthResourceMappingConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthSystemComponent.h b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthSystemComponent.h index 579a882168..e9f108d52a 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthSystemComponent.h +++ b/Gems/AWSClientAuth/Code/Include/Private/AWSClientAuthSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AWSCognitoAuthenticationProvider.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AWSCognitoAuthenticationProvider.h index 742f1888fe..0d3696f3d5 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AWSCognitoAuthenticationProvider.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AWSCognitoAuthenticationProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationNotificationBusBehaviorHandler.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationNotificationBusBehaviorHandler.h index ef1efcf104..23993e29af 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationNotificationBusBehaviorHandler.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationNotificationBusBehaviorHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderInterface.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderInterface.h index d5032790aa..9cba2227b1 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderInterface.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderManager.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderManager.h index 8ef28f8d8c..d4cb66b1a4 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderManager.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderScriptCanvasBus.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderScriptCanvasBus.h index bac9edb7f4..17a3907846 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderScriptCanvasBus.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderScriptCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderTypes.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderTypes.h index 3cac547134..85e7ae6688 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderTypes.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/AuthenticationProviderTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/GoogleAuthenticationProvider.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/GoogleAuthenticationProvider.h index 433df4a91e..292cf2e80a 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/GoogleAuthenticationProvider.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/GoogleAuthenticationProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/LWAAuthenticationProvider.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/LWAAuthenticationProvider.h index b98563dd04..8a4d68f67e 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/LWAAuthenticationProvider.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/LWAAuthenticationProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authentication/OAuthConstants.h b/Gems/AWSClientAuth/Code/Include/Private/Authentication/OAuthConstants.h index ba40175ff1..1da25e559f 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authentication/OAuthConstants.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authentication/OAuthConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.h b/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.h index 7382fa1143..7be8df3796 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationController.h b/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationController.h index ebec8db1a0..f9e64c949a 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationController.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationNotificationBusBehaviorHandler.h b/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationNotificationBusBehaviorHandler.h index adf5896404..42a59d3e0f 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationNotificationBusBehaviorHandler.h +++ b/Gems/AWSClientAuth/Code/Include/Private/Authorization/AWSCognitoAuthorizationNotificationBusBehaviorHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/UserManagement/AWSCognitoUserManagementController.h b/Gems/AWSClientAuth/Code/Include/Private/UserManagement/AWSCognitoUserManagementController.h index a0296997ca..b630824da4 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/UserManagement/AWSCognitoUserManagementController.h +++ b/Gems/AWSClientAuth/Code/Include/Private/UserManagement/AWSCognitoUserManagementController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Private/UserManagement/UserManagementNotificationBusBehaviorHandler.h b/Gems/AWSClientAuth/Code/Include/Private/UserManagement/UserManagementNotificationBusBehaviorHandler.h index e3b4ccd2fa..e8d4103bbe 100644 --- a/Gems/AWSClientAuth/Code/Include/Private/UserManagement/UserManagementNotificationBusBehaviorHandler.h +++ b/Gems/AWSClientAuth/Code/Include/Private/UserManagement/UserManagementNotificationBusBehaviorHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationProviderBus.h b/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationProviderBus.h index c8323ef4a2..d11588ad55 100644 --- a/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationProviderBus.h +++ b/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationProviderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationTokens.h b/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationTokens.h index 84a19652d0..129a88e848 100644 --- a/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationTokens.h +++ b/Gems/AWSClientAuth/Code/Include/Public/Authentication/AuthenticationTokens.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Public/Authorization/AWSCognitoAuthorizationBus.h b/Gems/AWSClientAuth/Code/Include/Public/Authorization/AWSCognitoAuthorizationBus.h index 5e08302e6b..c1306a6b18 100644 --- a/Gems/AWSClientAuth/Code/Include/Public/Authorization/AWSCognitoAuthorizationBus.h +++ b/Gems/AWSClientAuth/Code/Include/Public/Authorization/AWSCognitoAuthorizationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Public/Authorization/ClientAuthAWSCredentials.h b/Gems/AWSClientAuth/Code/Include/Public/Authorization/ClientAuthAWSCredentials.h index 4bba58a77e..c7d9c55480 100644 --- a/Gems/AWSClientAuth/Code/Include/Public/Authorization/ClientAuthAWSCredentials.h +++ b/Gems/AWSClientAuth/Code/Include/Public/Authorization/ClientAuthAWSCredentials.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Include/Public/UserManagement/AWSCognitoUserManagementBus.h b/Gems/AWSClientAuth/Code/Include/Public/UserManagement/AWSCognitoUserManagementBus.h index bb5ddfc91f..5447b68477 100644 --- a/Gems/AWSClientAuth/Code/Include/Public/UserManagement/AWSCognitoUserManagementBus.h +++ b/Gems/AWSClientAuth/Code/Include/Public/UserManagement/AWSCognitoUserManagementBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/AWSClientAuthModule.cpp b/Gems/AWSClientAuth/Code/Source/AWSClientAuthModule.cpp index cf15d9c079..dd6716681e 100644 --- a/Gems/AWSClientAuth/Code/Source/AWSClientAuthModule.cpp +++ b/Gems/AWSClientAuth/Code/Source/AWSClientAuthModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/AWSClientAuthSystemComponent.cpp b/Gems/AWSClientAuth/Code/Source/AWSClientAuthSystemComponent.cpp index d7e3a2274f..c8c16cd26f 100644 --- a/Gems/AWSClientAuth/Code/Source/AWSClientAuthSystemComponent.cpp +++ b/Gems/AWSClientAuth/Code/Source/AWSClientAuthSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authentication/AWSCognitoAuthenticationProvider.cpp b/Gems/AWSClientAuth/Code/Source/Authentication/AWSCognitoAuthenticationProvider.cpp index 721a54041d..482c9b1d9e 100644 --- a/Gems/AWSClientAuth/Code/Source/Authentication/AWSCognitoAuthenticationProvider.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authentication/AWSCognitoAuthenticationProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderInterface.cpp b/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderInterface.cpp index 7ced151604..0336d910ba 100644 --- a/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderInterface.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderManager.cpp b/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderManager.cpp index b878dd3db0..75f70932f1 100644 --- a/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderManager.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationProviderManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationTokens.cpp b/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationTokens.cpp index 6f39738c84..72746e7158 100644 --- a/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationTokens.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authentication/AuthenticationTokens.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authentication/GoogleAuthenticationProvider.cpp b/Gems/AWSClientAuth/Code/Source/Authentication/GoogleAuthenticationProvider.cpp index fee1bebf5f..3d180b17db 100644 --- a/Gems/AWSClientAuth/Code/Source/Authentication/GoogleAuthenticationProvider.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authentication/GoogleAuthenticationProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authentication/LWAAuthenticationProvider.cpp b/Gems/AWSClientAuth/Code/Source/Authentication/LWAAuthenticationProvider.cpp index 8f52a8abe3..b8028ff769 100644 --- a/Gems/AWSClientAuth/Code/Source/Authentication/LWAAuthenticationProvider.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authentication/LWAAuthenticationProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.cpp b/Gems/AWSClientAuth/Code/Source/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.cpp index e1c9433972..9933492407 100644 --- a/Gems/AWSClientAuth/Code/Source/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authorization/AWSClientAuthPersistentCognitoIdentityProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/Authorization/AWSCognitoAuthorizationController.cpp b/Gems/AWSClientAuth/Code/Source/Authorization/AWSCognitoAuthorizationController.cpp index 953b869b08..bffaf2440e 100644 --- a/Gems/AWSClientAuth/Code/Source/Authorization/AWSCognitoAuthorizationController.cpp +++ b/Gems/AWSClientAuth/Code/Source/Authorization/AWSCognitoAuthorizationController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp b/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp index 9475d229f6..c591b5650f 100644 --- a/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp +++ b/Gems/AWSClientAuth/Code/Source/UserManagement/AWSCognitoUserManagementController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h index e6d9c4f54a..eef29e2cb5 100644 --- a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h +++ b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemTest.cpp b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemTest.cpp index 98d3d27c19..05a750dc1b 100644 --- a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthGemTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthSystemComponentTest.cpp b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthSystemComponentTest.cpp index aa7bcbea46..7a5ddc1f61 100644 --- a/Gems/AWSClientAuth/Code/Tests/AWSClientAuthSystemComponentTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/AWSClientAuthSystemComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authentication/AWSCognitoAuthenticationProviderTest.cpp b/Gems/AWSClientAuth/Code/Tests/Authentication/AWSCognitoAuthenticationProviderTest.cpp index d49cd9e15a..328f77b28f 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authentication/AWSCognitoAuthenticationProviderTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/Authentication/AWSCognitoAuthenticationProviderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerMock.h b/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerMock.h index 3c00e4aeb1..0c2924e5f5 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerMock.h +++ b/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerScriptCanvasBusTest.cpp b/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerScriptCanvasBusTest.cpp index 3552370255..fb233aeb5d 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerScriptCanvasBusTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerScriptCanvasBusTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerTest.cpp b/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerTest.cpp index 11b7d4c45a..362efaf025 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/Authentication/AuthenticationProviderManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authentication/GoogleAuthenticationProviderTest.cpp b/Gems/AWSClientAuth/Code/Tests/Authentication/GoogleAuthenticationProviderTest.cpp index ebf1c7958e..f8b8399118 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authentication/GoogleAuthenticationProviderTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/Authentication/GoogleAuthenticationProviderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authentication/LWAAuthenticationProviderTest.cpp b/Gems/AWSClientAuth/Code/Tests/Authentication/LWAAuthenticationProviderTest.cpp index 1d45c5425b..cbbec30cb7 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authentication/LWAAuthenticationProviderTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/Authentication/LWAAuthenticationProviderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authorization/AWSClientAuthPersistentCognitoIdentityProviderTest.cpp b/Gems/AWSClientAuth/Code/Tests/Authorization/AWSClientAuthPersistentCognitoIdentityProviderTest.cpp index fe0e5da977..a3ef9db612 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authorization/AWSClientAuthPersistentCognitoIdentityProviderTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/Authorization/AWSClientAuthPersistentCognitoIdentityProviderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/Authorization/AWSCognitoAuthorizationControllerTest.cpp b/Gems/AWSClientAuth/Code/Tests/Authorization/AWSCognitoAuthorizationControllerTest.cpp index e827855d79..93eda7cccf 100644 --- a/Gems/AWSClientAuth/Code/Tests/Authorization/AWSCognitoAuthorizationControllerTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/Authorization/AWSCognitoAuthorizationControllerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/Tests/UserManagement/AWSCognitoUserManagementControllerTest.cpp b/Gems/AWSClientAuth/Code/Tests/UserManagement/AWSCognitoUserManagementControllerTest.cpp index 4e531902f5..88df892e4e 100644 --- a/Gems/AWSClientAuth/Code/Tests/UserManagement/AWSCognitoUserManagementControllerTest.cpp +++ b/Gems/AWSClientAuth/Code/Tests/UserManagement/AWSCognitoUserManagementControllerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSClientAuth/Code/awsclientauth_files.cmake b/Gems/AWSClientAuth/Code/awsclientauth_files.cmake index 7adaf73a97..2983df418a 100644 --- a/Gems/AWSClientAuth/Code/awsclientauth_files.cmake +++ b/Gems/AWSClientAuth/Code/awsclientauth_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSClientAuth/Code/awsclientauth_shared_files.cmake b/Gems/AWSClientAuth/Code/awsclientauth_shared_files.cmake index 6d6d53d288..fd48dcbaa7 100644 --- a/Gems/AWSClientAuth/Code/awsclientauth_shared_files.cmake +++ b/Gems/AWSClientAuth/Code/awsclientauth_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSClientAuth/Code/awsclientauth_test_files.cmake b/Gems/AWSClientAuth/Code/awsclientauth_test_files.cmake index f8f8e9c29e..d091f0f14b 100644 --- a/Gems/AWSClientAuth/Code/awsclientauth_test_files.cmake +++ b/Gems/AWSClientAuth/Code/awsclientauth_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSClientAuth/cdk/app.py b/Gems/AWSClientAuth/cdk/app.py index 7ca3ffecdd..d412ae575d 100755 --- a/Gems/AWSClientAuth/cdk/app.py +++ b/Gems/AWSClientAuth/cdk/app.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/auth/__init__.py b/Gems/AWSClientAuth/cdk/auth/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSClientAuth/cdk/auth/__init__.py +++ b/Gems/AWSClientAuth/cdk/auth/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/auth/cognito_identity_pool_role.py b/Gems/AWSClientAuth/cdk/auth/cognito_identity_pool_role.py index 2e5f124665..7f2b901960 100755 --- a/Gems/AWSClientAuth/cdk/auth/cognito_identity_pool_role.py +++ b/Gems/AWSClientAuth/cdk/auth/cognito_identity_pool_role.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/auth/cognito_user_pool_sms_role.py b/Gems/AWSClientAuth/cdk/auth/cognito_user_pool_sms_role.py index 6faa6c9a95..8f83ed109d 100755 --- a/Gems/AWSClientAuth/cdk/auth/cognito_user_pool_sms_role.py +++ b/Gems/AWSClientAuth/cdk/auth/cognito_user_pool_sms_role.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/aws_client_auth/__init__.py b/Gems/AWSClientAuth/cdk/aws_client_auth/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSClientAuth/cdk/aws_client_auth/__init__.py +++ b/Gems/AWSClientAuth/cdk/aws_client_auth/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/aws_client_auth/client_auth_stack.py b/Gems/AWSClientAuth/cdk/aws_client_auth/client_auth_stack.py index c180778ac0..995d77265a 100755 --- a/Gems/AWSClientAuth/cdk/aws_client_auth/client_auth_stack.py +++ b/Gems/AWSClientAuth/cdk/aws_client_auth/client_auth_stack.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/cognito/__init__.py b/Gems/AWSClientAuth/cdk/cognito/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSClientAuth/cdk/cognito/__init__.py +++ b/Gems/AWSClientAuth/cdk/cognito/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/cognito/cognito_identity_pool.py b/Gems/AWSClientAuth/cdk/cognito/cognito_identity_pool.py index 840e7696ee..8d551c61e7 100755 --- a/Gems/AWSClientAuth/cdk/cognito/cognito_identity_pool.py +++ b/Gems/AWSClientAuth/cdk/cognito/cognito_identity_pool.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/cognito/cognito_user_pool.py b/Gems/AWSClientAuth/cdk/cognito/cognito_user_pool.py index 2741e72d52..270f1cfce3 100755 --- a/Gems/AWSClientAuth/cdk/cognito/cognito_user_pool.py +++ b/Gems/AWSClientAuth/cdk/cognito/cognito_user_pool.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/utils/__init__.py b/Gems/AWSClientAuth/cdk/utils/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSClientAuth/cdk/utils/__init__.py +++ b/Gems/AWSClientAuth/cdk/utils/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/utils/constants.py b/Gems/AWSClientAuth/cdk/utils/constants.py index 0dd740dec7..c264783cc1 100755 --- a/Gems/AWSClientAuth/cdk/utils/constants.py +++ b/Gems/AWSClientAuth/cdk/utils/constants.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSClientAuth/cdk/utils/name_utils.py b/Gems/AWSClientAuth/cdk/utils/name_utils.py index 2d47ae0dc1..dc3d9d0fcb 100755 --- a/Gems/AWSClientAuth/cdk/utils/name_utils.py +++ b/Gems/AWSClientAuth/cdk/utils/name_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/CMakeLists.txt b/Gems/AWSCore/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AWSCore/CMakeLists.txt +++ b/Gems/AWSCore/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/CMakeLists.txt b/Gems/AWSCore/Code/CMakeLists.txt index 43ab13105b..e6da67d2b3 100644 --- a/Gems/AWSCore/Code/CMakeLists.txt +++ b/Gems/AWSCore/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Include/Private/AWSCoreEditorModule.h b/Gems/AWSCore/Code/Include/Private/AWSCoreEditorModule.h index e00458b872..b7ddd213a6 100644 --- a/Gems/AWSCore/Code/Include/Private/AWSCoreEditorModule.h +++ b/Gems/AWSCore/Code/Include/Private/AWSCoreEditorModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/AWSCoreEditorSystemComponent.h b/Gems/AWSCore/Code/Include/Private/AWSCoreEditorSystemComponent.h index d0a99f8ae1..4693cf0da1 100644 --- a/Gems/AWSCore/Code/Include/Private/AWSCoreEditorSystemComponent.h +++ b/Gems/AWSCore/Code/Include/Private/AWSCoreEditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/AWSCoreInternalBus.h b/Gems/AWSCore/Code/Include/Private/AWSCoreInternalBus.h index 66bf0afd8b..c2c669c784 100644 --- a/Gems/AWSCore/Code/Include/Private/AWSCoreInternalBus.h +++ b/Gems/AWSCore/Code/Include/Private/AWSCoreInternalBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/AWSCoreModule.h b/Gems/AWSCore/Code/Include/Private/AWSCoreModule.h index 2a828b6238..570089fc58 100644 --- a/Gems/AWSCore/Code/Include/Private/AWSCoreModule.h +++ b/Gems/AWSCore/Code/Include/Private/AWSCoreModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/AWSCoreSystemComponent.h b/Gems/AWSCore/Code/Include/Private/AWSCoreSystemComponent.h index 68f79cfdd9..773904f304 100644 --- a/Gems/AWSCore/Code/Include/Private/AWSCoreSystemComponent.h +++ b/Gems/AWSCore/Code/Include/Private/AWSCoreSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Configuration/AWSCoreConfiguration.h b/Gems/AWSCore/Code/Include/Private/Configuration/AWSCoreConfiguration.h index 7ed7374415..42b828f450 100644 --- a/Gems/AWSCore/Code/Include/Private/Configuration/AWSCoreConfiguration.h +++ b/Gems/AWSCore/Code/Include/Private/Configuration/AWSCoreConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Credential/AWSCVarCredentialHandler.h b/Gems/AWSCore/Code/Include/Private/Credential/AWSCVarCredentialHandler.h index 3e486446d5..ac4f906aae 100644 --- a/Gems/AWSCore/Code/Include/Private/Credential/AWSCVarCredentialHandler.h +++ b/Gems/AWSCore/Code/Include/Private/Credential/AWSCVarCredentialHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Credential/AWSCredentialManager.h b/Gems/AWSCore/Code/Include/Private/Credential/AWSCredentialManager.h index dce0d2fd97..de05a2cb89 100644 --- a/Gems/AWSCore/Code/Include/Private/Credential/AWSCredentialManager.h +++ b/Gems/AWSCore/Code/Include/Private/Credential/AWSCredentialManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Credential/AWSDefaultCredentialHandler.h b/Gems/AWSCore/Code/Include/Private/Credential/AWSDefaultCredentialHandler.h index f6e4288442..cfa751c0f1 100644 --- a/Gems/AWSCore/Code/Include/Private/Credential/AWSDefaultCredentialHandler.h +++ b/Gems/AWSCore/Code/Include/Private/Credential/AWSDefaultCredentialHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/AWSCoreEditorManager.h b/Gems/AWSCore/Code/Include/Private/Editor/AWSCoreEditorManager.h index 1220cf905c..10378ba5a8 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/AWSCoreEditorManager.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/AWSCoreEditorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSAttributionServiceApi.h b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSAttributionServiceApi.h index d6fc21b160..74709ae2bd 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSAttributionServiceApi.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSAttributionServiceApi.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConsentDialog.h b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConsentDialog.h index 88ba1b0f9a..dfa61199a1 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConsentDialog.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConsentDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConstant.h b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConstant.h index 594f927028..b566557604 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConstant.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionConstant.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h index f3eef5966a..bcbfe4997f 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionMetric.h b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionMetric.h index d28bd76469..59dc62650b 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionMetric.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionMetric.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionSystemComponent.h b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionSystemComponent.h index 9ca798d327..dcc05210d9 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionSystemComponent.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Attribution/AWSCoreAttributionSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuLinks.h b/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuLinks.h index 3567570175..f7a906eeda 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuLinks.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuLinks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuNames.h b/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuNames.h index 3cb45ad521..48a6c610c4 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuNames.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Constants/AWSCoreEditorMenuNames.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Android.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Android.h index f0ca0aaa04..6cd98eb519 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Android.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Platform.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Platform.h index 463bc781f7..d8bc6cdea1 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Platform.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/AWSCoreEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/platform_android_files.cmake b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/platform_android_files.cmake index 48ff07372e..00a9b9a633 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/platform_android_files.cmake +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Linux.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Linux.h index f0ca0aaa04..6cd98eb519 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Linux.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Platform.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Platform.h index 3f089abb7c..d82f061187 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Platform.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/AWSCoreEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/platform_linux_files.cmake b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/platform_linux_files.cmake index f554e81977..943dab719c 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/platform_linux_files.cmake +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Mac.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Mac.h index f0ca0aaa04..6cd98eb519 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Mac.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Platform.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Platform.h index fdde74b5b3..2686751fbe 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Platform.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/AWSCoreEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/platform_mac_files.cmake b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/platform_mac_files.cmake index eaba90f154..b8f60bd4d2 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/platform_mac_files.cmake +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Platform.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Platform.h index d40c72ed03..604b22ee87 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Platform.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Windows.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Windows.h index 52871871fa..9807e26c3e 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Windows.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/AWSCoreEditor_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/platform_windows_files.cmake b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/platform_windows_files.cmake index 5c60aec7c1..06f5f6b1a5 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/platform_windows_files.cmake +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_Platform.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_Platform.h index 25fd23143c..ff6de0410f 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_Platform.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_iOS.h b/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_iOS.h index f0ca0aaa04..6cd98eb519 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_iOS.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/AWSCoreEditor_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/platform_ios_files.cmake b/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/platform_ios_files.cmake index d6641a9bf0..1bdb493905 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/platform_ios_files.cmake +++ b/Gems/AWSCore/Code/Include/Private/Editor/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreEditorMenu.h b/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreEditorMenu.h index 9fd0cffda7..65fb3cb11f 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreEditorMenu.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreEditorMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreResourceMappingToolAction.h b/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreResourceMappingToolAction.h index 4bdc62fd74..bd50232fa9 100644 --- a/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreResourceMappingToolAction.h +++ b/Gems/AWSCore/Code/Include/Private/Editor/UI/AWSCoreResourceMappingToolAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h index 88e8bb4ac6..efe2cd4556 100644 --- a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h +++ b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingManager.h b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingManager.h index e83d3e94cc..6f027d6557 100644 --- a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingManager.h +++ b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingUtils.h b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingUtils.h index 465e827550..71332c4b0c 100644 --- a/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingUtils.h +++ b/Gems/AWSCore/Code/Include/Private/ResourceMapping/AWSResourceMappingUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/AWSCoreBus.h b/Gems/AWSCore/Code/Include/Public/AWSCoreBus.h index 5bdd2567fa..f65c7a541a 100644 --- a/Gems/AWSCore/Code/Include/Public/AWSCoreBus.h +++ b/Gems/AWSCore/Code/Include/Public/AWSCoreBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Credential/AWSCredentialBus.h b/Gems/AWSCore/Code/Include/Public/Credential/AWSCredentialBus.h index 2e662895fb..de974721b2 100644 --- a/Gems/AWSCore/Code/Include/Public/Credential/AWSCredentialBus.h +++ b/Gems/AWSCore/Code/Include/Public/Credential/AWSCredentialBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJob.h b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJob.h index 413511b0cd..5a908929c4 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJob.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJobConfig.h b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJobConfig.h index 30148cdf1b..12c020dee0 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJobConfig.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiClientJobConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJob.h b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJob.h index 1f6b34d843..321c84b299 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJob.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJobConfig.h b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJobConfig.h index 5aae9be870..050a9fbde9 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJobConfig.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiJobConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJob.h b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJob.h index 73042a1bc0..5a6ad052ec 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJob.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJobConfig.h b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJobConfig.h index 18ddec0d62..8ac58d21f2 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJobConfig.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/AWSApiRequestJobConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/Error.h b/Gems/AWSCore/Code/Include/Public/Framework/Error.h index 2bd6072673..42d31e09e3 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/Error.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/Error.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/HttpClientComponent.h b/Gems/AWSCore/Code/Include/Public/Framework/HttpClientComponent.h index 75c830d4f1..c85572cc51 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/HttpClientComponent.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/HttpClientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJob.h b/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJob.h index 9645ae5c5a..91736b49c1 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJob.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJobConfig.h b/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJobConfig.h index 7bc09af140..356edbf93d 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJobConfig.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/HttpRequestJobConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/JobExecuter.h b/Gems/AWSCore/Code/Include/Public/Framework/JobExecuter.h index d3ce553077..f7f8432523 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/JobExecuter.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/JobExecuter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h b/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h index 99413ffaf1..bddf7d2dc8 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/JsonObjectHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/JsonWriter.h b/Gems/AWSCore/Code/Include/Public/Framework/JsonWriter.h index ef7e1fb377..4d13a4b5cb 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/JsonWriter.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/JsonWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/MultipartFormData.h b/Gems/AWSCore/Code/Include/Public/Framework/MultipartFormData.h index b0c2b711eb..d1ad00f4e6 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/MultipartFormData.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/MultipartFormData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/RequestBuilder.h b/Gems/AWSCore/Code/Include/Public/Framework/RequestBuilder.h index 3a0f2a4ecd..28b2bfed05 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/RequestBuilder.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/RequestBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJob.h b/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJob.h index 41c411ae76..88db445f8e 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJob.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJobConfig.h b/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJobConfig.h index b1a712420a..04f4dc985c 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJobConfig.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/ServiceClientJobConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/ServiceJob.h b/Gems/AWSCore/Code/Include/Public/Framework/ServiceJob.h index b414c5d781..6970fbb6fc 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/ServiceJob.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/ServiceJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobConfig.h b/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobConfig.h index 2bf32d4b97..ff48bd6fa3 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobConfig.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobUtil.h b/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobUtil.h index 99666715d7..daaeb312cc 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobUtil.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/ServiceJobUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJob.h b/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJob.h index 34c45e0899..39e81e142b 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJob.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJobConfig.h b/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJobConfig.h index a446e67698..11a9eed529 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJobConfig.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/ServiceRequestJobConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/Framework/Util.h b/Gems/AWSCore/Code/Include/Public/Framework/Util.h index c272588b25..d30f0a3512 100644 --- a/Gems/AWSCore/Code/Include/Public/Framework/Util.h +++ b/Gems/AWSCore/Code/Include/Public/Framework/Util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/ResourceMapping/AWSResourceMappingBus.h b/Gems/AWSCore/Code/Include/Public/ResourceMapping/AWSResourceMappingBus.h index ca821e476c..b7cbc06e0a 100644 --- a/Gems/AWSCore/Code/Include/Public/ResourceMapping/AWSResourceMappingBus.h +++ b/Gems/AWSCore/Code/Include/Public/ResourceMapping/AWSResourceMappingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorBase.h b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorBase.h index 706dd1d138..90163dd363 100644 --- a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorBase.h +++ b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorDynamoDB.h b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorDynamoDB.h index 10d89f4f53..317d16dbe4 100644 --- a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorDynamoDB.h +++ b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorDynamoDB.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorLambda.h b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorLambda.h index 8ddd7d70b2..a8a807e7fb 100644 --- a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorLambda.h +++ b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorLambda.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorS3.h b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorS3.h index 9e2c2ba13a..6c3d0e0a93 100644 --- a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorS3.h +++ b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorS3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorsComponent.h b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorsComponent.h index 422f75f0a6..8958425615 100644 --- a/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorsComponent.h +++ b/Gems/AWSCore/Code/Include/Public/ScriptCanvas/AWSScriptBehaviorsComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/AWSCoreEditorModule.cpp b/Gems/AWSCore/Code/Source/AWSCoreEditorModule.cpp index ef55d7bb80..3dc5638199 100644 --- a/Gems/AWSCore/Code/Source/AWSCoreEditorModule.cpp +++ b/Gems/AWSCore/Code/Source/AWSCoreEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/AWSCoreEditorSystemComponent.cpp b/Gems/AWSCore/Code/Source/AWSCoreEditorSystemComponent.cpp index 92ddb0fc7a..275f4b40a5 100644 --- a/Gems/AWSCore/Code/Source/AWSCoreEditorSystemComponent.cpp +++ b/Gems/AWSCore/Code/Source/AWSCoreEditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/AWSCoreModule.cpp b/Gems/AWSCore/Code/Source/AWSCoreModule.cpp index 297af89fa8..e56a10e504 100644 --- a/Gems/AWSCore/Code/Source/AWSCoreModule.cpp +++ b/Gems/AWSCore/Code/Source/AWSCoreModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/AWSCoreResourceMappingToolModule.cpp b/Gems/AWSCore/Code/Source/AWSCoreResourceMappingToolModule.cpp index 2a4916f2a1..5896e74b74 100644 --- a/Gems/AWSCore/Code/Source/AWSCoreResourceMappingToolModule.cpp +++ b/Gems/AWSCore/Code/Source/AWSCoreResourceMappingToolModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/AWSCoreSystemComponent.cpp b/Gems/AWSCore/Code/Source/AWSCoreSystemComponent.cpp index 05671bc929..3e039cfa9f 100644 --- a/Gems/AWSCore/Code/Source/AWSCoreSystemComponent.cpp +++ b/Gems/AWSCore/Code/Source/AWSCoreSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Configuration/AWSCoreConfiguration.cpp b/Gems/AWSCore/Code/Source/Configuration/AWSCoreConfiguration.cpp index 403e7e775e..c6863e6f3d 100644 --- a/Gems/AWSCore/Code/Source/Configuration/AWSCoreConfiguration.cpp +++ b/Gems/AWSCore/Code/Source/Configuration/AWSCoreConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Credential/AWSCVarCredentialHandler.cpp b/Gems/AWSCore/Code/Source/Credential/AWSCVarCredentialHandler.cpp index 9e9fcac681..d3e675244f 100644 --- a/Gems/AWSCore/Code/Source/Credential/AWSCVarCredentialHandler.cpp +++ b/Gems/AWSCore/Code/Source/Credential/AWSCVarCredentialHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Credential/AWSCredentialManager.cpp b/Gems/AWSCore/Code/Source/Credential/AWSCredentialManager.cpp index b917fbae4e..9fd9b3cc25 100644 --- a/Gems/AWSCore/Code/Source/Credential/AWSCredentialManager.cpp +++ b/Gems/AWSCore/Code/Source/Credential/AWSCredentialManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Credential/AWSDefaultCredentialHandler.cpp b/Gems/AWSCore/Code/Source/Credential/AWSDefaultCredentialHandler.cpp index 7edb0fd840..c90728837a 100644 --- a/Gems/AWSCore/Code/Source/Credential/AWSDefaultCredentialHandler.cpp +++ b/Gems/AWSCore/Code/Source/Credential/AWSDefaultCredentialHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/AWSCoreEditorManager.cpp b/Gems/AWSCore/Code/Source/Editor/AWSCoreEditorManager.cpp index ca3d256ba0..db159e8815 100644 --- a/Gems/AWSCore/Code/Source/Editor/AWSCoreEditorManager.cpp +++ b/Gems/AWSCore/Code/Source/Editor/AWSCoreEditorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSAttributionServiceApi.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSAttributionServiceApi.cpp index 55755e4e36..3bb1b53829 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSAttributionServiceApi.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSAttributionServiceApi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp index 69c4472f59..48c3ba48df 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionConsentDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp index 311e29c59c..895ae4fec7 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionMetric.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionMetric.cpp index 241ee4afc5..d1cf2a326f 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionMetric.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionMetric.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionSystemComponent.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionSystemComponent.cpp index e19f899905..cdfad4f533 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionSystemComponent.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreEditorMenu.cpp b/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreEditorMenu.cpp index 8c61fa722d..08079c6cdf 100644 --- a/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreEditorMenu.cpp +++ b/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreEditorMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreResourceMappingToolAction.cpp b/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreResourceMappingToolAction.cpp index e68d595d9d..d60c298d7e 100644 --- a/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreResourceMappingToolAction.cpp +++ b/Gems/AWSCore/Code/Source/Editor/UI/AWSCoreResourceMappingToolAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/AWSApiJob.cpp b/Gems/AWSCore/Code/Source/Framework/AWSApiJob.cpp index c9b8ead2c1..8800094b95 100644 --- a/Gems/AWSCore/Code/Source/Framework/AWSApiJob.cpp +++ b/Gems/AWSCore/Code/Source/Framework/AWSApiJob.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/AWSApiJobConfig.cpp b/Gems/AWSCore/Code/Source/Framework/AWSApiJobConfig.cpp index 28c60bbdf2..a4f4697249 100644 --- a/Gems/AWSCore/Code/Source/Framework/AWSApiJobConfig.cpp +++ b/Gems/AWSCore/Code/Source/Framework/AWSApiJobConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/Error.cpp b/Gems/AWSCore/Code/Source/Framework/Error.cpp index 5f07489889..e8b585baf3 100644 --- a/Gems/AWSCore/Code/Source/Framework/Error.cpp +++ b/Gems/AWSCore/Code/Source/Framework/Error.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp b/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp index 87c5fea05c..59d5b4a052 100644 --- a/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp +++ b/Gems/AWSCore/Code/Source/Framework/HttpRequestJob.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/HttpRequestJobConfig.cpp b/Gems/AWSCore/Code/Source/Framework/HttpRequestJobConfig.cpp index a5493243cc..deef0f4bf3 100644 --- a/Gems/AWSCore/Code/Source/Framework/HttpRequestJobConfig.cpp +++ b/Gems/AWSCore/Code/Source/Framework/HttpRequestJobConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/JsonObjectHandler.cpp b/Gems/AWSCore/Code/Source/Framework/JsonObjectHandler.cpp index 3987cc8dc5..7e4fbe1a12 100644 --- a/Gems/AWSCore/Code/Source/Framework/JsonObjectHandler.cpp +++ b/Gems/AWSCore/Code/Source/Framework/JsonObjectHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/MultipartFormData.cpp b/Gems/AWSCore/Code/Source/Framework/MultipartFormData.cpp index 74bb43c254..aa77902ee0 100644 --- a/Gems/AWSCore/Code/Source/Framework/MultipartFormData.cpp +++ b/Gems/AWSCore/Code/Source/Framework/MultipartFormData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/RequestBuilder.cpp b/Gems/AWSCore/Code/Source/Framework/RequestBuilder.cpp index 0509ae6dfb..688415f243 100644 --- a/Gems/AWSCore/Code/Source/Framework/RequestBuilder.cpp +++ b/Gems/AWSCore/Code/Source/Framework/RequestBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/ServiceJob.cpp b/Gems/AWSCore/Code/Source/Framework/ServiceJob.cpp index e022e4ab3a..e110036857 100644 --- a/Gems/AWSCore/Code/Source/Framework/ServiceJob.cpp +++ b/Gems/AWSCore/Code/Source/Framework/ServiceJob.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/Framework/ServiceJobConfig.cpp b/Gems/AWSCore/Code/Source/Framework/ServiceJobConfig.cpp index b64b3a7f5e..488cede19b 100644 --- a/Gems/AWSCore/Code/Source/Framework/ServiceJobConfig.cpp +++ b/Gems/AWSCore/Code/Source/Framework/ServiceJobConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp index 0dffe3ba5d..48e3ffad70 100644 --- a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp +++ b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingUtils.cpp b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingUtils.cpp index 2c9af0877a..5b544f8fa9 100644 --- a/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingUtils.cpp +++ b/Gems/AWSCore/Code/Source/ResourceMapping/AWSResourceMappingUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorDynamoDB.cpp b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorDynamoDB.cpp index 572c896f8d..c25df555fc 100644 --- a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorDynamoDB.cpp +++ b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorDynamoDB.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorLambda.cpp b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorLambda.cpp index 60720e0350..a7420654de 100644 --- a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorLambda.cpp +++ b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorLambda.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorS3.cpp b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorS3.cpp index 669eae71db..aa397ca97c 100644 --- a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorS3.cpp +++ b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorS3.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorsComponent.cpp b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorsComponent.cpp index 65289023c8..530c35cde2 100644 --- a/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorsComponent.cpp +++ b/Gems/AWSCore/Code/Source/ScriptCanvas/AWSScriptBehaviorsComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/AWSCoreSystemComponentTest.cpp b/Gems/AWSCore/Code/Tests/AWSCoreSystemComponentTest.cpp index 372366f102..52acd7d6f5 100644 --- a/Gems/AWSCore/Code/Tests/AWSCoreSystemComponentTest.cpp +++ b/Gems/AWSCore/Code/Tests/AWSCoreSystemComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/AWSCoreTest.cpp b/Gems/AWSCore/Code/Tests/AWSCoreTest.cpp index 1c430045e3..d37cd92f15 100644 --- a/Gems/AWSCore/Code/Tests/AWSCoreTest.cpp +++ b/Gems/AWSCore/Code/Tests/AWSCoreTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Configuration/AWSCoreConfigurationTest.cpp b/Gems/AWSCore/Code/Tests/Configuration/AWSCoreConfigurationTest.cpp index f83fbdaba2..371e264f56 100644 --- a/Gems/AWSCore/Code/Tests/Configuration/AWSCoreConfigurationTest.cpp +++ b/Gems/AWSCore/Code/Tests/Configuration/AWSCoreConfigurationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Credential/AWSCVarCredentialHandlerTest.cpp b/Gems/AWSCore/Code/Tests/Credential/AWSCVarCredentialHandlerTest.cpp index a1b6e8cd0c..899a117f17 100644 --- a/Gems/AWSCore/Code/Tests/Credential/AWSCVarCredentialHandlerTest.cpp +++ b/Gems/AWSCore/Code/Tests/Credential/AWSCVarCredentialHandlerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Credential/AWSCredentialBusTest.cpp b/Gems/AWSCore/Code/Tests/Credential/AWSCredentialBusTest.cpp index 7b0ff1f072..133380f757 100644 --- a/Gems/AWSCore/Code/Tests/Credential/AWSCredentialBusTest.cpp +++ b/Gems/AWSCore/Code/Tests/Credential/AWSCredentialBusTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Credential/AWSDefaultCredentialHandlerTest.cpp b/Gems/AWSCore/Code/Tests/Credential/AWSDefaultCredentialHandlerTest.cpp index 0eb0f5855d..2a6813cd90 100644 --- a/Gems/AWSCore/Code/Tests/Credential/AWSDefaultCredentialHandlerTest.cpp +++ b/Gems/AWSCore/Code/Tests/Credential/AWSDefaultCredentialHandlerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorManagerTest.cpp b/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorManagerTest.cpp index 6267ad7a2c..4b56d0ac3a 100644 --- a/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorManagerTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorSystemComponentTest.cpp b/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorSystemComponentTest.cpp index eb1fa1e6fd..581b45d860 100644 --- a/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorSystemComponentTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorSystemComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorTest.cpp b/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorTest.cpp index 98d3d27c19..05a750dc1b 100644 --- a/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/AWSCoreEditorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSAttributionServiceApiTest.cpp b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSAttributionServiceApiTest.cpp index 309aa28879..c61fbece98 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSAttributionServiceApiTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSAttributionServiceApiTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp index b6bf515a6f..4128edc1e2 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionMetricTest.cpp b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionMetricTest.cpp index f52314c98e..6b3e35b775 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionMetricTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionMetricTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp index 98a07232b6..eaae801776 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/Attribution/AWSCoreAttributionSystemComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/Platform/Linux/awscore_editor_tests_linux_files.cmake b/Gems/AWSCore/Code/Tests/Editor/Platform/Linux/awscore_editor_tests_linux_files.cmake index b649cafbde..262cd86d20 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Platform/Linux/awscore_editor_tests_linux_files.cmake +++ b/Gems/AWSCore/Code/Tests/Editor/Platform/Linux/awscore_editor_tests_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Tests/Editor/Platform/Mac/awscore_editor_tests_mac_files.cmake b/Gems/AWSCore/Code/Tests/Editor/Platform/Mac/awscore_editor_tests_mac_files.cmake index b649cafbde..262cd86d20 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Platform/Mac/awscore_editor_tests_mac_files.cmake +++ b/Gems/AWSCore/Code/Tests/Editor/Platform/Mac/awscore_editor_tests_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Tests/Editor/Platform/Windows/awscore_editor_tests_windows_files.cmake b/Gems/AWSCore/Code/Tests/Editor/Platform/Windows/awscore_editor_tests_windows_files.cmake index ca4110b011..f73bc8ace6 100644 --- a/Gems/AWSCore/Code/Tests/Editor/Platform/Windows/awscore_editor_tests_windows_files.cmake +++ b/Gems/AWSCore/Code/Tests/Editor/Platform/Windows/awscore_editor_tests_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorMenuTest.cpp b/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorMenuTest.cpp index 3301519959..b063f7c394 100644 --- a/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorMenuTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorMenuTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorUIFixture.h b/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorUIFixture.h index 908c7bcd3c..71918968e9 100644 --- a/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorUIFixture.h +++ b/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreEditorUIFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreResourceMappingToolActionTest.cpp b/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreResourceMappingToolActionTest.cpp index 6263be50c5..dfaa5ea945 100644 --- a/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreResourceMappingToolActionTest.cpp +++ b/Gems/AWSCore/Code/Tests/Editor/UI/AWSCoreResourceMappingToolActionTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/AWSApiClientJobConfigTest.cpp b/Gems/AWSCore/Code/Tests/Framework/AWSApiClientJobConfigTest.cpp index b7424b5263..25b219f7e0 100644 --- a/Gems/AWSCore/Code/Tests/Framework/AWSApiClientJobConfigTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/AWSApiClientJobConfigTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/AWSApiJobConfigTest.cpp b/Gems/AWSCore/Code/Tests/Framework/AWSApiJobConfigTest.cpp index 44bc82fed9..11079cbecd 100644 --- a/Gems/AWSCore/Code/Tests/Framework/AWSApiJobConfigTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/AWSApiJobConfigTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/HttpRequestJobTest.cpp b/Gems/AWSCore/Code/Tests/Framework/HttpRequestJobTest.cpp index b898d72d83..af0368ae19 100644 --- a/Gems/AWSCore/Code/Tests/Framework/HttpRequestJobTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/HttpRequestJobTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/JsonObjectHandlerTest.cpp b/Gems/AWSCore/Code/Tests/Framework/JsonObjectHandlerTest.cpp index 46f794430d..458385e303 100644 --- a/Gems/AWSCore/Code/Tests/Framework/JsonObjectHandlerTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/JsonObjectHandlerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/JsonWriterTest.cpp b/Gems/AWSCore/Code/Tests/Framework/JsonWriterTest.cpp index 21aecd266a..2d6bd67168 100644 --- a/Gems/AWSCore/Code/Tests/Framework/JsonWriterTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/JsonWriterTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/RequestBuilderTest.cpp b/Gems/AWSCore/Code/Tests/Framework/RequestBuilderTest.cpp index f976e85245..346e04064d 100644 --- a/Gems/AWSCore/Code/Tests/Framework/RequestBuilderTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/RequestBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/ServiceClientJobConfigTest.cpp b/Gems/AWSCore/Code/Tests/Framework/ServiceClientJobConfigTest.cpp index 939f132696..e5dd6d9040 100644 --- a/Gems/AWSCore/Code/Tests/Framework/ServiceClientJobConfigTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/ServiceClientJobConfigTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/ServiceJobUtilTest.cpp b/Gems/AWSCore/Code/Tests/Framework/ServiceJobUtilTest.cpp index 196a824973..88ce234bff 100644 --- a/Gems/AWSCore/Code/Tests/Framework/ServiceJobUtilTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/ServiceJobUtilTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/ServiceRequestJobTest.cpp b/Gems/AWSCore/Code/Tests/Framework/ServiceRequestJobTest.cpp index 3c42797082..efac656aae 100644 --- a/Gems/AWSCore/Code/Tests/Framework/ServiceRequestJobTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/ServiceRequestJobTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/Framework/UtilTest.cpp b/Gems/AWSCore/Code/Tests/Framework/UtilTest.cpp index d3ca0b7747..f7a0cb2ce1 100644 --- a/Gems/AWSCore/Code/Tests/Framework/UtilTest.cpp +++ b/Gems/AWSCore/Code/Tests/Framework/UtilTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp index 53bbf08b48..424a5e2048 100644 --- a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp +++ b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingUtilsTest.cpp b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingUtilsTest.cpp index e2f3d6951c..2565b56290 100644 --- a/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingUtilsTest.cpp +++ b/Gems/AWSCore/Code/Tests/ResourceMapping/AWSResourceMappingUtilsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorDynamoDBTest.cpp b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorDynamoDBTest.cpp index a1e3497a6c..49b3670bb0 100644 --- a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorDynamoDBTest.cpp +++ b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorDynamoDBTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorLambdaTest.cpp b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorLambdaTest.cpp index af7080f1d9..e64b1046ad 100644 --- a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorLambdaTest.cpp +++ b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorLambdaTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorS3Test.cpp b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorS3Test.cpp index ca036d27cc..cac0a042bc 100644 --- a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorS3Test.cpp +++ b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorS3Test.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorsComponentTest.cpp b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorsComponentTest.cpp index db9eb2c2ef..15ad297f9b 100644 --- a/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorsComponentTest.cpp +++ b/Gems/AWSCore/Code/Tests/ScriptCanvas/AWSScriptBehaviorsComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h b/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h index b53c927cf0..78d377711b 100644 --- a/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h +++ b/Gems/AWSCore/Code/Tests/TestFramework/AWSCoreFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/error_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/error_controller.py index d748023ccb..3353e498f4 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/error_controller.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/error_controller.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/import_resources_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/import_resources_controller.py index 85b4e093e0..8db8df3007 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/import_resources_controller.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/import_resources_controller.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py index 0855a16f59..66ba363b81 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/controller/view_edit_controller.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/configuration_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/configuration_manager.py index 0ebe80f6bc..b6f0d9b370 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/configuration_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/configuration_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/controller_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/controller_manager.py index 14ab0b8f0c..d6227698eb 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/controller_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/controller_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/thread_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/thread_manager.py index 344a16faf2..f5ff039465 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/thread_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/thread_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py index 7d9a2d4011..68f84a92c7 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/manager/view_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/basic_resource_attributes.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/basic_resource_attributes.py index 652431daa1..a29f741465 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/basic_resource_attributes.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/basic_resource_attributes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/configuration.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/configuration.py index c11913b77c..7015c9fe16 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/configuration.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/configuration.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/constants.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/constants.py index addcffd5bd..fc908f9fee 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/constants.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/constants.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py index 15a43bea21..d2308c44df 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/error_messages.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py index 5b63069d8f..7ccaf50877 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/notification_label_text.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_abstract_model.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_abstract_model.py index 4f3bf09e2f..3670b90fe5 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_abstract_model.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_abstract_model.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_mapping_attributes.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_mapping_attributes.py index ed27f91c7b..13fbcf23e7 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_mapping_attributes.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_mapping_attributes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_proxy_model.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_proxy_model.py index db684fcf3f..deb6d36c70 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_proxy_model.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_proxy_model.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_table_model.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_table_model.py index 6005bf2aff..6682f2b4de 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_table_model.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_table_model.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_tree_model.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_tree_model.py index 74d6648444..e3d6ae4c4c 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_tree_model.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/resource_tree_model.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py index 1405a1b1fe..25331872c9 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/model/view_size_constants.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/worker.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/worker.py index 09f269943e..52518f3004 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/worker.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/multithread/worker.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py index 932a05583c..5f9fbcc64b 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/resource_mapping_tool.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/azqtcomponents_resources.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/azqtcomponents_resources.py index cab07b9ab1..4007891a92 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/azqtcomponents_resources.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/azqtcomponents_resources.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss index 5f1de10c9d..8f46ca9ce4 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/base_style_sheet.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py index e8020acfff..be02fa3670 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/style/editormainwindow_resources.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_import_resources_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_import_resources_controller.py index 15b0ae136e..a4731a70b9 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_import_resources_controller.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_import_resources_controller.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py index ad9ef24119..33d6059634 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/controller/test_view_edit_controller.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_configuration_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_configuration_manager.py index 9f3b37a21f..fcef87f054 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_configuration_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_configuration_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_controller_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_controller_manager.py index 88e70ad2d0..15a92eae37 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_controller_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_controller_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_thread_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_thread_manager.py index d6cfdae1c1..38b4fee685 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_thread_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_thread_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_view_manager.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_view_manager.py index 43ac8b8810..153a60c392 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_view_manager.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/manager/test_view_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/test_worker.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/test_worker.py index 52651405f8..320761c2df 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/test_worker.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/multithread/test_worker.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_aws_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_aws_utils.py index 0b23800f80..b3c88e0863 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_aws_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_aws_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_environment_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_environment_utils.py index 5246b4bcd9..c6791fb6f4 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_environment_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/tests/unit/utils/test_environment_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ 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 cc5f30bf09..be6f066c07 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 @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ 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 71546fe85c..03ea798176 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 @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/aws_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/aws_utils.py index 4031bd22eb..04dfb04250 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/aws_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/aws_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/environment_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/environment_utils.py index 24b41a153e..852d6c927a 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/environment_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/environment_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py index 951c55e2f4..9ea5e3868e 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/file_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py index 0967489668..386dc422cb 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/utils/json_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/__init__.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/__init__.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py index d2f74ec1fc..d736ebb658 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/common_view_components.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py index 4c11d4d925..301b2388d8 100644 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/error_page.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/import_resources_page.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/import_resources_page.py index 43be1cfd97..3035908697 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/import_resources_page.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/import_resources_page.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py index c65da19dd4..5439c2903a 100755 --- a/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py +++ b/Gems/AWSCore/Code/Tools/ResourceMappingTool/view/view_edit_page.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/Code/awscore_editor_files.cmake b/Gems/AWSCore/Code/awscore_editor_files.cmake index 84c58dee67..5caeca1316 100644 --- a/Gems/AWSCore/Code/awscore_editor_files.cmake +++ b/Gems/AWSCore/Code/awscore_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/awscore_editor_shared_files.cmake b/Gems/AWSCore/Code/awscore_editor_shared_files.cmake index bbac4f5244..d8c87a1169 100644 --- a/Gems/AWSCore/Code/awscore_editor_shared_files.cmake +++ b/Gems/AWSCore/Code/awscore_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/awscore_editor_tests_files.cmake b/Gems/AWSCore/Code/awscore_editor_tests_files.cmake index db335d8816..ecdf09b8f4 100644 --- a/Gems/AWSCore/Code/awscore_editor_tests_files.cmake +++ b/Gems/AWSCore/Code/awscore_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/awscore_files.cmake b/Gems/AWSCore/Code/awscore_files.cmake index d67c8e2890..c1577ec1eb 100644 --- a/Gems/AWSCore/Code/awscore_files.cmake +++ b/Gems/AWSCore/Code/awscore_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/awscore_resourcemappingtool_files.cmake b/Gems/AWSCore/Code/awscore_resourcemappingtool_files.cmake index 003fc094cd..d6799948a7 100644 --- a/Gems/AWSCore/Code/awscore_resourcemappingtool_files.cmake +++ b/Gems/AWSCore/Code/awscore_resourcemappingtool_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/awscore_shared_files.cmake b/Gems/AWSCore/Code/awscore_shared_files.cmake index f256d472f7..326298a4b9 100644 --- a/Gems/AWSCore/Code/awscore_shared_files.cmake +++ b/Gems/AWSCore/Code/awscore_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/Code/awscore_tests_files.cmake b/Gems/AWSCore/Code/awscore_tests_files.cmake index 68fd773e79..50c7e5401f 100644 --- a/Gems/AWSCore/Code/awscore_tests_files.cmake +++ b/Gems/AWSCore/Code/awscore_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/cdk/app.py b/Gems/AWSCore/cdk/app.py index 94feafd46f..22da61fbae 100755 --- a/Gems/AWSCore/cdk/app.py +++ b/Gems/AWSCore/cdk/app.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/constants.py b/Gems/AWSCore/cdk/constants.py index 3b47a44245..dffe4163c8 100755 --- a/Gems/AWSCore/cdk/constants.py +++ b/Gems/AWSCore/cdk/constants.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/core/aws_core.py b/Gems/AWSCore/cdk/core/aws_core.py index 90bc8d5ab3..ff14884461 100755 --- a/Gems/AWSCore/cdk/core/aws_core.py +++ b/Gems/AWSCore/cdk/core/aws_core.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/core/core_stack.py b/Gems/AWSCore/cdk/core/core_stack.py index 070acf90b1..20db22ad84 100755 --- a/Gems/AWSCore/cdk/core/core_stack.py +++ b/Gems/AWSCore/cdk/core/core_stack.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/core_stack_properties.py b/Gems/AWSCore/cdk/core_stack_properties.py index 8af57c9c87..f794df0466 100755 --- a/Gems/AWSCore/cdk/core_stack_properties.py +++ b/Gems/AWSCore/cdk/core_stack_properties.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/example/__init__.py b/Gems/AWSCore/cdk/example/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSCore/cdk/example/__init__.py +++ b/Gems/AWSCore/cdk/example/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/example/auth.py b/Gems/AWSCore/cdk/example/auth.py index 2a5f09f657..24f77a2fa1 100755 --- a/Gems/AWSCore/cdk/example/auth.py +++ b/Gems/AWSCore/cdk/example/auth.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/example/dynamodb_table_seeder.py b/Gems/AWSCore/cdk/example/dynamodb_table_seeder.py index 651279a386..5434a7d573 100755 --- a/Gems/AWSCore/cdk/example/dynamodb_table_seeder.py +++ b/Gems/AWSCore/cdk/example/dynamodb_table_seeder.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSCore/cdk/example/example_resources_stack.py b/Gems/AWSCore/cdk/example/example_resources_stack.py index edf0851b86..7afbd9bb4c 100755 --- a/Gems/AWSCore/cdk/example/example_resources_stack.py +++ b/Gems/AWSCore/cdk/example/example_resources_stack.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSCore/cdk/example/lambda/lambda-handler.py b/Gems/AWSCore/cdk/example/lambda/lambda-handler.py index 698333cdf2..57f8086491 100755 --- a/Gems/AWSCore/cdk/example/lambda/lambda-handler.py +++ b/Gems/AWSCore/cdk/example/lambda/lambda-handler.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/CMakeLists.txt b/Gems/AWSMetrics/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AWSMetrics/CMakeLists.txt +++ b/Gems/AWSMetrics/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSMetrics/Code/CMakeLists.txt b/Gems/AWSMetrics/Code/CMakeLists.txt index fd99c7c222..153c8bec1b 100644 --- a/Gems/AWSMetrics/Code/CMakeLists.txt +++ b/Gems/AWSMetrics/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsConstant.h b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsConstant.h index 5e3c3896c4..6f361ee2fd 100644 --- a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsConstant.h +++ b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsConstant.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsModule.h b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsModule.h index c002f42ed4..c344817e3f 100644 --- a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsModule.h +++ b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsServiceApi.h b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsServiceApi.h index 68343839a9..50d828ac05 100644 --- a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsServiceApi.h +++ b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsServiceApi.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsSystemComponent.h b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsSystemComponent.h index 3d984ae68d..3ba37e5279 100644 --- a/Gems/AWSMetrics/Code/Include/Private/AWSMetricsSystemComponent.h +++ b/Gems/AWSMetrics/Code/Include/Private/AWSMetricsSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/ClientConfiguration.h b/Gems/AWSMetrics/Code/Include/Private/ClientConfiguration.h index 409248694a..239d01b56c 100644 --- a/Gems/AWSMetrics/Code/Include/Private/ClientConfiguration.h +++ b/Gems/AWSMetrics/Code/Include/Private/ClientConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/DefaultClientIdProvider.h b/Gems/AWSMetrics/Code/Include/Private/DefaultClientIdProvider.h index ae976b4f85..20ae9c84c7 100644 --- a/Gems/AWSMetrics/Code/Include/Private/DefaultClientIdProvider.h +++ b/Gems/AWSMetrics/Code/Include/Private/DefaultClientIdProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/GlobalStatistics.h b/Gems/AWSMetrics/Code/Include/Private/GlobalStatistics.h index 410ed37032..51599b3dbd 100644 --- a/Gems/AWSMetrics/Code/Include/Private/GlobalStatistics.h +++ b/Gems/AWSMetrics/Code/Include/Private/GlobalStatistics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/IdentityProvider.h b/Gems/AWSMetrics/Code/Include/Private/IdentityProvider.h index de0cbdc105..845ac4442b 100644 --- a/Gems/AWSMetrics/Code/Include/Private/IdentityProvider.h +++ b/Gems/AWSMetrics/Code/Include/Private/IdentityProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/MetricsAttribute.h b/Gems/AWSMetrics/Code/Include/Private/MetricsAttribute.h index ffcf8dc3e8..5602fa14ba 100644 --- a/Gems/AWSMetrics/Code/Include/Private/MetricsAttribute.h +++ b/Gems/AWSMetrics/Code/Include/Private/MetricsAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/MetricsEvent.h b/Gems/AWSMetrics/Code/Include/Private/MetricsEvent.h index 752e7ad7db..f6c16e85ea 100644 --- a/Gems/AWSMetrics/Code/Include/Private/MetricsEvent.h +++ b/Gems/AWSMetrics/Code/Include/Private/MetricsEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/MetricsEventBuilder.h b/Gems/AWSMetrics/Code/Include/Private/MetricsEventBuilder.h index 59d761c477..a8fc20dfb7 100644 --- a/Gems/AWSMetrics/Code/Include/Private/MetricsEventBuilder.h +++ b/Gems/AWSMetrics/Code/Include/Private/MetricsEventBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/MetricsManager.h b/Gems/AWSMetrics/Code/Include/Private/MetricsManager.h index 632e1ddc3a..9f110c75e0 100644 --- a/Gems/AWSMetrics/Code/Include/Private/MetricsManager.h +++ b/Gems/AWSMetrics/Code/Include/Private/MetricsManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Private/MetricsQueue.h b/Gems/AWSMetrics/Code/Include/Private/MetricsQueue.h index 5652ff4dc4..36646f35cb 100644 --- a/Gems/AWSMetrics/Code/Include/Private/MetricsQueue.h +++ b/Gems/AWSMetrics/Code/Include/Private/MetricsQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Include/Public/AWSMetricsBus.h b/Gems/AWSMetrics/Code/Include/Public/AWSMetricsBus.h index bd3015fb5a..23c2e8c944 100644 --- a/Gems/AWSMetrics/Code/Include/Public/AWSMetricsBus.h +++ b/Gems/AWSMetrics/Code/Include/Public/AWSMetricsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/AWSMetricsModule.cpp b/Gems/AWSMetrics/Code/Source/AWSMetricsModule.cpp index 4e34081da6..f30afa494e 100644 --- a/Gems/AWSMetrics/Code/Source/AWSMetricsModule.cpp +++ b/Gems/AWSMetrics/Code/Source/AWSMetricsModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/AWSMetricsServiceApi.cpp b/Gems/AWSMetrics/Code/Source/AWSMetricsServiceApi.cpp index 989e9f2eef..539c0593d0 100644 --- a/Gems/AWSMetrics/Code/Source/AWSMetricsServiceApi.cpp +++ b/Gems/AWSMetrics/Code/Source/AWSMetricsServiceApi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/AWSMetricsSystemComponent.cpp b/Gems/AWSMetrics/Code/Source/AWSMetricsSystemComponent.cpp index 3a54c4c709..cbc10a1f04 100644 --- a/Gems/AWSMetrics/Code/Source/AWSMetricsSystemComponent.cpp +++ b/Gems/AWSMetrics/Code/Source/AWSMetricsSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/ClientConfiguration.cpp b/Gems/AWSMetrics/Code/Source/ClientConfiguration.cpp index e971ed4dab..504c02d920 100644 --- a/Gems/AWSMetrics/Code/Source/ClientConfiguration.cpp +++ b/Gems/AWSMetrics/Code/Source/ClientConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/DefaultClientIdProvider.cpp b/Gems/AWSMetrics/Code/Source/DefaultClientIdProvider.cpp index 0daf175a0c..f51497389d 100644 --- a/Gems/AWSMetrics/Code/Source/DefaultClientIdProvider.cpp +++ b/Gems/AWSMetrics/Code/Source/DefaultClientIdProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp b/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp index 38cace5f1a..4de262a852 100644 --- a/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp +++ b/Gems/AWSMetrics/Code/Source/IdentityProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/MetricsAttribute.cpp b/Gems/AWSMetrics/Code/Source/MetricsAttribute.cpp index 375309a267..287e97c9a1 100644 --- a/Gems/AWSMetrics/Code/Source/MetricsAttribute.cpp +++ b/Gems/AWSMetrics/Code/Source/MetricsAttribute.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp b/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp index c48a8fb459..8a9499377b 100644 --- a/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp +++ b/Gems/AWSMetrics/Code/Source/MetricsEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/MetricsEventBuilder.cpp b/Gems/AWSMetrics/Code/Source/MetricsEventBuilder.cpp index 0ad1b6c671..abb6af8a1e 100644 --- a/Gems/AWSMetrics/Code/Source/MetricsEventBuilder.cpp +++ b/Gems/AWSMetrics/Code/Source/MetricsEventBuilder.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/MetricsManager.cpp b/Gems/AWSMetrics/Code/Source/MetricsManager.cpp index 73717587cf..5779697010 100644 --- a/Gems/AWSMetrics/Code/Source/MetricsManager.cpp +++ b/Gems/AWSMetrics/Code/Source/MetricsManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp b/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp index cc5b082ee5..c95ce71573 100644 --- a/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp +++ b/Gems/AWSMetrics/Code/Source/MetricsQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/AWSMetricsGemMock.h b/Gems/AWSMetrics/Code/Tests/AWSMetricsGemMock.h index fa939ae406..77d3f5e5b8 100644 --- a/Gems/AWSMetrics/Code/Tests/AWSMetricsGemMock.h +++ b/Gems/AWSMetrics/Code/Tests/AWSMetricsGemMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/AWSMetricsServiceApiTest.cpp b/Gems/AWSMetrics/Code/Tests/AWSMetricsServiceApiTest.cpp index 5d07869569..7aac3fecfd 100644 --- a/Gems/AWSMetrics/Code/Tests/AWSMetricsServiceApiTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/AWSMetricsServiceApiTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/AWSMetricsSystemComponentTest.cpp b/Gems/AWSMetrics/Code/Tests/AWSMetricsSystemComponentTest.cpp index 766286d55b..cc81b5ac9b 100644 --- a/Gems/AWSMetrics/Code/Tests/AWSMetricsSystemComponentTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/AWSMetricsSystemComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/AWSMetricsTest.cpp b/Gems/AWSMetrics/Code/Tests/AWSMetricsTest.cpp index 98d3d27c19..05a750dc1b 100644 --- a/Gems/AWSMetrics/Code/Tests/AWSMetricsTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/AWSMetricsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/ClientIdProviderTest.cpp b/Gems/AWSMetrics/Code/Tests/ClientIdProviderTest.cpp index f3f9da6bef..9c8ccf1556 100644 --- a/Gems/AWSMetrics/Code/Tests/ClientIdProviderTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/ClientIdProviderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/MetricsAttributeTest.cpp b/Gems/AWSMetrics/Code/Tests/MetricsAttributeTest.cpp index 49b1806927..2dd800ff19 100644 --- a/Gems/AWSMetrics/Code/Tests/MetricsAttributeTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/MetricsAttributeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/MetricsEventBuilderTest.cpp b/Gems/AWSMetrics/Code/Tests/MetricsEventBuilderTest.cpp index 72b63f9437..0d2f373389 100644 --- a/Gems/AWSMetrics/Code/Tests/MetricsEventBuilderTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/MetricsEventBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/MetricsEventTest.cpp b/Gems/AWSMetrics/Code/Tests/MetricsEventTest.cpp index 491ad9d04d..ff0600398e 100644 --- a/Gems/AWSMetrics/Code/Tests/MetricsEventTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/MetricsEventTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp b/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp index 6a68b5b661..39d06dec66 100644 --- a/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/MetricsManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/Tests/MetricsQueueTest.cpp b/Gems/AWSMetrics/Code/Tests/MetricsQueueTest.cpp index 5c41fc0bd1..eb776fecde 100644 --- a/Gems/AWSMetrics/Code/Tests/MetricsQueueTest.cpp +++ b/Gems/AWSMetrics/Code/Tests/MetricsQueueTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AWSMetrics/Code/awsmetrics_files.cmake b/Gems/AWSMetrics/Code/awsmetrics_files.cmake index f8b44d055c..a468cd7cab 100644 --- a/Gems/AWSMetrics/Code/awsmetrics_files.cmake +++ b/Gems/AWSMetrics/Code/awsmetrics_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSMetrics/Code/awsmetrics_shared_files.cmake b/Gems/AWSMetrics/Code/awsmetrics_shared_files.cmake index cb45c245a8..05545a9f9a 100644 --- a/Gems/AWSMetrics/Code/awsmetrics_shared_files.cmake +++ b/Gems/AWSMetrics/Code/awsmetrics_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSMetrics/Code/awsmetrics_tests_files.cmake b/Gems/AWSMetrics/Code/awsmetrics_tests_files.cmake index 1361e8f478..63682cf2ed 100644 --- a/Gems/AWSMetrics/Code/awsmetrics_tests_files.cmake +++ b/Gems/AWSMetrics/Code/awsmetrics_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AWSMetrics/cdk/app.py b/Gems/AWSMetrics/cdk/app.py index fef341b543..48c7a072b3 100755 --- a/Gems/AWSMetrics/cdk/app.py +++ b/Gems/AWSMetrics/cdk/app.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/__init__.py b/Gems/AWSMetrics/cdk/aws_metrics/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/__init__.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/auth.py b/Gems/AWSMetrics/cdk/aws_metrics/auth.py index c3cc2ca497..af55b894f7 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/auth.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/auth.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_constants.py b/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_constants.py index bdcd20da8a..9f4ccdd620 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_constants.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_constants.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_construct.py b/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_construct.py index 13f99927dc..c1621eadc7 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_construct.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_construct.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_stack.py b/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_stack.py index d0e1ffa0c4..a7c19c9ccd 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_stack.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/aws_metrics_stack.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/batch_analytics.py b/Gems/AWSMetrics/cdk/aws_metrics/batch_analytics.py index 342f69f066..cbf837e696 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/batch_analytics.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/batch_analytics.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/batch_processing.py b/Gems/AWSMetrics/cdk/aws_metrics/batch_processing.py index 22ec8ac721..31bff352cb 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/batch_processing.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/batch_processing.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/dashboard.py b/Gems/AWSMetrics/cdk/aws_metrics/dashboard.py index 7c1cf6e03c..c8df1d05a9 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/dashboard.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/dashboard.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/data_ingestion.py b/Gems/AWSMetrics/cdk/aws_metrics/data_ingestion.py index 42d3e008d6..04b3477d17 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/data_ingestion.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/data_ingestion.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/data_lake_integration.py b/Gems/AWSMetrics/cdk/aws_metrics/data_lake_integration.py index f08ce71ce6..583e71af4a 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/data_lake_integration.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/data_lake_integration.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/lambdas/analytics_processing_lambda/analytics_processing.py b/Gems/AWSMetrics/cdk/aws_metrics/lambdas/analytics_processing_lambda/analytics_processing.py index 2f26f04876..959703d926 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/lambdas/analytics_processing_lambda/analytics_processing.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/lambdas/analytics_processing_lambda/analytics_processing.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/lambdas/events_processing_lambda/events_processing.py b/Gems/AWSMetrics/cdk/aws_metrics/lambdas/events_processing_lambda/events_processing.py index 613281c45e..d6a493e8ac 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/lambdas/events_processing_lambda/events_processing.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/lambdas/events_processing_lambda/events_processing.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/layout_widget_construct.py b/Gems/AWSMetrics/cdk/aws_metrics/layout_widget_construct.py index db1b65d6f9..54d68d3b0d 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/layout_widget_construct.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/layout_widget_construct.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/__init__.py b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/__init__.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/admin_policy_statements_builder.py b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/admin_policy_statements_builder.py index b68fcd5695..7595c70715 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/admin_policy_statements_builder.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/admin_policy_statements_builder.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/policy_statements_builder_interface.py b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/policy_statements_builder_interface.py index ec44ccafd4..80ac87e17b 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/policy_statements_builder_interface.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/policy_statements_builder_interface.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/user_policy_statements_builder.py b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/user_policy_statements_builder.py index 0218849642..bb5ea3e3de 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/user_policy_statements_builder.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/user_policy_statements_builder.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AWSMetrics/cdk/aws_metrics/real_time_data_processing.py b/Gems/AWSMetrics/cdk/aws_metrics/real_time_data_processing.py index d3b85adf21..1badcb9cad 100755 --- a/Gems/AWSMetrics/cdk/aws_metrics/real_time_data_processing.py +++ b/Gems/AWSMetrics/cdk/aws_metrics/real_time_data_processing.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Achievements/CMakeLists.txt b/Gems/Achievements/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Achievements/CMakeLists.txt +++ b/Gems/Achievements/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/CMakeLists.txt b/Gems/Achievements/Code/CMakeLists.txt index ce3b111615..5aa52e5938 100644 --- a/Gems/Achievements/Code/CMakeLists.txt +++ b/Gems/Achievements/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Include/Achievements/AchievementNotificationBus.h b/Gems/Achievements/Code/Include/Achievements/AchievementNotificationBus.h index f3794f3d79..5e764a89da 100644 --- a/Gems/Achievements/Code/Include/Achievements/AchievementNotificationBus.h +++ b/Gems/Achievements/Code/Include/Achievements/AchievementNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Achievements/Code/Include/Achievements/AchievementRequestBus.h b/Gems/Achievements/Code/Include/Achievements/AchievementRequestBus.h index aa56bb5215..c76985f2a0 100644 --- a/Gems/Achievements/Code/Include/Achievements/AchievementRequestBus.h +++ b/Gems/Achievements/Code/Include/Achievements/AchievementRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Achievements/Code/Source/AchievementsModule.cpp b/Gems/Achievements/Code/Source/AchievementsModule.cpp index 3933688706..867a4c2815 100644 --- a/Gems/Achievements/Code/Source/AchievementsModule.cpp +++ b/Gems/Achievements/Code/Source/AchievementsModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Achievements/Code/Source/AchievementsSystemComponent.cpp b/Gems/Achievements/Code/Source/AchievementsSystemComponent.cpp index 6fcfecfd84..130e414f27 100644 --- a/Gems/Achievements/Code/Source/AchievementsSystemComponent.cpp +++ b/Gems/Achievements/Code/Source/AchievementsSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Achievements/Code/Source/AchievementsSystemComponent.h b/Gems/Achievements/Code/Source/AchievementsSystemComponent.h index de3818d8d7..1556b40599 100644 --- a/Gems/Achievements/Code/Source/AchievementsSystemComponent.h +++ b/Gems/Achievements/Code/Source/AchievementsSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Achievements/Code/Source/Platform/Android/platform_android.cmake b/Gems/Achievements/Code/Source/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Achievements/Code/Source/Platform/Android/platform_android.cmake +++ b/Gems/Achievements/Code/Source/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Achievements/Code/Source/Platform/Android/platform_android_files.cmake index 3a063fbb59..f7713e7844 100644 --- a/Gems/Achievements/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Achievements/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/AppleTV/platform_appletv.cmake b/Gems/Achievements/Code/Source/Platform/AppleTV/platform_appletv.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Achievements/Code/Source/Platform/AppleTV/platform_appletv.cmake +++ b/Gems/Achievements/Code/Source/Platform/AppleTV/platform_appletv.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/Common/Unimplemented/AchievementsSystemComponent_Unimplemented.cpp b/Gems/Achievements/Code/Source/Platform/Common/Unimplemented/AchievementsSystemComponent_Unimplemented.cpp index a296c6da1e..66f174e588 100644 --- a/Gems/Achievements/Code/Source/Platform/Common/Unimplemented/AchievementsSystemComponent_Unimplemented.cpp +++ b/Gems/Achievements/Code/Source/Platform/Common/Unimplemented/AchievementsSystemComponent_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Achievements/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/Achievements/Code/Source/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Achievements/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/Achievements/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Achievements/Code/Source/Platform/Linux/platform_linux_files.cmake index 3a063fbb59..f7713e7844 100644 --- a/Gems/Achievements/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Achievements/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/Achievements/Code/Source/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Achievements/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/Achievements/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Achievements/Code/Source/Platform/Mac/platform_mac_files.cmake index 3a063fbb59..f7713e7844 100644 --- a/Gems/Achievements/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Achievements/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/Achievements/Code/Source/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Achievements/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/Achievements/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Achievements/Code/Source/Platform/Windows/platform_windows_files.cmake index 3a063fbb59..f7713e7844 100644 --- a/Gems/Achievements/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Achievements/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/Achievements/Code/Source/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Achievements/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/Achievements/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Achievements/Code/Source/Platform/iOS/platform_ios_files.cmake index 3a063fbb59..f7713e7844 100644 --- a/Gems/Achievements/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Achievements/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/achievements_files.cmake b/Gems/Achievements/Code/achievements_files.cmake index c4e18c9106..633638d02a 100644 --- a/Gems/Achievements/Code/achievements_files.cmake +++ b/Gems/Achievements/Code/achievements_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Achievements/Code/achievements_shared_files.cmake b/Gems/Achievements/Code/achievements_shared_files.cmake index db758b3dab..200cd7b3aa 100644 --- a/Gems/Achievements/Code/achievements_shared_files.cmake +++ b/Gems/Achievements/Code/achievements_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetMemoryAnalyzer/CMakeLists.txt b/Gems/AssetMemoryAnalyzer/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AssetMemoryAnalyzer/CMakeLists.txt +++ b/Gems/AssetMemoryAnalyzer/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetMemoryAnalyzer/Code/CMakeLists.txt b/Gems/AssetMemoryAnalyzer/Code/CMakeLists.txt index de045d5327..c9c7baa5f4 100644 --- a/Gems/AssetMemoryAnalyzer/Code/CMakeLists.txt +++ b/Gems/AssetMemoryAnalyzer/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetMemoryAnalyzer/Code/Include/AssetMemoryAnalyzer/AssetMemoryAnalyzerBus.h b/Gems/AssetMemoryAnalyzer/Code/Include/AssetMemoryAnalyzer/AssetMemoryAnalyzerBus.h index e0f89fc6aa..3527a18af5 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Include/AssetMemoryAnalyzer/AssetMemoryAnalyzerBus.h +++ b/Gems/AssetMemoryAnalyzer/Code/Include/AssetMemoryAnalyzer/AssetMemoryAnalyzerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp index 6da03a9269..64bdd51f39 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h index 4ecc83fc21..810444d1bc 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp index 0ee1ad9e56..87443b04d6 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp index 59838ea36c..f5ed2ec36d 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.h b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.h index dcc9e98f15..f0189d9b92 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer_precompiled.h b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer_precompiled.h index 4899df5161..d424689241 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer_precompiled.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/AssetMemoryAnalyzer_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp index 5a4b006794..702dad5d18 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.h b/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.h index 75489115e9..8b0361931c 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/DebugImGUI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp index 351c1b73a1..c20d8b6cdc 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.h b/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.h index 727aebd11f..3475926466 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/ExportCSV.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp index d6f507c4f4..d5d5bb7039 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.h b/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.h index e06d4ab603..951ef45699 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/ExportJSON.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp index 66e48be350..ebfa5f0cf5 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h index 50902306be..c9fbe1434e 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h +++ b/Gems/AssetMemoryAnalyzer/Code/Source/FormatUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp b/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp index bc05e32ded..001cfe130b 100644 --- a/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp +++ b/Gems/AssetMemoryAnalyzer/Code/Tests/AssetMemoryAnalyzerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake index 41b72b91f6..d7f50ce09b 100644 --- a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake +++ b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_shared_files.cmake b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_shared_files.cmake index 0c02f9e437..74163ddd3d 100644 --- a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_shared_files.cmake +++ b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_tests_files.cmake b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_tests_files.cmake index 96fcbcde0f..e1d0529bee 100644 --- a/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_tests_files.cmake +++ b/Gems/AssetMemoryAnalyzer/Code/assetmemoryanalyzer_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetValidation/CMakeLists.txt b/Gems/AssetValidation/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AssetValidation/CMakeLists.txt +++ b/Gems/AssetValidation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetValidation/Code/CMakeLists.txt b/Gems/AssetValidation/Code/CMakeLists.txt index df700b8b0a..bfdaca9f25 100644 --- a/Gems/AssetValidation/Code/CMakeLists.txt +++ b/Gems/AssetValidation/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetValidation/Code/Include/AssetValidation/AssetValidationBus.h b/Gems/AssetValidation/Code/Include/AssetValidation/AssetValidationBus.h index 735abce4ec..b13708a410 100644 --- a/Gems/AssetValidation/Code/Include/AssetValidation/AssetValidationBus.h +++ b/Gems/AssetValidation/Code/Include/AssetValidation/AssetValidationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Source/AssetSeedUtil.cpp b/Gems/AssetValidation/Code/Source/AssetSeedUtil.cpp index 2c3735d346..ff3dff1d5c 100644 --- a/Gems/AssetValidation/Code/Source/AssetSeedUtil.cpp +++ b/Gems/AssetValidation/Code/Source/AssetSeedUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Source/AssetSeedUtil.h b/Gems/AssetValidation/Code/Source/AssetSeedUtil.h index 55537cf50f..bc15aa5c2e 100644 --- a/Gems/AssetValidation/Code/Source/AssetSeedUtil.h +++ b/Gems/AssetValidation/Code/Source/AssetSeedUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.cpp b/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.cpp index 0b619c619a..e4d83d8a1a 100644 --- a/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.cpp +++ b/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.h b/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.h index a2a72ab426..2fbfd551bf 100644 --- a/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.h +++ b/Gems/AssetValidation/Code/Source/AssetSystemTestCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Source/AssetValidationModule.cpp b/Gems/AssetValidation/Code/Source/AssetValidationModule.cpp index b917b6df51..6e79c8ba92 100644 --- a/Gems/AssetValidation/Code/Source/AssetValidationModule.cpp +++ b/Gems/AssetValidation/Code/Source/AssetValidationModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.cpp b/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.cpp index 812c7a8ac9..cec544c9d1 100644 --- a/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.cpp +++ b/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.h b/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.h index 66bf8d353b..7eb4aeec26 100644 --- a/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.h +++ b/Gems/AssetValidation/Code/Source/AssetValidationSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Tests/AssetValidationTest.cpp b/Gems/AssetValidation/Code/Tests/AssetValidationTest.cpp index 9044c72f8a..bce754e24f 100644 --- a/Gems/AssetValidation/Code/Tests/AssetValidationTest.cpp +++ b/Gems/AssetValidation/Code/Tests/AssetValidationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/Tests/AssetValidationTestShared.h b/Gems/AssetValidation/Code/Tests/AssetValidationTestShared.h index 19b67a3efb..894d310d41 100644 --- a/Gems/AssetValidation/Code/Tests/AssetValidationTestShared.h +++ b/Gems/AssetValidation/Code/Tests/AssetValidationTestShared.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AssetValidation/Code/assetvalidation_files.cmake b/Gems/AssetValidation/Code/assetvalidation_files.cmake index 3611a38176..865d901433 100644 --- a/Gems/AssetValidation/Code/assetvalidation_files.cmake +++ b/Gems/AssetValidation/Code/assetvalidation_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetValidation/Code/assetvalidation_shared_files.cmake b/Gems/AssetValidation/Code/assetvalidation_shared_files.cmake index 998b12ba32..a5059321ae 100644 --- a/Gems/AssetValidation/Code/assetvalidation_shared_files.cmake +++ b/Gems/AssetValidation/Code/assetvalidation_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AssetValidation/Code/assetvalidation_tests_files.cmake b/Gems/AssetValidation/Code/assetvalidation_tests_files.cmake index 4eb71052b5..36f41a9f8f 100644 --- a/Gems/AssetValidation/Code/assetvalidation_tests_files.cmake +++ b/Gems/AssetValidation/Code/assetvalidation_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/CMakeLists.txt b/Gems/Atom/Asset/CMakeLists.txt index bd881f65c2..f1d75329d2 100644 --- a/Gems/Atom/Asset/CMakeLists.txt +++ b/Gems/Atom/Asset/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/CMakeLists.txt b/Gems/Atom/Asset/ImageProcessingAtom/CMakeLists.txt index 5e62e20750..1f5d8c540e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/CMakeLists.txt +++ b/Gems/Atom/Asset/ImageProcessingAtom/CMakeLists.txt @@ -1,6 +1,6 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt b/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt index 9b71d14be8..2c4719f9b2 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h index dbcb87e7c2..a3a99c2f7a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingBus.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingBus.h index c3b71020da..92999010e7 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingBus.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingEditorBus.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingEditorBus.h index 290c3077ba..7d6c09524a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingEditorBus.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/ImageProcessingEditorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h index 7c8d9598d1..e2d8c7b8e3 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Include/Atom/ImageProcessing/PixelFormats.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp index 049530bcee..eb5f0a1629 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.h index ebc61c6930..3e08dc5e86 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettingManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp index cdf15e2358..b85ef41967 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.h index 8621d74187..2e39b7e97c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/BuilderSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp index 3c23e0d0a2..262efd5a8e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.h index 4a793ad39b..95f3e8c7ed 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/CubemapSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/ImageProcessingDefines.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/ImageProcessingDefines.h index 3a76e84e97..9fbed1e5e0 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/ImageProcessingDefines.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/ImageProcessingDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp index df2737eb12..c0c167476a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.h index be3da28de2..d0093a6d5f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/MipmapSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PlatformSettings.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PlatformSettings.h index b15e2265d0..c25772a2de 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PlatformSettings.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PlatformSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp index d976acc866..2b53fbd95f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.h index 8738802623..28f507d282 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/PresetSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp index 6ac24245f0..f323ba29ee 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.h index 60f545c5ca..210dd82dad 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/BuilderSettings/TextureSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp index 520858bca6..d4b6a2b85a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h index 8da0d1d907..c1b117e615 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CTSquisher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp index d97b8f011a..1f4dfb7ef8 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h index 5cbef9a8a8..1327c0bc31 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/Compressor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp index 04f58da019..f6461461a1 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.h index 7bfa5db78f..8d269520cf 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4c.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp index feb021eb72..9ce7e9e897 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.h index a6f3ba5391..07b38235ee 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4f.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp index 0d6c7f60a9..8817c55572 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.h index 491e2394c7..1ea1593169 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorBlockRGBA4x4s.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h index 4fe8ec1b6a..d6a1381e65 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/ColorTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp index f7c0ac0208..7e0161f519 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.h index b5deaab91c..a81e5a8fee 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/CryTextureSquisher/CryTextureSquisher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp index c7ca90de93..db2e0e8ea0 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h index d8e83932fb..796621e86d 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ETC2.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp index 00c5b45c66..22c87999aa 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h index 12d506ea32..a1798c651f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/ISPCTextureCompressor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp index 61d73cddeb..a40bc5ca49 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h index 135a8005da..aafa92924c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Compressors/PVRTC.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp index 6aa1fff635..01bb94ba76 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/AlphaCoverage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp index 6a03d44e1c..ecd5328f06 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ColorChart.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp index b281a0a16a..7585cbd97e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/ConvertPixelFormat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp index 02c78dd384..bdb455ec04 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h index edc98dc8c8..515216866a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Cubemap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp index 53a5e35a14..151c34197b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Filter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp index 9b11bc2d3c..bec32a18c6 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h index 845fb44f3e..abb53093f5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Weights.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h index 231ecc7aa6..5057008e1a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/FIR-Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp index 57d3b1ea58..6cd48a02c2 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Gamma.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp index 791d41b5dd..263d94cf90 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/HighPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp index ab177002bf..3878b38263 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.h index 72575870ae..c35bc485a6 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Histogram.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp index 8f017e4407..8ac39a8413 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/Normalize.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp index 407b00953a..a73e145b54 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h index d1a3a9b6d2..a20c5cbe76 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Converters/PixelOperation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp index f117b17384..ce23058fcc 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.h index f33411f5db..870646f6fa 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/EditorCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp index 5de3704ecb..0fa1832cb6 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.h index 366daf355f..8e55456381 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ImagePopup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp index a6332fb653..2b1e1a6e07 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.h index 5b039caf44..25190d29b0 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/MipmapSettingWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp index 08cae62111..32d461db46 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.h index 3a042b2497..3dd575c200 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/PresetInfoPopup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp index 25c2e65e94..19a100d126 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.h index 2edfff8aa7..f853ecea86 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingItemWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp index 16c25110e3..14d2991fba 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.h index 39a6a6ffef..6df7b3ef78 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/ResolutionSettingWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp index 95e40c2c41..0cbf1b996a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.h index d1641e07eb..f903b016a0 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePresetSelectionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp index 8a6c78f8f8..7adac7cdab 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.h index ce01e3ef2d..a2b13fb740 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePreviewWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp index 85c7dea6f2..0be72ce1d8 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h index 9343eb686f..0e3c0bc201 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Editor/TexturePropertyEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderBaseType.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderBaseType.h index 31d6ecccd0..639933e229 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderBaseType.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderBaseType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp index c90856749f..d24541eded 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.h index ba8bc004f7..1141539ae8 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp index fa1a6c55a8..c4c49c1d3b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/DdsLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp index fc92744195..47ee234ac7 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ExrLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp index 2973be65d2..889178121a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.h index 22491c21e5..b9f0499178 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp index 3266a3baeb..1fb2202d2a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/QtImageLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp index e1918db9f2..2164723e93 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/TIFFLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp index 2d584239d9..5164ab9733 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp index e02cdf2238..2c84b409c7 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.h index 30083f30a1..6f5fa8d99f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessingSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessing_precompiled.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessing_precompiled.h index 091431432a..c2894ceffc 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessing_precompiled.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageProcessing_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h index 2d00c32b77..cfcf69a64c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Platform.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Platform.h index a833e9b966..9aadcc52db 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Platform.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/ImageProcessing_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/platform_android_files.cmake index 17dcf9bc46..abd8b6eeb1 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/Clang/imageprocessingatom_editor_static_clang.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/Clang/imageprocessingatom_editor_static_clang.cmake index 1151dfe73c..ae1ab9ae23 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/Clang/imageprocessingatom_editor_static_clang.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/Clang/imageprocessingatom_editor_static_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/msvc/imageprocessingatom_editor_static_msvc.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/msvc/imageprocessingatom_editor_static_msvc.cmake index 6786dfd811..e95772616a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/msvc/imageprocessingatom_editor_static_msvc.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Common/msvc/imageprocessingatom_editor_static_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h index 4197857643..7afb060e0e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Platform.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Platform.h index eddcc7ae97..bb7f77393f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Platform.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/ImageProcessing_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux_files.cmake index 47241c1207..8a0291dffe 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h index ecb76d5e17..7e0c170b08 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Platform.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Platform.h index 60241884e4..c94a30873f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Platform.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/ImageProcessing_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac.cmake index 0144df0e46..5b97784f99 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac_files.cmake index 17e78ccd41..dde926f6a7 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Platform.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Platform.h index 19aea65681..54b727a570 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Platform.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h index c5d28cc134..3d014c1147 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/ImageProcessing_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake index da9cffe563..63a07dc94d 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake index 132132363e..41b21fbddc 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_Platform.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_Platform.h index 717ed604a0..bbb2684512 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_Platform.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h index ecb76d5e17..7e0c170b08 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/ImageProcessing_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/platform_ios_files.cmake index a9ada31511..54c6ae11e5 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp index a0e33e28cd..a1d69ac13c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.h index 6888801d01..b906a04915 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp index ec43416249..c2bb085609 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.h index ad8504a86d..47a1be8e64 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Previewer/ImagePreviewerFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/AzDXGIFormat.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/AzDXGIFormat.h index 7c5e1dfe21..658ff7ec71 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/AzDXGIFormat.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/AzDXGIFormat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h index 20790939fb..d39b02f2f6 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/DDSHeader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp index f79c027f1a..87836d187c 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.h index 5dd7c37775..4b15f9e3e0 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageAssetProducer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp index a78e0d3d0f..be98820442 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h index e6f5d06858..649b9e5f9b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvert.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp index 0fb9486131..ef12de509b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.h index ff2928d1a3..aaffe4e92b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageConvertJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h index 313c6cbdaa..49f13bf17e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageFlags.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp index e3b6ac41ee..4d2911ca4f 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h index f0a540f3ea..c52493309e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageObjectImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp index 3c07688cbc..edf4f26563 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.h index 1036a3f0db..8aa1f768e8 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImagePreview.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h index 960fd31cea..1f814b052a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/ImageToProcess.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp index 5effe56867..60bada1449 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h index 468ea9b9d8..f65bb98c53 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/PixelFormatInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp index 99f52ff569..0b1ed339aa 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.h index 3649bd1cc9..c145556d5b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Processing/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.cpp index 0a2a837539..2cd5468121 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.h index 3fac9d933d..c00d102d70 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp index cc64eaeed9..3fc6843d5e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.h b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.h index 8830f282ca..ee9792129e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/Thumbnail/ImageThumbnailSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp index 27c82b0fbd..d5434091f8 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/Tests/ImageProcessing_Test.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake index 5dea4e4ed9..157c99857a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_tests_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_tests_files.cmake index 1ca83ff71b..266d771c82 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_tests_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessing_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_headers_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_headers_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_headers_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_headers_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_shared_files.cmake b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_shared_files.cmake index 3815ee75a9..a1c668e30b 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_shared_files.cmake +++ b/Gems/Atom/Asset/ImageProcessingAtom/Code/imageprocessingatom_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp index 592ada0910..f7da8a3c4a 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/CImageSurface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h index 37d15f1c1b..ac4b598061 100644 --- a/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h +++ b/Gems/Atom/Asset/ImageProcessingAtom/External/CubeMapGen/VectorMacros.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/CMakeLists.txt b/Gems/Atom/Asset/Shader/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Asset/Shader/CMakeLists.txt +++ b/Gems/Atom/Asset/Shader/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/AzslcHeader.azsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/AzslcHeader.azsli index 699ff9d77a..025ca94a80 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/AzslcHeader.azsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/AzslcHeader.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/PlatformHeader.hlsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/PlatformHeader.hlsli index 1cdc858059..089b1be166 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/PlatformHeader.hlsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Android/Vulkan/PlatformHeader.hlsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/AzslcHeader.azsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/AzslcHeader.azsli index cceb94a490..9613cb9e75 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/AzslcHeader.azsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/AzslcHeader.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/PlatformHeader.hlsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/PlatformHeader.hlsli index ab83dc1ee0..ede38cc17f 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/PlatformHeader.hlsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Metal/PlatformHeader.hlsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Null/AzslcHeader.azsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Null/AzslcHeader.azsli index bc40b983b9..ab6c3a107a 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Null/AzslcHeader.azsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Mac/Null/AzslcHeader.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/AzslcHeader.azsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/AzslcHeader.azsli index 610457fb17..20e979895d 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/AzslcHeader.azsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/AzslcHeader.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/PlatformHeader.hlsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/PlatformHeader.hlsli index 7639178140..5075886081 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/PlatformHeader.hlsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/DX12/PlatformHeader.hlsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Null/AzslcHeader.azsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Null/AzslcHeader.azsli index bc40b983b9..ab6c3a107a 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Null/AzslcHeader.azsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Null/AzslcHeader.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/AzslcHeader.azsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/AzslcHeader.azsli index 3ae9997919..cf9a8526fb 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/AzslcHeader.azsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/AzslcHeader.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/PlatformHeader.hlsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/PlatformHeader.hlsli index 1cdc858059..089b1be166 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/PlatformHeader.hlsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/Windows/Vulkan/PlatformHeader.hlsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/AzslcHeader.azsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/AzslcHeader.azsli index a4f79704ed..da5488e1cc 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/AzslcHeader.azsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/AzslcHeader.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/PlatformHeader.hlsli b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/PlatformHeader.hlsli index ab83dc1ee0..ede38cc17f 100644 --- a/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/PlatformHeader.hlsli +++ b/Gems/Atom/Asset/Shader/Code/AZSL/Platform/iOS/Metal/PlatformHeader.hlsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/CMakeLists.txt b/Gems/Atom/Asset/Shader/Code/CMakeLists.txt index 7f11c2165b..1e946b6e1b 100644 --- a/Gems/Atom/Asset/Shader/Code/CMakeLists.txt +++ b/Gems/Atom/Asset/Shader/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.cpp index 668f0a678d..2c54ea1086 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.h index 57e16a1e29..a05bcbe0ff 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderCapabilitiesConfigFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp index 01d6ee85f7..a5f9b567a3 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.h index a253130349..df12bd4967 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AtomShaderConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.cpp index 4ff3d23098..d9f28a9055 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.h index 6c90889023..45c81b5a88 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp index 7cc06573fb..ad5d993000 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.h index 9b66f77e00..365ae9d820 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslCompiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslData.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslData.h index c74dc6f3fe..ec8bea9baf 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslData.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderModule.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderModule.cpp index bfe85100a7..c762c621bf 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderModule.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp index 5e51fd681d..aeffb20a34 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.h index 9112e9089a..f237c74d77 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/AzslShaderBuilderSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.cpp index fa05e4933f..1f25def555 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.h index 4bd2db27bc..fefee79dcf 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/CommonTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp index b83e1acf94..b355ef8495 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.h index 114e467d79..5318e93aa5 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/GlobalBuildOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp index 657d8e45f8..1d0754bdbb 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.h index 753d3daa24..a229f6e33a 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/CommonFiles/Preprocessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp index 8ab1d982eb..9bc2fe4734 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.h index 61679b08e0..25fa8637cb 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/PrecompiledShaderBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp index dc5c57ff2c..e8af788462 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.h index f10d44570c..879623f9eb 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderAssetBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp index 721a4c8b4e..42a3d8cc81 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.h index 918ccbfe8e..6485c0901b 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderBuilderUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderPlatformInterfaceRequest.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderPlatformInterfaceRequest.h index 54078973dd..e8f3ec6642 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderPlatformInterfaceRequest.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderPlatformInterfaceRequest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp index a2b0096190..99aed41502 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.h index 77a743d78c..0bb5a9be18 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/ShaderVariantAssetBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.cpp index a3d68c526e..0867a03e4d 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.h index c058801af7..465f590bc4 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp index 4ea4e19ca8..1b18df92f9 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.h b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.h index c779a55fc2..bf77751c0e 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Editor/SrgLayoutUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/PAL_android.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/PAL_android.cmake index 83d88fd062..53788c4aff 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Android.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Android.h index 69808a5b74..a75759d5f6 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Android.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Platform.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Platform.h index 3270c74931..5ed7a20959 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Platform.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/ShaderBuilder_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/platform_android_files.cmake index 991a894fcb..881f5d8d56 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Clang/atom_asset_shader_static_clang.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Clang/atom_asset_shader_static_clang.cmake index e5c49c47cd..89a2dfa866 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Clang/atom_asset_shader_static_clang.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Clang/atom_asset_shader_static_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/MSVC/atom_asset_shader_static_msvc.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/MSVC/atom_asset_shader_static_msvc.cmake index d330c47f38..fe1e0b2320 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/MSVC/atom_asset_shader_static_msvc.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/MSVC/atom_asset_shader_static_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp b/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp index e67e38f61b..04438a9b6c 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/PAL_linux.cmake index 83d88fd062..53788c4aff 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Linux.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Linux.h index 9b0dfcdcd2..5ea19fbb7c 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Linux.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Platform.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Platform.h index 28f002e80a..899ccb8d7e 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Platform.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/ShaderBuilder_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_builders_linux.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_builders_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_builders_linux.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_builders_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux_files.cmake index ddefb39657..0577af4878 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/PAL_mac.cmake index 29e2a92680..b65b726c76 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Mac.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Mac.h index d50658a52c..12a002b59f 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Mac.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Platform.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Platform.h index 8bb3d0d3bc..563f8e4555 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Platform.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/ShaderBuilder_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_builders_mac.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_builders_mac.cmake index 60a1b69902..76233560ef 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_builders_mac.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_builders_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac_files.cmake index 2ba65d6d10..f29a2f3719 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/PAL_windows.cmake index 29e2a92680..b65b726c76 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Platform.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Platform.h index b472e0650d..ed6f90359a 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Platform.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Windows.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Windows.h index bfb91eeea8..7fa9a5e33b 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Windows.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/ShaderBuilder_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_builders_windows.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_builders_windows.cmake index f82a537555..b0832a2439 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_builders_windows.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_builders_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows_files.cmake index 698df6d4a1..f9e6e2ebf7 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/PAL_ios.cmake index 83d88fd062..53788c4aff 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_Platform.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_Platform.h index d2cfbf0fd4..a9fb0f9642 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_Platform.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_iOS.h b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_iOS.h index 69808a5b74..a75759d5f6 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_iOS.h +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/ShaderBuilder_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/platform_ios_files.cmake index 596787d63f..dbc109b921 100644 --- a/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.cpp b/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.cpp index 14157d2faf..0b3df369ef 100644 --- a/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.cpp +++ b/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.h b/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.h index 107707ff6e..2f9bd72f07 100644 --- a/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.h +++ b/Gems/Atom/Asset/Shader/Code/Tests/Common/ShaderBuilderTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/Tests/SupervariantCmdArgumentTests.cpp b/Gems/Atom/Asset/Shader/Code/Tests/SupervariantCmdArgumentTests.cpp index 3b3a94390d..4d1b81ad65 100644 --- a/Gems/Atom/Asset/Shader/Code/Tests/SupervariantCmdArgumentTests.cpp +++ b/Gems/Atom/Asset/Shader/Code/Tests/SupervariantCmdArgumentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_files.cmake b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_files.cmake index cd3a918f8c..82041c2221 100644 --- a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_shared_files.cmake b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_shared_files.cmake index c9c50ae762..45ce407fa8 100644 --- a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_shared_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_stub_files.cmake b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_stub_files.cmake index 2cfed2e165..bae9126874 100644 --- a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_stub_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_stub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_tests_files.cmake b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_tests_files.cmake index 8efa949155..d42446d012 100644 --- a/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_tests_files.cmake +++ b/Gems/Atom/Asset/Shader/Code/atom_asset_shader_builders_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Bootstrap/CMakeLists.txt b/Gems/Atom/Bootstrap/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Bootstrap/CMakeLists.txt +++ b/Gems/Atom/Bootstrap/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Bootstrap/Code/CMakeLists.txt b/Gems/Atom/Bootstrap/Code/CMakeLists.txt index 359fc94447..7983c566f6 100644 --- a/Gems/Atom/Bootstrap/Code/CMakeLists.txt +++ b/Gems/Atom/Bootstrap/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapNotificationBus.h b/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapNotificationBus.h index 16666554a8..13660f0e50 100644 --- a/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapNotificationBus.h +++ b/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapRequestBus.h b/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapRequestBus.h index 4ee3a6b6e5..f1f31e3419 100644 --- a/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapRequestBus.h +++ b/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/BootstrapRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/DefaultWindowBus.h b/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/DefaultWindowBus.h index aa206fb588..88ead847e1 100644 --- a/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/DefaultWindowBus.h +++ b/Gems/Atom/Bootstrap/Code/Include/Atom/Bootstrap/DefaultWindowBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Bootstrap/Code/Source/BootstrapModule.cpp b/Gems/Atom/Bootstrap/Code/Source/BootstrapModule.cpp index 739c28ce45..69b64c05e1 100644 --- a/Gems/Atom/Bootstrap/Code/Source/BootstrapModule.cpp +++ b/Gems/Atom/Bootstrap/Code/Source/BootstrapModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.cpp b/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.cpp index 538293ca9a..e9a7630c78 100644 --- a/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.cpp +++ b/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.h b/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.h index 22f4d94c93..397b58c2c7 100644 --- a/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.h +++ b/Gems/Atom/Bootstrap/Code/Source/BootstrapSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Bootstrap/Code/bootstrap_files.cmake b/Gems/Atom/Bootstrap/Code/bootstrap_files.cmake index eda57eee1c..c5b7b44cd2 100644 --- a/Gems/Atom/Bootstrap/Code/bootstrap_files.cmake +++ b/Gems/Atom/Bootstrap/Code/bootstrap_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Bootstrap/Code/bootstrap_headers_files.cmake b/Gems/Atom/Bootstrap/Code/bootstrap_headers_files.cmake index 5c977767b0..92271f8663 100644 --- a/Gems/Atom/Bootstrap/Code/bootstrap_headers_files.cmake +++ b/Gems/Atom/Bootstrap/Code/bootstrap_headers_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/CMakeLists.txt b/Gems/Atom/CMakeLists.txt index fa786b04e9..3c7a6951f6 100644 --- a/Gems/Atom/CMakeLists.txt +++ b/Gems/Atom/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Component/CMakeLists.txt b/Gems/Atom/Component/CMakeLists.txt index d6b0b3ec5a..39d2272378 100644 --- a/Gems/Atom/Component/CMakeLists.txt +++ b/Gems/Atom/Component/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Component/DebugCamera/CMakeLists.txt b/Gems/Atom/Component/DebugCamera/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Component/DebugCamera/CMakeLists.txt +++ b/Gems/Atom/Component/DebugCamera/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Component/DebugCamera/Code/CMakeLists.txt b/Gems/Atom/Component/DebugCamera/Code/CMakeLists.txt index 7ad56a8b76..c9ccaab329 100644 --- a/Gems/Atom/Component/DebugCamera/Code/CMakeLists.txt +++ b/Gems/Atom/Component/DebugCamera/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerBus.h b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerBus.h index f5e3921651..e9c42c8726 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerBus.h +++ b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerComponent.h b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerComponent.h index 130977375b..d703c31a80 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerComponent.h +++ b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/ArcBallControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraComponent.h b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraComponent.h index 46f2c89bf6..46530ce0c6 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraComponent.h +++ b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerBus.h b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerBus.h index d0f249683d..125ec5a68b 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerBus.h +++ b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerComponent.h b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerComponent.h index 08206bd10c..4c227936be 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerComponent.h +++ b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/CameraControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerBus.h b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerBus.h index ddd17dd49c..58dae51896 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerBus.h +++ b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerComponent.h b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerComponent.h index e573a410bd..ce900b5a7c 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerComponent.h +++ b/Gems/Atom/Component/DebugCamera/Code/Include/Atom/Component/DebugCamera/NoClipControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/ArcBallControllerComponent.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/ArcBallControllerComponent.cpp index 1a2738082d..69897a2bb6 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/ArcBallControllerComponent.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/ArcBallControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp index 6f29b5f7fe..375677829a 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/CameraComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/CameraControllerComponent.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/CameraControllerComponent.cpp index b30d634941..15fd1280b2 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/CameraControllerComponent.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/CameraControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.cpp index 5e44c639a4..87f9efee18 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.h b/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.h index 086f614e11..ccc22de9bb 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.h +++ b/Gems/Atom/Component/DebugCamera/Code/Source/DebugCameraUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/Module.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/Module.cpp index de14a05ce0..c80ca30ea9 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/Module.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp b/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp index f81137b2a2..019180312d 100644 --- a/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp +++ b/Gems/Atom/Component/DebugCamera/Code/Source/NoClipControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_files.cmake b/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_files.cmake index 6616f5d4b8..b50768bfc2 100644 --- a/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_files.cmake +++ b/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_shared_files.cmake b/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_shared_files.cmake index a93f67afd8..c686bffbe2 100644 --- a/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_shared_files.cmake +++ b/Gems/Atom/Component/DebugCamera/Code/atom_component_debugcamera_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/CMakeLists.txt b/Gems/Atom/Feature/CMakeLists.txt index 64b3003e1e..f1054844aa 100644 --- a/Gems/Atom/Feature/CMakeLists.txt +++ b/Gems/Atom/Feature/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Special/ShadowCatcher.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Special/ShadowCatcher.azsl index bb5a4673e9..a0564d645c 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Special/ShadowCatcher.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Special/ShadowCatcher.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Common.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Common.azsli index cf699228c2..9d2d413bf4 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Common.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Common.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_DepthPass_WithPS.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_DepthPass_WithPS.azsl index d5eb7c3aaf..5a30a6e775 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_DepthPass_WithPS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_DepthPass_WithPS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl index 8e9b75e2ad..87afd1936d 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Shadowmap_WithPS.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Shadowmap_WithPS.azsl index a24113b2d3..9eb9248253 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Shadowmap_WithPS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_Shadowmap_WithPS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_SubsurfaceState.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_SubsurfaceState.lua index 3c0290ef87..7ca796b825 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_SubsurfaceState.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_SubsurfaceState.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/AlphaInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/AlphaInput.azsli index 4d25a38096..a9c94150e1 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/AlphaInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/AlphaInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/BaseColorInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/BaseColorInput.azsli index 038ce35dbf..af87428b90 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/BaseColorInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/BaseColorInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ClearCoatInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ClearCoatInput.azsli index 37bfe07501..44487afe91 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ClearCoatInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ClearCoatInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsCommonFunctor.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsCommonFunctor.lua index 9d7bb10f5c..0dce3931c0 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsCommonFunctor.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsCommonFunctor.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsInput.azsli index f8227d54bd..dab066a8ce 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/DetailMapsInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/EmissiveInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/EmissiveInput.azsli index 9e42b302d6..775417583e 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/EmissiveInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/EmissiveInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/MetallicInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/MetallicInput.azsli index c82f0896cf..e906a381f2 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/MetallicInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/MetallicInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/NormalInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/NormalInput.azsli index 0641b54c98..e8f03f712f 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/NormalInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/NormalInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/OcclusionInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/OcclusionInput.azsli index 7f9f53247f..dc66594aba 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/OcclusionInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/OcclusionInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ParallaxInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ParallaxInput.azsli index 73d2edcf53..4ef8fed004 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ParallaxInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/ParallaxInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/RoughnessInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/RoughnessInput.azsli index 55edfdd9dd..da7c84b169 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/RoughnessInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/RoughnessInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SpecularInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SpecularInput.azsli index b65173d905..2142bd11b3 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SpecularInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SpecularInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SubsurfaceInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SubsurfaceInput.azsli index 43fd001e54..e4aa2c8570 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SubsurfaceInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/SubsurfaceInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/TransmissionInput.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/TransmissionInput.azsli index cde5e39915..3276904d28 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/TransmissionInput.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/TransmissionInput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/UvSetCount.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/UvSetCount.azsli index 71e8142eec..eb2ee3717d 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/UvSetCount.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/MaterialInputs/UvSetCount.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin.azsl index de58f4bdfa..0672f97c1d 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_Common.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_Common.azsli index 59d5c0a277..ec050312ac 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_Common.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_Common.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_WrinkleMaps.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_WrinkleMaps.lua index 23d5c702ab..c68e038343 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_WrinkleMaps.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/Skin_WrinkleMaps.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ClearCoatEnableFeature.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ClearCoatEnableFeature.lua index 0f8f6974bc..dfb83052e5 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ClearCoatEnableFeature.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ClearCoatEnableFeature.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Common.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Common.azsli index f866f4432c..672debbdfc 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Common.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Common.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_DepthPass_WithPS.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_DepthPass_WithPS.azsl index 8904d073dc..7e031d1d3a 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_DepthPass_WithPS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_DepthPass_WithPS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Displacement.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Displacement.lua index ec28eb514a..bd853693da 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Displacement.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Displacement.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ForwardPass.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ForwardPass.azsl index cf30d3a594..918e1c6d68 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ForwardPass.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ForwardPass.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_LayerEnable.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_LayerEnable.lua index 44963f3711..b3f371e67c 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_LayerEnable.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_LayerEnable.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ShaderEnable.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ShaderEnable.lua index cc502ceb0d..51a75fe2e9 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ShaderEnable.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_ShaderEnable.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Shadowmap_WithPS.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Shadowmap_WithPS.azsl index 3fa23f5b40..b974d27190 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Shadowmap_WithPS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardMultilayerPBR_Shadowmap_WithPS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatEnableFeature.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatEnableFeature.lua index b6fe1c4801..6863de25e9 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatEnableFeature.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatEnableFeature.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatState.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatState.lua index 6dd3db719b..baa1e4f5d7 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatState.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ClearCoatState.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Common.azsli b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Common.azsli index f0637c6675..b1e39ff3ad 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Common.azsli +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Common.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_DepthPass_WithPS.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_DepthPass_WithPS.azsl index abb92511fb..dd81c2a1ec 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_DepthPass_WithPS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_DepthPass_WithPS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_EmissiveState.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_EmissiveState.lua index 8399c0562a..14b1ad2fff 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_EmissiveState.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_EmissiveState.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl index cc0e5a2e80..78d3320db2 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ForwardPass.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityDoubleSided.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityDoubleSided.lua index 91e96e2366..345436750d 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityDoubleSided.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityDoubleSided.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityMode.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityMode.lua index b6c7b25179..c96c2ff585 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityMode.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_HandleOpacityMode.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_LowEndForward.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_LowEndForward.azsl index e8f232eb18..3ef31ded8e 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_LowEndForward.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_LowEndForward.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ParallaxState.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ParallaxState.lua index 6c7e0d755e..7f3c5aed73 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ParallaxState.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ParallaxState.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Roughness.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Roughness.lua index 2d2b97a224..9136bd0fc9 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Roughness.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Roughness.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ShaderEnable.lua b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ShaderEnable.lua index f8dfafb754..3437ddce54 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ShaderEnable.lua +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_ShaderEnable.lua @@ -1,6 +1,6 @@ -------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Shadowmap_WithPS.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Shadowmap_WithPS.azsl index 5526d8b206..5c5942a561 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Shadowmap_WithPS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/StandardPBR_Shadowmap_WithPS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.lua b/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.lua index fe7a53716f..2721ebc4f9 100644 --- a/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.lua +++ b/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.py b/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.py index 4508fc3fbd..6d0dbc8efd 100755 --- a/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.py +++ b/Gems/Atom/Feature/Common/Assets/Scripts/material_property_overrides_demo.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/BlendUtility.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/BlendUtility.azsli index 9d01fe0ba2..930c24b074 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/BlendUtility.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/BlendUtility.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.azsli index 59f9e4fe5c..5ad8330e04 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Aces_To_AcesCg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Aces_To_AcesCg.azsli index 79185b6c8c..504a6c200e 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Aces_To_AcesCg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Aces_To_AcesCg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_AcesCg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_AcesCg.azsli index dfe4140dfb..4165228470 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_AcesCg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_AcesCg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_LinearSrgb.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_LinearSrgb.azsli index 07392bd5b8..6144c21c79 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_LinearSrgb.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/CalculateLuminance_LinearSrgb.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.azsli index 8833ba5145..e5856898c2 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_Srgb.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_Srgb.azsli index c3e99c888e..f67f272d7e 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_Srgb.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/LinearSrgb_To_Srgb.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Srgb_To_LinearSrgb.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Srgb_To_LinearSrgb.azsli index 7e19820310..1b4f7a2267 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Srgb_To_LinearSrgb.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/GeneratedTransforms/Srgb_To_LinearSrgb.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/TransformColor.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/TransformColor.azsli index 5f8fde4f79..8d55e833bc 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/TransformColor.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ColorManagement/TransformColor.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/CoreLights/PhotometricValue.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/CoreLights/PhotometricValue.azsli index 9585632772..e5df41eef8 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/CoreLights/PhotometricValue.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/CoreLights/PhotometricValue.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Decals/DecalTextureUtil.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Decals/DecalTextureUtil.azsli index bde5fb163c..76e3cf555e 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Decals/DecalTextureUtil.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Decals/DecalTextureUtil.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/IndirectRendering.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/IndirectRendering.azsli index d90b6c983a..d406c7b736 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/IndirectRendering.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/IndirectRendering.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingShared.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingShared.azsli index 4c402181d3..248fdebf0d 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingShared.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingShared.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingTileIterator.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingTileIterator.azsli index 4687dc380a..c4948dbef5 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingTileIterator.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/LightCulling/LightCullingTileIterator.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/Filter.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/Filter.azsli index 2367516fd1..90596b54cb 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/Filter.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/Filter.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/FilterPassSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/FilterPassSrg.azsli index 5f37b9c966..11f610ae84 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/FilterPassSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/FilterPassSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/IntersectionTests.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/IntersectionTests.azsli index e0229f7d78..8706d9b659 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/IntersectionTests.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Math/IntersectionTests.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MatrixUtility.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MatrixUtility.azsli index ae1a23a350..de641b0db2 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MatrixUtility.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MatrixUtility.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MorphTargets/MorphTargetCompression.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MorphTargets/MorphTargetCompression.azsli index c991af0ccb..c461af7413 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MorphTargets/MorphTargetCompression.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/MorphTargets/MorphTargetCompression.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/AlphaUtils.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/AlphaUtils.azsli index 6ed8ad3b0a..9cd5cd63ae 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/AlphaUtils.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/AlphaUtils.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/BackLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/BackLighting.azsli index 3831001633..14f88a2948 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/BackLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/BackLighting.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Decals.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Decals.azsli index ff8a7e069d..84c1a42505 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Decals.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Decals.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/DefaultObjectSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/DefaultObjectSrg.azsli index a7f0925eea..9dff25cfb9 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/DefaultObjectSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/DefaultObjectSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassOutput.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassOutput.azsli index 5e168b74d7..b74efd521e 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassOutput.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassOutput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassSrg.azsli index 37b501e5ae..e96ec39ae3 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardPassSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardSubsurfacePassOutput.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardSubsurfacePassOutput.azsli index d9d90e172d..dd53578fe8 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardSubsurfacePassOutput.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/ForwardSubsurfacePassOutput.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Hammersley.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Hammersley.azsli index 78175da1a8..a71229a16c 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Hammersley.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Hammersley.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/DualSpecularLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/DualSpecularLighting.azsli index 70bb9284de..2609e3b701 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/DualSpecularLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/DualSpecularLighting.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli index 1b8d2c3001..46a9f6f6f5 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/LightingData.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/LightingData.azsli index dba3d5468e..a7b49aefd4 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/LightingData.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/LightingData.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli index a3c13459f4..cf97c85529 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli index fa754479a0..a0b3f83bbc 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingOptions.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingOptions.azsli index 2c2d460129..dd27c05198 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingOptions.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingOptions.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingUtils.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingUtils.azsli index 06ed3273d1..0f2469abe4 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingUtils.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/LightingUtils.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/CapsuleLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/CapsuleLight.azsli index e362ce3e0d..1db128237f 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/CapsuleLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/CapsuleLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DirectionalLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DirectionalLight.azsli index 9f62ef93c1..15c2fe8b58 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DirectionalLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DirectionalLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DiskLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DiskLight.azsli index 1fab069b59..7ddd57ec80 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DiskLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/DiskLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Ibl.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Ibl.azsli index c31d4bb71e..698e6ddb50 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Ibl.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Ibl.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/LightTypesCommon.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/LightTypesCommon.azsli index 89734efd4f..e87280f3b2 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/LightTypesCommon.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/LightTypesCommon.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Lights.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Lights.azsli index 3e57d8fee8..1b3de12420 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Lights.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/Lights.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PointLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PointLight.azsli index 1c86767215..5211118947 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PointLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PointLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PolygonLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PolygonLight.azsli index acaacc6ba7..bbd3c1c9e3 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PolygonLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/PolygonLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/QuadLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/QuadLight.azsli index feb813a806..91981e4f4d 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/QuadLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/QuadLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimplePointLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimplePointLight.azsli index 98abc183b3..54946edcfb 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimplePointLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimplePointLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimpleSpotLight.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimpleSpotLight.azsli index d1da7cee69..3245c2e243 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimpleSpotLight.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lights/SimpleSpotLight.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli index 31626b60b3..3d3fc1f625 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Fresnel.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Fresnel.azsli index 4586b804ab..54fe142394 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Fresnel.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Fresnel.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Ggx.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Ggx.azsli index 22af02e7fa..81f25c609d 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Ggx.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Ggx.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/AnisotropicSurfaceData.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/AnisotropicSurfaceData.azsli index 8db5f51444..35253db0bf 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/AnisotropicSurfaceData.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/AnisotropicSurfaceData.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/BasePbrSurfaceData.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/BasePbrSurfaceData.azsli index c0a3531135..283f63e3f8 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/BasePbrSurfaceData.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/BasePbrSurfaceData.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/ClearCoatSurfaceData.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/ClearCoatSurfaceData.azsli index 5c4bb62f9e..f944512a3a 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/ClearCoatSurfaceData.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/ClearCoatSurfaceData.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/DualSpecularSurface.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/DualSpecularSurface.azsli index dd37f70c5a..d96aefbb00 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/DualSpecularSurface.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/DualSpecularSurface.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/EnhancedSurface.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/EnhancedSurface.azsli index a4c2fbe1f6..a77844a7b0 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/EnhancedSurface.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/EnhancedSurface.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/SkinSurface.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/SkinSurface.azsli index 263ed62f29..fa6cef3a5c 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/SkinSurface.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/SkinSurface.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/StandardSurface.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/StandardSurface.azsli index 99a31ee4d2..b189498536 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/StandardSurface.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/StandardSurface.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/TransmissionSurfaceData.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/TransmissionSurfaceData.azsli index 67953be56b..51229dd953 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/TransmissionSurfaceData.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Surfaces/TransmissionSurfaceData.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ParallaxMapping.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ParallaxMapping.azsli index 92945facef..2c2f956f8f 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ParallaxMapping.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ParallaxMapping.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/Aces.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/Aces.azsli index de81dc13e1..a3f7965bb4 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/Aces.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/Aces.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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: (MIT OR Apache-2.0) AND LicenseRef-ACES * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/AcesColorSpaceConversion.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/AcesColorSpaceConversion.azsli index 84b4ef7eac..14b246a90b 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/AcesColorSpaceConversion.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/AcesColorSpaceConversion.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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: (MIT OR Apache-2.0) AND LicenseRef-ACES * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenPixelInfo.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenPixelInfo.azsli index 9a45b0ac95..b7f3330b92 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenPixelInfo.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenPixelInfo.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertex.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertex.azsli index 48d45718f3..ced7728381 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertex.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertex.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexInfo.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexInfo.azsli index 94b0524111..2506f3412d 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexInfo.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexInfo.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexUtil.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexUtil.azsli index e43da19edd..59471ac6fd 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexUtil.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/FullscreenVertexUtil.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphData.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphData.azsli index 33613a3e5c..27748fc324 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphData.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphData.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphRender.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphRender.azsli index 1c8a649bd6..a2f8c0c55d 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphRender.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/GlyphRender.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/PostProcessUtil.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/PostProcessUtil.azsli index 5cdfb65a82..b05eb1e59a 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/PostProcessUtil.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PostProcessing/PostProcessUtil.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialSrg.azsli index 000b9468c6..b3c230271a 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialUtils.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialUtils.azsli index 4b21c28032..d345fa1fde 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialUtils.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingMaterialUtils.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneSrg.azsli index c81426515d..ed1d014d6e 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneUtils.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneUtils.azsli index b3cf1a5783..78e49a1e4c 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneUtils.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/RayTracing/RayTracingSceneUtils.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ScreenSpace/ScreenSpaceUtil.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ScreenSpace/ScreenSpaceUtil.azsli index 6e8843d4ba..853bdc937c 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ScreenSpace/ScreenSpaceUtil.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ScreenSpace/ScreenSpaceUtil.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ShaderQualityOptions.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ShaderQualityOptions.azsli index f4ee408a0b..a975f72203 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ShaderQualityOptions.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/ShaderQualityOptions.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli index 36ad75a99b..4911d3df1d 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/BicubicPcfFilters.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli index 7b592d6458..4642d13f02 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/DirectionalLightShadow.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/JitterTablePcf.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/JitterTablePcf.azsli index f66852e472..bfafd6bd32 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/JitterTablePcf.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/JitterTablePcf.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ProjectedShadow.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ProjectedShadow.azsli index d7769c2382..80e23a43cf 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ProjectedShadow.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ProjectedShadow.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/Shadow.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/Shadow.azsli index fa6d663521..9f45353cee 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/Shadow.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/Shadow.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ShadowmapAtlasLib.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ShadowmapAtlasLib.azsli index 3815a6a7a8..b51ab95da7 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ShadowmapAtlasLib.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Shadow/ShadowmapAtlasLib.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SphericalHarmonicsUtility.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SphericalHarmonicsUtility.azsli index 974a857880..fecdcabffc 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SphericalHarmonicsUtility.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SphericalHarmonicsUtility.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SrgSemantics.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SrgSemantics.azsli index e27455c9d2..e0c5434b46 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SrgSemantics.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/SrgSemantics.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Vertex/VertexHelper.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Vertex/VertexHelper.azsli index 711b64417e..9e9c643769 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Vertex/VertexHelper.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/Vertex/VertexHelper.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/SceneSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/SceneSrg.azsli index a68a224a11..35582ace4e 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/SceneSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/SceneSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/ViewSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/ViewSrg.azsli index e1705ca014..b591525288 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/ViewSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/CoreLights/ViewSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/Decals/ViewSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/Decals/ViewSrg.azsli index 598423c01e..d5924538ba 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/Decals/ViewSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/Decals/ViewSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/SceneSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/SceneSrg.azsli index 8a4c646475..dbd027234a 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/SceneSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/SceneSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/ViewSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/ViewSrg.azsli index 4a8bebe35e..27ee035b5c 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/ViewSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/PostProcessing/ViewSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrg.azsli index 9f114cbea1..6236ae2fba 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrgAll.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrgAll.azsli index 7c5dae20ee..b9c6319eb5 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrgAll.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneSrgAll.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneTimeSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneTimeSrg.azsli index 1a1e0afc40..76307dc360 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneTimeSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SceneTimeSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SkyBox/SceneSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SkyBox/SceneSrg.azsli index cd02bd60dd..24e5d0aab5 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SkyBox/SceneSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/SkyBox/SceneSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrg.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrg.azsli index a7ed19327f..cadc4e8956 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrgAll.azsli b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrgAll.azsli index 8640b89f9a..5136b5d8fa 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrgAll.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderResourceGroups/ViewSrgAll.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObject.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObject.azsl index 5df26f6bcb..6617f9a33b 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObject.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObject.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObjectLit.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObjectLit.azsl index e8c8bd169f..8629a67f4d 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObjectLit.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomObjectLit.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomWorld.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomWorld.azsl index e424792fde..93b1cbd61e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomWorld.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/AuxGeomWorld.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrg.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrg.azsli index 8c12181aec..fcc7b98150 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrgLit.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrgLit.azsli index 1e267c6f07..59fdb75416 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrgLit.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/AuxGeom/ObjectSrgLit.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/BRDFTexture/BRDFTextureCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/BRDFTexture/BRDFTextureCS.azsl index 4379f539d1..325b53d311 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/BRDFTexture/BRDFTextureCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/BRDFTexture/BRDFTextureCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Checkerboard/CheckerboardColorResolveCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Checkerboard/CheckerboardColorResolveCS.azsl index 322bc70dd4..81aa5f8015 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Checkerboard/CheckerboardColorResolveCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Checkerboard/CheckerboardColorResolveCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Depth/DepthPass.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Depth/DepthPass.azsl index f38475f1ac..4a9d8ea62a 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Depth/DepthPass.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Depth/DepthPass.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite.azsl index 36730429b0..a3f049b108 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite_nomsaa.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite_nomsaa.azsl index b7ad1ca1f6..130a295e06 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite_nomsaa.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseComposite_nomsaa.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen.azsl index 38125172a6..d0a919c925 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen_nomsaa.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen_nomsaa.azsl index 62bce01642..de4ef43d6e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen_nomsaa.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseGlobalFullscreen_nomsaa.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample.azsl index 3013668b3b..81018b0766 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample_nomsaa.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample_nomsaa.azsl index 5326faf23a..956d094483 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample_nomsaa.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/DiffuseGlobalIllumination/DiffuseProbeGridDownsample_nomsaa.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/ImGui/ImGui.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/ImGui/ImGui.azsl index fb1b982998..647fc4671b 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/ImGui/ImGui.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/ImGui/ImGui.azsl @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCulling.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCulling.azsl index 7b58a31683..f06e40134f 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCulling.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCulling.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingHeatmap.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingHeatmap.azsl index 3ba2998ce0..225cb8c0b5 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingHeatmap.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingHeatmap.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingRemap.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingRemap.azsl index 5c3c7cc165..fafae39991 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingRemap.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingRemap.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingTilePrepare.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingTilePrepare.azsl index 0c05603d31..5cece4ec60 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingTilePrepare.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/LightCulling/LightCullingTilePrepare.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/LuxCore/RenderTexture.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/LuxCore/RenderTexture.azsl index 6d63aa2ca6..21bfccaca4 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/LuxCore/RenderTexture.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/LuxCore/RenderTexture.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl index 160a3d362e..49ab007b88 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatHorizontal.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl index c7d2ed433d..1326bc6c07 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Math/GaussianFilterFloatVertical.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetCS.azsl index 3328a85778..8958b105cd 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetSRG.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetSRG.azsli index f7421d774f..7c2bcebac0 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetSRG.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/MorphTargets/MorphTargetSRG.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/CameraMotionVector.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/CameraMotionVector.azsl index d77f4c664f..f1da0cf8dc 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/CameraMotionVector.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/CameraMotionVector.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/MeshMotionVector.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/MeshMotionVector.azsl index a8c1359f68..8a32f014b9 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/MeshMotionVector.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/MotionVector/MeshMotionVector.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/AcesOutputTransformLut.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/AcesOutputTransformLut.azsl index 875efc6aac..b3fb84a09b 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/AcesOutputTransformLut.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/AcesOutputTransformLut.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ApplyShaperLookupTable.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ApplyShaperLookupTable.azsl index 92e15cbe7c..d957d3b27c 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ApplyShaperLookupTable.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ApplyShaperLookupTable.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BakeAcesOutputTransformLutCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BakeAcesOutputTransformLutCS.azsl index 71a907103a..ead024ac99 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BakeAcesOutputTransformLutCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BakeAcesOutputTransformLutCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BlendColorGradingLuts.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BlendColorGradingLuts.azsl index 9c9a804a4d..f05c1d6f41 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BlendColorGradingLuts.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BlendColorGradingLuts.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomBlurCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomBlurCS.azsl index 065b825ad3..7c9db2dd58 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomBlurCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomBlurCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomCompositeCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomCompositeCS.azsl index 508616bffb..6a6c7e5b6e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomCompositeCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomCompositeCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomDownsampleCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomDownsampleCS.azsl index 8c5d9a7f13..ff4074a64b 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomDownsampleCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/BloomDownsampleCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ContrastAdaptiveSharpening.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ContrastAdaptiveSharpening.azsl index 9411c61f72..798229fc9e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ContrastAdaptiveSharpening.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ContrastAdaptiveSharpening.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ConvertToAcescg.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ConvertToAcescg.azsl index efd5d69d55..aadff9c0a4 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ConvertToAcescg.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ConvertToAcescg.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthDownsample.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthDownsample.azsl index fdde01cdb6..66e10dddd2 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthDownsample.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthDownsample.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfField.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfField.azsli index 46377ef8c4..e17d5206e7 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfField.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfField.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldBlurBokeh.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldBlurBokeh.azsl index 63eb63f5ed..9678a0ee92 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldBlurBokeh.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldBlurBokeh.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldComposite.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldComposite.azsl index 03ecb80a22..4d96e3ec22 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldComposite.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldComposite.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldDownSample.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldDownSample.azsl index ee339c35d7..6752551ceb 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldDownSample.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldDownSample.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldMask.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldMask.azsl index 74e0fd1513..583cd08133 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldMask.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldMask.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldPrepare.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldPrepare.azsl index 415d279a62..82fc711ace 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldPrepare.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldPrepare.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldWriteFocusDepthFromGpu.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldWriteFocusDepthFromGpu.azsl index e540c1e53b..e8a835262b 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldWriteFocusDepthFromGpu.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthOfFieldWriteFocusDepthFromGpu.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthToLinearDepth.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthToLinearDepth.azsl index cd10b60b42..af76a7bc23 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthToLinearDepth.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthToLinearDepth.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthUpsample.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthUpsample.azsl index e4399becdf..c0010bc8ef 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthUpsample.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DepthUpsample.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DiffuseSpecularMerge.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DiffuseSpecularMerge.azsl index 37fd566f13..c8275c7620 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DiffuseSpecularMerge.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DiffuseSpecularMerge.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapper.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapper.azsl index c7558a9d02..91c730dad4 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapper.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapper.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapperOnlyGammaCorrection.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapperOnlyGammaCorrection.azsl index 8200ce0b56..7bf9110e31 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapperOnlyGammaCorrection.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DisplayMapperOnlyGammaCorrection.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleLuminanceMinAvgMaxCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleLuminanceMinAvgMaxCS.azsl index ce14a62f77..df6260695a 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleLuminanceMinAvgMaxCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleLuminanceMinAvgMaxCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleMinAvgMaxCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleMinAvgMaxCS.azsl index 086adf31c2..6ac2eef8da 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleMinAvgMaxCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/DownsampleMinAvgMaxCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptation.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptation.azsl index 0d048a8c51..a71f260ff5 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptation.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptation.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptationUtil.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptationUtil.azsli index c7e27dd26f..9cd86d1dfb 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptationUtil.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/EyeAdaptationUtil.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurCommon.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurCommon.azsli index d71abddc87..689c308b76 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurCommon.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurCommon.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurHor.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurHor.azsl index d7eb1d0216..7065930e59 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurHor.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurHor.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurVer.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurVer.azsl index 843f43af80..600393a17b 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurVer.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FastDepthAwareBlurVer.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FullscreenCopy.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FullscreenCopy.azsl index 46047dd442..7ae1662d5a 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FullscreenCopy.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/FullscreenCopy.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LookModificationTransform.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LookModificationTransform.azsl index def0e1f010..a8e4759aa6 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LookModificationTransform.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LookModificationTransform.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHeatmap.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHeatmap.azsl index 9bc1828331..0d44fb218c 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHeatmap.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHeatmap.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramCommon.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramCommon.azsli index 0bd71a0790..6a6637e113 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramCommon.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramCommon.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramGenerator.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramGenerator.azsl index 0bb8806627..1221dc8024 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramGenerator.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/LuminanceHistogramGenerator.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveCustom.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveCustom.azsl index 828e8a46b5..df1e05eb25 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveCustom.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveCustom.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveDepth.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveDepth.azsl index 6c1d7d0953..a291d40bd8 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveDepth.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/MSAAResolveDepth.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ModulateTexture.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ModulateTexture.azsl index b0350612e7..89286a2e2e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ModulateTexture.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ModulateTexture.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/OutputTransform.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/OutputTransform.azsl index e2621973b7..3365ac695e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/OutputTransform.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/OutputTransform.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAABlendingWeightCalculation.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAABlendingWeightCalculation.azsl index c6fdfc5ae8..fd33ec1671 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAABlendingWeightCalculation.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAABlendingWeightCalculation.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAConvertToPerceptualColor.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAConvertToPerceptualColor.azsl index aba9fe7f87..21f93ad2ad 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAConvertToPerceptualColor.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAConvertToPerceptualColor.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAEdgeDetection.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAEdgeDetection.azsl index 760d33784a..3d6ef54b82 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAEdgeDetection.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAEdgeDetection.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAANeighborhoodBlending.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAANeighborhoodBlending.azsl index 0c9349f821..4ca145b292 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAANeighborhoodBlending.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAANeighborhoodBlending.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAUtils.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAUtils.azsli index b5a8197c26..adba8e4e61 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAUtils.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SMAAUtils.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ScreenSpaceSubsurfaceScatteringCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ScreenSpaceSubsurfaceScatteringCS.azsl index 43cd7549e5..564f2beda6 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ScreenSpaceSubsurfaceScatteringCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/ScreenSpaceSubsurfaceScatteringCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SsaoCompute.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SsaoCompute.azsl index 45b8e74401..96d1cd35ae 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SsaoCompute.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/SsaoCompute.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl index 647ba0d22c..6f7c5bc7cf 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/Taa.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/UniformColor.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/UniformColor.azsl index e8d7bc4dd9..6eea42f047 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/UniformColor.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/PostProcessing/UniformColor.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionCommon.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionCommon.azsli index e747eae2bb..72046b88dd 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionCommon.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionCommon.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite.azsl index a82b972241..3d5426a59f 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite_nomsaa.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite_nomsaa.azsl index 45beab44e4..1735709b2d 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite_nomsaa.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionComposite_nomsaa.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen.azsl index 4604889d2c..eb48d8542d 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen_nomsaa.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen_nomsaa.azsl index f7fb809555..c7dbfeeeea 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen_nomsaa.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionGlobalFullscreen_nomsaa.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeBlendWeight.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeBlendWeight.azsl index 3304ed4d01..e5621d692b 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeBlendWeight.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeBlendWeight.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderCommon.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderCommon.azsli index e9b3be9206..2e74412be6 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderCommon.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderCommon.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderInner.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderInner.azsl index 961428e15c..e9ee94ed32 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderInner.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderInner.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderObjectSrg.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderObjectSrg.azsli index 9ea806a9a4..923e7fae81 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderObjectSrg.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderObjectSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderOuter.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderOuter.azsl index 2f6d5d71c5..16e65da80f 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderOuter.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeRenderOuter.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeStencil.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeStencil.azsl index b6cb9b0a80..29406d94a1 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeStencil.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionProbeStencil.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurCommon.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurCommon.azsli index 312074a7a4..60bcda4170 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurCommon.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurCommon.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurHorizontal.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurHorizontal.azsl index 2b56306ef1..e978eb9de1 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurHorizontal.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurHorizontal.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurVertical.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurVertical.azsl index b07c0396cf..4d1c55ef86 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurVertical.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceBlurVertical.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceComposite.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceComposite.azsl index 1673d9d1cd..33523031bf 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceComposite.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceComposite.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsl index 5a6aaac5aa..551a8a587e 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsli index 3698d4af48..74aa234a28 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Reflections/ReflectionScreenSpaceTrace.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/ScreenSpace/DeferredFog.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/ScreenSpace/DeferredFog.azsl index 5a66e6601d..802d06fe69 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/ScreenSpace/DeferredFog.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/ScreenSpace/DeferredFog.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl index ba2a4aaf92..75330cc134 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/DepthExponentiation.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/Shadowmap.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/Shadowmap.azsl index 044c59a96d..1be04282af 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/Shadowmap.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/Shadow/Shadowmap.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningCS.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningCS.azsl index 720121c721..fc5684fe7f 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningCS.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningCS.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningPassSRG.azsli b/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningPassSRG.azsli index fdbd869ca6..95802ddbb7 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningPassSRG.azsli +++ b/Gems/Atom/Feature/Common/Assets/Shaders/SkinnedMesh/LinearSkinningPassSRG.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox.azsl index b8ff5c2df8..64a1ebe76a 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox_TwoOutputs.azsl b/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox_TwoOutputs.azsl index 9ad817b94b..1a8d4ceb5c 100644 --- a/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox_TwoOutputs.azsl +++ b/Gems/Atom/Feature/Common/Assets/Shaders/SkyBox/SkyBox_TwoOutputs.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Assets/atom_feature_common_asset_files.cmake b/Gems/Atom/Feature/Common/Assets/atom_feature_common_asset_files.cmake index d338ea9597..08f8318f21 100644 --- a/Gems/Atom/Feature/Common/Assets/atom_feature_common_asset_files.cmake +++ b/Gems/Atom/Feature/Common/Assets/atom_feature_common_asset_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Assets/generate_asset_cmake.bat b/Gems/Atom/Feature/Common/Assets/generate_asset_cmake.bat index ab27429a9a..4a963ddcc5 100644 --- a/Gems/Atom/Feature/Common/Assets/generate_asset_cmake.bat +++ b/Gems/Atom/Feature/Common/Assets/generate_asset_cmake.bat @@ -1,5 +1,5 @@ @ECHO off -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT @@ -16,7 +16,7 @@ set OUTPUT_FILE=atom_feature_common_asset_files.cmake :: Write copyright header to top of file echo # > %OUTPUT_FILE% -echo # Copyright (c) Contributors to the Open 3D Engine Project >> %OUTPUT_FILE% +echo # 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. >> %OUTPUT_FILE% echo # >> %OUTPUT_FILE% echo # SPDX-License-Identifier: Apache-2.0 OR MIT >> %OUTPUT_FILE% echo # >> %OUTPUT_FILE% diff --git a/Gems/Atom/Feature/Common/CMakeLists.txt b/Gems/Atom/Feature/Common/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Feature/Common/CMakeLists.txt +++ b/Gems/Atom/Feature/Common/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/CMakeLists.txt b/Gems/Atom/Feature/Common/Code/CMakeLists.txt index c89a268981..60586da23e 100644 --- a/Gems/Atom/Feature/Common/Code/CMakeLists.txt +++ b/Gems/Atom/Feature/Common/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ACES/AcesDisplayMapperFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ACES/AcesDisplayMapperFeatureProcessor.h index 8ab4e28293..2ebeb5563f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ACES/AcesDisplayMapperFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ACES/AcesDisplayMapperFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Automation/AtomAutomationBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Automation/AtomAutomationBus.h index ba2cfa64bd..62cbf36620 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Automation/AtomAutomationBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Automation/AtomAutomationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/AuxGeom/AuxGeomFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/AuxGeom/AuxGeomFeatureProcessor.h index afb6772d1f..019ec56ecd 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/AuxGeom/AuxGeomFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/AuxGeom/AuxGeomFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CapsuleLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CapsuleLightFeatureProcessorInterface.h index c5d44e78d2..46b8544bec 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CapsuleLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CapsuleLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CoreLightsConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CoreLightsConstants.h index a9ea10974f..8f27cce2c4 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CoreLightsConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/CoreLightsConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h index 785431e1ad..3219227814 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DirectionalLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DiskLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DiskLightFeatureProcessorInterface.h index 27ffbd6e69..2c9f6b1727 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DiskLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/DiskLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/EsmShadowmapsPassData.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/EsmShadowmapsPassData.h index 6848f7656b..26a8a8f391 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/EsmShadowmapsPassData.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/EsmShadowmapsPassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PhotometricValue.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PhotometricValue.h index 528240672a..07a83e4801 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PhotometricValue.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PhotometricValue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PointLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PointLightFeatureProcessorInterface.h index b0a774ada9..8a3a189af5 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PointLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PointLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PolygonLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PolygonLightFeatureProcessorInterface.h index a4b456969b..6df246c104 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PolygonLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/PolygonLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/QuadLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/QuadLightFeatureProcessorInterface.h index 0c9f753227..9ec3f571b0 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/QuadLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/QuadLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/ShadowConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/ShadowConstants.h index 6480734484..84b0c7d2df 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/ShadowConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/ShadowConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimplePointLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimplePointLightFeatureProcessorInterface.h index b9519346da..2b6e1fd8d4 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimplePointLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimplePointLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimpleSpotLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimpleSpotLightFeatureProcessorInterface.h index 84724eb91b..03b634e555 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimpleSpotLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/CoreLights/SimpleSpotLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Decals/DecalFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Decals/DecalFeatureProcessorInterface.h index 5377b849c1..c08ba20d94 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Decals/DecalFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Decals/DecalFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessorInterface.h index e8ca787636..d8b07e0b49 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessorInterface.h index 11bf23348f..7df7571e6b 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformLutPass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformLutPass.h index 5786122a29..80cc1871af 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformLutPass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformLutPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformPass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformPass.h index d3616ca290..08fbe2f54e 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformPass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/AcesOutputTransformPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/ApplyShaperLookupTablePass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/ApplyShaperLookupTablePass.h index 57c853338d..c3a5f07f90 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/ApplyShaperLookupTablePass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/ApplyShaperLookupTablePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/BakeAcesOutputTransformLutPass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/BakeAcesOutputTransformLutPass.h index 606a8d921f..6d02de6a4d 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/BakeAcesOutputTransformLutPass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/BakeAcesOutputTransformLutPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperConfigurationDescriptor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperConfigurationDescriptor.h index 6da39c3841..9387aa5cf3 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperConfigurationDescriptor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperConfigurationDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFeatureProcessorInterface.h index aebb6b9912..edd1012c08 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFullScreenPass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFullScreenPass.h index 9a08c8985d..efab74e27b 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFullScreenPass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperFullScreenPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperPass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperPass.h index 26c5e76931..037c70027f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperPass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/DisplayMapperPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/OutputTransformPass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/OutputTransformPass.h index b3aeb70394..79338a2a0f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/OutputTransformPass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/DisplayMapper/OutputTransformPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/ImGuiUtils.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/ImGuiUtils.h index fc5d254abf..c51c85c097 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/ImGuiUtils.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/ImGuiUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/SystemBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/SystemBus.h index 114f7bebc6..ee0dd899c5 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/SystemBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImGui/SystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessor.h index 4934091757..e3c5a27f11 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessorInterface.h index d97cae65ab..1480a3e38e 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ImageBasedLights/ImageBasedLightFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LookupTable/LookupTableAsset.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LookupTable/LookupTableAsset.h index c16416ab1b..537ecd6010 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LookupTable/LookupTableAsset.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LookupTable/LookupTableAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreBus.h index eb6a83897e..e440049955 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreTexturePass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreTexturePass.h index 36fef4864c..2bccfb2b8b 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreTexturePass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/LuxCoreTexturePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/RenderTexturePass.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/RenderTexturePass.h index 4840812a6c..c604491501 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/RenderTexturePass.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/LuxCore/RenderTexturePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignment.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignment.h index da89654c80..d82231cc2c 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignment.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignmentId.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignmentId.h index 93f2c5e4b9..3d5b3b1e1a 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignmentId.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Material/MaterialAssignmentId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h index da52d63ffa..caaac1abda 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h index 89ea25a459..2238f422dd 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Mesh/MeshFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/MorphTargets/MorphTargetInputBuffers.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/MorphTargets/MorphTargetInputBuffers.h index 83421d60d9..4b51d82835 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/MorphTargets/MorphTargetInputBuffers.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/MorphTargets/MorphTargetInputBuffers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessorInterface.h index fcd9f046bf..0c41bdac51 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/EndParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/EndParams.inl index b563df5490..239779b3e1 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/EndParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/EndParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapAllCommon.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapAllCommon.inl index becf40eb2d..ab3c519b81 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapAllCommon.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapAllCommon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideCommon.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideCommon.inl index e9cc6c3bcb..b972e5c8c9 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideCommon.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideCommon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideEmpty.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideEmpty.inl index 1a3dbb4769..7d047b7427 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideEmpty.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapOverrideEmpty.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamCommon.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamCommon.inl index d4da3e9e5e..8e9451180a 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamCommon.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamCommon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamEmpty.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamEmpty.inl index 5b699d45cc..775754a847 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamEmpty.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/MapParamEmpty.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/ParamMacrosHowTo.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/ParamMacrosHowTo.inl index ce3970da31..5011a52134 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/ParamMacrosHowTo.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/ParamMacrosHowTo.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideBlend.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideBlend.inl index 5ca3773841..b1213c72e1 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideBlend.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideBlend.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideEditorContext.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideEditorContext.inl index 8067f80a50..d477c6f107 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideEditorContext.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartOverrideEditorContext.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamBehaviorContext.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamBehaviorContext.inl index 218dd00758..30efb1bea1 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamBehaviorContext.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamBehaviorContext.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsFrom.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsFrom.inl index 7473ce4088..bda09b3a05 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsFrom.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsFrom.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsTo.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsTo.inl index 8bc7b6d636..d4a7d60f7b 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsTo.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamCopySettingsTo.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctions.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctions.inl index 78e21daf0a..38b3c43e16 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctions.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctions.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsOverride.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsOverride.inl index 2c13ce23b4..d5e9c82497 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsOverride.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsOverride.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsVirtual.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsVirtual.inl index 61da32cc27..78db3206e3 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsVirtual.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamFunctionsVirtual.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamMembers.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamMembers.inl index 0981f667cb..3cd5c7da2e 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamMembers.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamMembers.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamSerializeContext.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamSerializeContext.inl index 44d7500925..3d3b5785c1 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamSerializeContext.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ParamMacros/StartParamSerializeContext.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomConstants.h index 7ae2336a02..a42ea1bef1 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomParams.inl index 6dc5ca1504..3beda71a3f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomSettingsInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomSettingsInterface.h index 74cc7e5410..e012a43d0c 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomSettingsInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Bloom/BloomSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldConstants.h index c0685fc488..0a2803e5da 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldParams.inl index 84230809e6..94d7c9162c 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldSettingsInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldSettingsInterface.h index 79c9878b27..9dea915bb5 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldSettingsInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/DepthOfField/DepthOfFieldSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlConstants.h index edc53638e0..edecf09c72 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlParams.inl index dfb7c2dc44..8894e6df8c 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlSettingsInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlSettingsInterface.h index 58e51b011c..0d0e14a343 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlSettingsInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/ExposureControl/ExposureControlSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationParams.inl index 4170ec4af7..4c8669bd4d 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationSettingsInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationSettingsInterface.h index 70dc39a08e..19307f1f4b 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationSettingsInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/LookModification/LookModificationSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostFxLayerCategoriesConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostFxLayerCategoriesConstants.h index fa7b65ed9f..6c551ec9e4 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostFxLayerCategoriesConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostFxLayerCategoriesConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessFeatureProcessorInterface.h index b9952f0bbb..d6f9fc8418 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessParams.inl index 4986f662a8..26f84b4485 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettings.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettings.inl index d4990ddb9e..4a4c1c9c11 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettings.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettings.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettingsInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettingsInterface.h index d677389055..7bc18fe4f6 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettingsInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/PostProcessSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoConstants.h index 43fd644b26..c2b09f6378 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoParams.inl index 877f941659..f60faa2dd1 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoSettingsInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoSettingsInterface.h index c4ab494174..c498f68396 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoSettingsInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcess/Ssao/SsaoSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/PostProcessingConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/PostProcessingConstants.h index 3e8c45511f..f1eea239fe 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/PostProcessingConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/PostProcessingConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/SMAAFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/SMAAFeatureProcessorInterface.h index 6e1ebd2bf4..851555fd0b 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/SMAAFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/PostProcessing/SMAAFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessor.h index 800468ad00..8cabd6ac47 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessorInterface.h index 5532f44b9a..60d8999c51 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ReflectionProbe/ReflectionProbeFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogParams.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogParams.inl index 5569da2ab4..bd48323864 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogParams.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogParams.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogSettingsInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogSettingsInterface.h index fdba66adc1..0c47852d70 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogSettingsInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/ScreenSpace/DeferredFogSettingsInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Shadows/ProjectedShadowFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Shadows/ProjectedShadowFeatureProcessorInterface.h index 71289119ac..37424b47e3 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Shadows/ProjectedShadowFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Shadows/ProjectedShadowFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorBus.h index ebca4c698c..46035128dd 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorInterface.h index 1e594499aa..96974c45be 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInputBuffers.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInputBuffers.h index b5154ea174..e246f30773 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInputBuffers.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInputBuffers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInstance.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInstance.h index ced3828452..fc7722d600 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInstance.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshOutputStreamManagerInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshOutputStreamManagerInterface.h index b6a8d5ec93..5e74c589e9 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshOutputStreamManagerInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshOutputStreamManagerInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshRenderProxyInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshRenderProxyInterface.h index a8f00e9413..76bdbaa21f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshRenderProxyInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshRenderProxyInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshShaderOptions.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshShaderOptions.h index eb7b5a60e9..4df6bbfe2a 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshShaderOptions.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshShaderOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshStatsBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshStatsBus.h index 6aede838d4..3b8721c7bc 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshStatsBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshStatsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshVertexStreams.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshVertexStreams.h index b1683d6162..4901c2eb2a 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshVertexStreams.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkinnedMesh/SkinnedMeshVertexStreams.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFeatureProcessorInterface.h index 924276dcd9..e7dbb30797 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFogBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFogBus.h index a5fd709f7c..f36ab7c6a1 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFogBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxFogBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxLUT.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxLUT.h index ec49ab2cc8..925a69c37f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxLUT.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyBoxLUT.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyboxConstants.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyboxConstants.h index ac15636095..0f922a5dc8 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyboxConstants.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SkyBox/SkyboxConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.h index 5defcd657a..de50f76672 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl index 582cf72b86..a5fd9a8861 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/SphericalHarmonics/SphericalHarmonicsUtility.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessor.h index 39200125cd..e69ad9bfd5 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessorInterface.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessorInterface.h index 2bbd7e9257..fb5b6b38c4 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessorInterface.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/TransformService/TransformServiceFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorLightingPreset.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorLightingPreset.h index e2529bfc56..6ac3ba163f 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorLightingPreset.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorLightingPreset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorModelPreset.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorModelPreset.h index 9725d886ce..7140d8ac0d 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorModelPreset.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorModelPreset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.h index 8da4a45ca3..db052e19aa 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.inl b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.inl index 4b6d03d749..7e2cc39677 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.inl +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/EditorRenderComponentAdapter.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h index 30a2c2fc06..e783a03071 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/FrameCaptureBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/GpuBufferHandler.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/GpuBufferHandler.h index ab9614da07..e35d513732 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/GpuBufferHandler.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/GpuBufferHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/IndexableList.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/IndexableList.h index 9764375e23..3926578299 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/IndexableList.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/IndexableList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/LightingPreset.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/LightingPreset.h index c1587657fc..f72b10997d 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/LightingPreset.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/LightingPreset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ModelPreset.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ModelPreset.h index d0a24ad2be..1cb5d0527a 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ModelPreset.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ModelPreset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiIndexedDataVector.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiIndexedDataVector.h index 4bfba427f2..da20269f06 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiIndexedDataVector.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiIndexedDataVector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiSparseVector.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiSparseVector.h index b1033565cb..1447beb44a 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiSparseVector.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/MultiSparseVector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ProfilingCaptureBus.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ProfilingCaptureBus.h index 540d3971fc..43dfda6c8e 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ProfilingCaptureBus.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/ProfilingCaptureBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/SparseVector.h b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/SparseVector.h index 3a10074c52..f16d7c69dc 100644 --- a/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/SparseVector.h +++ b/Gems/Atom/Feature/Common/Code/Include/Atom/Feature/Utils/SparseVector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h index ca4adbcad0..1d196dee4f 100644 --- a/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Mocks/MockMeshFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ACES/AcesDisplayMapperFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/ACES/AcesDisplayMapperFeatureProcessor.cpp index d482e4c2d5..e8faffd268 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ACES/AcesDisplayMapperFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ACES/AcesDisplayMapperFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomBase.h b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomBase.h index b956d111da..c8f380ff81 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomBase.h +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.cpp b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.cpp index 316eeed7a4..20a1175464 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.h b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.h index 3578554368..54a30d8925 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.h +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawProcessorShared.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp index 0a1d6f5235..7f9cd2b857 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.h b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.h index 4b49d9fd31..731dbb1fbb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.h +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomDrawQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomFeatureProcessor.cpp index a417f13c21..5f05436632 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/AuxGeomFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp index 2646c7e52c..e9cbaa0c47 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.h b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.h index 091d8df053..fc3679513a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/DynamicPrimitiveProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.cpp index cbc4e15b82..2b3bbc2e58 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.h b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.h index e047c238a1..7dc102b469 100644 --- a/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/AuxGeom/FixedShapeProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Builders/BuilderModule.cpp b/Gems/Atom/Feature/Common/Code/Source/Builders/BuilderModule.cpp index 5c4e53b085..db750e2234 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Builders/BuilderModule.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Builders/BuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.cpp b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.cpp index 427997e180..ff7e1a797a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.h b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.h index a69cb79386..187cb9679b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardColorResolvePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.cpp b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.cpp index 569fd040d9..8d8fd1fded 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.h b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.h index ce156e35cd..a2083c9133 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/Checkerboard/CheckerboardPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CommonModule.cpp b/Gems/Atom/Feature/Common/Code/Source/CommonModule.cpp index 9c757fb30d..0cc5b603d7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CommonModule.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CommonModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp index 95ff65fe14..506f75405b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.h index 189b51b907..3f36828355 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/CommonSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp index 85cc7fe258..17c38222b4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.h index 89f69bd1f0..4311163175 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CapsuleLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.cpp index 7cd6251d41..33bac80c00 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.h index b6d5b91488..02a15f5b54 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CascadedShadowmapsPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.cpp index 4200966c17..3c205b60fa 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.h index e5e2cc49ba..e4266c5aa5 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/CoreLightsSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.cpp index f249ca811a..667a4dee28 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.h index 6ad9a21bef..057bbbeaf1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DepthExponentiationPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp index 9fc9d0696d..af674780a9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h index 371980e8db..7ce29d2389 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DirectionalLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.cpp index e6c922f7d1..510c783f02 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.h index 0201018c53..9faf0cb235 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/DiskLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.cpp index 062972d541..750efaa54d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.h index 10c0e617e8..8381d520ad 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/EsmShadowmapsPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.h index 7e7636a950..b2268c1738 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.inl b/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.inl index b7840bcbf8..d55b030bbc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.inl +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/IndexedDataVector.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingConstants.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingConstants.h index a49644f0f9..b548478350 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingConstants.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.cpp index 31c4cc34fa..41b2b08e72 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.h index d75ebdf51f..b6c012f363 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.cpp index 21ad4bd76d..2ef53065eb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.h index ede2cca27a..7c3317bad3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingRemap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.cpp index 8ebbb0bd7b..1ba25f68be 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.h index f3eb820017..55cd1bffd0 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LightCullingTilePreparePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.cpp index 69394b8ab3..56a88e9564 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.h index 6af38f8a83..14d20319f8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/LtcCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PhotometricValue.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PhotometricValue.cpp index 0b8870e078..dcac3df5f6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PhotometricValue.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PhotometricValue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.cpp index d7ffec54ec..f2adcc641e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.h index 25e7c51743..a02e48e206 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PointLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.cpp index 9032827bab..916f43cf0a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.h index d6633ea865..145eea6b77 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/PolygonLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.cpp index b78e1222e5..107318da87 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.h index d19c3d840d..4b6a03e6d0 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ProjectedShadowmapsPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.cpp index b464ff10b5..f2dd911f13 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.h index 1ba9e73318..d430b469ff 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/QuadLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.cpp index bf7205b123..c601a4843a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.h index 4e20e125c6..33a9c1abe9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/Shadow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.cpp index 40f1fa047a..08cd0f68e0 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.h index d6295d5050..ccb9f353b6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapAtlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.cpp index bbcacaaa7a..a1e3304d23 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.h index 6542eb4702..4c49659d6d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/ShadowmapPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.cpp index 85c3bc5c54..ed3dbb6a5a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.h index ed0e294ce2..e64b5c79ed 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimplePointLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.cpp index fc85756540..b6b7318eb3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.h index 637b5306b5..bc05e10068 100644 --- a/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/CoreLights/SimpleSpotLightFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h b/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h index 2ab7027d1b..d1fa0d5c8d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/AsyncLoadTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp index aba6171c87..4c5d815f97 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.h index f297308856..151ffe4637 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.cpp b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.cpp index ca8962a450..ed789cf4b1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.h b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.h index 0ad4d8f871..e6dd11b71c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.h +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp index b6e91ec4ed..5a8836ad07 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.h index 2653d3f23e..a391abb4e5 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Decals/DecalTextureArrayFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.cpp index 5fd47e44c0..cf98e7e2af 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.h index 477d3ab2df..ddbee113be 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp index 3e26873a12..7e48f0e81f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.h index 8795fe8823..855b4732bd 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGrid.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.cpp index b094335d3d..60576dc3d3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.h index 7c708eca53..2e33190834 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendDistancePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.cpp index db3f10d5c4..516b3a3098 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.h index 2d31d1376f..18cd779c48 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBlendIrradiancePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.cpp index b7ce13cc35..5d3cdfbc84 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.h index 28267433f7..0bcc0197e3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridBorderUpdatePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.cpp index f5a369d755..09364ec7f2 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.h index ec407a7c3b..6220f8be2a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridClassificationPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.cpp index 7e2ad429d8..7cc9d5ef50 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.h index 1369d12760..4d045ec62d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.cpp index 998a77cb76..c3192fc36e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.h index 5a7663a1e8..e81245af7c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRayTracingPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.cpp index a74615c318..9627b7d938 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.h index e047625122..6ae74b1970 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRelocationPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.cpp index 0e647b6189..ebb9ad9eb1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.h index eba3be6b08..90f871b5f7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridRenderPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.cpp b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.cpp index 42fb95af12..3e808a99c1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.h b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.h index 1804cb12f0..c399fac534 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.h +++ b/Gems/Atom/Feature/Common/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridTextureReadback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformLutPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformLutPass.cpp index bf8bdd311e..dfbfd8ba7e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformLutPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformLutPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformPass.cpp index f9df2b6ab3..8998f7ced9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/AcesOutputTransformPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/ApplyShaperLookupTablePass.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/ApplyShaperLookupTablePass.cpp index 166155b244..1b342a71c2 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/ApplyShaperLookupTablePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/ApplyShaperLookupTablePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/BakeAcesOutputTransformLutPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/BakeAcesOutputTransformLutPass.cpp index 1ed26b1c6f..0abfb65bef 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/BakeAcesOutputTransformLutPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/BakeAcesOutputTransformLutPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperConfigurationDescriptor.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperConfigurationDescriptor.cpp index 0f2eaaa0e3..b94e4774b2 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperConfigurationDescriptor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperConfigurationDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperFullScreenPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperFullScreenPass.cpp index f4d5a61382..a9f9d14e13 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperFullScreenPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperFullScreenPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperPass.cpp index 11f7dfb13a..72040c379a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/DisplayMapperPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/OutputTransformPass.cpp b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/OutputTransformPass.cpp index 714ae2d348..11ec86f025 100644 --- a/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/OutputTransformPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/DisplayMapper/OutputTransformPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.cpp index 213261f84a..2f03aa759b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.h index aa5d5970fd..e31602c8ea 100644 --- a/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/EditorCommonSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp index fca7ca3a7c..a115bfa6e8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h index 4c73a440fb..472dd5da74 100644 --- a/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/FrameCaptureSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp index 6eb7658af3..3daf5bf054 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h index cc12ca9b3c..9c75f65355 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.cpp index 91e4a4a045..234e7a4272 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.h index e5cc2f5ae4..07fa128d7e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/ImGui/ImGuiSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ImageBasedLights/ImageBasedLightFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/ImageBasedLights/ImageBasedLightFeatureProcessor.cpp index e60916ac3b..eb87b966fd 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ImageBasedLights/ImageBasedLightFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ImageBasedLights/ImageBasedLightFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LookupTable/LookupTableAsset.cpp b/Gems/Atom/Feature/Common/Code/Source/LookupTable/LookupTableAsset.cpp index e9a2dfed2a..1b3f37129e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LookupTable/LookupTableAsset.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LookupTable/LookupTableAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.cpp b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.cpp index 114fe825de..fb19767754 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.h b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.h index e86f9fee81..6e6348bf5e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.h +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMaterial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.cpp b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.cpp index 49a430fbbc..202188bfec 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.h b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.h index 356a9beeaf..a87a161871 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.h +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.cpp b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.cpp index 9648a86899..6f90e434f1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.h b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.h index 1b4924d8f8..ce6ec027e0 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.h +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.cpp b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.cpp index 9ad8beda1d..c0656ccf04 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.h b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.h index 0c2c2c624c..9b2bddd19b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.h +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.cpp b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.cpp index c43fa5c1bb..f8f7b1189c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.h b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.h index 10007062bc..7cb87a85bf 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.h +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexturePass.cpp b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexturePass.cpp index 14a6c77238..5faaba136e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexturePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/LuxCoreTexturePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/LuxCore/RenderTexturePass.cpp b/Gems/Atom/Feature/Common/Code/Source/LuxCore/RenderTexturePass.cpp index 5c5a048b91..c0df9991ce 100644 --- a/Gems/Atom/Feature/Common/Code/Source/LuxCore/RenderTexturePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/LuxCore/RenderTexturePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.cpp index ac5531a1cf..e1b1f5810b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.h b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.h index f4805181d0..5108f9572e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.cpp index 439355613f..b44678e0b1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.h b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.h index c9b43d0a90..ce41b7fbc6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/ConvertEmissiveUnitFunctorSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.cpp index 431cd09b81..d77b567982 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.h b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.h index b594500f6d..564e23c6b7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.cpp index 251181d93f..a767b0534e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.h b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.h index 5778148dad..622095fcba 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/DrawListFunctorSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignment.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignment.cpp index 6cc90c5546..0cfe8292ca 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignment.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentId.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentId.cpp index 8c70c6c143..0ed3deef83 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentId.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.cpp index 5fb6ab4229..4906f5991e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.h b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.h index 2326ae6f6d..d63153fdf3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialAssignmentSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp index 218adc8ed6..3c7c2be41c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h index 80475bd71c..6dff5fe9e4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/MaterialConverterSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.cpp index f7a78c417a..92b90b6fcf 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.h b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.h index 6bcfd5a870..6086cf7480 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.cpp index 76ddd8f540..1f04f263c1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.h b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.h index 4c0214caa2..5b19635e94 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/SubsurfaceTransmissionParameterFunctorSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.cpp index c1d8d79b63..ebb2f4963e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.h b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.h index 0c6a910844..b406542ff6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.cpp index 98ae93a7ce..b8f193a561 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.h b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.h index d109674b45..352512ddd1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/Transform2DFunctorSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.cpp index 7381be4f47..5ac3cb7e83 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.h b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.h index 35a8584a80..d2c1c9767a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.cpp b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.cpp index cb76e9c372..553e4ad627 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.h b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.h index e6219006e4..cb8ec81597 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.h +++ b/Gems/Atom/Feature/Common/Code/Source/Material/UseTextureFunctorSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.cpp b/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.cpp index da54a9a2fa..1731dd55a1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.h b/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.h index bca154816d..278d669a76 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.h +++ b/Gems/Atom/Feature/Common/Code/Source/Math/GaussianMathFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.cpp b/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.cpp index f66b50c2a6..8ea5cddbb3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.h b/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.h index 0ae208df0d..54cb1c68bb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.h +++ b/Gems/Atom/Feature/Common/Code/Source/Math/MathFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Math/MathFilterDescriptor.h b/Gems/Atom/Feature/Common/Code/Source/Math/MathFilterDescriptor.h index f4eec6159c..ca6e519412 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Math/MathFilterDescriptor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Math/MathFilterDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp index 7ea5e4f09e..94ae528633 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.cpp b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.cpp index 9879c2092f..15a856df15 100644 --- a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.h b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.h index 3664ea8a57..ca04afcfae 100644 --- a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetComputePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.cpp b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.cpp index 315d9af275..8d1af79c2b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.h b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.h index dc0ef5a3aa..5d3632f94f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.h +++ b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetDispatchItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetInputBuffers.cpp b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetInputBuffers.cpp index 4a1126c468..f6b91f649f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetInputBuffers.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/MorphTargets/MorphTargetInputBuffers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp index 1c8668fa7a..b096b391b7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.h b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.h index 06d61d682e..835255b199 100644 --- a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.h +++ b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlane.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.cpp index ec8b5bb7da..69b5f69de4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.h index 45db176660..6a76309a35 100644 --- a/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Android.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Android.h index 88fe123981..7c37290ccb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Android.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Platform.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Platform.h index 716a6e2169..a5964f22b7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Platform.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/Atom_Feature_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android_files.cmake index 2bbc253251..462fdfcf9f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_clients.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_clients.cmake index 09f2742520..3e40f48401 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_clients.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_clients.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_tools.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_tools.cmake index 32efa960cc..c515052a55 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_tools.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Android/runtime_dependencies_tools.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Common/Clang/atom_feature_common_clang.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Common/Clang/atom_feature_common_clang.cmake index 1d00c12f26..47285977c9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Common/Clang/atom_feature_common_clang.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Common/Clang/atom_feature_common_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Common/MSVC/atom_feature_common_msvc.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Common/MSVC/atom_feature_common_msvc.cmake index 019851d457..d2ee0ef150 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Common/MSVC/atom_feature_common_msvc.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Common/MSVC/atom_feature_common_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Linux.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Linux.h index 88fe123981..7c37290ccb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Linux.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Platform.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Platform.h index ac18eff278..de69b87a91 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Platform.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/Atom_Feature_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux_files.cmake index d6588791cf..dc93aa9784 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_clients.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_clients.cmake index 09f2742520..3e40f48401 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_clients.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_clients.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_tools.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_tools.cmake index b99a351d84..34b476c9fc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_tools.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Linux/runtime_dependencies_tools.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Mac.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Mac.h index 88fe123981..7c37290ccb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Mac.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Platform.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Platform.h index 6924da03c4..ee85804524 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Platform.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/Atom_Feature_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac_files.cmake index ad3fcccb25..921910421e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_clients.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_clients.cmake index db808a66f0..358d6137ad 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_clients.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_clients.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_tools.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_tools.cmake index 5c78ffb342..d3d2cb1e4d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_tools.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Mac/runtime_dependencies_tools.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Platform.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Platform.h index dfe1f72b73..fdfd081f43 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Platform.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Windows.h b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Windows.h index c5bb14ec41..105f74adfc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Windows.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/Atom_Feature_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp index fe7380ff71..9b0808445a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/LaunchLuxCoreUI_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows.cmake index 872fe07e1e..a6577196dc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows_files.cmake index 3beb05007c..f9e357640d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_clients.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_clients.cmake index 8abe3b2938..9b2f90e617 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_clients.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_clients.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_tools.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_tools.cmake index b99a351d84..34b476c9fc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_tools.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/Windows/runtime_dependencies_tools.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_Platform.h b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_Platform.h index 0258d0321e..923ac3a5bc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_Platform.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_iOS.h b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_iOS.h index 88fe123981..7c37290ccb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_iOS.h +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/Atom_Feature_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios_files.cmake index 9925483473..5788dbcfe6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_clients.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_clients.cmake index db808a66f0..358d6137ad 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_clients.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_clients.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_tools.cmake b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_tools.cmake index 32efa960cc..c515052a55 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_tools.cmake +++ b/Gems/Atom/Feature/Common/Code/Source/Platform/iOS/runtime_dependencies_tools.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.cpp index c2a469876e..ebf2aebb62 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.h index f9548d60fd..eb61ab57d6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Bloom/BloomSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.cpp index d83e56baa7..1521dddc60 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.h index 7a357b0fc3..e7cbfd6def 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/DepthOfField/DepthOfFieldSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.cpp index fbfbcb9687..a43faadf5e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.h index 6b3233aac6..dbc78968b4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/ExposureControl/ExposureControlSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp index 3bde150508..aa8bb016df 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.h index 53c71d8534..da793271d9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/LookModification/LookModificationSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.cpp index 63b9db19a3..db73702937 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.h index a46db8697d..3d76ccd7d3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.cpp index 686c7092b7..ed83384d38 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.h index cb8dff34ff..7dfb096153 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.cpp index 245fae9e26..bec4857b3d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.h index 2a70a5be42..41802c13e9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/PostProcessSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.cpp index e4a17ff12b..82c13b0f32 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.h b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.h index 4f8f485f2e..0a13ab980d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcess/Ssao/SsaoSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.cpp index 7acc785be1..127411d92d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.h index 68b298bc83..72cb356ce7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BlendColorGradingLutsPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp index 2f24cfcceb..7daf810f0c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.h index 152c1821cb..bd82104a7a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomBlurPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.cpp index c502ebe18f..fdfa285389 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.h index b965ffad8a..f3ea06ef88 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomCompositePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.cpp index f2a21c9daa..47515bd96d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.h index 3630519bda..365bba03a4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomDownsamplePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.cpp index 056288d430..161c58d4e8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.h index 47166a36ef..70f01468c8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/BloomParentPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.cpp index 54a250769a..dd4abe95b6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.h index 20ab816b9a..819af3f121 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldBokehBlurPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.cpp index 14285ad304..4b6f3e9fb0 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.h index c02cd3591d..5aaecf2963 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCompositePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.cpp index d2a2cbfd88..21aa5efb03 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.h index 78dd30b1ce..a01a61d3e8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldCopyFocusDepthToCpuPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.cpp index a2079abd83..2f6d5995f7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.h index fb3785db41..deb86302e8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldMaskPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.cpp index bd923525a0..e77eb64123 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.h index 47e7f1ef82..69a0cf0262 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldParentPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldPencilMap.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldPencilMap.h index 586d8e93f3..f7563885a2 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldPencilMap.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldPencilMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.cpp index 2f538e5cdd..0d2e348118 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.h index d9eafae367..b8bc7986c2 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldReadBackFocusDepthPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.cpp index 8fd2b9f99a..a099dc779c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.h index 099da763f5..b8ac7a29f3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthOfFieldWriteFocusDepthFromGpuPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.cpp index 92a5842207..7ead9f2981 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.h index 88a92dc461..71f61f3c1e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/DepthUpsamplePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/ExposureControlRenderProxy.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/ExposureControlRenderProxy.cpp index a24812723b..af85e20533 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/ExposureControlRenderProxy.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/ExposureControlRenderProxy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.cpp index 059e1425b5..31185a22f8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.h index 0d06dea331..9912a1dbf5 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/EyeAdaptationPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.cpp index ea70fe03e7..b046b55058 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.h index daf09166c9..eeb204fe39 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/FastDepthAwareBlurPasses.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.cpp index c066e5c7a2..7a18e0b7ed 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.h index 4cc08c8c38..3858afcc4b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationCompositePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.cpp index 2acfe41dff..e4b2c97a37 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.h index fd52e87aab..74515fb8b6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LookModificationTransformPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.cpp index 21a528d5e8..06232fd60f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.h index 270252e031..9f7e00d22b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/LuminanceHistogramGeneratorPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.cpp index 5b2bfcf212..755ab5cd51 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.h index ab91df34eb..b760db4e3a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/PostProcessingShaderOptionBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.cpp index 510c128709..879cc371f3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.h index 5f05d4ed53..4a01fce344 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABasePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.cpp index 99d384c199..d04d957eea 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.h index 1e25bec110..d337ff19e8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAABlendingWeightCalculationPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAACommon.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAACommon.h index 41dac1505c..6b6653e905 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAACommon.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAACommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.cpp index 2bb2dd81b2..41e99e1982 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.h index f874406870..db4ea3bc92 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAConfigurationDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.cpp index 5f72cbb69f..569c18865d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.h index 946fc0c872..67bf303ba0 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAEdgeDetectionPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.cpp index 8c11ad6ad2..73d8d30830 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.h index 6fe2bfe51a..3629b9caad 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAAFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.cpp index 010c7420fc..d2c9a129d0 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.h index 7d3a56b83f..bdcf386b6f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SMAANeighborhoodBlendingPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.cpp index 70d9cf632e..e622454210 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.h index cc07cab7bd..f9e4c4f1a6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SsaoPasses.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.cpp index d1d74117cc..1e6a8b3e33 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.h index 0d92f4f5c8..1097bad492 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/SubsurfaceScatteringPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp index fb854f6df3..7fd304b062 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.h b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.h index 3435ddc764..d18f98d8b7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/PostProcessing/TaaPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp index 874d385df6..ea77c48dd7 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.h index 8442761408..6cdb3d0041 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/ProfilingCaptureSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.cpp b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.cpp index acdc5daf97..43a8171e2f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.h b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.h index c1913fd965..c2397c55fc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingAccelerationStructurePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp index 3b50951d0c..b84bc99ad3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.h index f1ca2c6c7e..468781b365 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.cpp b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.cpp index 54e55593b7..d7585d3b53 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.h b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.h index dc7a29fdc7..2acbca81f6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPassData.h b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPassData.h index 5cab8d7c01..d2a7e3f86b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPassData.h +++ b/Gems/Atom/Feature/Common/Code/Source/RayTracing/RayTracingPassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp index 10e8f16b4c..c6035f2ba4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h index c354d39d53..feac1b681c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbe.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbeFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbeFeatureProcessor.cpp index 651224b9bb..39c0d0592e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbeFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionProbe/ReflectionProbeFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.cpp index 34b9b01e35..c4c54b9bf9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.h b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.h index 932d31ccc0..1d42acca3c 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionCopyFrameBufferPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.cpp index 93dbd55c2d..ba53c7e45a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h index a579aa0a16..0907e941d8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurChildPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.cpp index b9c07c1079..ab5eb17cb9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.h b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.h index c6b267e2be..e4bfd4fba4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceBlurPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.cpp b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.cpp index 1e2e5bbf51..e4ce2cddfb 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.h b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.h index c2b6a3fea8..a8509e5d1e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ReflectionScreenSpace/ReflectionScreenSpaceCompositePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/RenderCommon.h b/Gems/Atom/Feature/Common/Code/Source/RenderCommon.h index 00dd0aea4f..011172c29d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/RenderCommon.h +++ b/Gems/Atom/Feature/Common/Code/Source/RenderCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.cpp b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.cpp index 6d6e371810..4d275d8892 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.h b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.h index b6cae2ee2e..fdad65b0d6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.h +++ b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.cpp index 44f8f50029..226e5804f1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.h b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.h index a397cc3fb8..4fe67b37c8 100644 --- a/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/ScreenSpace/DeferredFogSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp index d77a5bd7a2..4ea70545ff 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.h index 0d32f4f691..25a527b33a 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/Shadows/ProjectedShadowFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.cpp index e71053972e..d8c06173dc 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.h index 7bfe2a02d3..63278771bf 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshComputePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.cpp index ee0ed83df9..b780cadfa4 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.h index e4d51abbe0..f601d120c3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshDispatchItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.cpp index 5921d68350..b5b40cf443 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.h index 19ee7ce386..d0d82b3b2d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp index 2f30c7b61a..75d079c937 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInputBuffers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInstance.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInstance.cpp index 33b9cc5c80..c62a8e8a8f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInstance.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.cpp index ff24122738..3cb572508e 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.h index aa77415d9f..e4bb229d7f 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshOutputStreamManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.cpp index 957646ec17..e3d516c92b 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.h index 822313d962..ef82af0456 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshRenderProxy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.cpp index 7427d380e3..82920e1cf5 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.h index 0b9be26331..dcface47c6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshShaderOptionsCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.cpp index 0f9c3715cf..a3bcf732e1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.h index 8a1522770e..b67bebf07d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshStatsCollector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.cpp index 41aeb7f00f..2791a20876 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.h index 2ff087bde1..2a520ea8ff 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.cpp b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.cpp index 0165c5da35..d9fdb5cf25 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.h b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.h index 3b767ffb56..43e77cfe52 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkinnedMesh/SkinnedMeshVertexStreamProperties.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.cpp index d8f3f9a5a6..b965ab1dd1 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.h b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.h index 92f5b154f7..cc836ba874 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.cpp b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.cpp index b87a1bd55b..304d8b43a3 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.h b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.h index 1a7ab5161f..1545b806e9 100644 --- a/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.h +++ b/Gems/Atom/Feature/Common/Code/Source/SkyBox/SkyBoxFogSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/TransformService/TransformServiceFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/TransformService/TransformServiceFeatureProcessor.cpp index 07559ef5fb..935c2bba17 100644 --- a/Gems/Atom/Feature/Common/Code/Source/TransformService/TransformServiceFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/TransformService/TransformServiceFeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Utils/EditorLightingPreset.cpp b/Gems/Atom/Feature/Common/Code/Source/Utils/EditorLightingPreset.cpp index 9d6e0707ad..5e14f0df9d 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Utils/EditorLightingPreset.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Utils/EditorLightingPreset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Utils/EditorModelPreset.cpp b/Gems/Atom/Feature/Common/Code/Source/Utils/EditorModelPreset.cpp index 6e24726d0e..b51209d227 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Utils/EditorModelPreset.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Utils/EditorModelPreset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp b/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp index bddc1c558f..f758cc9364 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Utils/GpuBufferHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Utils/LightingPreset.cpp b/Gems/Atom/Feature/Common/Code/Source/Utils/LightingPreset.cpp index b801403a91..7a8e71c5e6 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Utils/LightingPreset.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Utils/LightingPreset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Source/Utils/ModelPreset.cpp b/Gems/Atom/Feature/Common/Code/Source/Utils/ModelPreset.cpp index 94131ed71a..d2db17e971 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Utils/ModelPreset.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Utils/ModelPreset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Tests/CommonTest.cpp b/Gems/Atom/Feature/Common/Code/Tests/CommonTest.cpp index c02fd906b0..f5e1678546 100644 --- a/Gems/Atom/Feature/Common/Code/Tests/CommonTest.cpp +++ b/Gems/Atom/Feature/Common/Code/Tests/CommonTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Tests/CoreLights/ShadowmapAtlasTest.cpp b/Gems/Atom/Feature/Common/Code/Tests/CoreLights/ShadowmapAtlasTest.cpp index e759a9af50..911293dd71 100644 --- a/Gems/Atom/Feature/Common/Code/Tests/CoreLights/ShadowmapAtlasTest.cpp +++ b/Gems/Atom/Feature/Common/Code/Tests/CoreLights/ShadowmapAtlasTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Tests/Decals/DecalTextureArrayTests.cpp b/Gems/Atom/Feature/Common/Code/Tests/Decals/DecalTextureArrayTests.cpp index 40f4899c69..3922ac91df 100644 --- a/Gems/Atom/Feature/Common/Code/Tests/Decals/DecalTextureArrayTests.cpp +++ b/Gems/Atom/Feature/Common/Code/Tests/Decals/DecalTextureArrayTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Tests/IndexableListTests.cpp b/Gems/Atom/Feature/Common/Code/Tests/IndexableListTests.cpp index e17d31d7f5..fffdf84b2a 100644 --- a/Gems/Atom/Feature/Common/Code/Tests/IndexableListTests.cpp +++ b/Gems/Atom/Feature/Common/Code/Tests/IndexableListTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Tests/IndexedDataVectorTests.cpp b/Gems/Atom/Feature/Common/Code/Tests/IndexedDataVectorTests.cpp index 263ed9f22b..825a37d54a 100644 --- a/Gems/Atom/Feature/Common/Code/Tests/IndexedDataVectorTests.cpp +++ b/Gems/Atom/Feature/Common/Code/Tests/IndexedDataVectorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Tests/SkinnedMesh/SkinnedMeshDispatchItemTests.cpp b/Gems/Atom/Feature/Common/Code/Tests/SkinnedMesh/SkinnedMeshDispatchItemTests.cpp index c9a07a25e0..c3b67b19c6 100644 --- a/Gems/Atom/Feature/Common/Code/Tests/SkinnedMesh/SkinnedMeshDispatchItemTests.cpp +++ b/Gems/Atom/Feature/Common/Code/Tests/SkinnedMesh/SkinnedMeshDispatchItemTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/Tests/SparseVectorTests.cpp b/Gems/Atom/Feature/Common/Code/Tests/SparseVectorTests.cpp index e5a3a386f3..613334c772 100644 --- a/Gems/Atom/Feature/Common/Code/Tests/SparseVectorTests.cpp +++ b/Gems/Atom/Feature/Common/Code/Tests/SparseVectorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Feature/Common/Code/atom_feature_common_builders_files.cmake b/Gems/Atom/Feature/Common/Code/atom_feature_common_builders_files.cmake index 81e94091e4..9aff58a080 100644 --- a/Gems/Atom/Feature/Common/Code/atom_feature_common_builders_files.cmake +++ b/Gems/Atom/Feature/Common/Code/atom_feature_common_builders_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/atom_feature_common_editor_files.cmake b/Gems/Atom/Feature/Common/Code/atom_feature_common_editor_files.cmake index b99d23d442..1d6682cc09 100644 --- a/Gems/Atom/Feature/Common/Code/atom_feature_common_editor_files.cmake +++ b/Gems/Atom/Feature/Common/Code/atom_feature_common_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/atom_feature_common_files.cmake b/Gems/Atom/Feature/Common/Code/atom_feature_common_files.cmake index 708504a701..739e8be725 100644 --- a/Gems/Atom/Feature/Common/Code/atom_feature_common_files.cmake +++ b/Gems/Atom/Feature/Common/Code/atom_feature_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/atom_feature_common_public_files.cmake b/Gems/Atom/Feature/Common/Code/atom_feature_common_public_files.cmake index 65c18eaef6..4376b5a270 100644 --- a/Gems/Atom/Feature/Common/Code/atom_feature_common_public_files.cmake +++ b/Gems/Atom/Feature/Common/Code/atom_feature_common_public_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/atom_feature_common_shared_files.cmake b/Gems/Atom/Feature/Common/Code/atom_feature_common_shared_files.cmake index 9d4a7f70e1..3d256b29be 100644 --- a/Gems/Atom/Feature/Common/Code/atom_feature_common_shared_files.cmake +++ b/Gems/Atom/Feature/Common/Code/atom_feature_common_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/atom_feature_common_staticlibrary_files.cmake b/Gems/Atom/Feature/Common/Code/atom_feature_common_staticlibrary_files.cmake index ef9e2a66a5..6decb0b07a 100644 --- a/Gems/Atom/Feature/Common/Code/atom_feature_common_staticlibrary_files.cmake +++ b/Gems/Atom/Feature/Common/Code/atom_feature_common_staticlibrary_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Feature/Common/Code/atom_feature_common_tests_files.cmake b/Gems/Atom/Feature/Common/Code/atom_feature_common_tests_files.cmake index 87edfb46ae..eb8adf6ce9 100644 --- a/Gems/Atom/Feature/Common/Code/atom_feature_common_tests_files.cmake +++ b/Gems/Atom/Feature/Common/Code/atom_feature_common_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/CMakeLists.txt b/Gems/Atom/RHI/CMakeLists.txt index 6cf52f790d..8021c2f117 100644 --- a/Gems/Atom/RHI/CMakeLists.txt +++ b/Gems/Atom/RHI/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/CMakeLists.txt b/Gems/Atom/RHI/Code/CMakeLists.txt index 1da362d1d3..046e0e98a9 100644 --- a/Gems/Atom/RHI/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderCompilerArguments.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderCompilerArguments.h index bdb96bfa35..ed0ff3fb67 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderCompilerArguments.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderCompilerArguments.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterface.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterface.h index b5cc3b9c23..d83fbf2267 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterface.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterfaceBus.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterfaceBus.h index 54c8756f75..6b6e5f8f9c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterfaceBus.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/ShaderPlatformInterfaceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/Utils.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/Utils.h index 2dec6d3e30..9c7516f509 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/Utils.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Edit/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AliasedHeapEnums.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AliasedHeapEnums.h index 0252ce0bc7..a037a17b87 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AliasedHeapEnums.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AliasedHeapEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentEnums.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentEnums.h index d3aadf90d9..36877f1ef3 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentEnums.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentId.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentId.h index c68a52d8bd..4bd628d1d6 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentId.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentLoadStoreAction.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentLoadStoreAction.h index 20cd9f1ab9..4e70080ea4 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentLoadStoreAction.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/AttachmentLoadStoreAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h index 7571438154..2c3bb25312 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h index 01a0a564f9..da6b968a00 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Bits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h index 32cef46d12..a874abd1b4 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferPoolDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferPoolDescriptor.h index 8b6bc68ba9..6e87c85288 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferPoolDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferPoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferScopeAttachmentDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferScopeAttachmentDescriptor.h index 663116cea6..54af9757ff 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferScopeAttachmentDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferScopeAttachmentDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h index c575c37617..7f246cff61 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/BufferViewDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ClearValue.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ClearValue.h index a4658aac44..551787f8ef 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ClearValue.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ClearValue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ConstantsLayout.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ConstantsLayout.h index 36e158d445..09415f1bc2 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ConstantsLayout.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ConstantsLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/CpuTimingStatistics.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/CpuTimingStatistics.h index 09d1da4096..e24ae8c0c7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/CpuTimingStatistics.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/CpuTimingStatistics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceDescriptor.h index e67766deb3..72a9fb728c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceFeatures.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceFeatures.h index 2d816866f7..2018fd8bf4 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceFeatures.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceFeatures.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceLimits.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceLimits.h index 9ccaa6a78b..b902f4ecb6 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceLimits.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/DeviceLimits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Format.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Format.h index 54dcc98242..e3cb19cca0 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Format.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Format.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/FrameSchedulerEnums.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/FrameSchedulerEnums.h index 6c32894bd4..279385541b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/FrameSchedulerEnums.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/FrameSchedulerEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Handle.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Handle.h index 6fd92324f4..b2c6b19085 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Handle.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Handle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h index a57ee85c00..67afd81ca5 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageEnums.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageEnums.h index f0513c3e45..4fa5a3c53c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageEnums.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImagePoolDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImagePoolDescriptor.h index 2d7ec7ca3e..511e4eaa2d 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImagePoolDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImagePoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageScopeAttachmentDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageScopeAttachmentDescriptor.h index 6253aa61bf..8ed5bbce1e 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageScopeAttachmentDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageScopeAttachmentDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageSubresource.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageSubresource.h index 861c83a90f..c9c75efa5b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageSubresource.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageSubresource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h index 9c1e3e7d66..4d978e1d77 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ImageViewDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h index 85e74bf905..d24e256b58 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/IndirectBufferLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayout.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayout.h index 629664d358..9c9397f80c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayout.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayoutBuilder.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayoutBuilder.h index dbbdf0832a..c3e70e6a8d 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayoutBuilder.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/InputStreamLayoutBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Interval.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Interval.h index b3bbff33c7..235a89b745 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Interval.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Interval.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Limits.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Limits.h index 3c9277816d..68edada5e5 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Limits.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Limits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryEnums.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryEnums.h index 484dce7ba3..da72954734 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryEnums.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryStatistics.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryStatistics.h index 17cb3eb2e6..85af09df1d 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryStatistics.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryStatistics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryUsage.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryUsage.h index 2a4088e041..dd3b5fd537 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryUsage.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MemoryUsage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h index 0a379da6b6..a203ab500c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/MultisampleState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/NameIdReflectionMap.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/NameIdReflectionMap.h index 2de6c530c8..7756e7d290 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/NameIdReflectionMap.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/NameIdReflectionMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Origin.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Origin.h index a9bd7bdb20..06cc53c001 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Origin.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Origin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDescriptor.h index 884e684af8..53269bdbc7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.h index ced5905807..df0615787a 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h index 64fe7cd683..e95d748969 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLayoutDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLibraryData.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLibraryData.h index 91cae94482..e3ae35c807 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLibraryData.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PipelineLibraryData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h index c2b6a1412d..0916066592 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/PlatformLimitsDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/QueryPoolDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/QueryPoolDescriptor.h index 0bcdb7566c..39aec0faea 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/QueryPoolDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/QueryPoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RHISystemDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RHISystemDescriptor.h index 1908972a6f..d2b433bba3 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RHISystemDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RHISystemDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ReflectSystemComponent.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ReflectSystemComponent.h index 1657709f37..0c2fe859cb 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ReflectSystemComponent.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ReflectSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h index 85c38c0bc0..486e720f1e 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayoutBuilder.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayoutBuilder.h index 040c099e78..e7f766353c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayoutBuilder.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderAttachmentLayoutBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h index 160bdd8d1c..8d000edd5c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/RenderStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResolveScopeAttachmentDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResolveScopeAttachmentDescriptor.h index 88f01547a0..576cf41322 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResolveScopeAttachmentDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResolveScopeAttachmentDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResourcePoolDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResourcePoolDescriptor.h index 641d0a80a1..bf9a2b6708 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResourcePoolDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ResourcePoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h index 2f94708c05..93bbd5a108 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SamplerState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Scissor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Scissor.h index 7e9b8ba5c2..cb64f0a0a8 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Scissor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Scissor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeAttachmentDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeAttachmentDescriptor.h index ba14a3080c..9ebca25e31 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeAttachmentDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeAttachmentDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeEnums.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeEnums.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeEnums.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeId.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeId.h index 3e379c2797..cda4964f1a 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeId.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ScopeId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderDataMappings.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderDataMappings.h index 49487c3f9d..c3ebcbefb3 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderDataMappings.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderDataMappings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderInputNameIndex.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderInputNameIndex.h index 7e6c39f589..522bdc13bb 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderInputNameIndex.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderInputNameIndex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayout.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayout.h index 99d87ba820..5352776647 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayout.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.h index e22cbe5bc1..f1a8ce8dba 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupPoolDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupPoolDescriptor.h index 9fcb2c915c..2444b85891 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupPoolDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderResourceGroupPoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderSemantic.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderSemantic.h index a75f958d5a..a37db97126 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderSemantic.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderSemantic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStageFunction.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStageFunction.h index 1e63be5ed9..bb7aa05d60 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStageFunction.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStages.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStages.h index ebeba6b143..5fc19679d7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStages.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/ShaderStages.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Size.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Size.h index bf4fac5ae4..acb780dde1 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Size.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Size.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/StreamingImagePoolDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/StreamingImagePoolDescriptor.h index a3f58de777..e9319734c0 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/StreamingImagePoolDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/StreamingImagePoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SwapChainDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SwapChainDescriptor.h index 7c1ed83ca7..aee89c9116 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SwapChainDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/SwapChainDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientAttachmentStatistics.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientAttachmentStatistics.h index cfe6f686a2..e8f25dee40 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientAttachmentStatistics.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientAttachmentStatistics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientBufferDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientBufferDescriptor.h index fd1f0173a4..9af9207f5c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientBufferDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientBufferDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientImageDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientImageDescriptor.h index 621fdac0f5..ab97c7d2ed 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientImageDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/TransientImageDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedAttachmentDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedAttachmentDescriptor.h index 351f2ab6cf..b3497d665d 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedAttachmentDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedAttachmentDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedScopeAttachmentDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedScopeAttachmentDescriptor.h index 49bece9edd..f3a7fdff1f 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedScopeAttachmentDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/UnifiedScopeAttachmentDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Viewport.h b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Viewport.h index 3938be742c..b902aa9eb6 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Viewport.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI.Reflect/Viewport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedAttachmentAllocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedAttachmentAllocator.h index 7411f961d0..a20d817fd6 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedAttachmentAllocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedAttachmentAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedHeap.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedHeap.h index d959d3898d..b2d052cc54 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedHeap.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasedHeap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasingBarrierTracker.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasingBarrierTracker.h index 306016ffad..1ad4548a63 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasingBarrierTracker.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/AliasingBarrierTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Allocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Allocator.h index 0353bc4d47..4b946d8aa1 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Allocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Allocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/AsyncWorkQueue.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/AsyncWorkQueue.h index 53a350d2b3..6ad8a9d306 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/AsyncWorkQueue.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/AsyncWorkQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Buffer.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Buffer.h index 9e8babbe47..0dc9e6d9a9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Buffer.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferFrameAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferFrameAttachment.h index 2894c73e26..9e7455df10 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferFrameAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferFrameAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h index 9e176d19e1..07489e45c9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPoolBase.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPoolBase.h index 4785a6118a..5fc7e845d5 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPoolBase.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferPoolBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferProperty.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferProperty.h index 451402947c..70eef7e29b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferProperty.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferProperty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferScopeAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferScopeAttachment.h index 55199501f0..11538e8aab 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferScopeAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferScopeAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferView.h index 1b11b9ee3b..58e941da26 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/BufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandList.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandList.h index 462225ab27..14cfa75f8d 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandList.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListStates.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListStates.h index 6958ad41a1..a02a7ba442 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListStates.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListValidator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListValidator.h index 2ade49b33f..892544b811 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListValidator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandListValidator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandQueue.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandQueue.h index 226903056d..9ddb9b95ba 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandQueue.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CommandQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h index a4a08eb4ed..5fd10212d4 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ConstantsData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CopyItem.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CopyItem.h index 5e155e1998..be87585202 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CopyItem.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CopyItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h index a9c8107e57..ebdfcdfe87 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h index 56de2a0395..eb35a29e26 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/CpuProfilerImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Device.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Device.h index 80dc47081f..51f438ee74 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Device.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Device.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceBusTraits.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceBusTraits.h index 0a420c38e3..d74dad6e30 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceBusTraits.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceBusTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceObject.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceObject.h index e830098bf3..42e48b09c7 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceObject.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DeviceObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchItem.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchItem.h index 27897ed704..10299413af 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchItem.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchRaysItem.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchRaysItem.h index 9d76a26629..d5e1c61057 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchRaysItem.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DispatchRaysItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawFilterTagRegistry.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawFilterTagRegistry.h index 7038e2e866..1555dbfc84 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawFilterTagRegistry.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawFilterTagRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawItem.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawItem.h index dcc2e5fbce..f3b0df2b37 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawItem.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawList.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawList.h index bfcdd0911c..0bfbc8fd59 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawList.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListContext.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListContext.h index 135cc5f9f2..af5090c3dc 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListContext.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListTagRegistry.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListTagRegistry.h index d7b35b0826..daba748dcb 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListTagRegistry.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawListTagRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacket.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacket.h index d6b904a88b..e241bbc66e 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacket.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacketBuilder.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacketBuilder.h index 4e686e723f..56a02531f5 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacketBuilder.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/DrawPacketBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h index b9a52dc7aa..db8a927c71 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Factory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FactoryManagerBus.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FactoryManagerBus.h index 66f0895e18..2aa3f280cb 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FactoryManagerBus.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FactoryManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Fence.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Fence.h index 7425b5f04c..c87fbbe2cd 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Fence.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Fence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameAttachment.h index a82e48f134..b176f29b24 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameEventBus.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameEventBus.h index 1fe08ed925..e37fdbcafd 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameEventBus.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameEventBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraph.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraph.h index 5c4157ab1e..da6e3eca01 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraph.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentDatabase.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentDatabase.h index 64f1bcd635..ae750d2f9b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentDatabase.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentInterface.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentInterface.h index 95e4ebd725..f2a9dd6e2a 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentInterface.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphAttachmentInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphBuilder.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphBuilder.h index 9c375202ea..609afc38f1 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphBuilder.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompileContext.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompileContext.h index 4cd0fd1678..85e49b053b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompileContext.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompileContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompiler.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompiler.h index b6d4755050..a56c73b90b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompiler.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphCompiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteContext.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteContext.h index 3be7231819..0add1f4b71 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteContext.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteGroup.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteGroup.h index 6087da0503..786376b727 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteGroup.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuteGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuter.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuter.h index bc42f73a6c..caa0273b6a 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuter.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphExecuter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphInterface.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphInterface.h index bf51d5d76c..51e7bb501e 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphInterface.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphLogger.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphLogger.h index 3e9faab546..907013bf66 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphLogger.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameGraphLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameScheduler.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameScheduler.h index c8b3e39dd0..2dc6159485 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameScheduler.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FrameScheduler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/FreeListAllocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/FreeListAllocator.h index cf17192f37..ce57158688 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/FreeListAllocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/FreeListAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Image.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Image.h index 8f759ac613..923bc6492c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Image.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageFrameAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageFrameAttachment.h index 0dcb660cca..756f068ec4 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageFrameAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageFrameAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePool.h index cfc8300126..c34ba7ecde 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePoolBase.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePoolBase.h index c56cbea3c0..a15f86f7cb 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePoolBase.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImagePoolBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageProperty.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageProperty.h index 21657f2858..d995dac84c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageProperty.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageProperty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageScopeAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageScopeAttachment.h index fdd1b75908..e77c7c253f 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageScopeAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageScopeAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageView.h index bdbe9d9e78..9bd4f77c3e 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ImageView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h index 4f0a149e28..caaca6854b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndexBufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectArguments.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectArguments.h index e8b7d33e7c..b38cd53827 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectArguments.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectArguments.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferSignature.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferSignature.h index 3e47876332..2f867ab7a1 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferSignature.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferSignature.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h index 7ad3bc650e..df77d86bc9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferWriter.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferWriter.h index 03ee992aa4..c26cd8d5f0 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferWriter.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/IndirectBufferWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/LinearAllocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/LinearAllocator.h index 1531c8c934..240166b224 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/LinearAllocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/LinearAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryAllocation.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryAllocation.h index 43022db9c8..0c256f9767 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryAllocation.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryAllocation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryLinearSubAllocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryLinearSubAllocator.h index eff1c527b7..2fcbeac9ea 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryLinearSubAllocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryLinearSubAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBuilder.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBuilder.h index fb2968df28..87dda52c5a 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBuilder.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBus.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBus.h index 86b176393f..3acf535436 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBus.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemoryStatisticsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemorySubAllocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemorySubAllocator.h index de1d85ff50..a6009afac0 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/MemorySubAllocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/MemorySubAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Object.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Object.h index cc67df3da6..5756db9338 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Object.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Object.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCache.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCache.h index 00d1b1a794..3ecc93d0bd 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCache.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCollector.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCollector.h index 4d4868f992..d49390ca43 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCollector.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectCollector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectPool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectPool.h index ee31353c22..b902a4c68a 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectPool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ObjectPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/PhysicalDevice.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/PhysicalDevice.h index 82906ac3f6..1ce634b1bc 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/PhysicalDevice.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/PhysicalDevice.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineLibrary.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineLibrary.h index ab72f52288..da381fe5d0 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineLibrary.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineState.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineState.h index 70b4dfa711..552d6f6e80 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineState.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateCache.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateCache.h index 7c843b9d2d..0dd105f9db 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateCache.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateDescriptor.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateDescriptor.h index dfae5292a6..fa4ff19ed0 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateDescriptor.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/PipelineStateDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/PoolAllocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/PoolAllocator.h index 1355729f1a..76b1804bad 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/PoolAllocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/PoolAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Query.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Query.h index 7626671a6b..1a9a0c3f04 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Query.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Query.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPool.h index c0a0c2c92b..9366bacc0c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPoolSubAllocator.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPoolSubAllocator.h index 68805ce02e..28660cca41 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPoolSubAllocator.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/QueryPoolSubAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h index 1c8f0e92d1..eb622a6868 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h index 24855acb91..9123d53344 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHISystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHIUtils.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHIUtils.h index 4bbcf69a2b..0d3223b8a9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RHIUtils.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RHIUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingAccelerationStructure.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingAccelerationStructure.h index 1fee256e9a..031623eca3 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingAccelerationStructure.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingAccelerationStructure.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingBufferPools.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingBufferPools.h index ce491363fd..cd2b1c2b16 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingBufferPools.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingBufferPools.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingPipelineState.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingPipelineState.h index 41d1e16965..225dcadad1 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingPipelineState.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingPipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingShaderTable.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingShaderTable.h index eb7e153f48..9f4308f738 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingShaderTable.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/RayTracingShaderTable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResolveScopeAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResolveScopeAttachment.h index 1d2fc39593..c2ade28faf 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResolveScopeAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResolveScopeAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Resource.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Resource.h index ce6d97b980..18fd475216 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Resource.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceInvalidateBus.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceInvalidateBus.h index eaee9bed83..214b133c71 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceInvalidateBus.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceInvalidateBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePool.h index 8a79b9bea7..d0359f05b8 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePoolDatabase.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePoolDatabase.h index 3fd900c2fb..88f260e0d5 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePoolDatabase.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourcePoolDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceView.h index 1f4c45f297..551044dd61 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ResourceView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/Scope.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/Scope.h index 6c417a3958..d876df3ead 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/Scope.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/Scope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeAttachment.h index 28c72ddcc0..175a108ca9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducer.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducer.h index 4119cdaf02..ac0190914c 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducer.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerEmpty.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerEmpty.h index 7668fa0b90..e9d2cba1b3 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerEmpty.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerEmpty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerFunction.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerFunction.h index e8bba114ae..de6799e0f8 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerFunction.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ScopeProducerFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroup.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroup.h index 9b42041045..f0ae4d42a9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroup.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupData.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupData.h index 3244017019..a145ba7ece 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupData.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupInvalidateRegistry.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupInvalidateRegistry.h index b4e9edc30d..fcd8a88484 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupInvalidateRegistry.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupInvalidateRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupPool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupPool.h index 2f87c63dc8..2bf2267dcd 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupPool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ShaderResourceGroupPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h index e7cdc3be68..e036cbdde9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamBufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamingImagePool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamingImagePool.h index f91abdd455..da99e0bec8 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamingImagePool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/StreamingImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChain.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChain.h index 01f2a6eb40..ae4c0dce57 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChain.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChain.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChainFrameAttachment.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChainFrameAttachment.h index e9547b0612..1a7e581d9b 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChainFrameAttachment.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/SwapChainFrameAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/TagRegistry.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/TagRegistry.h index 62f5d1531d..06b66271ae 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/TagRegistry.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/TagRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ThreadLocalContext.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ThreadLocalContext.h index 2c5777cc8d..9c1d4b85bf 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ThreadLocalContext.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ThreadLocalContext.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/TransientAttachmentPool.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/TransientAttachmentPool.h index d635f6cae8..bca1f9f589 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/TransientAttachmentPool.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/TransientAttachmentPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/ValidationLayer.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/ValidationLayer.h index 1b1a30238f..a0ec991403 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/ValidationLayer.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/ValidationLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Include/Atom/RHI/interval_map.h b/Gems/Atom/RHI/Code/Include/Atom/RHI/interval_map.h index 6128180fb1..8f29203ed9 100644 --- a/Gems/Atom/RHI/Code/Include/Atom/RHI/interval_map.h +++ b/Gems/Atom/RHI/Code/Include/Atom/RHI/interval_map.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Platform/Android/AtomRHITests_traits_android.cmake b/Gems/Atom/RHI/Code/Platform/Android/AtomRHITests_traits_android.cmake index 2fec784677..b4574aef44 100644 --- a/Gems/Atom/RHI/Code/Platform/Android/AtomRHITests_traits_android.cmake +++ b/Gems/Atom/RHI/Code/Platform/Android/AtomRHITests_traits_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/Platform/AppleTV/AtomRHITests_traits_appletv.cmake b/Gems/Atom/RHI/Code/Platform/AppleTV/AtomRHITests_traits_appletv.cmake index 2fec784677..b4574aef44 100644 --- a/Gems/Atom/RHI/Code/Platform/AppleTV/AtomRHITests_traits_appletv.cmake +++ b/Gems/Atom/RHI/Code/Platform/AppleTV/AtomRHITests_traits_appletv.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/Platform/Linux/AtomRHITests_traits_linux.cmake b/Gems/Atom/RHI/Code/Platform/Linux/AtomRHITests_traits_linux.cmake index fba810177d..71f8932415 100644 --- a/Gems/Atom/RHI/Code/Platform/Linux/AtomRHITests_traits_linux.cmake +++ b/Gems/Atom/RHI/Code/Platform/Linux/AtomRHITests_traits_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/Platform/Mac/AtomRHITests_traits_mac.cmake b/Gems/Atom/RHI/Code/Platform/Mac/AtomRHITests_traits_mac.cmake index 62b155d29a..e9e9e34f44 100644 --- a/Gems/Atom/RHI/Code/Platform/Mac/AtomRHITests_traits_mac.cmake +++ b/Gems/Atom/RHI/Code/Platform/Mac/AtomRHITests_traits_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/Platform/Windows/AtomRHITests_traits_windows.cmake b/Gems/Atom/RHI/Code/Platform/Windows/AtomRHITests_traits_windows.cmake index 62b155d29a..e9e9e34f44 100644 --- a/Gems/Atom/RHI/Code/Platform/Windows/AtomRHITests_traits_windows.cmake +++ b/Gems/Atom/RHI/Code/Platform/Windows/AtomRHITests_traits_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/Platform/iOS/AtomRHITests_traits_ios.cmake b/Gems/Atom/RHI/Code/Platform/iOS/AtomRHITests_traits_ios.cmake index 2fec784677..b4574aef44 100644 --- a/Gems/Atom/RHI/Code/Platform/iOS/AtomRHITests_traits_ios.cmake +++ b/Gems/Atom/RHI/Code/Platform/iOS/AtomRHITests_traits_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/Source/Module.cpp b/Gems/Atom/RHI/Code/Source/Module.cpp index 1a7a4d21c2..96582191aa 100644 --- a/Gems/Atom/RHI/Code/Source/Module.cpp +++ b/Gems/Atom/RHI/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Edit/ShaderCompilerArguments.cpp b/Gems/Atom/RHI/Code/Source/RHI.Edit/ShaderCompilerArguments.cpp index 38f75b63a5..0801101178 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Edit/ShaderCompilerArguments.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Edit/ShaderCompilerArguments.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp b/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp index 8bda37b12f..c6f7485bd2 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Edit/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.cpp b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.cpp index 49acf2f346..70ff7cad7a 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.h b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.h index fe328c3550..f8199617f6 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.h +++ b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryManagerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.cpp b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.cpp index d057b2f318..c3baa6a96a 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.h b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.h index eab098d513..1c0faacd5b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.h +++ b/Gems/Atom/RHI/Code/Source/RHI.Private/FactoryRegistrationFinalizerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/AliasedHeapEnums.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/AliasedHeapEnums.cpp index 00e6ebc039..9e426aeb51 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/AliasedHeapEnums.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/AliasedHeapEnums.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentEnums.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentEnums.cpp index 3bccece123..18d473aa28 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentEnums.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentEnums.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentLoadStoreAction.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentLoadStoreAction.cpp index 5a25717736..90db8794f6 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentLoadStoreAction.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/AttachmentLoadStoreAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Base.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Base.cpp index 9cde1f22b3..fd7ba57b2a 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Base.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Base.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferDescriptor.cpp index 5c6f45bded..26018a7f85 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp index 8c8f257bd9..2eda20e69f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferScopeAttachmentDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferScopeAttachmentDescriptor.cpp index 6076a9c1ed..fa4266596e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferScopeAttachmentDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferScopeAttachmentDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferViewDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferViewDescriptor.cpp index 99ac4e5c91..cc20d42da6 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferViewDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/BufferViewDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ClearValue.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ClearValue.cpp index e5cb394590..f6a4d365ec 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ClearValue.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ClearValue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ConstantsLayout.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ConstantsLayout.cpp index 997137569e..3f9d9d9d63 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ConstantsLayout.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ConstantsLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/DeviceDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/DeviceDescriptor.cpp index 8449c34324..7e246c1bdd 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/DeviceDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/DeviceDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Format.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Format.cpp index 17dbba1933..0ba4518f55 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Format.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Format.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageDescriptor.cpp index 55ea882bcd..ff28ff39a0 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp index 9baf3c7d4b..b8a8cd25db 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageScopeAttachmentDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageScopeAttachmentDescriptor.cpp index 8132d0a4d1..4e1e8c9fe5 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageScopeAttachmentDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageScopeAttachmentDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageSubresource.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageSubresource.cpp index 8b6e96183d..c21f2f3d8d 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageSubresource.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageSubresource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageViewDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageViewDescriptor.cpp index 372c1fe1c8..913808bb06 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageViewDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ImageViewDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/IndirectBufferLayout.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/IndirectBufferLayout.cpp index 837f23ab7b..f7adfbee0f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/IndirectBufferLayout.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/IndirectBufferLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayout.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayout.cpp index 8c6745e8fd..f49ee9d083 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayout.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayoutBuilder.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayoutBuilder.cpp index 0ab6a179bb..3fecf6328c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayoutBuilder.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/InputStreamLayoutBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Interval.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Interval.cpp index f21904fdc8..45fae89f0a 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Interval.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Interval.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/MemoryUsage.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/MemoryUsage.cpp index 36923d0bfc..e52361761c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/MemoryUsage.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/MemoryUsage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/MultisampleState.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/MultisampleState.cpp index 6142d9e62b..92448e9cce 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/MultisampleState.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/MultisampleState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Origin.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Origin.cpp index 523dfa185b..ee49180793 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Origin.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Origin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDescriptor.cpp index 417cf06d5a..629f689c2e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.cpp index ce76d1d384..5866c2c151 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PhysicalDeviceDriverInfoSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp index 999c66e9ad..24f993ef29 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLibraryData.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLibraryData.cpp index aac99dbe7b..6d8755cb0e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLibraryData.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PipelineLibraryData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp index e98df4284c..3fd6e1fe81 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/QueryPoolDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/QueryPoolDescriptor.cpp index ee6bdc93b1..aafb7f0a3e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/QueryPoolDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/QueryPoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RHISystemDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RHISystemDescriptor.cpp index be159b8bf5..365ef7e53c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RHISystemDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RHISystemDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp index bf3d7e0f9d..0ebd22135b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayout.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayout.cpp index 35125f32f7..3dbcb62268 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayout.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayoutBuilder.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayoutBuilder.cpp index 532b458e93..40e828c794 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayoutBuilder.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderAttachmentLayoutBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderStates.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderStates.cpp index 23d2380962..3566645fc5 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderStates.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/RenderStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResolveScopeAttachmentDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResolveScopeAttachmentDescriptor.cpp index 30214359e8..68411ef1e5 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResolveScopeAttachmentDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResolveScopeAttachmentDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResourcePoolDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResourcePoolDescriptor.cpp index 5e27042a34..4d20571a4d 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResourcePoolDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ResourcePoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/SamplerState.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/SamplerState.cpp index 87d5030b50..c422fb4eab 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/SamplerState.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/SamplerState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Scissor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Scissor.cpp index f033900ed2..fffd48bb30 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Scissor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Scissor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ScopeAttachmentDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ScopeAttachmentDescriptor.cpp index 512acb5ab1..570d6afaf3 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ScopeAttachmentDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ScopeAttachmentDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderDataMappings.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderDataMappings.cpp index aa0b21b60e..09496bce20 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderDataMappings.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderDataMappings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderInputNameIndex.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderInputNameIndex.cpp index 2fb68d51e0..fffb28f7dd 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderInputNameIndex.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderInputNameIndex.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayout.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayout.cpp index e79832e9ce..49c8bfc175 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayout.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.cpp index 131c1d4dad..bd18bca4af 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupLayoutDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupPoolDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupPoolDescriptor.cpp index c6e4ef7d9b..c29f42436c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupPoolDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderResourceGroupPoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderSemantic.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderSemantic.cpp index b82270ba53..52816632f3 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderSemantic.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderSemantic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderStageFunction.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderStageFunction.cpp index 7444db915f..8e34550078 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderStageFunction.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/ShaderStageFunction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Size.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Size.cpp index 0bca391834..54189ec233 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Size.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Size.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/StreamingImagePoolDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/StreamingImagePoolDescriptor.cpp index f1eb22327b..8678d08e7b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/StreamingImagePoolDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/StreamingImagePoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/SwapChainDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/SwapChainDescriptor.cpp index c42cddc453..dc8fbdb154 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/SwapChainDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/SwapChainDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientBufferDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientBufferDescriptor.cpp index df8f783e28..65bdfc1619 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientBufferDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientBufferDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientImageDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientImageDescriptor.cpp index c74ea53eef..3ee1a49abd 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientImageDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/TransientImageDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedAttachmentDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedAttachmentDescriptor.cpp index f0c4e23ee2..4d373711ea 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedAttachmentDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedAttachmentDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedScopeAttachmentDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedScopeAttachmentDescriptor.cpp index 20611f4ffe..e9a37b4332 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedScopeAttachmentDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/UnifiedScopeAttachmentDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Viewport.cpp b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Viewport.cpp index a857bca565..3419dc3f92 100644 --- a/Gems/Atom/RHI/Code/Source/RHI.Reflect/Viewport.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI.Reflect/Viewport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/Code/Source/RHI/AliasedHeap.cpp index fcc11c9a4c..ff73988cd7 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/AliasedHeap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/AliasingBarrierTracker.cpp b/Gems/Atom/RHI/Code/Source/RHI/AliasingBarrierTracker.cpp index a48b55ba0e..21ec6892f2 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/AliasingBarrierTracker.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/AliasingBarrierTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Allocator.cpp b/Gems/Atom/RHI/Code/Source/RHI/Allocator.cpp index 599c78c079..7ab0d2d602 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Allocator.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Allocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp b/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp index 1a24422b36..7771ec9a3f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/AsyncWorkQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Code/Source/RHI/Buffer.cpp index 7d201808c5..a264c23917 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/BufferFrameAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/BufferFrameAttachment.cpp index dd7283375d..f0f68f659b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/BufferFrameAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/BufferFrameAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp index e47ec9c1d5..ceea0307e4 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/BufferPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp b/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp index 4a15bc3976..44f60fba69 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/BufferPoolBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/BufferScopeAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/BufferScopeAttachment.cpp index 7250fc944f..beba702d47 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/BufferScopeAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/BufferScopeAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Code/Source/RHI/BufferView.cpp index 774e5efd0c..166c82b615 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/BufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/Code/Source/RHI/CommandList.cpp index d74f257711..32cf3f61f0 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/CommandList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/CommandListValidator.cpp b/Gems/Atom/RHI/Code/Source/RHI/CommandListValidator.cpp index 406ca5325b..cbe5e81c51 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/CommandListValidator.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/CommandListValidator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp index da21370ccf..0b6d5bcfb4 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/CommandQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ConstantsData.cpp b/Gems/Atom/RHI/Code/Source/RHI/ConstantsData.cpp index ef23fc3c73..e00896d44e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ConstantsData.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ConstantsData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp b/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp index d494d6735a..a69ad3f3af 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/CpuProfilerImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Code/Source/RHI/Device.cpp index 2a2bbac41e..9893bd2443 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Device.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/DeviceObject.cpp b/Gems/Atom/RHI/Code/Source/RHI/DeviceObject.cpp index c52799663d..81098d4a0c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/DeviceObject.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/DeviceObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/DrawList.cpp b/Gems/Atom/RHI/Code/Source/RHI/DrawList.cpp index 495d3e355e..26d516e6fb 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/DrawList.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/DrawList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/DrawListContext.cpp b/Gems/Atom/RHI/Code/Source/RHI/DrawListContext.cpp index e8408e650c..0898a4e35d 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/DrawListContext.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/DrawListContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/DrawPacket.cpp b/Gems/Atom/RHI/Code/Source/RHI/DrawPacket.cpp index b471a33db9..a04e6633ec 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/DrawPacket.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/DrawPacket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp b/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp index babf1f3351..855b567ee2 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/DrawPacketBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Factory.cpp b/Gems/Atom/RHI/Code/Source/RHI/Factory.cpp index cb3e79bc4b..b26a8caf5f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Factory.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Factory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp index faf12345f7..4beac51457 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Fence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameAttachment.cpp index 19d0a425f5..21dc74d176 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraph.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraph.cpp index 82675d6469..133035aca7 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraph.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphAttachmentDatabase.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphAttachmentDatabase.cpp index 722462c8ae..f995197b2c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphAttachmentDatabase.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphAttachmentDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompileContext.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompileContext.cpp index 2eb15dfc50..64d3f40669 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompileContext.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompileContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompiler.cpp index 3b391721ee..e017a3c57f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphCompiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteContext.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteContext.cpp index 806f089930..64d20d24a6 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteContext.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp index bdd3bd2397..f8bebb3248 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuter.cpp index 5c7bff7dfe..c51287cfc2 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphExecuter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphLogger.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphLogger.cpp index 062179f0fe..f372480df8 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameGraphLogger.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameGraphLogger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp b/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp index 633cfa3e29..72cc167b32 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FrameScheduler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/FreeListAllocator.cpp b/Gems/Atom/RHI/Code/Source/RHI/FreeListAllocator.cpp index 1c4d565845..f092417712 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/FreeListAllocator.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/FreeListAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/Code/Source/RHI/Image.cpp index d303cf2cbd..d185659a7f 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ImageFrameAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/ImageFrameAttachment.cpp index 3d7fe53e75..f524626466 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ImageFrameAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ImageFrameAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/Code/Source/RHI/ImagePool.cpp index 6e2d5560c2..92ac8d7fec 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ImagePoolBase.cpp b/Gems/Atom/RHI/Code/Source/RHI/ImagePoolBase.cpp index 58eb24864c..62f00bf9d2 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ImagePoolBase.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ImagePoolBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ImageScopeAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/ImageScopeAttachment.cpp index b0e9c59db5..b780d01405 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ImageScopeAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ImageScopeAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Code/Source/RHI/ImageView.cpp index 001a41b106..f62b9ae296 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ImageView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/IndexBufferView.cpp b/Gems/Atom/RHI/Code/Source/RHI/IndexBufferView.cpp index b55ebc9f2c..a3bee1b2cc 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/IndexBufferView.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/IndexBufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferSignature.cpp b/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferSignature.cpp index 9658bd6cae..2e333570e3 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferSignature.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferSignature.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferView.cpp b/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferView.cpp index c7638baf78..5416ffda06 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferView.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferWriter.cpp b/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferWriter.cpp index bd8a69a4d7..2674ee5e4c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferWriter.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/IndirectBufferWriter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/LinearAllocator.cpp b/Gems/Atom/RHI/Code/Source/RHI/LinearAllocator.cpp index f45c79b2a8..72a20d5900 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/LinearAllocator.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/LinearAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/MemoryStatisticsBuilder.cpp b/Gems/Atom/RHI/Code/Source/RHI/MemoryStatisticsBuilder.cpp index 547fc084bb..90f2a6d4aa 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/MemoryStatisticsBuilder.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/MemoryStatisticsBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Object.cpp b/Gems/Atom/RHI/Code/Source/RHI/Object.cpp index b6cb2f8977..a398807f19 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Object.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Object.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/PhysicalDevice.cpp b/Gems/Atom/RHI/Code/Source/RHI/PhysicalDevice.cpp index 32d9d82efb..e10449c689 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/PhysicalDevice.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/PhysicalDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/Code/Source/RHI/PipelineLibrary.cpp index f653424c6e..8acfabe975 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/PipelineLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Code/Source/RHI/PipelineState.cpp index dddd9dba75..5a6070cd73 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/PipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp b/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp index 9b87463cbb..49a4291316 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/PipelineStateCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/PipelineStateDescriptor.cpp b/Gems/Atom/RHI/Code/Source/RHI/PipelineStateDescriptor.cpp index ae32f644d8..5719b3e06c 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/PipelineStateDescriptor.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/PipelineStateDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/PoolAllocator.cpp b/Gems/Atom/RHI/Code/Source/RHI/PoolAllocator.cpp index 4065982540..4c1d840463 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/PoolAllocator.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/PoolAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/Code/Source/RHI/Query.cpp index fbe7f11404..23b73cfcef 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Query.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Code/Source/RHI/QueryPool.cpp index dcd42698b6..3155f038d8 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/QueryPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/QueryPoolSubAllocator.cpp b/Gems/Atom/RHI/Code/Source/RHI/QueryPoolSubAllocator.cpp index 10295d5c6a..66464e75ce 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/QueryPoolSubAllocator.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/QueryPoolSubAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp b/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp index 457551529e..8d03d107ff 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/RHISystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/RHIUtils.cpp b/Gems/Atom/RHI/Code/Source/RHI/RHIUtils.cpp index 8063c6d112..1ce512ef97 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/RHIUtils.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/RHIUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/RayTracingAccelerationStructure.cpp b/Gems/Atom/RHI/Code/Source/RHI/RayTracingAccelerationStructure.cpp index a7f56a8538..717cddb8bc 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/RayTracingAccelerationStructure.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/RayTracingAccelerationStructure.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/RayTracingBufferPools.cpp b/Gems/Atom/RHI/Code/Source/RHI/RayTracingBufferPools.cpp index 3f618ca56f..9db074e874 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/RayTracingBufferPools.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/RayTracingBufferPools.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/RayTracingPipelineState.cpp b/Gems/Atom/RHI/Code/Source/RHI/RayTracingPipelineState.cpp index bc3e9825b3..5e5932456e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/RayTracingPipelineState.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/RayTracingPipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/RayTracingShaderTable.cpp b/Gems/Atom/RHI/Code/Source/RHI/RayTracingShaderTable.cpp index f848bbe4ab..0e8dd16da6 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/RayTracingShaderTable.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/RayTracingShaderTable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ResolveScopeAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/ResolveScopeAttachment.cpp index e762431e86..37b107cafa 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ResolveScopeAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ResolveScopeAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp b/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp index 6a9ed83b12..caa365a60b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Resource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ResourcePool.cpp b/Gems/Atom/RHI/Code/Source/RHI/ResourcePool.cpp index 3b68f6b131..93c1d61d2d 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ResourcePool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ResourcePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ResourcePoolDatabase.cpp b/Gems/Atom/RHI/Code/Source/RHI/ResourcePoolDatabase.cpp index bb5df43cf5..10aefdb96b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ResourcePoolDatabase.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ResourcePoolDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ResourceView.cpp b/Gems/Atom/RHI/Code/Source/RHI/ResourceView.cpp index a950468de3..e89811c928 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ResourceView.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ResourceView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Code/Source/RHI/Scope.cpp index 5835f6d660..c5197e85ce 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/Scope.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ScopeAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/ScopeAttachment.cpp index d7832eb3f9..6c532542de 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ScopeAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ScopeAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ScopeProducer.cpp b/Gems/Atom/RHI/Code/Source/RHI/ScopeProducer.cpp index ad034ca265..9cb045d951 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ScopeProducer.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ScopeProducer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroup.cpp index 2a48c02c20..c634230573 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupData.cpp b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupData.cpp index 62fe481f71..f2b57bf1e5 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupData.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupInvalidateRegistry.cpp b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupInvalidateRegistry.cpp index e8859713f4..1b9b19f7cc 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupInvalidateRegistry.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupInvalidateRegistry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupPool.cpp index 8da7c878e3..a771b5c7c0 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/StreamBufferView.cpp b/Gems/Atom/RHI/Code/Source/RHI/StreamBufferView.cpp index 216275c5f9..0cdeb21b70 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/StreamBufferView.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/StreamBufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Code/Source/RHI/StreamingImagePool.cpp index 26790c299b..8b204dc492 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/StreamingImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Code/Source/RHI/SwapChain.cpp index 9a810546b6..5d1d938fc8 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/SwapChain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/SwapChainFrameAttachment.cpp b/Gems/Atom/RHI/Code/Source/RHI/SwapChainFrameAttachment.cpp index 2fb0951028..19f5bb401e 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/SwapChainFrameAttachment.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/SwapChainFrameAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Code/Source/RHI/TransientAttachmentPool.cpp index 14f612e6e1..0fdc000b44 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/TransientAttachmentPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Source/RHI/ValidationLayer.cpp b/Gems/Atom/RHI/Code/Source/RHI/ValidationLayer.cpp index c59722fe01..e1416e231b 100644 --- a/Gems/Atom/RHI/Code/Source/RHI/ValidationLayer.cpp +++ b/Gems/Atom/RHI/Code/Source/RHI/ValidationLayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp b/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp index 039c598b0a..c2b25cf9d6 100644 --- a/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/AllocatorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Buffer.cpp b/Gems/Atom/RHI/Code/Tests/Buffer.cpp index 46f4335048..2870ff22ca 100644 --- a/Gems/Atom/RHI/Code/Tests/Buffer.cpp +++ b/Gems/Atom/RHI/Code/Tests/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Buffer.h b/Gems/Atom/RHI/Code/Tests/Buffer.h index 0356ce233d..a0b889335a 100644 --- a/Gems/Atom/RHI/Code/Tests/Buffer.h +++ b/Gems/Atom/RHI/Code/Tests/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/BufferPropertyTests.cpp b/Gems/Atom/RHI/Code/Tests/BufferPropertyTests.cpp index 15081b8a49..84c571d458 100644 --- a/Gems/Atom/RHI/Code/Tests/BufferPropertyTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/BufferPropertyTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/BufferTests.cpp b/Gems/Atom/RHI/Code/Tests/BufferTests.cpp index 824a4e187f..d9e7116d1d 100644 --- a/Gems/Atom/RHI/Code/Tests/BufferTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/BufferTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ContainerTests.cpp b/Gems/Atom/RHI/Code/Tests/ContainerTests.cpp index 0cf7929441..cccc64ad7d 100644 --- a/Gems/Atom/RHI/Code/Tests/ContainerTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/ContainerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Device.cpp b/Gems/Atom/RHI/Code/Tests/Device.cpp index f73e329ff1..2ae3e3e83d 100644 --- a/Gems/Atom/RHI/Code/Tests/Device.cpp +++ b/Gems/Atom/RHI/Code/Tests/Device.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Device.h b/Gems/Atom/RHI/Code/Tests/Device.h index aafecad858..d24bad8ba8 100644 --- a/Gems/Atom/RHI/Code/Tests/Device.h +++ b/Gems/Atom/RHI/Code/Tests/Device.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/DrawPacketTests.cpp b/Gems/Atom/RHI/Code/Tests/DrawPacketTests.cpp index cac1731c64..8190960197 100644 --- a/Gems/Atom/RHI/Code/Tests/DrawPacketTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/DrawPacketTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Factory.cpp b/Gems/Atom/RHI/Code/Tests/Factory.cpp index e3d411a735..46baf4856e 100644 --- a/Gems/Atom/RHI/Code/Tests/Factory.cpp +++ b/Gems/Atom/RHI/Code/Tests/Factory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Factory.h b/Gems/Atom/RHI/Code/Tests/Factory.h index 9380e024ca..527bf7c25b 100644 --- a/Gems/Atom/RHI/Code/Tests/Factory.h +++ b/Gems/Atom/RHI/Code/Tests/Factory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp b/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp index 9152b4b43d..11ece85453 100644 --- a/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp +++ b/Gems/Atom/RHI/Code/Tests/FrameGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/FrameGraph.h b/Gems/Atom/RHI/Code/Tests/FrameGraph.h index 8694e06926..aa9790f8e2 100644 --- a/Gems/Atom/RHI/Code/Tests/FrameGraph.h +++ b/Gems/Atom/RHI/Code/Tests/FrameGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp b/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp index de6dbebee7..097b0f6477 100644 --- a/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/FrameGraphTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp b/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp index 2cbbb560cb..269e4e73c6 100644 --- a/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/FrameSchedulerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/HashingTests.cpp b/Gems/Atom/RHI/Code/Tests/HashingTests.cpp index 2ac5621a50..034ba83f79 100644 --- a/Gems/Atom/RHI/Code/Tests/HashingTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/HashingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Image.cpp b/Gems/Atom/RHI/Code/Tests/Image.cpp index 26c8286908..4962e55ca0 100644 --- a/Gems/Atom/RHI/Code/Tests/Image.cpp +++ b/Gems/Atom/RHI/Code/Tests/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Image.h b/Gems/Atom/RHI/Code/Tests/Image.h index 23ed031609..0f31281a24 100644 --- a/Gems/Atom/RHI/Code/Tests/Image.h +++ b/Gems/Atom/RHI/Code/Tests/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ImagePropertyTests.cpp b/Gems/Atom/RHI/Code/Tests/ImagePropertyTests.cpp index ce499e8f0f..1c2533a675 100644 --- a/Gems/Atom/RHI/Code/Tests/ImagePropertyTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/ImagePropertyTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ImageTests.cpp b/Gems/Atom/RHI/Code/Tests/ImageTests.cpp index 193cdd5ada..789ffe3245 100644 --- a/Gems/Atom/RHI/Code/Tests/ImageTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/ImageTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/IndirectBuffer.cpp b/Gems/Atom/RHI/Code/Tests/IndirectBuffer.cpp index b9e9f3c477..e7cee1055b 100644 --- a/Gems/Atom/RHI/Code/Tests/IndirectBuffer.cpp +++ b/Gems/Atom/RHI/Code/Tests/IndirectBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/IndirectBuffer.h b/Gems/Atom/RHI/Code/Tests/IndirectBuffer.h index 97af947c84..a3e5adad54 100644 --- a/Gems/Atom/RHI/Code/Tests/IndirectBuffer.h +++ b/Gems/Atom/RHI/Code/Tests/IndirectBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp b/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp index 2d6df37519..b63e9dc5e3 100644 --- a/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/IndirectBufferTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/InputStreamLayoutBuilderTests.cpp b/Gems/Atom/RHI/Code/Tests/InputStreamLayoutBuilderTests.cpp index 42274926cb..01313efff2 100644 --- a/Gems/Atom/RHI/Code/Tests/InputStreamLayoutBuilderTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/InputStreamLayoutBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/IntervalMapTests.cpp b/Gems/Atom/RHI/Code/Tests/IntervalMapTests.cpp index a95918be8a..4ffdf515af 100644 --- a/Gems/Atom/RHI/Code/Tests/IntervalMapTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/IntervalMapTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/NameIdReflectionMapTests.cpp b/Gems/Atom/RHI/Code/Tests/NameIdReflectionMapTests.cpp index c3e1713740..f69d7f3085 100644 --- a/Gems/Atom/RHI/Code/Tests/NameIdReflectionMapTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/NameIdReflectionMapTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/PipelineState.cpp b/Gems/Atom/RHI/Code/Tests/PipelineState.cpp index 054cfdf79c..a566099ca0 100644 --- a/Gems/Atom/RHI/Code/Tests/PipelineState.cpp +++ b/Gems/Atom/RHI/Code/Tests/PipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/PipelineState.h b/Gems/Atom/RHI/Code/Tests/PipelineState.h index 559bd45336..bdb3269120 100644 --- a/Gems/Atom/RHI/Code/Tests/PipelineState.h +++ b/Gems/Atom/RHI/Code/Tests/PipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp b/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp index 82fcf3ba15..712efca658 100644 --- a/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/PipelineStateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Query.cpp b/Gems/Atom/RHI/Code/Tests/Query.cpp index f9751ee9a1..e6b3619544 100644 --- a/Gems/Atom/RHI/Code/Tests/Query.cpp +++ b/Gems/Atom/RHI/Code/Tests/Query.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Query.h b/Gems/Atom/RHI/Code/Tests/Query.h index 14140fd426..0e82c982ef 100644 --- a/Gems/Atom/RHI/Code/Tests/Query.h +++ b/Gems/Atom/RHI/Code/Tests/Query.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/QueryTests.cpp b/Gems/Atom/RHI/Code/Tests/QueryTests.cpp index afdfdffc38..1b01750468 100644 --- a/Gems/Atom/RHI/Code/Tests/QueryTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/QueryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/RHITestFixture.h b/Gems/Atom/RHI/Code/Tests/RHITestFixture.h index 2b082cfe44..cab0d16f5d 100644 --- a/Gems/Atom/RHI/Code/Tests/RHITestFixture.h +++ b/Gems/Atom/RHI/Code/Tests/RHITestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/RenderAttachmentLayoutBuilderTests.cpp b/Gems/Atom/RHI/Code/Tests/RenderAttachmentLayoutBuilderTests.cpp index 9dd3e23530..35a75bf158 100644 --- a/Gems/Atom/RHI/Code/Tests/RenderAttachmentLayoutBuilderTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/RenderAttachmentLayoutBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Scope.cpp b/Gems/Atom/RHI/Code/Tests/Scope.cpp index 7e382c9c94..e438f29292 100644 --- a/Gems/Atom/RHI/Code/Tests/Scope.cpp +++ b/Gems/Atom/RHI/Code/Tests/Scope.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/Scope.h b/Gems/Atom/RHI/Code/Tests/Scope.h index d17b114e90..7931c2e435 100644 --- a/Gems/Atom/RHI/Code/Tests/Scope.h +++ b/Gems/Atom/RHI/Code/Tests/Scope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.cpp index f8ad2bd666..2e405727c6 100644 --- a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.h b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.h index 142085c0a3..86600bebb2 100644 --- a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.h +++ b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp index fd1a5c0f47..0f9045dedc 100644 --- a/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/ShaderResourceGroupTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ThreadTester.cpp b/Gems/Atom/RHI/Code/Tests/ThreadTester.cpp index dd36a4917b..67d2b4562c 100644 --- a/Gems/Atom/RHI/Code/Tests/ThreadTester.cpp +++ b/Gems/Atom/RHI/Code/Tests/ThreadTester.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/ThreadTester.h b/Gems/Atom/RHI/Code/Tests/ThreadTester.h index ff008e168c..4d6541198e 100644 --- a/Gems/Atom/RHI/Code/Tests/ThreadTester.h +++ b/Gems/Atom/RHI/Code/Tests/ThreadTester.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.cpp index 098b418809..3f3a3f7c1f 100644 --- a/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.h b/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.h index 12ee08e4c8..723137573f 100644 --- a/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.h +++ b/Gems/Atom/RHI/Code/Tests/TransientAttachmentPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/Tests/UtilsTests.cpp b/Gems/Atom/RHI/Code/Tests/UtilsTests.cpp index 26ec3314ca..2d034ad239 100644 --- a/Gems/Atom/RHI/Code/Tests/UtilsTests.cpp +++ b/Gems/Atom/RHI/Code/Tests/UtilsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Code/atom_rhi_edit_files.cmake b/Gems/Atom/RHI/Code/atom_rhi_edit_files.cmake index 34f84a04c0..cda2b4bdc4 100644 --- a/Gems/Atom/RHI/Code/atom_rhi_edit_files.cmake +++ b/Gems/Atom/RHI/Code/atom_rhi_edit_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/atom_rhi_private_files.cmake b/Gems/Atom/RHI/Code/atom_rhi_private_files.cmake index 2bc60a54e8..f3535c58d3 100644 --- a/Gems/Atom/RHI/Code/atom_rhi_private_files.cmake +++ b/Gems/Atom/RHI/Code/atom_rhi_private_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/atom_rhi_private_shared_files.cmake b/Gems/Atom/RHI/Code/atom_rhi_private_shared_files.cmake index a93f67afd8..c686bffbe2 100644 --- a/Gems/Atom/RHI/Code/atom_rhi_private_shared_files.cmake +++ b/Gems/Atom/RHI/Code/atom_rhi_private_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/atom_rhi_public_files.cmake b/Gems/Atom/RHI/Code/atom_rhi_public_files.cmake index 887bbb8ee5..b489cbbbb4 100644 --- a/Gems/Atom/RHI/Code/atom_rhi_public_files.cmake +++ b/Gems/Atom/RHI/Code/atom_rhi_public_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake b/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake index 7e3e23fead..fb1d7dd1a6 100644 --- a/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake +++ b/Gems/Atom/RHI/Code/atom_rhi_reflect_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Code/atom_rhi_tests_files.cmake b/Gems/Atom/RHI/Code/atom_rhi_tests_files.cmake index c55b948200..5766431c13 100644 --- a/Gems/Atom/RHI/Code/atom_rhi_tests_files.cmake +++ b/Gems/Atom/RHI/Code/atom_rhi_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/3rdParty/Findaftermath.cmake b/Gems/Atom/RHI/DX12/3rdParty/Findaftermath.cmake index 3b985fb8cf..195a6798e0 100644 --- a/Gems/Atom/RHI/DX12/3rdParty/Findaftermath.cmake +++ b/Gems/Atom/RHI/DX12/3rdParty/Findaftermath.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/3rdParty/Findpix.cmake b/Gems/Atom/RHI/DX12/3rdParty/Findpix.cmake index 9cd3ffef43..263c81f856 100644 --- a/Gems/Atom/RHI/DX12/3rdParty/Findpix.cmake +++ b/Gems/Atom/RHI/DX12/3rdParty/Findpix.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/aftermath_windows.cmake b/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/aftermath_windows.cmake index 0f6b12e0db..0bec630dcc 100644 --- a/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/aftermath_windows.cmake +++ b/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/aftermath_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/pix_windows.cmake b/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/pix_windows.cmake index 68c5ab716a..e3e0070caf 100644 --- a/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/pix_windows.cmake +++ b/Gems/Atom/RHI/DX12/3rdParty/Platform/Windows/pix_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/CMakeLists.txt b/Gems/Atom/RHI/DX12/CMakeLists.txt index 17a38640d2..b26ec54418 100644 --- a/Gems/Atom/RHI/DX12/CMakeLists.txt +++ b/Gems/Atom/RHI/DX12/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/CMakeLists.txt b/Gems/Atom/RHI/DX12/Code/CMakeLists.txt index a47c77b741..cb3c942287 100644 --- a/Gems/Atom/RHI/DX12/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/DX12/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/Base.h b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/Base.h index f3c63ad655..611045d075 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/Base.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/BufferPoolDescriptor.h b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/BufferPoolDescriptor.h index e536d5bd94..1fb01799a6 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/BufferPoolDescriptor.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/BufferPoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PipelineLayoutDescriptor.h b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PipelineLayoutDescriptor.h index 54252b8e68..d7a8c6d224 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PipelineLayoutDescriptor.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PipelineLayoutDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h index 3ac9a515bd..42a8f6b096 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/PlatformLimitsDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ReflectSystemComponent.h b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ReflectSystemComponent.h index 019154794b..e57b44ec37 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ReflectSystemComponent.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ReflectSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ShaderStageFunction.h b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ShaderStageFunction.h index 7faf3567e8..b80161c10e 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ShaderStageFunction.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Atom/RHI.Reflect/DX12/ShaderStageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/Android/platform_reflect_android_files.cmake b/Gems/Atom/RHI/DX12/Code/Include/Platform/Android/platform_reflect_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/Android/platform_reflect_android_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/Android/platform_reflect_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/Linux/platform_reflect_linux_files.cmake b/Gems/Atom/RHI/DX12/Code/Include/Platform/Linux/platform_reflect_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/Linux/platform_reflect_linux_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/Linux/platform_reflect_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/Atom/RHI.Reflect/DX12/Base_Platform.h b/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/Atom/RHI.Reflect/DX12/Base_Platform.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/Atom/RHI.Reflect/DX12/Base_Platform.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/Atom/RHI.Reflect/DX12/Base_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/platform_reflect_mac_files.cmake b/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/platform_reflect_mac_files.cmake index 4769c04512..0012c0ed70 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/platform_reflect_mac_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/Mac/platform_reflect_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Platform.h b/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Platform.h index faa2e0ddbc..476ac27b05 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Platform.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Windows.h b/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Windows.h index e9a5c7776d..c7411bfac9 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/Atom/RHI.Reflect/DX12/Base_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/platform_reflect_windows_files.cmake b/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/platform_reflect_windows_files.cmake index 76d52e68fe..fb81fef0a3 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/platform_reflect_windows_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/Windows/platform_reflect_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Include/Platform/iOS/platform_reflect_ios_files.cmake b/Gems/Atom/RHI/DX12/Code/Include/Platform/iOS/platform_reflect_ios_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/DX12/Code/Include/Platform/iOS/platform_reflect_ios_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Include/Platform/iOS/platform_reflect_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Android/PAL_android.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Android/PAL_android.cmake index cd8861c104..34efee6cad 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp index f1bf1dad4a..b5f2865135 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp index 75a6e54270..8fb2d1f1c8 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/PAL_linux.cmake index cd8861c104..34efee6cad 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/platform_builders_linux_files.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/platform_builders_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/platform_builders_linux_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Linux/platform_builders_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/PAL_mac.cmake index cd8861c104..34efee6cad 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp index b9cdd6f50f..28609898bf 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/platform_builders_mac_files.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/platform_builders_mac_files.cmake index 59d53b877d..24bdfc4c43 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/platform_builders_mac_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Mac/platform_builders_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/PAL_windows.cmake index 445a023d61..d9c002db66 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Platform.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Platform.h index 4deeda4c44..cd809494f7 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Platform.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp index 5bf2de1dc4..0748b1707e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.h index ceda412f3b..3ef4a14d67 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Conversions_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Platform.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Platform.h index 1be553d534..2841be5027 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Platform.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp index 914cc8459c..9372b32ea1 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h index 6240fb334f..fd88b08f04 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/DX12_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Platform.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Platform.h index 796140466b..a125749827 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Platform.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp index fe5dd5edd4..07ba90336f 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.h index fdb58b2183..e161a1afff 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/Device_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp index 19e5958d0d..5d80372c10 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.h index bdd0c8cbcf..509f9849a3 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathGpuCrashTracker_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathHelpers.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathHelpers.h index bf1a96877e..3243ad0a73 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathHelpers.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermathHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp index 08522c32e4..5b9341d972 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/NsightAftermath_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Platform.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Platform.h index 7dab818cb5..8891f4a59a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Platform.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp index 6d6ce42f71..111920594e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h index 3d6201090f..c0916a84ee 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/PhysicalDevice_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp index c05fddf457..10678bafaa 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SwapChain_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp index d50d700686..6e8657c1ca 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/SystemComponent_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp index db78f3aff0..ce5a25540f 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h index b355a23970..fc3773c4de 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/RHI/WindowsVersionQuery.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_builders_windows_files.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_builders_windows_files.cmake index 96a72e2072..730e96f6aa 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_builders_windows_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_builders_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows.cmake index 67cd61b5d4..219abbee24 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows_files.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows_files.cmake index 2a9be65d29..afa3c50e98 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/Windows/platform_private_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/Atom/RHI/DX12/Code/Source/Platform/iOS/PAL_ios.cmake index cd8861c104..34efee6cad 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/Atom/RHI/DX12/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/BuilderModule.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/BuilderModule.cpp index e4e3946f63..d24a91c71d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/BuilderModule.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/BuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp index cd56bf87e8..a34e98191e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.h b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.h index a0a32f16be..838db39ad5 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp index 79226d6763..3b41cca599 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h index 703ce2d61a..98dd8a60f3 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp index 4709edf245..1eede4f064 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp index 2618629539..5877b18a0c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp index 5a0e437643..c14af2c0d7 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp index c700b44295..6cd6f05737 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ShaderStageFunction.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ShaderStageFunction.cpp index 9c522f0396..2f8ff83bef 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ShaderStageFunction.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI.Reflect/ShaderStageFunction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp index 1df24e637b..f77bf7a2d0 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h index 650a3cb5b0..401d0675e9 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasedHeap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp index 908513663f..1e63f15224 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.h index 7c50defd57..e4e9200130 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AliasingBarrierTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp index d35f94a873..4fd8e06c32 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.h index 8d781d7a34..2aae14517c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AsyncUploadQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Atom_RHI_DX12_precompiled.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Atom_RHI_DX12_precompiled.h index a7ffe9aa2a..a032f59091 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Atom_RHI_DX12_precompiled.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Atom_RHI_DX12_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp index 4d3ced6ac4..27b1a7e666 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/AttachmentImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp index 3d91b936ce..e1d48d91a6 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.h index 3376457bef..71813d7add 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp index 839432bd1b..6ee2226867 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.h index ed09c10f8f..5580eab453 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp index 64307e67dc..6365b77186 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.h index e92317a1b7..0a63148906 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferMemoryView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp index 100fec3b48..bd13573c28 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.h index a005626bf7..a20ec46784 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp index 57f597a02d..eb63acd23a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.h index 6bc0350ca3..4fef085319 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/BufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp index de80d68269..83ef4176b2 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h index e944471266..715bb05d31 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp index b617dcaf88..60c4707576 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h index 97158e311c..18ba901c5a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp index 007ebad941..7c55207a24 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h index b9980e1a58..c236975185 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandListPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp index f55a461027..c63a04cf17 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.h index 6c8bc80e7c..415e12fff6 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp index c2384c7fab..d35e355807 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.h index 8dc8cd6a57..ae59107062 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/CommandQueueContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp index dc1b217ea4..2e54844fc8 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h index b833f3c953..820c516f4e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Conversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp index a2910efacf..3debd58d2a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.h index d437a4f74d..83ccb6c57d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DX12.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp index 2767eb1a49..5f16e2cc16 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.h index daec7dfb68..cdae5c6174 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Descriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp index 5063de4bed..fc86f38d26 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.h index bf4316f2ba..3cca2ecaa3 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp index 6c459432e9..c5234fd515 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.h index d3eda1f34d..86f15c6fad 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/DescriptorPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp index fddb186b45..576060a500 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.h index 205e428703..6091934e8e 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Device.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp index fd5ad9d6d8..21a9add45b 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h index 1920f3acf6..751a44b695 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Fence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp index cf526ccbb3..1917d8d199 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h index f4c941c16a..b953a0c83a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphCompiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp index a8688de9bf..b00bf4844f 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.h index 781f6a64f7..7b64fa587a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp index 7d93121290..88bc162114 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.h index b17fa7f23c..e2e657bb31 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp index dd849bbe33..995935ef7a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.h index bdf063c9e1..9e5a95826d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuteGroupMerged.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp index 6e30e7226d..51fa75afb8 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.h index 7657ce940d..a6b9546d2c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/FrameGraphExecuter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp index ddf5253cc9..48b41a3f99 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.h index 71afe9906e..32652c00a3 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp index 5895c62576..1ded607837 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.h index 4132e5c489..0963de3b49 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp index c8a1bcc80a..e57191a8a2 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.h index 161b96fcc8..63ca56f5c5 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ImageView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp index 70fabb3134..37bfbc9a54 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h index 29831130ab..b14ad9f70a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferSignature.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp index c347320f62..aa76435f1a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.h index db613e40a7..31e1acd4d2 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/IndirectBufferWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Memory.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Memory.h index a543e8b728..1e86555a4c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Memory.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Memory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp index 86173e6dd9..2147afc695 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.h index db86318689..82552fe9d4 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryPageAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemorySubAllocator.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemorySubAllocator.h index 72f94c497b..0b8fe67d34 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemorySubAllocator.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemorySubAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp index 8957ecd0c0..ab2bf1d802 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.h index 73ff06ef77..a8b6903865 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/MemoryView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp index abdb5faa31..819d22cdaa 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/NsightAftermath.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/NsightAftermath.h index 5337f5bf3f..0f7fed3a63 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/NsightAftermath.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/NsightAftermath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PhysicalDevice.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/PhysicalDevice.h index 7730de60f0..941e2900f5 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PhysicalDevice.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PhysicalDevice.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp index b73b28acf0..ebfe5ba4c9 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h index 825a6c6b9b..00a31411eb 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp index 3f9209f604..9fe5d2cf55 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.h index ed20825544..310bacd352 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp index 76cc0a91fe..9cb74af42a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.h index 0a89a54a78..cc30308647 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/PipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp index 95d09f13da..2ea51ada27 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.h index fdda094d6c..466e106ecd 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Query.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp index 073d4c828e..14ddbcddb5 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h index 246ae31ef3..25a7d71205 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp index f7076aa81c..7a9e232abb 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.h index 7a64b1785f..44c25c7f98 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/QueryPoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp index e891fbe807..e104cacf48 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h index c9d3a84898..a6e429569b 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBufferPools.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBufferPools.h index 98ca866f10..4d99651bd4 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBufferPools.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingBufferPools.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp index ec959c6b2a..40862b9992 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h index 33bd376a9d..def2b9e8e6 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingPipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp index 0f3a63eaf6..83e7b70d40 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.h index f3c7c9c86f..9c7dbe2c83 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingShaderTable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp index fbe9c9d8e9..99fc1e125a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h index c106dcfe88..60db5e001d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/RayTracingTlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ReleaseQueue.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/ReleaseQueue.h index eebd987544..6556012d9c 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ReleaseQueue.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ReleaseQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ResourcePoolResolver.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/ResourcePoolResolver.h index f420891251..0668f3a70a 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ResourcePoolResolver.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ResourcePoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp index a741e0b4f4..8fc42fd2be 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.h index 02a947abef..c8fa516704 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Sampler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp index f3c74901ef..3c1a5b2136 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.h index 557c475d62..85fea3ec19 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/Scope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp index e33db21675..a1f15cc497 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.h index cf70566409..01cfb03833 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp index 677c3ea0e6..71bc45b709 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.h index 4cec5f0e95..647f8f5acc 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/ShaderResourceGroupPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp index 26a76fc3a9..2eb13c6ada 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.h index f19cd6077b..68c69a1375 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/StagingMemoryAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp index a7fbdf3aeb..95746b3475 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.h index 9904c3eec5..7c1d25d2ba 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/StreamingImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp index 384842165d..be8fcf3b38 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h index 1530ef53d1..7fdebaf1cb 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/SwapChain.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp index 887e0a3cfc..30a63fd266 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.h index 6b5969bed8..b6af10c019 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp index 6ad529430a..48a90e9bfa 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.h index de5a1c4a1b..efa5475175 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/TransientAttachmentPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/Source/RHI/resource.h b/Gems/Atom/RHI/DX12/Code/Source/RHI/resource.h index b76ed5be95..6ea16f020d 100644 --- a/Gems/Atom/RHI/DX12/Code/Source/RHI/resource.h +++ b/Gems/Atom/RHI/DX12/Code/Source/RHI/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_builders_common_shared_files.cmake b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_builders_common_shared_files.cmake index 4e095404fc..7f092a62f8 100644 --- a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_builders_common_shared_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_builders_common_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake index 8ff9a5eb16..7f739e20a3 100644 --- a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_shared_files.cmake b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_shared_files.cmake index 3702f78cac..77fdf502a1 100644 --- a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_shared_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_private_common_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_reflect_common_files.cmake b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_reflect_common_files.cmake index 23c8668062..9f2ca6d155 100644 --- a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_reflect_common_files.cmake +++ b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_reflect_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_stub_module.cmake b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_stub_module.cmake index 2cfed2e165..bae9126874 100644 --- a/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_stub_module.cmake +++ b/Gems/Atom/RHI/DX12/Code/atom_rhi_dx12_stub_module.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/DX12/Code/empty.cmake b/Gems/Atom/RHI/DX12/Code/empty.cmake index 59a98051c1..384905feb1 100644 --- a/Gems/Atom/RHI/DX12/Code/empty.cmake +++ b/Gems/Atom/RHI/DX12/Code/empty.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/CMakeLists.txt b/Gems/Atom/RHI/Metal/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/RHI/Metal/CMakeLists.txt +++ b/Gems/Atom/RHI/Metal/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/CMakeLists.txt b/Gems/Atom/RHI/Metal/Code/CMakeLists.txt index ea47e3f5c8..2c6d659d3b 100644 --- a/Gems/Atom/RHI/Metal/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/Metal/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/Base.h b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/Base.h index 0d91dedc04..77f0689006 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/Base.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/BufferPoolDescriptor.h b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/BufferPoolDescriptor.h index 97aae17b2b..f19a4c9a2f 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/BufferPoolDescriptor.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/BufferPoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PipelineLayoutDescriptor.h b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PipelineLayoutDescriptor.h index dc972455e6..98fce8416f 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PipelineLayoutDescriptor.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PipelineLayoutDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PlatformLimitsDescriptor.h b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PlatformLimitsDescriptor.h index 3f54b7a319..cf54ecb7aa 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PlatformLimitsDescriptor.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/PlatformLimitsDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ReflectSystemComponent.h b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ReflectSystemComponent.h index 90b8aa4dbe..8bde5997d2 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ReflectSystemComponent.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ReflectSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ShaderStageFunction.h b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ShaderStageFunction.h index 77e55d1353..ac918d248a 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ShaderStageFunction.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Atom/RHI.Reflect/Metal/ShaderStageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_precompiled_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Android/Atom_RHI_Metal_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_precompiled_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Linux/Atom_RHI_Metal_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Mac.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Mac.h index c770f522cd..fc3c2d4979 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Mac.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Platform.h index cf85f56358..19ee132f88 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/Atom_RHI_Metal_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake index d448fdf4fa..74c99e16dd 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_builders_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake index d448fdf4fa..74c99e16dd 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Mac/platform_private_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_precompiled_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/Windows/Atom_RHI_Metal_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_Platform.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_Platform.h index cc031f5af4..9ad5e44c4a 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_iOS.h b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_iOS.h index f976e348f0..4a793f9d0c 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_iOS.h +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/Atom_RHI_Metal_precompiled_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake index ff7a24ac48..aef2cc13d5 100644 --- a/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Include/Platform/iOS/platform_private_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Atom_RHI_Metal_precompiled.h b/Gems/Atom/RHI/Metal/Code/Source/Atom_RHI_Metal_precompiled.h index c926730b77..146b14f9b6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Atom_RHI_Metal_precompiled.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Atom_RHI_Metal_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Android.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Android.h index f3ab35b587..d9f286d907 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Android.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Platform.h index f28180de05..25f94a04ae 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/Metal_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/PAL2_android.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/PAL2_android.cmake index 526075d8bb..4cece234b4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/PAL2_android.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Android/PAL2_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp index b76ed5be95..6ea16f020d 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp index 56474a8a35..44940989e7 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Linux.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Linux.h index f3ab35b587..d9f286d907 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Linux.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Platform.h index 06588e12c2..6dd6e8b980 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/Metal_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/PAL2_linux.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/PAL2_linux.cmake index 526075d8bb..4cece234b4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/PAL2_linux.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/PAL2_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/platform_builders_linux_files.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/platform_builders_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/platform_builders_linux_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Linux/platform_builders_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Mac.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Mac.h index 58cc9e176d..f8546a06f2 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Mac.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Platform.h index 88ca22ad80..249ec8b909 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/Metal_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/PAL2_mac.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/PAL2_mac.cmake index 5379a20b11..f19dcea221 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/PAL2_mac.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/PAL2_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp index c0b8a6d4ae..d295dbdd92 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.h index da0f16170e..df4153e8e1 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Platform.h index c7834b9ef5..20cfb09dda 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Conversions_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.h index 390e08129c..7b3f22835f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.mm b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.mm index 2a31cb6508..18c2801405 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.mm +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Platform.h index f1a7cbe523..3ce0abcaf2 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/MetalView_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp index 99a3c427bb..de3bc23a11 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/RHI/Metal_RHI_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_builders_mac_files.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_builders_mac_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_builders_mac_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_builders_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_mac.cmake index 4929198f9b..9ce6275790 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_private_mac_files.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_private_mac_files.cmake index 39f281e84d..b348c72efc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_private_mac_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_private_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_shared_mac.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_shared_mac.cmake index 8d27cb327e..bf2c19e533 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_shared_mac.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Mac/platform_shared_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Platform.h index e7413f4938..43f07f6a4a 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Windows.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Windows.h index f3ab35b587..d9f286d907 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Windows.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/Metal_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/PAL2_windows.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/PAL2_windows.cmake index 526075d8bb..4cece234b4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/PAL2_windows.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/PAL2_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp index 08cff4b87c..90fd79f68b 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/platform_builders_windows_files.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/platform_builders_windows_files.cmake index 08e9c28c3d..161193a04f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/platform_builders_windows_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/Windows/platform_builders_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_Platform.h index 001f217658..3d9b0aeec6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_iOS.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_iOS.h index 09b7023ddb..d954e2502d 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_iOS.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/Metal_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/PAL2_ios.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/PAL2_ios.cmake index 5379a20b11..f19dcea221 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/PAL2_ios.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/PAL2_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_Platform.h index 2af3e5b578..af6a87c911 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp index 308467d87f..a5233da500 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.h index da0f16170e..df4153e8e1 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Conversions_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_Platform.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_Platform.h index 385238c9a8..262eb23482 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_Platform.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.h b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.h index 1816d8d0d9..c727b91791 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.h +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.mm b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.mm index 4b7eab7ca9..2be273c22e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.mm +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/MetalView_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp index e4e28c4ad5..b7c309fba2 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/RHI/Metal_RHI_iOS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_ios.cmake index 4929198f9b..9ce6275790 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_private_ios_files.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_private_ios_files.cmake index 461ea311d8..7ce3f4942e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_private_ios_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_private_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_shared_ios.cmake b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_shared_ios.cmake index 8d27cb327e..bf2c19e533 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_shared_ios.cmake +++ b/Gems/Atom/RHI/Metal/Code/Source/Platform/iOS/platform_shared_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/BuilderModule.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/BuilderModule.cpp index 5e9f8fc605..302b5f43da 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/BuilderModule.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/BuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp index a614ad332d..aacb8d213b 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.h b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.h index c8d16c67ce..935d2e6471 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp index 8f89e18671..e230447405 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h index dc079bc162..93520d5886 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp index 89b0dee47e..399f8e1d6b 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp index e4053d8f87..8358f4cb28 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp index 67b03932e8..f23dbd565d 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp index be5a7ca437..69106efc9f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ShaderStageFunction.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ShaderStageFunction.cpp index b0b726ca78..0f55b5802d 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ShaderStageFunction.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI.Reflect/ShaderStageFunction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp index ef990434a4..0e901107d2 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.h index 86fa773274..83d58e7e66 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasedHeap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp index 2bd6bc35ae..152d4195a5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.h index 76206a3b3b..8f3208fd14 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AliasingBarrierTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp index 9606727936..3db2092fcb 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.h index d5934ed278..76c9bee3f9 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ArgumentBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp index 21826c3f17..2641324486 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.h index c749f506ab..a6dcb72d51 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/AsyncUploadQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp index e634ae39bb..3b9c38a01b 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h index e31aa4b33d..d0895f3cfe 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp index 5cd8a361ef..be27964194 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.h index f7fba25e9b..beaab79a96 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp index 0c388923a1..fdde4eb4a8 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.h index 205342030a..c2f9201d39 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferMemoryView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp index b0b83596f6..498cf68015 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.h index 0ed761aea6..f7e62b9643 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp index ac1b146422..a9635701cc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.h index 5affab586a..58fb5102f3 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferPoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp index 61c390d1a3..7d9c9f567e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.h index 8132459bdb..db6f121c96 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/BufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp index 81729f5054..451f6b96a6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.h index 6f22271926..349c60b307 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp index ccd8dc85af..675a593bc8 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.h index f07c938eb1..70678aed01 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp index 6edb407852..f592a18358 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h index 69b7fafb33..313b2421b3 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandListPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp index 772f0319ab..d8e1e98a23 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.h index 01bd2a553f..254ec2b782 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp index df5c14a337..1656206b77 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.h index 1dd26de804..9d8c418d80 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueCommandBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp index 77f20484bd..2ab3124cc4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.h index c53cde8d5b..fc3b48057c 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/CommandQueueContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp index 4cbec6a62a..a48e5f5bbf 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.h index 8e6ece7dbb..b56cf97e0c 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Conversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp index 6797ccd141..5e23353b65 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.h index 7a2d62426c..f1e72ba8e1 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Device.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp index 058f36653b..ec290e5ad5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.h index 0d90e7cac5..6b38ef412d 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Fence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp index 3e905c713d..24b2eb688f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.h index 2de297213a..da6af4c5b8 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphCompiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp index 2d2bad328d..8f052b1f0c 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.h index 4492490cb0..9095466090 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp index b34d8d2c9b..270c01c562 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.h index af88f87589..cfd9bd78b8 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp index 38bd888622..4d2125ef3f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.h index 8215328c56..d1bb323c88 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuteGroupMerged.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp index cb31273e41..210e749509 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.h index 803d241d8c..586d2f40ed 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/FrameGraphExecuter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp index 5e6d3f78f0..2d0482256d 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.h index 748bc139d2..f5f6117cba 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp index 7b305d7949..dba6488a64 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.h index 790a5c736d..47c18bb3f5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp index 59b79f59d3..e4ce093ce6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.h index f040df5e4e..74ba008bab 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImagePoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp index 14d042a2d3..6e0ea961f0 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h index e3fe8909c7..2376cb5226 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Memory.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Memory.h index e21a015298..32abc0aa09 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Memory.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Memory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp index 3ab8d23b20..65004f4fea 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.h index 41f0da88d8..64b9be401f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryPageAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemorySubAllocator.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemorySubAllocator.h index 933dd08760..a0f2f15f41 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemorySubAllocator.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemorySubAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.cpp index 7b0c4f89ae..234b61dccf 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.h index 7c9e3da455..2ff08ea2d6 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MemoryView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp index 49dca75ffa..3478d033b4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.h index 725362728f..b0e36c0284 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Metal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalCopyShaders.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalCopyShaders.h index ea2a8fafe8..7bd4383d19 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalCopyShaders.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalCopyShaders.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h index 4ceb4b775e..9daa0bf0df 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.mm b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.mm index 680f4de239..e1e1bcec8e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.mm +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalView.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h index 01e9a19993..a6404e60bc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm index 602d8e070c..cb07113b00 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/MetalViewController.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp index 525b2a82ab..43b37599dd 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp index b08ca3b425..61316d25b8 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.h index 24b19e3e35..952046bdd9 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/NullDescriptorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.cpp index a6c0ad8ba4..8e2e66c4e7 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.h index 6bab7822a4..def167283f 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PhysicalDevice.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp index 7b2c8a7701..6002d96cb2 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.h index b2005672a4..8c1032eabe 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp index 787f7acb17..4bc81407e9 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.h index 9f195f09fa..98790088f9 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp index 4404546399..61068f66c9 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.h index a8a54751d2..51b0823d9c 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/PipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp index 949f3e02e5..9d0fc00c55 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.h index 19c7873bdd..a1d40154bd 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Query.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp index 53e697a1b4..c2ea8826bb 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.h index 4f39cdae22..28d00aff9a 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/QueryPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ReleaseQueue.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ReleaseQueue.h index b6e4db9c76..c9445217d2 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ReleaseQueue.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ReleaseQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ResourcePoolResolver.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ResourcePoolResolver.h index 682cd9986b..db4b61e51c 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ResourcePoolResolver.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ResourcePoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp index 691ecdc295..bbd99b0fe0 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.h index 792fdee201..4e6f5afd10 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Scope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp index e555b5f60b..20ac8c423e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.h index c57bd99268..934603d170 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp index ca3bdd974c..65409d3fe0 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.h index d58f0a24e3..7950df3eee 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ShaderResourceGroupPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp index fdaf78e5aa..9659bfa641 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.h index 797b397b99..f030e6fe61 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePool.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp index f915c724d4..6e34584144 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.h index 5b3d2d6e48..816215034e 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/StreamingImagePoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp index f8adc55125..31d23e5100 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.h index 1df8d18d8a..c86bd1f7a5 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/SwapChain.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp index 2939c4ab29..70dcddb651 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.h index 5fe1ca5b11..0a5ee921bc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp index b26eac76de..11e4c85956 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.h index 791bf26d74..8c03466591 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/TransientAttachmentPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.cpp index 34b2376680..3bb72860c4 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.h b/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.h index b8ce9ef503..9c98a2fcbf 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.h +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/Util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/Tests/AtomRHIMetalTests.cpp b/Gems/Atom/RHI/Metal/Code/Tests/AtomRHIMetalTests.cpp index 6187c7fdc7..acbaac9155 100644 --- a/Gems/Atom/RHI/Metal/Code/Tests/AtomRHIMetalTests.cpp +++ b/Gems/Atom/RHI/Metal/Code/Tests/AtomRHIMetalTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_common_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_common_files.cmake index 69aca9cf73..92804d9f97 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_common_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_shared_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_shared_files.cmake index 879b098c91..a3d41db133 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_shared_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_tests_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_tests_files.cmake index 04270b2afa..e7e2b1cfdb 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_tests_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_builders_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_common_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_common_files.cmake index 8540117ed5..b584d3d25f 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_common_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_files.cmake index 16c60fac16..c41044070b 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_shared_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_shared_files.cmake index 3702f78cac..77fdf502a1 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_shared_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_common_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_tests_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_tests_files.cmake index 04270b2afa..e7e2b1cfdb 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_tests_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_private_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_reflect_common_files.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_reflect_common_files.cmake index 3b7b5c521d..e9153b3e06 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_reflect_common_files.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_reflect_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_stub_module.cmake b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_stub_module.cmake index 2cfed2e165..bae9126874 100644 --- a/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_stub_module.cmake +++ b/Gems/Atom/RHI/Metal/Code/atom_rhi_metal_stub_module.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/CMakeLists.txt b/Gems/Atom/RHI/Null/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/RHI/Null/CMakeLists.txt +++ b/Gems/Atom/RHI/Null/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/CMakeLists.txt b/Gems/Atom/RHI/Null/Code/CMakeLists.txt index 2efe379310..93bb328dfc 100644 --- a/Gems/Atom/RHI/Null/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/Null/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/Base.h b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/Base.h index 7cc0521d41..4444932bc1 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/Base.h +++ b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/PipelineLayoutDescriptor.h b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/PipelineLayoutDescriptor.h index fb4498ba34..40d3d6876a 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/PipelineLayoutDescriptor.h +++ b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/PipelineLayoutDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ReflectSystemComponent.h b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ReflectSystemComponent.h index 410998a45d..e2cd5675f8 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ReflectSystemComponent.h +++ b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ReflectSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ShaderStageFunction.h b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ShaderStageFunction.h index c9eb1056c2..2e560ba2e7 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ShaderStageFunction.h +++ b/Gems/Atom/RHI/Null/Code/Include/Atom/RHI.Reflect/Null/ShaderStageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_precompiled_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Include/Platform/Android/Atom_RHI_Null_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_precompiled_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Include/Platform/Linux/Atom_RHI_Null_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_precompiled_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Include/Platform/Mac/Atom_RHI_Null_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_precompiled_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Include/Platform/Windows/Atom_RHI_Null_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_precompiled_Platform.h b/Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_precompiled_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Include/Platform/iOS/Atom_RHI_Null_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null_precompiled.h b/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null_precompiled.h index 88ad899e47..62a44758c2 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null_precompiled.h +++ b/Gems/Atom/RHI/Null/Code/Source/Atom_RHI_Null_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Android.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Android.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Android.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Platform.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Platform.h index 11ab6a445f..432f5f8d65 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Android/Null_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp b/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp index b76ed5be95..6ea16f020d 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp b/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp index 91cd1569a4..30bb1b60ac 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Linux.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Linux.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Linux.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Platform.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Platform.h index 7927b42b7f..5c9e23d7e4 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Linux/Null_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Mac.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Mac.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Mac.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Platform.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Platform.h index 8baff80745..1136b2bf3b 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Mac/Null_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Platform.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Platform.h index f2d63b6b1a..9542d19bc3 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Windows.h b/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Windows.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Windows.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/Windows/Null_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_Platform.h b/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_Platform.h index 0d2a812f8a..07cddddd71 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_Platform.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_iOS.h b/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_iOS.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_iOS.h +++ b/Gems/Atom/RHI/Null/Code/Source/Platform/iOS/Null_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/BuilderModule.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/BuilderModule.cpp index d09124b17c..5c7cf319d1 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/BuilderModule.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/BuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp index 486d99380d..e5277fa522 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.h b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.h index 4fe599db82..53f9df158e 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp index 1fb0b6cac6..4b1fb2c736 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h index 243ed0eb82..2779175efb 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp index 1a398057a9..069aeacddc 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/PipelineLayoutDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp index 3cab05c173..752130fd96 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ShaderStageFunction.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ShaderStageFunction.cpp index 152e9291f0..1cffcd98ac 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ShaderStageFunction.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI.Reflect/ShaderStageFunction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp index 994d8c6839..b834f0214a 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.h b/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.h index 4b8c9d3dc0..5d068f8b05 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/AliasedHeap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp index 67501eaa8f..a1fc7f91c1 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.h b/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.h index 10030d2c52..c1ece2ff7b 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp index 9d68f16e39..f9d3444286 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h index a7d43a244b..9b891dcd15 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp index 1d7c4de9cb..bc2874c9e3 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.h b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.h index 650c4f03f8..e8c2d734bf 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/BufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp index fef50e32c0..3b1aa99d90 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.h b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.h index 23199d5d4e..93c88583a8 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp index 4856a45d51..0a3876c1ad 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.h b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.h index 82a9ea47c1..dfb875efae 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/CommandQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp index cb3b8aa4c5..561b352916 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Device.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Device.h b/Gems/Atom/RHI/Null/Code/Source/RHI/Device.h index b7c38682da..010ebc300b 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Device.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Device.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp index 229e16a61e..a347958b7c 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.h b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.h index 3138ab6ee2..052237b27e 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphCompiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp index a5a1306e8f..7f190bede0 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.h b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.h index 48cf0d6b44..3a441250bc 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/FrameGraphExecuter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp index 3df997464e..76e21a642d 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Image.h b/Gems/Atom/RHI/Null/Code/Source/RHI/Image.h index 247e6324aa..02f19ce78b 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Image.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp index 785437d7f5..ebcaf66dca 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.h b/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.h index f43071820b..1c1b6ab06d 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp index 6f0d3843a2..1c0fcd3077 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.h b/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.h index a04158487d..14e790f4f7 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ImageView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp index 644a502af8..2589444f68 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp index 2c3fc0d21d..b1f04db9fe 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.h b/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.h index 931347e1f0..18b7a845e4 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PhysicalDevice.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp index 312be055bf..66c65b253c 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.h b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.h index fc2fd4ed4c..305965ca82 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp index 2ee95a983a..ae7518674b 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.h b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.h index 5dcb697cc5..3988828dc5 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/PipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp index e5d11047f5..1cbead32c0 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Query.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Query.h b/Gems/Atom/RHI/Null/Code/Source/RHI/Query.h index 833d94d36e..a26fee5424 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Query.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Query.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp index 475ec27d43..211a6da47e 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.h b/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.h index ea767cab50..48bc82a3c1 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/QueryPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp index dabcd4a611..2cebc98090 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.h b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.h index a854152dda..b0cd896085 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBufferPools.h b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBufferPools.h index c463734356..a24fd618a9 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBufferPools.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingBufferPools.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp index c36b8d1fd8..dbb903e047 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.h b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.h index ce7441c2a0..cb51dde813 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingPipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp index 8d43ffb5c0..3ec7fcf432 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.h b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.h index d83b35ee4d..4290748b1d 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingShaderTable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp index ca9f5c38d5..1f1dc9b356 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.h b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.h index 5bd5749032..851efefd13 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/RayTracingTlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp index f87a4c04cc..8e2848e413 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.h b/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.h index 0ba526ad28..f9d27e0f89 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/Scope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp index 40f68b24ea..dd82c49cb6 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.h b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.h index 4e16ae44a5..0ed3cef532 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp index a63d9d08c3..a1b8ba9096 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.h b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.h index 0eef4b0873..5a423a611f 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/ShaderResourceGroupPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp index 11453269ca..d2a36c0006 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.h b/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.h index 3b9a8b2c26..7d970767b5 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/StreamingImagePool.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp index fee2468203..2b70c08138 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.h b/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.h index f338393666..dfd442ec38 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/SwapChain.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp index a9a697567f..83b06d1650 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.h b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.h index 69d911a0ae..f6d15bc451 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp index be0d7bdbb7..c7f323edd3 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.h b/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.h index e86a57271c..a1753e8714 100644 --- a/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.h +++ b/Gems/Atom/RHI/Null/Code/Source/RHI/TransientAttachmentPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_common_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_common_files.cmake index 69aca9cf73..92804d9f97 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_common_files.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_shared_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_shared_files.cmake index 879b098c91..a3d41db133 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_shared_files.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_builders_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_common_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_common_files.cmake index 169711b1c6..a7f2830358 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_common_files.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake index a567c1a0f0..ac6a22fb03 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_shared_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_shared_files.cmake index 3702f78cac..77fdf502a1 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_shared_files.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_private_common_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_reflect_common_files.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_reflect_common_files.cmake index f415f51033..1514d15fa6 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_reflect_common_files.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_reflect_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Null/Code/atom_rhi_null_stub_module.cmake b/Gems/Atom/RHI/Null/Code/atom_rhi_null_stub_module.cmake index 2cfed2e165..bae9126874 100644 --- a/Gems/Atom/RHI/Null/Code/atom_rhi_null_stub_module.cmake +++ b/Gems/Atom/RHI/Null/Code/atom_rhi_null_stub_module.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg b/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg index bfcca8a659..9b482e7a8a 100644 --- a/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg +++ b/Gems/Atom/RHI/Registry/PhysicalDeviceDriverInfo.setreg @@ -1,5 +1,5 @@ // -// Copyright (c) Contributors to the Open 3D Engine Project +// 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 // diff --git a/Gems/Atom/RHI/Vulkan/3rdParty/Findglad_vulkan.cmake b/Gems/Atom/RHI/Vulkan/3rdParty/Findglad_vulkan.cmake index ed048094dd..077eca467c 100644 --- a/Gems/Atom/RHI/Vulkan/3rdParty/Findglad_vulkan.cmake +++ b/Gems/Atom/RHI/Vulkan/3rdParty/Findglad_vulkan.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Android/glad_vulkan_android.cmake b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Android/glad_vulkan_android.cmake index b5d53cafaf..9243776ff8 100644 --- a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Android/glad_vulkan_android.cmake +++ b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Android/glad_vulkan_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Linux/glad_vulkan_linux.cmake b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Linux/glad_vulkan_linux.cmake index c861d2785f..95b5e752cb 100644 --- a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Linux/glad_vulkan_linux.cmake +++ b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Linux/glad_vulkan_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Mac/glad_vulkan_mac.cmake b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Mac/glad_vulkan_mac.cmake index 11424c2eab..4af54e446d 100644 --- a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Mac/glad_vulkan_mac.cmake +++ b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Mac/glad_vulkan_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Windows/glad_vulkan_windows.cmake b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Windows/glad_vulkan_windows.cmake index 2b872af720..b5c2d42aea 100644 --- a/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Windows/glad_vulkan_windows.cmake +++ b/Gems/Atom/RHI/Vulkan/3rdParty/Platform/Windows/glad_vulkan_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/CMakeLists.txt b/Gems/Atom/RHI/Vulkan/CMakeLists.txt index 17a38640d2..b26ec54418 100644 --- a/Gems/Atom/RHI/Vulkan/CMakeLists.txt +++ b/Gems/Atom/RHI/Vulkan/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt b/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt index cb3d4f7ee7..3a57f96772 100644 --- a/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt +++ b/Gems/Atom/RHI/Vulkan/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h index 57158d8936..8a40b0e73b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/FunctionLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/Glad/vulkan/vulkan.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/Glad/vulkan/vulkan.h index a39223963b..3c5ccfecef 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/Glad/vulkan/vulkan.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Loader/Glad/vulkan/vulkan.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/Base.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/Base.h index cdfd262eae..46fdf8c85c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/Base.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/BufferPoolDescriptor.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/BufferPoolDescriptor.h index 63b6cc2b67..4eff9e6171 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/BufferPoolDescriptor.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/BufferPoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ImagePoolDescriptor.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ImagePoolDescriptor.h index bc1d76726c..685b91d256 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ImagePoolDescriptor.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ImagePoolDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/PlatformLimitsDescriptor.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/PlatformLimitsDescriptor.h index 14404f75fc..9400afa70c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/PlatformLimitsDescriptor.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/PlatformLimitsDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ReflectSystemComponent.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ReflectSystemComponent.h index 837f1db04b..41be0aedf0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ReflectSystemComponent.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ReflectSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderDescriptor.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderDescriptor.h index 8c90fdb68a..9fe17d9b26 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderDescriptor.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderStageFunction.h b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderStageFunction.h index 1544ee9066..97669a5c1a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderStageFunction.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Atom/RHI.Reflect/Vulkan/ShaderStageFunction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom/RHI.Loader/Glad/Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom/RHI.Loader/Glad/Vulkan_Platform.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom/RHI.Loader/Glad/Vulkan_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom/RHI.Loader/Glad/Vulkan_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Android.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Android.h index 65dc1ed7f8..f8985752bd 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Android.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Platform.h index 72ea02f59a..6904e85b97 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/Atom_RHI_Vulkan_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake index 4dd4a7a927..448d5b9637 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_builders_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake index 4dd4a7a927..448d5b9637 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Android/platform_private_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/AppleTV/Atom/RHI.Loader/Glad/Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/AppleTV/Atom/RHI.Loader/Glad/Vulkan_Platform.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/AppleTV/Atom/RHI.Loader/Glad/Vulkan_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/AppleTV/Atom/RHI.Loader/Glad/Vulkan_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom/RHI.Loader/Glad/Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom/RHI.Loader/Glad/Vulkan_Platform.h index 424f249b8c..6aac0e8cf9 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom/RHI.Loader/Glad/Vulkan_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom/RHI.Loader/Glad/Vulkan_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Linux.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Linux.h index c98479f01b..b1eda09bf5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Linux.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Platform.h index 69a9b992c7..eaa1043371 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/Atom_RHI_Vulkan_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake index c1ecac092a..540958e30a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_builders_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake index c1ecac092a..540958e30a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Linux/platform_private_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom/RHI.Loader/Glad/Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom/RHI.Loader/Glad/Vulkan_Platform.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom/RHI.Loader/Glad/Vulkan_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom/RHI.Loader/Glad/Vulkan_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Mac.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Mac.h index 2169e4cb24..b74e649103 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Mac.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Platform.h index 43bade07e7..c0e478a775 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/Atom_RHI_Vulkan_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake index c1ecac092a..540958e30a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_builders_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake index c660dd96f0..108d25ff8c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Mac/platform_private_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Platform.h index ffc9605178..b8a79525de 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h index 5d5d1bd2c0..2d0cac9cbf 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom/RHI.Loader/Glad/Vulkan_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Platform.h index 374258e1f8..13d7160cfc 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Windows.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Windows.h index 0313f0c216..6bb109ae8b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Windows.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/Atom_RHI_Vulkan_precompiled_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake index afb0011551..5f26c9bf3d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_builders_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake index afb0011551..5f26c9bf3d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/Windows/platform_private_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom/RHI.Loader/Glad/Vulkan_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom/RHI.Loader/Glad/Vulkan_Platform.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom/RHI.Loader/Glad/Vulkan_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom/RHI.Loader/Glad/Vulkan_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_precompiled_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_precompiled_Platform.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_precompiled_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/Atom_RHI_Vulkan_precompiled_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake index c1ecac092a..540958e30a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_builders_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake index c1ecac092a..540958e30a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Include/Platform/iOS/platform_private_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Atom_RHI_Vulkan_precompiled.h b/Gems/Atom/RHI/Vulkan/Code/Source/Atom_RHI_Vulkan_precompiled.h index 0caff42b9c..5deff32444 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Atom_RHI_Vulkan_precompiled.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Atom_RHI_Vulkan_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/PAL_android.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/PAL_android.cmake index 7d086786a1..4cf10855d3 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp index 15fb9aa32e..1dec884fd0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/RHI/WSISurface_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Android.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Android.h index 4932548a11..af81068579 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Android.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Platform.h index 077f06a4e8..cf580f562e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/Vulkan_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_builders_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_builders_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_builders_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_builders_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_glad_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_glad_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_glad_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_glad_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_android_files.cmake index 2372330c9d..e66650bc75 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_static_android.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_static_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_static_android.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_private_static_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_reflect_android_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_reflect_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_reflect_android_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Android/platform_reflect_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp index f1bf1dad4a..b5f2865135 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/Empty_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp index a225435fe4..be645cc673 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Common/Unimplemented/ModuleStub_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/PAL_linux.cmake index 7d086786a1..4cf10855d3 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI.Builders/BuilderModule_Linux.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI.Builders/BuilderModule_Linux.cpp index 7ec7271dbc..1eece47e6b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI.Builders/BuilderModule_Linux.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI.Builders/BuilderModule_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp index 995be4ee19..0d9019a689 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/RHI/WSISurface_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Linux.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Linux.h index aeceb5c8a0..2aab99d439 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Linux.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Platform.h index ab70e8c724..e7a7152a7c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/Vulkan_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_builders_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_builders_linux_files.cmake index dc407202ad..3ca8e19fda 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_builders_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_builders_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_glad_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_glad_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_glad_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_glad_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_linux_files.cmake index 9b5f1caa24..c4f90bc1dc 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_static_linux.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_static_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_static_linux.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_private_static_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_reflect_linux_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_reflect_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_reflect_linux_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Linux/platform_reflect_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/PAL_mac.cmake index 72b9ef10c0..ef3603a066 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp index 130db66a09..f72ebb8efe 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/RHI.Builders/BuilderModule_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Mac.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Mac.h index aeceb5c8a0..2aab99d439 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Mac.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Platform.h index 24fff98e0b..c81b0ca2bc 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/Vulkan_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_builders_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_builders_mac_files.cmake index 59d53b877d..24bdfc4c43 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_builders_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_builders_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_glad_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_glad_mac_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_glad_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_glad_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_mac_files.cmake index 394dfcaf2d..e15b805b4f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_static_mac.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_static_mac.cmake index 569a14d20e..f2e48c3e91 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_static_mac.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_private_static_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_reflect_mac_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_reflect_mac_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_reflect_mac_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Mac/platform_reflect_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/PAL_windows.cmake index 7d086786a1..4cf10855d3 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp index ead68bdebe..fe48456075 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI.Builders/BuilderModule_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp index d3d11121ad..ade7241987 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/RHI/WSISurface_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Platform.h index 214d809d62..dac6c5a738 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Windows.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Windows.h index 21887ad36d..f9e4e45639 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Windows.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/Vulkan_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_builders_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_builders_windows_files.cmake index 08e9c28c3d..161193a04f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_builders_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_builders_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_glad_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_glad_windows_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_glad_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_glad_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_static_windows.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_static_windows.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_static_windows.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_static_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_windows_files.cmake index 86d78fb6fd..17f6c6d409 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_private_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_reflect_windows_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_reflect_windows_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_reflect_windows_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/Windows/platform_reflect_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/PAL_ios.cmake index 72b9ef10c0..ef3603a066 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_Platform.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_Platform.h index d9094b8b9d..85a7ffb639 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_Platform.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_iOS.h b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_iOS.h index b07648bf39..3a002e444f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_iOS.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/Vulkan_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_builders_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_builders_ios_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_builders_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_builders_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_glad_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_glad_ios_files.cmake index d745058dd0..0dac6bbc7a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_glad_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_glad_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_ios_files.cmake index ccd88e8603..2ac5f086fe 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_static_ios.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_static_ios.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_static_ios.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_private_static_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_reflect_ios_files.cmake b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_reflect_ios_files.cmake index d745058dd0..0dac6bbc7a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_reflect_ios_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/Source/Platform/iOS/platform_reflect_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp index 92b45c8c84..04a63f3d03 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.h index 82d757751a..4abdde8dea 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp index e09a34c2dc..dd5b19490d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h index 645ad75720..9e80fef4ef 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Builders/ShaderPlatformInterfaceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/FunctionLoader.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/FunctionLoader.cpp index 70fa2e2091..d9bbde9e3e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/FunctionLoader.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/FunctionLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.cpp index 1523ecac5a..0ab9299000 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.h index 55389120e1..967b171d6b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Loader/Glad/GladFunctionLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp index 2fa945e205..5effa1d0b6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/BufferPoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp index dfeb89b047..e93f9f12f2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ImagePoolDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp index 871875f7e4..5542c2f21e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/PlatformLimitsDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp index 6f61f2ff7a..ffd112ff45 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ReflectSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderDescriptor.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderDescriptor.cpp index a03abe3a50..e8a0710cbe 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderDescriptor.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderStageFunction.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderStageFunction.cpp index c658ca1db3..9ae89edd3e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderStageFunction.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI.Reflect/ShaderStageFunction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp index 8426c602c8..5c46b2f55a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.h index 9d1b81c8d8..949b824d77 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasedHeap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp index 4f8c52e884..e575f08ed6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.h index 4a09b512da..007dd42fed 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AliasingBarrierTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp index cfee2f2c59..f0824cd3aa 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.h index e9050ce80f..ba82102e78 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/AsyncUploadQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp index b74daa42cc..2dc32d0149 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.h index 1d63642ef3..426f9966e7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp index 83bed04357..a4683512fc 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.h index 3651d7ff7f..86477dfe2d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryAllocator.h index b21530bf27..aac4ed5ee8 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp index 2c983212d6..11740621a8 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.h index 88c37f83b9..899f70c8f0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryPageAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryView.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryView.h index aacd93a2b8..e8fd4d121d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryView.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferMemoryView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp index 3c808702a6..69118beffe 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.h index 9b3bde6f9b..338363b8cc 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp index 11b4bf6434..112f90f72a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.h index 0323f1c58e..284831e882 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferPoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp index 8e491e7f33..6b1ed57903 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h index d0b848ade6..ff249ba676 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/BufferView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp index 221f2b2515..cc89249072 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.h index e002a234a0..da19b37302 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp index 4ce570d714..b0f78f559c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.h index 70f028268a..0fa8a8b850 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandListAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp index 00cacf7a04..1a6ce942b9 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.h index 507790ebfd..3663e56a11 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp index 9c1de9a0e1..c19e1dc183 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.h index 3bab6d76c7..434203155a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp index a3ba57c6d2..0b16223c81 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.h index 402d7fb366..5132b2bd9e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/CommandQueueContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp index 55dc6ebd9a..d7df4b1044 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.h index dbd9395f0b..10032be8f7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ComputePipeline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp index 690ce5f056..3144e5635f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.h index bedbbf9ff8..27d4907832 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Conversion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp index 6c1744712d..70f950bcc8 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.h index 80677d00bd..f92fafe4b4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp index b71957644d..23bc2fa523 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.h index f0c4c66b71..a20d5c35a4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp index 754262649a..9ab271303a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.h index 52bc85d44d..1783ec5f5b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp index 8aceb76a6f..67b5ed4487 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.h index 64c6348c0f..75a65afc73 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/DescriptorSetLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp index 56d37ba7f3..1301cd3449 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.h index 79d0de915f..a0dad40a04 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Device.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp index 02fecfbb06..a183a6b463 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.h index 977848d044..57c094b542 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Fence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Formats.inl b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Formats.inl index d270a7394d..66c039d2f3 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Formats.inl +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Formats.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp index 3bdeeaa406..cf618fd2de 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.h index e4f668c821..2b3e422aff 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphCompiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp index f1b6198fff..f5fa6e792e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.h index fb9febd46e..1cec22c5d5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp index 8863f3fed4..9ce9da9752 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.h index d00f8872ce..530601e139 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp index 90aad2fc5a..a69b99dc22 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.h index 33d8c16809..7558a5fe02 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp index b29de8c157..85381d77f5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.h index 185d437afe..16789b9a39 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupHandlerBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp index 54eb88bffc..cef60103c4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.h index 60c6c973e5..79dc273bf6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMerged.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp index 7ec183288c..bd8776b2ea 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.h index 39bd217ee2..74292969e5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuteGroupMergedHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp index cf1cc81cea..9c2a0f4002 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.h index e1273c5a6e..d1297de26a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/FrameGraphExecuter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp index c38514defc..7cdd35ee60 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.h index adf0061eb0..26aeb8cf05 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Framebuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp index 131b37b29b..88a02f90c7 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.h index 1a47c0dc34..fb3d18a5a0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/GraphicsPipeline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp index a8978d0744..7586183b63 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.h index 77ade601e3..7bcb21cd2d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp index a633d45e4f..928247346d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.h index 9234496048..32387d33d6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp index db9f655489..88c5602e7f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h index 9175848c03..c3d70a71a2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImagePoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp index 306ffe928c..aa3c77c261 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.h index f07f95e604..2d320a8013 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ImageView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp index ef8cae9b77..d8e05be10a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.h index a4d0c05b07..efb5895050 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferSignature.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp index e3ff0df4b0..43a3d19805 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.h index 7a91c39738..532dc51ff2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/IndirectBufferWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp index 07da21cee0..a98aad801a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.h index ef42f209ac..060cd8df69 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Instance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp index d0e6444064..b7864e3bbe 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h index 1babe100f0..4fb24125f6 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Memory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryAllocator.h index d77799d776..c3dbd41539 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp index 1b8a22caab..c16f28af27 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.h index 69e17c96ce..63dc5a8afa 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryPageAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeAllocator.h index 5b7fdf63e8..6b09022485 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeView.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeView.h index f386ad3356..c6d45c4970 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeView.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryTypeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryView.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryView.h index fb8631e96d..87fbd39f83 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryView.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MemoryView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp index d4a70ee973..f11d0ed124 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.h index 5f69a96583..f7289724da 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp index d2ac22692d..8079bd10bf 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.h index 112f0d419e..ed042653c0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/MergedShaderResourceGroupPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp index 8fa5cadae4..bfc0ec79dc 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp index 130b80db89..4aba0f6860 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.h index b5b375e10e..0af50a8416 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/NullDescriptorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp index c064c4f4dc..9fec8d4345 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.h index 11efb13e12..5cc110ff36 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PhysicalDevice.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp index bf715e0885..d48dec6eee 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.h index 9b5567cdfd..63f8149b98 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Pipeline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp index 5bd83023dd..fb9cd8e4f1 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.h index 0825abf9bd..270c5972f2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp index 7d8380d4f3..79958c6dd2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.h index a31c6ba4e5..f0a1b66d15 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp index 25e54e2abb..0a3c11d4ba 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.h index ca448b35f4..13022ac9ec 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/PipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp index 265ea2b0c7..8b1aca881d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.h index 13ef0872f9..d6784c8002 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Query.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp index 92e891b886..555577bbfe 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.h index cda1c555bc..897ec0a05c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/QueryPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp index 2cfc1a955f..bfa5d8dbe0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h index 220fa44d5d..2d967e1f8f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Queue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp index f39001e99f..719c7fc16a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h index 5232f8fbf6..ce59c7f2c8 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBufferPools.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBufferPools.h index 120509f6c1..a94a050e33 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBufferPools.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingBufferPools.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp index 3a67b6b006..5894d3fdd5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.h index 548efaeaef..c8f77b2a59 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipeline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp index fce6027568..4dffc5c3da 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h index 70a3c1b166..8bac2d57b4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingPipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp index 319d40c292..b6cd3fe04d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.h index dc2689da00..b955a4d17d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingShaderTable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp index 7d680b2159..ac43ab0589 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h index 9d68ebcc5d..c570eba572 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RayTracingTlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseContainer.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseContainer.h index 05adcbac30..48492e5095 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseContainer.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseQueue.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseQueue.h index 0ac2ca46b6..423ab756f9 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseQueue.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ReleaseQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp index dad85ab824..c66f2467a9 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h index b0dc7fe270..5e30a0d23f 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp index 06c1d3abd0..403c6fec7a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.h index 361aa8ed4b..d31d11553e 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/RenderPassBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ResourcePoolResolver.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ResourcePoolResolver.h index 89fe341e4e..8ee4c26d96 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ResourcePoolResolver.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ResourcePoolResolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp index b7ee499660..2461ad183c 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h index 01508e807f..487d7b7b55 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Sampler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp index 73aeeca3f3..0189b6d325 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.h index af23432f85..abd796d523 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Scope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp index 751f66aecb..60137d0436 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h index 8da0f97136..347a523376 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Semaphore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp index e1c7868af6..9e3dfbbdc2 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.h index 8c4cfad92d..8412ac7b07 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SemaphoreAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp index f8bce1a44f..ffc04b99ff 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.h index 27eb26b8a8..6b02461c63 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp index d3a78716f1..527fbf3858 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.h index 9b58e3bbb3..d8838f3556 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp index 84cc606989..4871b7027d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.h index 497da0e7a2..9f38886738 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/ShaderResourceGroupPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp index 38cbc3d2ab..e009f1d29a 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.h index 664614c2fd..bedbccc01b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SignalEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp index 6486afe58d..613e280f98 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.h index 61080a0d75..f89992965d 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp index 808b52c712..3c72b860d9 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/StreamingImagePoolResolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp index 0007503517..d356d61cef 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.h index 54d3873594..b77c305e46 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SwapChain.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp index 33c7adbdd5..89e062fb20 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.h index 3490ff064f..dc423f4af5 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp index 0f0a4dd4a7..b659dd60af 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.h index e925ff759a..4167a4d8de 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/TransientAttachmentPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp index 12fe8b9421..acb0a33a24 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.h index b24068ed39..28a0111a64 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/Vulkan.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp index d705ac5508..16f170226b 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h index 73ac064ca4..79053ddb40 100644 --- a/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h +++ b/Gems/Atom/RHI/Vulkan/Code/Source/RHI/WSISurface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_builders_common_files.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_builders_common_files.cmake index 69aca9cf73..92804d9f97 100644 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_builders_common_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_builders_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_common_files.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_common_files.cmake index 39d4d3ffc6..8bd07760e0 100644 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_common_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_glad_files.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_glad_files.cmake index 42278889d6..6c3be79d31 100644 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_glad_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_glad_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_files.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_files.cmake index 7114b95dcd..c797386aa4 100644 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_shared_files.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_shared_files.cmake index 3702f78cac..77fdf502a1 100644 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_shared_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_private_common_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_reflect_common_files.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_reflect_common_files.cmake index d2d4ac3fce..a9a2aecccb 100644 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_reflect_common_files.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_reflect_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_stub_module.cmake b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_stub_module.cmake index 2cfed2e165..bae9126874 100644 --- a/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_stub_module.cmake +++ b/Gems/Atom/RHI/Vulkan/Code/atom_rhi_vulkan_stub_module.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Assets/Materials/DefaultMaterial.azsl b/Gems/Atom/RPI/Assets/Materials/DefaultMaterial.azsl index 3ce597ffdb..a3379b620a 100644 --- a/Gems/Atom/RPI/Assets/Materials/DefaultMaterial.azsl +++ b/Gems/Atom/RPI/Assets/Materials/DefaultMaterial.azsl @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/Materials/DefaultMaterial_DepthPass.azsl b/Gems/Atom/RPI/Assets/Materials/DefaultMaterial_DepthPass.azsl index b47d935415..047a8f14f1 100644 --- a/Gems/Atom/RPI/Assets/Materials/DefaultMaterial_DepthPass.azsl +++ b/Gems/Atom/RPI/Assets/Materials/DefaultMaterial_DepthPass.azsl @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/Shader/DecomposeMsImage.azsl b/Gems/Atom/RPI/Assets/Shader/DecomposeMsImage.azsl index c455aa764f..30839e3ef3 100644 --- a/Gems/Atom/RPI/Assets/Shader/DecomposeMsImage.azsl +++ b/Gems/Atom/RPI/Assets/Shader/DecomposeMsImage.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/Shader/ImagePreview.azsl b/Gems/Atom/RPI/Assets/Shader/ImagePreview.azsl index 042cafee15..87c9386066 100644 --- a/Gems/Atom/RPI/Assets/Shader/ImagePreview.azsl +++ b/Gems/Atom/RPI/Assets/Shader/ImagePreview.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/Math.azsli b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/Math.azsli index 2c89c5986c..d51225f569 100644 --- a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/Math.azsli +++ b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/Math.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultDrawSrg.azsli b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultDrawSrg.azsli index 1e2765966a..4bb83a3464 100644 --- a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultDrawSrg.azsli +++ b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultDrawSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultObjectSrg.azsli b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultObjectSrg.azsli index 5967abecef..bc848e3ab6 100644 --- a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultObjectSrg.azsli +++ b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/ShaderResourceGroups/DefaultObjectSrg.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/TangentSpace.azsli b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/TangentSpace.azsli index 28e6269ee6..f387fafdee 100644 --- a/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/TangentSpace.azsli +++ b/Gems/Atom/RPI/Assets/ShaderLib/Atom/RPI/TangentSpace.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Assets/atom_rpi_asset_files.cmake b/Gems/Atom/RPI/Assets/atom_rpi_asset_files.cmake index a2755b2e65..f89ba6f434 100644 --- a/Gems/Atom/RPI/Assets/atom_rpi_asset_files.cmake +++ b/Gems/Atom/RPI/Assets/atom_rpi_asset_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Assets/generate_asset_cmake.bat b/Gems/Atom/RPI/Assets/generate_asset_cmake.bat index efa61c4b46..609d13e94d 100644 --- a/Gems/Atom/RPI/Assets/generate_asset_cmake.bat +++ b/Gems/Atom/RPI/Assets/generate_asset_cmake.bat @@ -1,5 +1,5 @@ @ECHO off -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT @@ -16,7 +16,7 @@ set OUTPUT_FILE=atom_rpi_asset_files.cmake :: Write copyright header to top of file echo # > %OUTPUT_FILE% -echo # Copyright (c) Contributors to the Open 3D Engine Project >> %OUTPUT_FILE% +echo # 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. >> %OUTPUT_FILE% echo # >> %OUTPUT_FILE% echo # SPDX-License-Identifier: Apache-2.0 OR MIT >> %OUTPUT_FILE% echo # >> %OUTPUT_FILE% diff --git a/Gems/Atom/RPI/CMakeLists.txt b/Gems/Atom/RPI/CMakeLists.txt index 9855348a0c..d4ab6e8516 100644 --- a/Gems/Atom/RPI/CMakeLists.txt +++ b/Gems/Atom/RPI/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/CMakeLists.txt b/Gems/Atom/RPI/Code/CMakeLists.txt index db4aed3ab9..71e5d82e48 100644 --- a/Gems/Atom/RPI/Code/CMakeLists.txt +++ b/Gems/Atom/RPI/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetAliasesSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetAliasesSourceData.h index 0e23035490..24b5685404 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetAliasesSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetAliasesSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetUtils.h index 755fb38b85..55931397b3 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/AssetUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ColorUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ColorUtils.h index 8f8f806630..8250c87ceb 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ColorUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ColorUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ConvertibleSource.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ConvertibleSource.h index dda8561fd2..e171dbe46a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ConvertibleSource.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/ConvertibleSource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonFileLoadContext.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonFileLoadContext.h index ab39cf1ddd..ecdc311898 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonFileLoadContext.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonFileLoadContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonReportingHelper.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonReportingHelper.h index 6f8cf810aa..84b019275f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonReportingHelper.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonReportingHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h index 2d43c8d14d..16556ce9c8 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Common/JsonUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/LuaMaterialFunctorSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/LuaMaterialFunctorSourceData.h index dde65b5508..b603b474fd 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/LuaMaterialFunctorSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/LuaMaterialFunctorSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h index a73aebe5ed..75b24e28e0 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialConverterBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceData.h index 0b3fff785b..1372dd3c4e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.h index daed3c71b6..1ae5c46fc2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.h index 0ddc60f05d..9a7a34ab06 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyId.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyId.h index 9ad8c2fd10..19124f2454 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyId.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertySerializer.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertySerializer.h index 889c300734..dc8d36e811 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertySerializer.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertySerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSerializer.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSerializer.h index 2efeef901e..227f2d90de 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSerializer.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceData.h index cdd7548122..06d17b8a4f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.h index 231fd971d1..92e815b230 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h index e9bf836dba..28f910661d 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceDataSerializer.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceDataSerializer.h index ee39c254c1..9284e7277c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceDataSerializer.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialSourceDataSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialTypeSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialTypeSourceData.h index f5e6e2d67c..d439704cef 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialTypeSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialTypeSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialUtils.h index 764e0174de..539d34f4f2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Material/MaterialUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/ResourcePool/ResourcePoolSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/ResourcePool/ResourcePoolSourceData.h index ce0b63cc10..1eebae1c32 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/ResourcePool/ResourcePoolSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/ResourcePool/ResourcePoolSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderSourceData.h index ffdf1a8c7b..005e5f3c4e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantAssetCreator.h index f0ba88dcc6..707365b8ed 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantListSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantListSourceData.h index daff85f6e4..c147fc677f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantListSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantListSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.h index 49dcbcc582..09aedde904 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h index 8ecf96149a..7607a23e4e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomDraw.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomDraw.h index 259ae8fd78..dd8fd0c31a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomDraw.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomDraw.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomFeatureProcessorInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomFeatureProcessorInterface.h index 666a80a2ad..64a7e68caa 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomFeatureProcessorInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AuxGeom/AuxGeomFeatureProcessorInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h index c6902f82ed..77a45ef7e7 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/Buffer.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/Buffer.h index 28def0c4c4..0edc74358b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/Buffer.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/Buffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferPool.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferPool.h index 7acd889f63..5c8c330cf4 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferPool.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystem.h index e6e3b95c57..c173114336 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystemInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystemInterface.h index f6df21a8a0..ebd4decc90 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystemInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Buffer/BufferSystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ColorManagement/TransformColor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ColorManagement/TransformColor.h index bdc215f08d..558310ed6b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ColorManagement/TransformColor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ColorManagement/TransformColor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h index 4ede292b2d..72d0e3c69c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Culling.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBuffer.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBuffer.h index 8ad4762ac2..ec4af08bec 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBuffer.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBufferAllocator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBufferAllocator.h index cabbee841c..b389db0b50 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBufferAllocator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicBufferAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawContext.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawContext.h index bff3a245c8..0261de7a1a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawContext.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawInterface.h index 40edb4b380..135eee0a84 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawSystem.h index 5e85fa7b29..4ec521f2b2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/DynamicDraw/DynamicDrawSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessor.h index f4350df615..bf7534b366 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessorFactory.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessorFactory.h index eab8899914..87a3f0787c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessorFactory.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/FeatureProcessorFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystem.h index 9cbf7fbe57..dbde4ab638 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystemInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystemInterface.h index 6e0c322b35..2e33022f3c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystemInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQuerySystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQueryTypes.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQueryTypes.h index b46f2baeb9..11dda3ee31 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQueryTypes.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/GpuQueryTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/Query.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/Query.h index c4e0cbe36e..daa37d0be5 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/Query.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/Query.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/QueryPool.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/QueryPool.h index 69fe2b8082..249e97648f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/QueryPool.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/QueryPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/TimestampQueryPool.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/TimestampQueryPool.h index 8cf40de598..8989d708ed 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/TimestampQueryPool.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/GpuQuery/TimestampQueryPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImage.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImage.h index f0a075bc4d..b66d07f85f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImage.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImagePool.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImagePool.h index 4c0c9b1f33..d25aa10894 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImagePool.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/AttachmentImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/DefaultStreamingImageController.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/DefaultStreamingImageController.h index b0e9ad9de1..0db7631cc0 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/DefaultStreamingImageController.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/DefaultStreamingImageController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystem.h index 7f273dc803..61000461b4 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystemInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystemInterface.h index af3fb7af8b..1b0eafb576 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystemInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/ImageSystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImage.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImage.h index f174a64c2c..51bf719c0c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImage.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageContext.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageContext.h index e8a3e84b40..c846cff5e7 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageContext.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageController.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageController.h index 7f83dd0d6a..b4160f9091 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageController.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImageController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImagePool.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImagePool.h index 4dfc1387f7..8d20dc6e02 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImagePool.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Image/StreamingImagePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/Material.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/Material.h index 75ed13420a..668ad670d2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/Material.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/Material.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialReloadNotificationBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialReloadNotificationBus.h index 50a0ea24cc..d8fc6d7f2f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialReloadNotificationBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialReloadNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialSystem.h index 2d55e5ac79..3de271c6ab 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Material/MaterialSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/MeshDrawPacket.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/MeshDrawPacket.h index 8b300bc77c..bf236cdba5 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/MeshDrawPacket.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/MeshDrawPacket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/Model.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/Model.h index 5893fd6dff..6daf01ac4c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/Model.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/Model.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLod.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLod.h index db6f59804c..533c5381bb 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLod.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLod.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLodUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLodUtils.h index c2bcec3901..5eb0ae7ada 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLodUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelLodUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelSystem.h index 9fee7d0ef7..ae34dbb76a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/ModelSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/UvStreamTangentBitmask.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/UvStreamTangentBitmask.h index 93517ae6bb..f5048b77d6 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/UvStreamTangentBitmask.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Model/UvStreamTangentBitmask.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/AttachmentReadback.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/AttachmentReadback.h index 451af53d33..9537265fbb 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/AttachmentReadback.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/AttachmentReadback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ComputePass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ComputePass.h index 164491068f..2d4ac1395a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ComputePass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ComputePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/CopyPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/CopyPass.h index 5362365840..bd9ec92381 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/CopyPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/CopyPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/FullscreenTrianglePass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/FullscreenTrianglePass.h index 376641d196..58a12cdc97 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/FullscreenTrianglePass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/FullscreenTrianglePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/MSAAResolvePass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/MSAAResolvePass.h index 765a9b006e..d195d93ea0 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/MSAAResolvePass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/MSAAResolvePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ParentPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ParentPass.h index bc99648628..a875eedf3b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ParentPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/ParentPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Pass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Pass.h index 7790f577d6..c6667e660a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Pass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Pass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassAttachment.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassAttachment.h index 29ad892e97..3ccf31c9f8 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassAttachment.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassAttachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassDefines.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassDefines.h index 5b8da6ac23..e61c557fbc 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassDefines.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFactory.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFactory.h index e829e889ee..02280b8277 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFactory.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFilter.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFilter.h index 270ac5478c..be7596ef50 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFilter.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassLibrary.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassLibrary.h index eefad55f3f..4076cf8403 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassLibrary.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystem.h index 6e680d092f..de57e2e3f6 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystemInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystemInterface.h index a207921926..cc66a7c228 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystemInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassSystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassUtils.h index bd817cec60..57f57c6046 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/PassUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RasterPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RasterPass.h index 6e6114e567..735b3930c8 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RasterPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RasterPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RenderPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RenderPass.h index 37e88b00ed..b13091082b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RenderPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/RenderPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/DownsampleMipChainPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/DownsampleMipChainPass.h index 9183e3f251..233d1d9eaf 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/DownsampleMipChainPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/DownsampleMipChainPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.h index 9fb83501b0..21b3739f30 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.h index 86cab3f088..f855154975 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/RenderToTexturePass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/RenderToTexturePass.h index f83c1d899c..0a689f2f74 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/RenderToTexturePass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/RenderToTexturePass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SelectorPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SelectorPass.h index 97f49e4102..6b9559e824 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SelectorPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SelectorPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SwapChainPass.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SwapChainPass.h index 404d4f4f5a..e7869d463c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SwapChainPass.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Pass/Specific/SwapChainPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/PipelineState.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/PipelineState.h index 994aa6431e..49856b3712 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/PipelineState.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/PipelineState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystem.h index b7850a1cb5..b8dc664a43 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystemInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystemInterface.h index c91946755c..282983a40d 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystemInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPISystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPIUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPIUtils.h index 32f05026d2..b89b14b78d 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPIUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RPIUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RenderPipeline.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RenderPipeline.h index 7f068d487c..b80c438f91 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RenderPipeline.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/RenderPipeline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Scene.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Scene.h index 1f39dd8b46..6c04e033a2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Scene.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Scene.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/SceneBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/SceneBus.h index f64b2d77b0..6009deb266 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/SceneBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/SceneBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetrics.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetrics.h index 2dc0ef7efb..64cfe440b1 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetrics.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetrics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystem.h index 128eae10ae..1fe0fcb705 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystemInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystemInterface.h index e27b063856..f3632d9899 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystemInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Metrics/ShaderMetricsSystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Shader.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Shader.h index 2667ee2e8d..5180a8d46f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Shader.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/Shader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadDebugTracker.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadDebugTracker.h index 55b0f33dc0..67e8fcfcc8 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadDebugTracker.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadDebugTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadNotificationBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadNotificationBus.h index 3b037afeb6..4eaadfffa1 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadNotificationBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderReloadNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroup.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroup.h index 74a53bda0e..20697588ca 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroup.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroupPool.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroupPool.h index eec2361e66..11ddd92424 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroupPool.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderResourceGroupPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystem.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystem.h index 84d4f22567..6b9520d502 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystem.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystemInterface.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystemInterface.h index bbedfcc90f..df699d3a83 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystemInterface.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderSystemInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariant.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariant.h index 747cb01595..0b0497e24a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariant.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariant.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariantAsyncLoader.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariantAsyncLoader.h index f4d1c441e8..834a0f2f53 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariantAsyncLoader.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/Shader/ShaderVariantAsyncLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/View.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/View.h index 13512471c7..f3500647fe 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/View.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/View.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewProviderBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewProviderBus.h index dd12625c56..1fa75fbb25 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewProviderBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewProviderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContext.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContext.h index a66df10643..982ef498a0 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContext.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextBus.h index 6f0f480604..da0c850f3d 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextManager.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextManager.h index cab0171b43..008565d178 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextManager.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/ViewportContextManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContext.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContext.h index 9d66821774..fc809c7d39 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContext.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContextBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContextBus.h index 139d236e7c..8e4b887b77 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContextBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/WindowContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetHandler.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetHandler.h index 165ba969e9..3b256b44ce 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetHandler.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetReference.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetReference.h index 61559fc39c..f9325ac523 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetReference.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetReference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.h index 135512603a..73dfecca04 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.inl b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.inl index 665ab3ec23..cf4a9dc3d7 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.inl +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/AssetUtils.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/BuiltInAssetHandler.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/BuiltInAssetHandler.h index a6dc19a0d4..f3b6775349 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/BuiltInAssetHandler.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Asset/BuiltInAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/AssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/AssetCreator.h index 0cd000d045..12d4a09395 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/AssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/AssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h index bcf22ef7b3..f8433d6f52 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Base.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAsset.h index 50356413ac..fb57032bae 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetCreator.h index b04d3b34bb..19ac35e299 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetView.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetView.h index d4c7c72fed..ad95b984d2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetView.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Buffer/BufferAssetView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/FeatureProcessorDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/FeatureProcessorDescriptor.h index be61677c46..a224ee877d 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/FeatureProcessorDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/FeatureProcessorDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/GpuQuerySystemDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/GpuQuerySystemDescriptor.h index ff6bba0036..31ff39f584 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/GpuQuerySystemDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/GpuQuerySystemDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAsset.h index d364c47984..1131de0e98 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAssetCreator.h index 61357352c2..a10ec7c320 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/AttachmentImageAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.h index 1a4cff2d91..cccbc2df56 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/Image.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/Image.h index b9de0bb1a3..a96dfcf850 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/Image.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/Image.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageAsset.h index fa6d94d719..99066811e2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAsset.h index 5f734952a2..adcf4f6431 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAssetCreator.h index 4b62496444..98dae8b639 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageMipChainAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h index fd57dfc63a..963ff01f74 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/ImageSystemDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAsset.h index efb25cb667..0d8a10972e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetCreator.h index 791af07bbc..dfb10af76b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetHandler.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetHandler.h index a07cbfa2b0..aa0f7296d7 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetHandler.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageControllerAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageControllerAsset.h index 815787c938..0cd5586dd5 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageControllerAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImageControllerAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAsset.h index 6d7024d164..ef6c8f1529 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAssetCreator.h index 1589a7e3c3..92246ebe90 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Image/StreamingImagePoolAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Limits.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Limits.h index 858d364c68..408abd83db 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Limits.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Limits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/LuaMaterialFunctor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/LuaMaterialFunctor.h index 349b7dab01..0b53835af6 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/LuaMaterialFunctor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/LuaMaterialFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h index c8f190454a..1839dedff7 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h index abb3e47ae6..e9bd3e3b06 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreatorCommon.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreatorCommon.h index c79bbd9106..68b744e691 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreatorCommon.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialAssetCreatorCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialDynamicMetadata.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialDynamicMetadata.h index a8119147c9..7ca03da60b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialDynamicMetadata.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialDynamicMetadata.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialFunctor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialFunctor.h index e705c2826f..f6d12fb989 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialFunctor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialFunctor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertiesLayout.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertiesLayout.h index 0208ebc1a1..bea01dc5e9 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertiesLayout.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertiesLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyDescriptor.h index bd29380355..767f2ebcdf 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyValue.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyValue.h index 8447568478..0a41d79927 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyValue.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialPropertyValue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAsset.h index 4ee03d41c9..fae1a22fad 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAssetCreator.h index 05e3605c98..d73cb99428 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/MaterialTypeAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/ShaderCollection.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/ShaderCollection.h index 4285c42375..318989c066 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/ShaderCollection.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Material/ShaderCollection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAsset.h index c30116eea0..0a1d1e604b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAssetCreator.h index 79b8282a6e..2ad193d4e4 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelKdTree.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelKdTree.h index 205d076060..cd3f1968bf 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelKdTree.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelKdTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAsset.h index 7c412f9c20..1a206684de 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAssetCreator.h index cc0c99933d..fa215b7837 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodIndex.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodIndex.h index 5424fa7621..5b5295aa88 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodIndex.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/ModelLodIndex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetDelta.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetDelta.h index d6f609a3e4..edfaea4962 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetDelta.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetDelta.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAsset.h index 4f43328116..e399fed424 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAssetCreator.h index f6c729ef64..9ba92d05e0 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/MorphTargetMetaAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAsset.h index b145ba2ae9..aa1ff3789b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAssetCreator.h index 2bf4e9357a..d8eac633e3 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Model/SkinMetaAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/ComputePassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/ComputePassData.h index ad17b84efb..f0bc6f29d2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/ComputePassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/ComputePassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/CopyPassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/CopyPassData.h index a7a5705d6a..17e303fed1 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/CopyPassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/CopyPassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/DownsampleMipChainPassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/DownsampleMipChainPassData.h index 73ccb4a158..dc2a6a1c22 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/DownsampleMipChainPassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/DownsampleMipChainPassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/EnvironmentCubeMapPassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/EnvironmentCubeMapPassData.h index b91a3baa34..3f39d4e824 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/EnvironmentCubeMapPassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/EnvironmentCubeMapPassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/FullscreenTrianglePassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/FullscreenTrianglePassData.h index 90e68597c8..e42a0128da 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/FullscreenTrianglePassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/FullscreenTrianglePassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAsset.h index ae1c60e2e2..672490a43e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAttachmentReflect.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAttachmentReflect.h index 98c0cfb98d..353cfcbdaa 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAttachmentReflect.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassAttachmentReflect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassData.h index 4c85debe1b..55e337a741 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassDescriptor.h index 087fe7c15f..7ca664d0d7 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassName.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassName.h index 1c1270edfe..d98ad13cb1 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassName.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassName.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassRequest.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassRequest.h index d64c67e0be..6fcbd2e815 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassRequest.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassRequest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassTemplate.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassTemplate.h index 0862e17d16..cd6aace53c 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassTemplate.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/PassTemplate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RasterPassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RasterPassData.h index 9b191f7c79..8b12d53b13 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RasterPassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RasterPassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderPassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderPassData.h index 803a02a2b5..64cab367c9 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderPassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderPassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderToTexturePassData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderToTexturePassData.h index 3cbe15b500..84f6564ab4 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderToTexturePassData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Pass/RenderToTexturePassData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h index a8b662d44b..4738425d8e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/RPISystemDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAsset.h index 0a1339b171..a6545357ba 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAssetCreator.h index 9c049fac73..d6a6135ded 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/ResourcePoolAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/IShaderVariantFinder.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/IShaderVariantFinder.h index 1643fd87b8..5db97664e3 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/IShaderVariantFinder.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/IShaderVariantFinder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.h index 56332b7eba..7605af539d 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAsset.h index d8e2808762..a9fbd2f46f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAssetCreator.h index e5a889e7f0..e173d1af8a 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderCommonTypes.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderCommonTypes.h index b505107378..74e20f039b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderCommonTypes.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderCommonTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderInputContract.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderInputContract.h index 57e92477f0..0e81bcdedd 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderInputContract.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderInputContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroup.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroup.h index dd43bcd933..1d1e015381 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroup.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroupLayout.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroupLayout.h index 75da781bdf..f6b164e2aa 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroupLayout.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionGroupLayout.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionTypes.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionTypes.h index f13cdf7877..ebb3becfb2 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionTypes.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOptionTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOutputContract.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOutputContract.h index c1cb02ee66..5809d4eb85 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOutputContract.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderOutputContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAsset.h index c7f36e37e7..4385d6c8a3 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.h index 7dc009566f..5fadc09c77 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantAsset.h index b0086483d5..32e89cb15f 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantKey.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantKey.h index 7b55be89b6..07f98a6c4b 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantKey.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantKey.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantTreeAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantTreeAsset.h index 92f7b138a1..be5bb704a8 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantTreeAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/Shader/ShaderVariantTreeAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AnyAsset.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AnyAsset.h index 52c5acc4c3..bb57d7c571 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AnyAsset.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AnyAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AssetAliases.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AssetAliases.h index e52bfd5a4b..9eb6e31216 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AssetAliases.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/AssetAliases.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/PipelineRenderSettings.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/PipelineRenderSettings.h index e04f6c626f..2e8204d9fc 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/PipelineRenderSettings.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/PipelineRenderSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/RenderPipelineDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/RenderPipelineDescriptor.h index 66398d8fcd..5c9f143c7e 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/RenderPipelineDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/RenderPipelineDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/SceneDescriptor.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/SceneDescriptor.h index 807cb3c12a..a2b01a2ff6 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/SceneDescriptor.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Reflect/System/SceneDescriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Android.h b/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Android.h index e5c1403a4c..2857b3a7d6 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Android.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Platform.h b/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Platform.h index d94d484d1b..6bf8039f19 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Platform.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Android/Atom_RPI_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Android/PAL_android.cmake b/Gems/Atom/RPI/Code/Source/Platform/Android/PAL_android.cmake index 25c80479a0..71dcbbbfbb 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Atom/RPI/Code/Source/Platform/Android/platform_android_files.cmake index 5af9943848..adb786b9c7 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/Common/Unimplemented/BuilderModule_Stub.cpp b/Gems/Atom/RPI/Code/Source/Platform/Common/Unimplemented/BuilderModule_Stub.cpp index 82b5194c26..a0d57af0cb 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Common/Unimplemented/BuilderModule_Stub.cpp +++ b/Gems/Atom/RPI/Code/Source/Platform/Common/Unimplemented/BuilderModule_Stub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Linux.h b/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Linux.h index e5c1403a4c..2857b3a7d6 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Linux.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Platform.h b/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Platform.h index e4182b879c..b10b5846fb 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Platform.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Linux/Atom_RPI_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/Atom/RPI/Code/Source/Platform/Linux/PAL_linux.cmake index 25c80479a0..71dcbbbfbb 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Atom/RPI/Code/Source/Platform/Linux/platform_linux_files.cmake index faf4faf4f9..99ee269918 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Mac.h b/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Mac.h index e5c1403a4c..2857b3a7d6 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Mac.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Platform.h b/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Platform.h index a68e26995e..ece4848759 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Platform.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Mac/Atom_RPI_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/Atom/RPI/Code/Source/Platform/Mac/PAL_mac.cmake index d63e82c32b..d7c360277f 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Atom/RPI/Code/Source/Platform/Mac/platform_mac_files.cmake index c5cb13afb5..ad4f6a4997 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Platform.h b/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Platform.h index 5f02b8662d..63dd5ffce0 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Platform.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Windows.h b/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Windows.h index 397ba846cc..d16333619c 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Windows.h +++ b/Gems/Atom/RPI/Code/Source/Platform/Windows/Atom_RPI_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/Atom/RPI/Code/Source/Platform/Windows/PAL_windows.cmake index 72aee4b533..896f505d05 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Atom/RPI/Code/Source/Platform/Windows/platform_windows_files.cmake index 3cea511780..00d7db5448 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_Platform.h b/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_Platform.h index c29bc9daca..88ed5c5867 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_Platform.h +++ b/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_iOS.h b/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_iOS.h index e5c1403a4c..2857b3a7d6 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_iOS.h +++ b/Gems/Atom/RPI/Code/Source/Platform/iOS/Atom_RPI_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/Atom/RPI/Code/Source/Platform/iOS/PAL_ios.cmake index 25c80479a0..71dcbbbfbb 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Atom/RPI/Code/Source/Platform/iOS/platform_ios_files.cmake index d2382debc9..9d11131021 100644 --- a/Gems/Atom/RPI/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Atom/RPI/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.cpp index 86691e5983..7ac692941c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.h index d9de6c074f..316b75a4ca 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderModule.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderModule.cpp index b38f3218c8..7d7552044a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderModule.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/BuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp index 817494de41..4eadf1e412 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.h index 3e64b2ee5b..53a60077fa 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Common/AnyAssetBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp index 09cf6eef0d..efbbbee596 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.h index 9599047411..7734a87b77 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Material/MaterialBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp index 92fa3d96d0..a7ee299989 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h index 5ebced902d..809ad092d9 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp index 8d0e8866cf..0b5cbb96ca 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.h index 0980e1d530..0850b398b0 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp index 835128498d..b188d02414 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.h index 1e31c6b541..b648653c58 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.cpp index d33e4774ca..f2a513f360 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.h index 55c3fd3237..adc3b6f16d 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelExporterContexts.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp index f6a1906d5b..e3a294209a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.h index 08185f9d20..204480ee69 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MorphTargetExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp index 953b808ff0..f25f22ee6a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.h index 89194c6c70..7604679505 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Pass/PassBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp index d85b950680..b42f886715 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.h b/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.h index b07f728680..2186e7b54c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/ResourcePool/ResourcePoolBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetAliasesSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetAliasesSourceData.cpp index bd196f81bf..56b61e0e66 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetAliasesSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetAliasesSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetUtils.cpp index 1b9abcc2a3..8818ff484b 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/AssetUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ColorUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ColorUtils.cpp index 7bdc1e773a..07c09a57a0 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ColorUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ColorUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ConvertibleSource.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ConvertibleSource.cpp index 79047738fe..8ea5bf1fbc 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ConvertibleSource.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/ConvertibleSource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonFileLoadContext.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonFileLoadContext.cpp index 2abd6b2009..e1bd5a16f9 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonFileLoadContext.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonFileLoadContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonReportingHelper.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonReportingHelper.cpp index 36ef7edcba..2f321b0dad 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonReportingHelper.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonReportingHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonUtils.cpp index 97160cc2d9..b525f03b5c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Common/JsonUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/LuaMaterialFunctorSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/LuaMaterialFunctorSourceData.cpp index 69b9ca02a5..63e323f9ee 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/LuaMaterialFunctorSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/LuaMaterialFunctorSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceData.cpp index ebd145b775..92e9a594cc 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.cpp index 31b21be5c7..e32cdf12e3 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp index 6c672d7a67..49894b7958 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialFunctorSourceDataSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyId.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyId.cpp index 87f88cd16a..3a04c9af23 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyId.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertySerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertySerializer.cpp index d19de8fabb..5ca8fff318 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertySerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertySerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp index 20e2bbc557..38a969dfb2 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceData.cpp index 9460fd1d83..159b41fa6f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.cpp index c07a0b0bd3..eee41fdf1b 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialPropertyValueSourceDataSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp index 939084d126..856550a15a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp index 1747d5d93d..b526ccdcd7 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialSourceDataSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialTypeSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialTypeSourceData.cpp index 09aa556f4c..7ac150a92e 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialTypeSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialTypeSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp index e8a465d0fc..d462993bb2 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Material/MaterialUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderSourceData.cpp index fefcab1be9..f5fa6b651c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantAssetCreator.cpp index 6a45c8f760..be2e581adb 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantListSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantListSourceData.cpp index 57e5560bca..4c5ae47b92 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantListSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantListSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.cpp index 07acab3e20..b6d454e818 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Edit/Shader/ShaderVariantTreeAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Editor/EditorModule.cpp b/Gems/Atom/RPI/Code/Source/RPI.Editor/EditorModule.cpp index b361ba3c1c..40cce6d382 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Editor/EditorModule.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Editor/EditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Private/Module.cpp b/Gems/Atom/RPI/Code/Source/RPI.Private/Module.cpp index 88eb9db155..274a34f2b8 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Private/Module.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Private/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Private/Module.h b/Gems/Atom/RPI/Code/Source/RPI.Private/Module.h index 18d5f3ff98..96b288ce6a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Private/Module.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Private/Module.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp index 60c066d310..2a9276f382 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.h b/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.h index ccaf958de3..62b1d60c54 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.h +++ b/Gems/Atom/RPI/Code/Source/RPI.Private/RPISystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/AuxGeomFeatureProcessorInterface.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/AuxGeomFeatureProcessorInterface.cpp index 381036dd7d..86bc5610b6 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/AuxGeomFeatureProcessorInterface.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/AuxGeomFeatureProcessorInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp index e6d9b18484..17aa66a808 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/Buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferPool.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferPool.cpp index 91b5d96281..bb2c27b577 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferPool.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp index a4f7e357c9..08b57611ea 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Buffer/BufferSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.inl b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.inl index 6cf4337f99..fdb3fc81a4 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.inl +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/AcesCg_To_LinearSrgb.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/ColorConversionConstants.inl b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/ColorConversionConstants.inl index dcc80e88f0..5d1f5d6969 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/ColorConversionConstants.inl +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/ColorConversionConstants.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.inl b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.inl index f9493e887e..1500347d8e 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.inl +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/LinearSrgb_To_AcesCg.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/XYZ_To_AcesCg.inl b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/XYZ_To_AcesCg.inl index 1ced8a21c6..7329f5a6d8 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/XYZ_To_AcesCg.inl +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/GeneratedTransforms/XYZ_To_AcesCg.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/TransformColor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/TransformColor.cpp index 1d38648b66..f3bb1c79a2 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/TransformColor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/ColorManagement/TransformColor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp index e687c00abe..cd1b0e925a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Culling.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBuffer.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBuffer.cpp index 3e4c77c7f9..bce665a6f6 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBuffer.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBufferAllocator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBufferAllocator.cpp index 2baab221e3..4738e33f67 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBufferAllocator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicBufferAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp index df22fa13c7..4f2100cc13 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawSystem.cpp index 05867100a9..f937941edb 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/DynamicDraw/DynamicDrawSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessor.cpp index 1d29ed1520..187152ed73 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessorFactory.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessorFactory.cpp index 751049343c..f77267288c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessorFactory.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/FeatureProcessorFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQuerySystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQuerySystem.cpp index 361e6c922f..bf3107cfdf 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQuerySystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQuerySystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQueryTypes.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQueryTypes.cpp index be01420466..e93a5fe4da 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQueryTypes.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/GpuQueryTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/Query.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/Query.cpp index d13ea88939..c9d3568360 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/Query.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/Query.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/QueryPool.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/QueryPool.cpp index e3a5fb8fe8..f082720f50 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/QueryPool.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/QueryPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/TimestampQueryPool.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/TimestampQueryPool.cpp index 8091b3e171..9e1e505e20 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/TimestampQueryPool.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/GpuQuery/TimestampQueryPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImage.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImage.cpp index b2b8c6e570..9c1f0df022 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImage.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImagePool.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImagePool.cpp index fdad9cf134..5dc61cec3a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImagePool.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/AttachmentImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/DefaultStreamingImageController.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/DefaultStreamingImageController.cpp index c99bd53187..334d2e26a0 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/DefaultStreamingImageController.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/DefaultStreamingImageController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp index 63a28ac4bf..b9b248b3a4 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/ImageSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImage.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImage.cpp index 477f183054..04098392b6 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImage.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageContext.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageContext.cpp index b9aefba2d2..d742e878a5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageContext.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp index 51d974e004..6863a11ec2 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImageController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImagePool.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImagePool.cpp index 1c81180c80..1824362398 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImagePool.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Image/StreamingImagePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp index 0eb846f324..d41d0f88a7 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Material/Material.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Material/MaterialSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Material/MaterialSystem.cpp index f31da46f18..c311cd7c29 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Material/MaterialSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Material/MaterialSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp index 8a402b5546..4dc70d53f8 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/MeshDrawPacket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp index 7c869c7910..a949eb40d1 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/Model.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp index c0b522c419..9a3d1be4b5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLod.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp index 9823df1dc0..1560d6f62c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelLodUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelSystem.cpp index 63df8a9e0f..a7917524b7 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/ModelSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/UvStreamTangentBitmask.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/UvStreamTangentBitmask.cpp index e4f0013dfe..0418d3fd39 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Model/UvStreamTangentBitmask.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Model/UvStreamTangentBitmask.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp index 79a284b3b5..c44dfb819f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/AttachmentReadback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ComputePass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ComputePass.cpp index 53ee88996b..c97df71133 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ComputePass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ComputePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/CopyPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/CopyPass.cpp index d0af52da76..3be4702895 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/CopyPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/CopyPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/FullscreenTrianglePass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/FullscreenTrianglePass.cpp index 6ee056b8dc..8c667b77ba 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/FullscreenTrianglePass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/FullscreenTrianglePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/MSAAResolvePass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/MSAAResolvePass.cpp index e8e312115e..896baddf6f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/MSAAResolvePass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/MSAAResolvePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ParentPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ParentPass.cpp index f1521ee005..74537a50ec 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ParentPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/ParentPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Pass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Pass.cpp index 1caefc9cf3..9d3a776b80 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Pass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Pass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassAttachment.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassAttachment.cpp index 8a2dc85b7e..a7b0f05fff 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassAttachment.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassAttachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFactory.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFactory.cpp index 1c7d911dc0..308db09af9 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFactory.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFilter.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFilter.cpp index 3e6670eeac..033d55c1be 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFilter.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp index fb642f2b5a..29b753985f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp index 12983b7ee3..91cc645947 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassUtils.cpp index afd070dfb4..a7e5880d4f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/PassUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp index 44ee43c8f3..44376ae642 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RasterPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp index 194469365f..f386c93f63 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/RenderPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/DownsampleMipChainPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/DownsampleMipChainPass.cpp index 6410167763..3a97d99bba 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/DownsampleMipChainPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/DownsampleMipChainPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.cpp index 15bcfc0eb8..8486ba79c5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/EnvironmentCubeMapPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.cpp index e7819256c1..abca45493a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/ImageAttachmentPreviewPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/RenderToTexturePass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/RenderToTexturePass.cpp index b2bddfc54d..8b4c9b8aab 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/RenderToTexturePass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/RenderToTexturePass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SelectorPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SelectorPass.cpp index 97a41572d9..8032d40360 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SelectorPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SelectorPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SwapChainPass.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SwapChainPass.cpp index a51e75e774..7a3bf3a011 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SwapChainPass.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Pass/Specific/SwapChainPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/PipelineState.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/PipelineState.cpp index a1e7a3bb3a..0538b728bc 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/PipelineState.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/PipelineState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp index 07db062587..e4eb7b3369 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/RPISystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/RPIUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/RPIUtils.cpp index 31f8301ff8..da2bf933dc 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/RPIUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/RPIUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp index c0dc88435a..a91dc3c211 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/RenderPipeline.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp index 222ac4a156..6253af1eaf 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Scene.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp index 49e9006490..906ecd05af 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetrics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp index 506bcd723d..114917b7b4 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Metrics/ShaderMetricsSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp index b64071211b..5f5011fee8 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/Shader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderReloadDebugTracker.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderReloadDebugTracker.cpp index 8aa2afcaf4..34af9db0df 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderReloadDebugTracker.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderReloadDebugTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroup.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroup.cpp index 0bf07360ea..617663da43 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroup.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroupPool.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroupPool.cpp index d2dbc78359..ac9b0ca607 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroupPool.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderResourceGroupPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp index 1c5b37566c..78bd51b73b 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariant.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariant.cpp index 2350a8b8f6..6235211efe 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariant.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariant.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariantAsyncLoader.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariantAsyncLoader.cpp index a0de5cc3d6..7fa6f36289 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariantAsyncLoader.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/Shader/ShaderVariantAsyncLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp index 9093b292f9..02fd93d0c5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/View.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContext.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContext.cpp index 03bea98584..23d5805c12 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContext.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContextManager.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContextManager.cpp index 2ae6b29642..552304557f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContextManager.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/ViewportContextManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Public/WindowContext.cpp b/Gems/Atom/RPI/Code/Source/RPI.Public/WindowContext.cpp index 28ec95a8ec..7a5982c10d 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Public/WindowContext.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Public/WindowContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetReference.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetReference.cpp index 9474dc2414..f29cc078e5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetReference.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetReference.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetUtils.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetUtils.cpp index c5c688365c..fe245da186 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetUtils.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/AssetUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/BuiltInAssetHandler.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/BuiltInAssetHandler.cpp index 22bfc9babc..28dcef840f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/BuiltInAssetHandler.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Asset/BuiltInAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Base.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Base.cpp index f6d4c1fa4c..2f36420558 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Base.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Base.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAsset.cpp index e4550ef5ce..1d61fb098e 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetCreator.cpp index 01928a1970..584a224012 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetView.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetView.cpp index ef8d97ab01..935d60ba2f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetView.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Buffer/BufferAssetView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/FeatureProcessorDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/FeatureProcessorDescriptor.cpp index 9b5f494cfd..8ce1df7d4e 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/FeatureProcessorDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/FeatureProcessorDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/GpuQuerySystemDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/GpuQuerySystemDescriptor.cpp index f4cf1583f9..5e97dab776 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/GpuQuerySystemDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/GpuQuerySystemDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAsset.cpp index 76860083bf..e0f88a2b09 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAssetCreator.cpp index 8caeecd8ae..22a7c88a8f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/AttachmentImageAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.cpp index 8b01f8a6ec..b11522ffe0 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/DefaultStreamingImageControllerAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/Image.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/Image.cpp index d76f1d0605..ea5876b0d9 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/Image.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/Image.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageAsset.cpp index ef4e34f72c..eb079a20fd 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAsset.cpp index e47a0a944e..5bc2e60237 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAssetCreator.cpp index b4211bd850..4b1053d45c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageMipChainAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp index 8d73fe9511..72741b098b 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/ImageSystemDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAsset.cpp index fa5b53cdb3..a11de204d3 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetCreator.cpp index 342d33b756..62d087e336 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetHandler.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetHandler.cpp index 046e7308d1..1d0fddbd38 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetHandler.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageControllerAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageControllerAsset.cpp index 4510faf619..9046897968 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageControllerAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImageControllerAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAsset.cpp index 1511590bdc..f03eb48278 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAssetCreator.cpp index db4cec3feb..aea70b977c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Image/StreamingImagePoolAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/LuaMaterialFunctor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/LuaMaterialFunctor.cpp index d42deaa66e..5f9cd5c7ce 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/LuaMaterialFunctor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/LuaMaterialFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp index 80147a7261..04a7d21c4f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp index 3f07d0981d..dae44b38be 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreatorCommon.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreatorCommon.cpp index 04aae0a1cf..bdb3553a20 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreatorCommon.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialAssetCreatorCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialDynamicMetadata.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialDynamicMetadata.cpp index e32b624ede..b7e2bddabf 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialDynamicMetadata.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialDynamicMetadata.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialFunctor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialFunctor.cpp index d179b2fc3a..33d0657fbf 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialFunctor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialFunctor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertiesLayout.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertiesLayout.cpp index 1d85c1d00f..224def7188 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertiesLayout.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertiesLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyDescriptor.cpp index 31e7aba4cb..3fa2b398d9 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyValue.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyValue.cpp index eab7a1ff7f..54dd18c6d4 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyValue.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialPropertyValue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAsset.cpp index 6aca9f6a66..471135dce7 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAsset.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAssetCreator.cpp index 956f2004f2..8eacd7ee4b 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/MaterialTypeAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/ShaderCollection.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/ShaderCollection.cpp index 7448bdcb36..b7b9ca2d26 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/ShaderCollection.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Material/ShaderCollection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp index bf0e4eb584..eb4f5a53c0 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp index 0cd964bde3..82e15db7ad 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelKdTree.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelKdTree.cpp index fd3ddfa4eb..54ec002893 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelKdTree.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelKdTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAsset.cpp index 3b98d50a93..c686a9fc11 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAssetCreator.cpp index dbbc1cc9c7..b8a9afa91a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/ModelLodAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetDelta.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetDelta.cpp index c4e514edd5..60b4b77f76 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetDelta.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetDelta.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAsset.cpp index 1190ae2dd4..7de13a6578 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAssetCreator.cpp index 010305aa2b..d08dad6064 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/MorphTargetMetaAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAsset.cpp index a617c27ef2..8dbee89393 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAssetCreator.cpp index 9dfb03a3ff..871afe0a93 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Model/SkinMetaAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAsset.cpp index 2971d365f3..5c83d70fe6 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAttachmentReflect.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAttachmentReflect.cpp index 97df324eb1..52527f3afe 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAttachmentReflect.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassAttachmentReflect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassRequest.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassRequest.cpp index ac24e54c9c..d1b9eebc56 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassRequest.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassRequest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassTemplate.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassTemplate.cpp index cb0cfffa1c..34ebbbad66 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassTemplate.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Pass/PassTemplate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp index 36f35ef820..754a2a7a28 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/RPISystemDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAsset.cpp index f48939abef..026820e952 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAssetCreator.cpp index 640bedf622..6e1cfa95fb 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/ResourcePoolAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.cpp index fa9381f4fc..2a87fc8064 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/PrecompiledShaderAssetSourceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp index 9a84ce67a1..b83e95d08a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetCreator.cpp index 581c43b970..ac02447259 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariant.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariant.cpp index 00f0ceaab4..8b88a9055f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariant.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariant.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariantCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariantCreator.cpp index ee3486c2c9..ac223cb6c5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariantCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderAssetVariantCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderInputContract.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderInputContract.cpp index ca32177187..67bffadec9 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderInputContract.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderInputContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroup.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroup.cpp index e0960339fb..d06efb690f 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroup.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroupLayout.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroupLayout.cpp index 945409c5ed..7247b305b5 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroupLayout.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOptionGroupLayout.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOutputContract.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOutputContract.cpp index 9213cf3ab1..da93644738 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOutputContract.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderOutputContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAsset.cpp index 5a9ca467b7..bbf7187af6 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.cpp index 934b99495b..a564f789eb 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderResourceGroupAssetCreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderStageType.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderStageType.cpp index 3c893552eb..e82ea882ad 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderStageType.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderStageType.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp index c52d1a5deb..a00bb71f30 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantKey.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantKey.cpp index 62bad1d0e8..0018b23a31 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantKey.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantKey.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp index eaedf11fe5..eb235a047a 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/Shader/ShaderVariantTreeAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AnyAsset.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AnyAsset.cpp index 5673230691..f31fa00ebb 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AnyAsset.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AnyAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AssetAliases.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AssetAliases.cpp index 76599b5c4f..3fac520477 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AssetAliases.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/AssetAliases.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/RenderPipelineDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/RenderPipelineDescriptor.cpp index 34762e2543..5015e4e273 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/RenderPipelineDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/RenderPipelineDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/SceneDescriptor.cpp b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/SceneDescriptor.cpp index 31cbd68d7a..87c0a095b6 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/SceneDescriptor.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Reflect/System/SceneDescriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp b/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp index 3d628c1ce9..3c66380de4 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/AnyAssetBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests.Builders/AtomRPIBuildersTests.cpp b/Gems/Atom/RPI/Code/Tests.Builders/AtomRPIBuildersTests.cpp index 78091743cc..aa1e2fea28 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/AtomRPIBuildersTests.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/AtomRPIBuildersTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.cpp b/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.cpp index 4ff85f244d..dc9c695a31 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h b/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h index 40074589a1..3ee8b31bcd 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h +++ b/Gems/Atom/RPI/Code/Tests.Builders/BuilderTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp b/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp index 00fd238224..85fddb9dfc 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/PassBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp b/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp index 2d36123837..52d4f670ea 100644 --- a/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp +++ b/Gems/Atom/RPI/Code/Tests.Builders/ResourcePoolBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests.Editor/AtomRPIEditorTests.cpp b/Gems/Atom/RPI/Code/Tests.Editor/AtomRPIEditorTests.cpp index c1a3f38d30..3aa2d146c6 100644 --- a/Gems/Atom/RPI/Code/Tests.Editor/AtomRPIEditorTests.cpp +++ b/Gems/Atom/RPI/Code/Tests.Editor/AtomRPIEditorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp b/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp index b49ffbd05f..e8587d5566 100644 --- a/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Buffer/BufferTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.cpp b/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.cpp index 8d46824339..ee3948a93c 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h b/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h index 83779a457d..be847f872f 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h +++ b/Gems/Atom/RPI/Code/Tests/Common/AssetManagerTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.cpp b/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.cpp index 580637df6d..aeb1a89abf 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.h b/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.h index bb7bd02f7a..a5c603bf51 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.h +++ b/Gems/Atom/RPI/Code/Tests/Common/AssetSystemStub.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp index c889daf1ae..3944254b9e 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.h b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.h index ec85b8b760..168a27d51d 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.h +++ b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinderTests.cpp b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinderTests.cpp index 69a56d743d..8bd974456c 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinderTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/ErrorMessageFinderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.cpp b/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.cpp index e1b94dd991..e8c4ffe231 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h b/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h index 49689119f4..abe9cac3b4 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h +++ b/Gems/Atom/RPI/Code/Tests/Common/JsonTestUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.cpp b/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.cpp index b594beec6f..ecb9dd862f 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.h b/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.h index 01599247e7..da5a532e1a 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.h +++ b/Gems/Atom/RPI/Code/Tests/Common/RHI/Factory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.cpp b/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.cpp index a43c6b6d45..285b66107f 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.h b/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.h index b9d90f5275..e351f1e0fd 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.h +++ b/Gems/Atom/RPI/Code/Tests/Common/RHI/Stubs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.cpp b/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.cpp index 81b392512f..c2dba3e7f8 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.cpp +++ b/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.h b/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.h index 66367ec953..34a69fa95d 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.h +++ b/Gems/Atom/RPI/Code/Tests/Common/RPITestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/SerializeTester.h b/Gems/Atom/RPI/Code/Tests/Common/SerializeTester.h index 9de35e8342..7f443d3f31 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/SerializeTester.h +++ b/Gems/Atom/RPI/Code/Tests/Common/SerializeTester.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/TestFeatureProcessors.h b/Gems/Atom/RPI/Code/Tests/Common/TestFeatureProcessors.h index 5b1cdb2199..29bf30c554 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/TestFeatureProcessors.h +++ b/Gems/Atom/RPI/Code/Tests/Common/TestFeatureProcessors.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Common/TestUtils.h b/Gems/Atom/RPI/Code/Tests/Common/TestUtils.h index 2416b72b00..09b6740433 100644 --- a/Gems/Atom/RPI/Code/Tests/Common/TestUtils.h +++ b/Gems/Atom/RPI/Code/Tests/Common/TestUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp b/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp index 69ef3c869b..528c0e4ee0 100644 --- a/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Image/StreamingImageTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/LuaMaterialFunctorTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/LuaMaterialFunctorTests.cpp index 360f2cd809..1091cfb32b 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/LuaMaterialFunctorTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/LuaMaterialFunctorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.cpp index 573c0083ff..da33ad7a20 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.h b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.h index 150ae36e65..eac804eb32 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.h +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTestUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp index 58b7cd487b..d663025116 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialAssetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorSourceDataSerializerTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorSourceDataSerializerTests.cpp index 21fae99bae..3e2cf3919d 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorSourceDataSerializerTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorSourceDataSerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp index d0ec8e2eeb..c2157e0a5a 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialFunctorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp index 1c9a5110c4..f4596fd8f7 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertySerializerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertyValueSourceDataTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertyValueSourceDataTests.cpp index 85c69915e8..26d1d23b62 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertyValueSourceDataTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialPropertyValueSourceDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp index 899148d561..9fd96c1e41 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialSourceDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialTests.cpp index a99d45cb1e..2ee84bb801 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp index 3d96acfccf..8b8d321237 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeAssetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp index b79debfcdf..c9a9e1cae7 100644 --- a/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Material/MaterialTypeSourceDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp b/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp index 7bc9ed5d11..e727cbc18e 100644 --- a/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Model/ModelTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Pass/PassTests.cpp b/Gems/Atom/RPI/Code/Tests/Pass/PassTests.cpp index ba43b3239d..07beab91fc 100644 --- a/Gems/Atom/RPI/Code/Tests/Pass/PassTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Pass/PassTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/Shader/ShaderTests.cpp b/Gems/Atom/RPI/Code/Tests/Shader/ShaderTests.cpp index daa089d537..17120ac23c 100644 --- a/Gems/Atom/RPI/Code/Tests/Shader/ShaderTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/Shader/ShaderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupAssetTests.cpp b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupAssetTests.cpp index edb08a2619..bef1310708 100644 --- a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupAssetTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupAssetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupBufferTests.cpp b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupBufferTests.cpp index 928dfa3327..41d69aa9ca 100644 --- a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupBufferTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupBufferTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupConstantBufferTests.cpp b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupConstantBufferTests.cpp index f075c9d517..67dfcfa6e2 100644 --- a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupConstantBufferTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupConstantBufferTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupGeneralTests.cpp b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupGeneralTests.cpp index 5c306de93a..8e7f0ab41c 100644 --- a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupGeneralTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupGeneralTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupImageTests.cpp b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupImageTests.cpp index 8e3419989d..fcbc5bbc11 100644 --- a/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupImageTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/ShaderResourceGroup/ShaderResourceGroupImageTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/System/FeatureProcessorFactoryTests.cpp b/Gems/Atom/RPI/Code/Tests/System/FeatureProcessorFactoryTests.cpp index ccbe657a65..24e2c62fd0 100644 --- a/Gems/Atom/RPI/Code/Tests/System/FeatureProcessorFactoryTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/System/FeatureProcessorFactoryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/System/GpuQueryTests.cpp b/Gems/Atom/RPI/Code/Tests/System/GpuQueryTests.cpp index 530345d63e..a2ac9b4a72 100644 --- a/Gems/Atom/RPI/Code/Tests/System/GpuQueryTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/System/GpuQueryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/System/RenderPipelineTests.cpp b/Gems/Atom/RPI/Code/Tests/System/RenderPipelineTests.cpp index ddaea38795..1db56b71ec 100644 --- a/Gems/Atom/RPI/Code/Tests/System/RenderPipelineTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/System/RenderPipelineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/System/SceneTests.cpp b/Gems/Atom/RPI/Code/Tests/System/SceneTests.cpp index f3dfd3adfa..32e54fff41 100644 --- a/Gems/Atom/RPI/Code/Tests/System/SceneTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/System/SceneTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/Tests/System/ViewTests.cpp b/Gems/Atom/RPI/Code/Tests/System/ViewTests.cpp index d499b62939..359bea6a19 100644 --- a/Gems/Atom/RPI/Code/Tests/System/ViewTests.cpp +++ b/Gems/Atom/RPI/Code/Tests/System/ViewTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/RPI/Code/atom_rpi_builders_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_builders_files.cmake index 9888da7bc9..a3aaead2ad 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_builders_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_builders_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_builders_shared_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_builders_shared_files.cmake index 7edf0c1a6b..405d217028 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_builders_shared_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_builders_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_builders_stub_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_builders_stub_files.cmake index ba6bf13838..bc765a8e64 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_builders_stub_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_builders_stub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_builders_tests_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_builders_tests_files.cmake index 97645ed8f2..cc6542aa5b 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_builders_tests_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_builders_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_edit_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_edit_files.cmake index bd63ef8a13..3f7af56d7d 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_edit_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_edit_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_editor_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_editor_files.cmake index 77c8cf1b29..4431d05843 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_editor_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_editor_tests_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_editor_tests_files.cmake index 43ec1c6823..cecfb066a5 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_editor_tests_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_masked_occlusion_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_masked_occlusion_files.cmake index 5291fff053..a637df7e5c 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_masked_occlusion_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_masked_occlusion_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_private_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_private_files.cmake index 1b5838acfa..642a5fde37 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_private_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_private_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_private_shared_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_private_shared_files.cmake index 4345a86402..fec9907b53 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_private_shared_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_private_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_public_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_public_files.cmake index 26c096532c..77c22e28cc 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_public_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_public_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_reflect_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_reflect_files.cmake index 6740055fae..fd7f875746 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_reflect_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_reflect_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/atom_rpi_tests_files.cmake b/Gems/Atom/RPI/Code/atom_rpi_tests_files.cmake index 276290e98a..3235e1b581 100644 --- a/Gems/Atom/RPI/Code/atom_rpi_tests_files.cmake +++ b/Gems/Atom/RPI/Code/atom_rpi_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Code/rpi_shared_files.cmake b/Gems/Atom/RPI/Code/rpi_shared_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/RPI/Code/rpi_shared_files.cmake +++ b/Gems/Atom/RPI/Code/rpi_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Tools/CMakeLists.txt b/Gems/Atom/RPI/Tools/CMakeLists.txt index 9cb50067e0..bf70b6db47 100644 --- a/Gems/Atom/RPI/Tools/CMakeLists.txt +++ b/Gems/Atom/RPI/Tools/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/RPI/Tools/README.txt b/Gems/Atom/RPI/Tools/README.txt index 6bfeddf2e8..0744fd8fa6 100644 --- a/Gems/Atom/RPI/Tools/README.txt +++ b/Gems/Atom/RPI/Tools/README.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/Atom/RPI/Tools/__init__.py b/Gems/Atom/RPI/Tools/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/Gems/Atom/RPI/Tools/__init__.py +++ b/Gems/Atom/RPI/Tools/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Atom/RPI/Tools/atom_rpi_tools/pass_data.py b/Gems/Atom/RPI/Tools/atom_rpi_tools/pass_data.py index 2a569ee553..a3f28973a8 100644 --- a/Gems/Atom/RPI/Tools/atom_rpi_tools/pass_data.py +++ b/Gems/Atom/RPI/Tools/atom_rpi_tools/pass_data.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/__init__.py b/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/__init__.py +++ b/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_pass_template.py b/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_pass_template.py index 3fb10bee26..5cefce47bf 100644 --- a/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_pass_template.py +++ b/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_pass_template.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_utils.py b/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_utils.py index ddc6be0948..e12f2764a9 100644 --- a/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_utils.py +++ b/Gems/Atom/RPI/Tools/atom_rpi_tools/tests/test_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/Atom/RPI/Tools/atom_rpi_tools/utils.py b/Gems/Atom/RPI/Tools/atom_rpi_tools/utils.py index a3bb17a4be..8c3648c743 100644 --- a/Gems/Atom/RPI/Tools/atom_rpi_tools/utils.py +++ b/Gems/Atom/RPI/Tools/atom_rpi_tools/utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Atom/RPI/Tools/setup.py b/Gems/Atom/RPI/Tools/setup.py index f521c9f2d0..b858bcdce4 100644 --- a/Gems/Atom/RPI/Tools/setup.py +++ b/Gems/Atom/RPI/Tools/setup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_Common.azsli b/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_Common.azsli index 1c196523c5..22b1888af4 100644 --- a/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_Common.azsli +++ b/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_Common.azsli @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_ForwardPass.azsl b/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_ForwardPass.azsl index ca4be5d542..a995572555 100644 --- a/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_ForwardPass.azsl +++ b/Gems/Atom/TestData/TestData/Materials/Types/AutoBrick_ForwardPass.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/TestData/TestData/Materials/Types/MinimalPBR_ForwardPass.azsl b/Gems/Atom/TestData/TestData/Materials/Types/MinimalPBR_ForwardPass.azsl index 67d6230d63..4c5f6861a7 100644 --- a/Gems/Atom/TestData/TestData/Materials/Types/MinimalPBR_ForwardPass.azsl +++ b/Gems/Atom/TestData/TestData/Materials/Types/MinimalPBR_ForwardPass.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/CMakeLists.txt b/Gems/Atom/Tools/AtomToolsFramework/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/CMakeLists.txt +++ b/Gems/Atom/Tools/AtomToolsFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/CMakeLists.txt b/Gems/Atom/Tools/AtomToolsFramework/Code/CMakeLists.txt index a2c246c287..5d38a4fc0b 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/CMakeLists.txt +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalServer.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalServer.h index ea10e24100..7ef73ebf1c 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalServer.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalSocket.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalSocket.h index b76b817e69..2bd2d75fc4 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalSocket.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Communication/LocalSocket.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Debug/TraceRecorder.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Debug/TraceRecorder.h index d67c8da4cc..d7b96d2942 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Debug/TraceRecorder.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Debug/TraceRecorder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicProperty.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicProperty.h index 3a58ab72bd..5880dcd571 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicProperty.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicProperty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicPropertyGroup.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicPropertyGroup.h index b5a79438a5..188851881a 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicPropertyGroup.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/DynamicProperty/DynamicPropertyGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupHeaderWidget.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupHeaderWidget.h index 0d097a631f..2038ed661f 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupHeaderWidget.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupHeaderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupWidget.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupWidget.h index 0f150d94dd..2b5bb3b283 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupWidget.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorGroupWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorNotificationBus.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorNotificationBus.h index 717607c792..0bf635e7cb 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorNotificationBus.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorPropertyGroupWidget.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorPropertyGroupWidget.h index de98b99e71..dc78ef4a02 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorPropertyGroupWidget.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorPropertyGroupWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorRequestBus.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorRequestBus.h index 5fe92353f5..72f92b2cd3 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorRequestBus.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorWidget.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorWidget.h index fa9eb2cf2e..b1a720c11b 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorWidget.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Inspector/InspectorWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/MaterialPropertyUtil.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/MaterialPropertyUtil.h index f891c74a1e..14152b9018 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/MaterialPropertyUtil.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/MaterialPropertyUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/Util.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/Util.h index e7c1b8b569..789de5579a 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/Util.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Util/Util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraController.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraController.h index 2f0f943210..7163f97863 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraController.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraControllerRequestBus.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraControllerRequestBus.h index d4f412eafd..f639c7f72f 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraControllerRequestBus.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/ModularViewportCameraControllerRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h index 8f872de26a..c649031280 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Include/AtomToolsFramework/Viewport/RenderViewportWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.cpp index a7ae022fee..1c0a870e2c 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.h index 1a1d30a787..cdca8d9537 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.cpp index ef1ca89299..31f2647268 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.h b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.h index e658d634b5..5eae9181c1 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.h +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/AtomToolsFrameworkSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalServer.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalServer.cpp index 6e5d17276f..6a0cae0395 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalServer.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalSocket.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalSocket.cpp index 265a5ec12a..8cd226bf52 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalSocket.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Communication/LocalSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Debug/TraceRecorder.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Debug/TraceRecorder.cpp index 331dbb013d..4ec3bc16bf 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Debug/TraceRecorder.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Debug/TraceRecorder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicProperty.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicProperty.cpp index f6bfa76e39..4f404d48f3 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicProperty.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicProperty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicPropertyGroup.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicPropertyGroup.cpp index 56009ca19c..d8855ae488 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicPropertyGroup.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/DynamicProperty/DynamicPropertyGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupHeaderWidget.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupHeaderWidget.cpp index 0c4dbbc95c..a1a26616fb 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupHeaderWidget.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupHeaderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupWidget.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupWidget.cpp index cc917e1044..37f0b4e15b 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupWidget.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorGroupWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorPropertyGroupWidget.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorPropertyGroupWidget.cpp index 8a7c6d5871..b6680b9018 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorPropertyGroupWidget.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorPropertyGroupWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorWidget.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorWidget.cpp index cbe8b85b26..8ecdde3b9f 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorWidget.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Inspector/InspectorWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/MaterialPropertyUtil.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/MaterialPropertyUtil.cpp index 062d9b81be..c16b9a0e85 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/MaterialPropertyUtil.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/MaterialPropertyUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp index ad80091267..8db35affb1 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Util/Util.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/ModularViewportCameraController.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/ModularViewportCameraController.cpp index 1bfb5dc037..6f2cbf57d5 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/ModularViewportCameraController.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/ModularViewportCameraController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp index 0fb6001c62..529652e1a9 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Source/Viewport/RenderViewportWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/Tests/AtomToolsFrameworkTest.cpp b/Gems/Atom/Tools/AtomToolsFramework/Code/Tests/AtomToolsFrameworkTest.cpp index 546422eaed..c8f640dfe0 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/Tests/AtomToolsFrameworkTest.cpp +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/Tests/AtomToolsFrameworkTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake b/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake index cbd8b2c64a..817840221a 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_shared_files.cmake b/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_shared_files.cmake index f3ac4a5824..95349635c4 100644 --- a/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_shared_files.cmake +++ b/Gems/Atom/Tools/AtomToolsFramework/Code/atomtoolsframework_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/CMakeLists.txt b/Gems/Atom/Tools/CMakeLists.txt index 59e95673fd..57a9a9c8c9 100644 --- a/Gems/Atom/Tools/CMakeLists.txt +++ b/Gems/Atom/Tools/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/CMakeLists.txt b/Gems/Atom/Tools/MaterialEditor/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Tools/MaterialEditor/CMakeLists.txt +++ b/Gems/Atom/Tools/MaterialEditor/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt b/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt index a390a6761e..3e12485d67 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt +++ b/Gems/Atom/Tools/MaterialEditor/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Core/MaterialDocumentFactoryRequestBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Core/MaterialDocumentFactoryRequestBus.h index b2113df5c3..07bc4270e8 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Core/MaterialDocumentFactoryRequestBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Core/MaterialDocumentFactoryRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentModule.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentModule.h index dbdb769989..36fd30a32b 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentModule.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentNotificationBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentNotificationBus.h index 2acf722838..156346bcdd 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentNotificationBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentRequestBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentRequestBus.h index f4a434af35..366c941ef7 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentRequestBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSettings.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSettings.h index 712e0b2db0..bc8dd0372d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSettings.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSystemRequestBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSystemRequestBus.h index b90199d8cc..29b26a493b 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSystemRequestBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Document/MaterialDocumentSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/InputController/MaterialEditorViewportInputControllerBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/InputController/MaterialEditorViewportInputControllerBus.h index ad92304f35..2e2e47c150 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/InputController/MaterialEditorViewportInputControllerBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/InputController/MaterialEditorViewportInputControllerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportModule.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportModule.h index bebc15887f..5b1ae99a8f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportModule.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportNotificationBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportNotificationBus.h index 367c286556..da92b7cc93 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportNotificationBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportRequestBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportRequestBus.h index a204904b32..2aacbff21b 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportRequestBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportSettings.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportSettings.h index 11d6dd8848..d90bfe41fe 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportSettings.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/MaterialViewportSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMetrics.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMetrics.h index 138115fdb4..472e84b48a 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMetrics.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMetrics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMonitorRequestBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMonitorRequestBus.h index a3db00b7dd..c54250808c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMonitorRequestBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Viewport/PerformanceMonitorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowFactoryRequestBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowFactoryRequestBus.h index ab85e96ede..9d189d37eb 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowFactoryRequestBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowFactoryRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowModule.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowModule.h index 0b84cdcfbb..570265da85 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowModule.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowNotificationBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowNotificationBus.h index 48923b0799..ac86372237 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowNotificationBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowRequestBus.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowRequestBus.h index a06dc0560e..1d7fdbc6e9 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowRequestBus.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowSettings.h b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowSettings.h index deeee308cf..ac7c088e36 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowSettings.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Include/Atom/Window/MaterialEditorWindowSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.cpp index d541eb7076..35b835dc19 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.h index 26735431f4..41510fd2fa 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocument.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentModule.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentModule.cpp index e917d45fb6..26b0c34210 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentModule.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSettings.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSettings.cpp index 6a68d1305c..d94b4b8b52 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSettings.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.cpp index 811dd69845..1607e3a6cd 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.h index 9778328bcb..d0513fe616 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Document/MaterialDocumentSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp index 983b7df872..a5435106c6 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.h index b8f0d078ee..4d23cc640f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/MaterialEditorApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/PAL_android.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/PAL_android.cmake index cd89180efa..5bcd605d84 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/platform_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Linux.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Linux.cpp index db46c51184..b6e596507b 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Linux.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Linux.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Linux.h index 3d24be2dc2..e713bab2e6 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Linux.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Platform.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Platform.h index a43b4e5364..45aeadecb9 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Platform.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/MaterialEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/PAL_linux.cmake index 9d4b98ae81..bbbd15ab57 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/platform_linux_files.cmake index 13684db0fe..dc8daef655 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/tool_dependencies_linux.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/tool_dependencies_linux.cmake index 9b94acda14..65109e0bc8 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/tool_dependencies_linux.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Linux/tool_dependencies_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Mac.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Mac.cpp index db46c51184..b6e596507b 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Mac.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Mac.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Mac.h index c336c52803..76c728b567 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Mac.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Platform.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Platform.h index cd769ee481..e2871a65eb 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Platform.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/MaterialEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/PAL_mac.cmake index 9d4b98ae81..bbbd15ab57 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/platform_mac_files.cmake index d4a7b73ceb..18747c9176 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/tool_dependencies_mac.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/tool_dependencies_mac.cmake index 9b94acda14..65109e0bc8 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/tool_dependencies_mac.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Mac/tool_dependencies_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h index 63b6b50943..de2c3a2a1b 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Windows.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Windows.h index eba595bb24..3f396ae0a1 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Windows.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Windows.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Windows.cpp index f84d19ef6a..6a55d18f2f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Windows.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/MaterialEditor_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/PAL_windows.cmake index 9d4b98ae81..bbbd15ab57 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/platform_windows_files.cmake index e55074ed5f..a7a169de8c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/tool_dependencies_windows.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/tool_dependencies_windows.cmake index 9e802b2f46..c285258429 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/tool_dependencies_windows.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/Windows/tool_dependencies_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/PAL_ios.cmake index cd89180efa..5bcd605d84 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/platform_ios_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.cpp index 4a17df06c1..2df43fc34a 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.h index d5eaf80fa4..e30e33971e 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/Behavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.cpp index 77615c4c61..718611660d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.h index 4105a50276..ea9c2994db 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/DollyCameraBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.cpp index 070efd20ce..6a8a8d1906 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.h index eb32c62291..dbd9e7625c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/IdleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.cpp index 869535ed81..cec10d2caa 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.h index 501035a399..82e0c41043 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MaterialEditorViewportInputController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.cpp index 660ac6e78c..37da4f1680 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.h index ca8d026468..83cd43e46f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/MoveCameraBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.cpp index ba18db5212..9db02a3c61 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.h index f1aa5ae1c4..3562be6dd4 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/OrbitCameraBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.cpp index 5c76bf5f51..045df65b74 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.h index eec25049ad..a1dd5b809d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/PanCameraBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.cpp index 42c6006d66..747eb3eb18 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.h index 4caf902e05..af9806eec7 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateEnvironmentBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.cpp index b521dbe392..edd9c9bb5d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.h index efd36938c0..9579d797f7 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/InputController/RotateModelBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp index 54fd1cf828..a83bd71708 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.h index bf72210b64..d700c7201f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportModule.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportModule.cpp index d741d61015..3b133d27b2 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportModule.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.cpp index 4e31f782b4..32b7fa70a7 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.h index e1b172f361..e126419c74 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportSettings.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportSettings.cpp index e67405ec5a..6137a9ad93 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportSettings.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp index 8d9816d350..e2bda2c755 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.h index 0ec0b769de..d58c721a94 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/MaterialViewportWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.cpp index aa4aa34b4a..e37550b198 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.h index c182320945..2aa417da09 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Viewport/PerformanceMonitorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp index bacd8ffe86..b15995932d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.h index 5673d60cd2..d8dd1b9b2d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/CreateMaterialDialog/CreateMaterialDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.cpp index 359b983581..4c498223a1 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.h index 6db125a422..2973957f0f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/HelpDialog/HelpDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.cpp index 92f97f3659..30ff76fd8c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.h index 0ea9a4c839..f52ca98139 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialBrowserWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditor.qss b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditor.qss index 00da666878..bb87883440 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditor.qss +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditor.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp index 5fa75759dc..95643f6e29 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.h index 1065633f27..865fa69351 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorBrowserInteractions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp index 646333478a..7c3a912b95 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h index c23cbfd466..165767ecc5 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.cpp index 06b510fba6..948482d19d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.h index 3ecbee19a5..cf52e0706f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowModule.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowModule.cpp index 88f164fbe1..23c865933f 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowModule.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowSettings.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowSettings.cpp index bbe5bc483a..840fcd12f6 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowSettings.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialEditorWindowSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.cpp index b005e76567..bfa01dc90d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.h index 8a5309b1ca..c3288a6ae2 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/MaterialInspector/MaterialInspector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.cpp index 97f28a4369..24cf0c7f85 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.h index 0947c9319a..945336b4a1 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PerformanceMonitor/PerformanceMonitorWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.cpp index f190fe680e..57848cad06 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.h index 64d80c67e1..d24795e983 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/LightingPresetBrowserDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.cpp index 2f0c323ac7..eab8da73ee 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.h index c7729d066b..82152344ea 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/ModelPresetBrowserDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.cpp index cac61e13bc..8d00649539 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.h index b518f45557..5c8b045a34 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/PresetBrowserDialogs/PresetBrowserDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.cpp index 9872eacc4f..ae330010a8 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.h index 992c59e91d..24f4ed933c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.cpp index c8c1c34d30..6c3a6a63aa 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.h index 752e408c96..e2fd9c8a16 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/SettingsDialog/SettingsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.cpp index 9ddacb9255..628bf5a6b4 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.h index 20144a5af4..43c2c5c77a 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/StatusBar/StatusBarWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.cpp index 6ac200e010..03e753485c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.h index c99d72a784..b0ab817b9c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/LightingPresetComboBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.cpp index e34257ed40..e68cc57126 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.h index 96f844a4dc..0b493dbe22 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/MaterialEditorToolBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.cpp index 8a38cdfdc1..8dc3b738a8 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.h index 2f7eaa1b9b..f4ec1e0c46 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ToolBar/ModelPresetComboBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.cpp index 950e62e6be..b0c6e6dfa6 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.h index b1e4902677..393d460952 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/Window/ViewportSettingsInspector/ViewportSettingsInspector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp b/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp index 1b03527587..d1b937fde0 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/Source/resource.h b/Gems/Atom/Tools/MaterialEditor/Code/Source/resource.h index 8cd7c2bc49..3e58e34b39 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/Source/resource.h +++ b/Gems/Atom/Tools/MaterialEditor/Code/Source/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_files.cmake index 22ffcf0087..4dd8978f24 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_win_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_win_files.cmake index 936d8f981b..c8a27c789c 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_win_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/materialeditor_win_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/materialeditordocument_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/materialeditordocument_files.cmake index f91c173a27..a4e904a126 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/materialeditordocument_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/materialeditordocument_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/materialeditorviewport_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/materialeditorviewport_files.cmake index 5ee02c7a01..bd20f6bf08 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/materialeditorviewport_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/materialeditorviewport_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/materialeditorwindow_files.cmake b/Gems/Atom/Tools/MaterialEditor/Code/materialeditorwindow_files.cmake index 81423af183..fa9acc7b1d 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/materialeditorwindow_files.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/materialeditorwindow_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Code/tool_dependencies.cmake b/Gems/Atom/Tools/MaterialEditor/Code/tool_dependencies.cmake index acc7edcbd8..d3f48f6550 100644 --- a/Gems/Atom/Tools/MaterialEditor/Code/tool_dependencies.cmake +++ b/Gems/Atom/Tools/MaterialEditor/Code/tool_dependencies.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/MaterialEditor/Scripts/GenerateAllMaterialScreenshots.py b/Gems/Atom/Tools/MaterialEditor/Scripts/GenerateAllMaterialScreenshots.py index 13ed6569f2..7409ff1764 100755 --- a/Gems/Atom/Tools/MaterialEditor/Scripts/GenerateAllMaterialScreenshots.py +++ b/Gems/Atom/Tools/MaterialEditor/Scripts/GenerateAllMaterialScreenshots.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Atom/Tools/ShaderManagementConsole/CMakeLists.txt b/Gems/Atom/Tools/ShaderManagementConsole/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/CMakeLists.txt +++ b/Gems/Atom/Tools/ShaderManagementConsole/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/CMakeLists.txt b/Gems/Atom/Tools/ShaderManagementConsole/Code/CMakeLists.txt index f59f13156f..eba932eda9 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/CMakeLists.txt +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Core/ShaderManagementConsoleRequestBus.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Core/ShaderManagementConsoleRequestBus.h index d78f03a2b4..252f5b672c 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Core/ShaderManagementConsoleRequestBus.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Core/ShaderManagementConsoleRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentModule.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentModule.h index 6558492ca1..164045ed34 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentModule.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentNotificationBus.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentNotificationBus.h index 3e3171d111..7055150a6c 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentNotificationBus.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentRequestBus.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentRequestBus.h index 0232f02b03..30b5345a8e 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentRequestBus.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentSystemRequestBus.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentSystemRequestBus.h index 4e54b5c4ab..dc71125ddd 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentSystemRequestBus.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Document/ShaderManagementConsoleDocumentSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowModule.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowModule.h index ba6bd38ca8..eb29626237 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowModule.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowNotificationBus.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowNotificationBus.h index 286acd981a..31d1f68cc3 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowNotificationBus.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowRequestBus.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowRequestBus.h index 8bc9c8afe4..b0e66bd4ba 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowRequestBus.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Include/Atom/Window/ShaderManagementConsoleWindowRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.cpp index 90dade93c7..00564b3bb6 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.h index d5bc2b43ac..00b81bd6ef 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocument.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentModule.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentModule.cpp index 0bd3dd572d..9291167479 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentModule.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.cpp index b4961cab9b..ca40c8d558 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.h index 02f0df283b..1ec1235c82 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Document/ShaderManagementConsoleDocumentSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/PAL_android.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/PAL_android.cmake index 76ac7e4e1d..fba63af52d 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/platform_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/tool_dependencies_android.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/tool_dependencies_android.cmake index 9b94acda14..65109e0bc8 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/tool_dependencies_android.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Android/tool_dependencies_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/PAL_linux.cmake index 76ac7e4e1d..fba63af52d 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/platform_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/tool_dependencies_linux.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/tool_dependencies_linux.cmake index 9b94acda14..65109e0bc8 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/tool_dependencies_linux.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Linux/tool_dependencies_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/PAL_mac.cmake index 39fb2291b8..5528d88868 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Mac.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Mac.cpp index f7dc30a35e..83e17d0aa7 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Mac.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Mac.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Mac.h index ac0f30bf8c..5ee9fabe94 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Mac.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Platform.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Platform.h index 3db16d9a5d..d6599b875b 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Platform.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/ShaderManagementConsole_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/platform_mac_files.cmake index e23de1b1bc..f706bcf544 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/tool_dependencies_mac.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/tool_dependencies_mac.cmake index 9b94acda14..65109e0bc8 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/tool_dependencies_mac.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Mac/tool_dependencies_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/PAL_windows.cmake index 39fb2291b8..5528d88868 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h index b6fd796761..f7a884a79b 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Windows.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Windows.h index cd6d335d55..699d1ca3b1 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Windows.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Windows.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Windows.cpp index 9298c2cdba..6638b41180 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Windows.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/ShaderManagementConsole_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/platform_windows_files.cmake index 0e67645705..fa3b532156 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/tool_dependencies_windows.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/tool_dependencies_windows.cmake index 9e802b2f46..c285258429 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/tool_dependencies_windows.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/Windows/tool_dependencies_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/PAL_ios.cmake index 76ac7e4e1d..fba63af52d 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/platform_ios_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/tool_dependencies_ios.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/tool_dependencies_ios.cmake index 9b94acda14..65109e0bc8 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/tool_dependencies_ios.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Platform/iOS/tool_dependencies_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp index afa9de129b..770dd67116 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.h index cdc569c69b..4ac0549076 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/ShaderManagementConsoleApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp index 596c7048a5..6580cb3395 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.h index 5dddd34b44..7d7caffbcd 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserInteractions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.cpp index cb14280a63..9e6cdf9608 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.h index c071c32a44..68177ac23a 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleBrowserWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp index d1a6aecc22..103299a361 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h index 0eae4c1172..0f8824f809 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.cpp index 62230825da..a1d7cd01cb 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.h index 7ac9cfc5da..4c568c9f25 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowModule.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowModule.cpp index e6197287f2..465cd32184 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowModule.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ShaderManagementConsoleWindowModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.cpp index a0bdc838d5..ec73be2715 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.h index 00970631e4..87abba48a7 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/Window/ToolBar/ShaderManagementConsoleToolBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/main.cpp b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/main.cpp index 05634103ae..d3130cd28a 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/main.cpp +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/resource.h b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/resource.h index 8cd7c2bc49..3e58e34b39 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/resource.h +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/Source/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_files.cmake index 56849f5366..e674f733eb 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_win_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_win_files.cmake index 4b2e7ca5d1..fdf1425194 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_win_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsole_win_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsoledocument_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsoledocument_files.cmake index d6849fc77e..f75ab055d4 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsoledocument_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsoledocument_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsolewindow_files.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsolewindow_files.cmake index d405ba1e17..ae3525f4f3 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsolewindow_files.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/shadermanagementconsolewindow_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Code/tool_dependencies.cmake b/Gems/Atom/Tools/ShaderManagementConsole/Code/tool_dependencies.cmake index acc7edcbd8..d3f48f6550 100644 --- a/Gems/Atom/Tools/ShaderManagementConsole/Code/tool_dependencies.cmake +++ b/Gems/Atom/Tools/ShaderManagementConsole/Code/tool_dependencies.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Tools/ShaderManagementConsole/Scripts/GenerateShaderVariantListForMaterials.py b/Gems/Atom/Tools/ShaderManagementConsole/Scripts/GenerateShaderVariantListForMaterials.py index 2c2ce7cb3b..eafe4efc66 100755 --- a/Gems/Atom/Tools/ShaderManagementConsole/Scripts/GenerateShaderVariantListForMaterials.py +++ b/Gems/Atom/Tools/ShaderManagementConsole/Scripts/GenerateShaderVariantListForMaterials.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Atom/Utils/CMakeLists.txt b/Gems/Atom/Utils/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Atom/Utils/CMakeLists.txt +++ b/Gems/Atom/Utils/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/CMakeLists.txt b/Gems/Atom/Utils/Code/CMakeLists.txt index 39928f314f..b164325557 100644 --- a/Gems/Atom/Utils/Code/CMakeLists.txt +++ b/Gems/Atom/Utils/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/AssetCollectionAsyncLoader.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/AssetCollectionAsyncLoader.h index 792039fddd..16e666925d 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/AssetCollectionAsyncLoader.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/AssetCollectionAsyncLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/DdsFile.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/DdsFile.h index 00c36faeba..4a46166611 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/DdsFile.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/DdsFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h index cf8fdcd661..1dd2622603 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl index 9b16ae81cf..7551cf50dc 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCpuProfiler.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.h index e41e2376e3..02a9beb16f 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.inl index f525130981..cea5b0be7f 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiCullingDebug.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.h index d87d794a35..ef7ada9beb 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.inl index d9fa30dbc9..ba133c979a 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiFrameVisualizer.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.h index 500c45cff4..2af3ff2764 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl index bdaed85c63..94a5412391 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiGpuProfiler.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.h index c34d506b62..e735852926 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.inl index af4cbfe085..cd53131933 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiPassTree.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.h index c71cb25056..bed19c39f8 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.inl index 7b8c452f70..90e745068f 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiShaderMetrics.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.h index 283d775e46..8d2bac281b 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.inl index e5ce49300c..8963ef7402 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImGuiTransientAttachmentProfiler.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImageComparison.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImageComparison.h index 1e81745f7b..bcbad23611 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/ImageComparison.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/ImageComparison.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/PpmFile.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/PpmFile.h index 72849e5138..68bdc7bd34 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/PpmFile.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/PpmFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.h index 822bbd216c..a2cdac75e6 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl index a71eb8f33e..0b9a8b593f 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/StableDynamicArray.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.h b/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.h index fd4cb0f240..e1caa2bfbf 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.h +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.inl b/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.inl index 8abd386775..c1e93d7467 100644 --- a/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.inl +++ b/Gems/Atom/Utils/Code/Include/Atom/Utils/Utils.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Platform/Android/platform_android.cmake b/Gems/Atom/Utils/Code/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Utils/Code/Platform/Android/platform_android.cmake +++ b/Gems/Atom/Utils/Code/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/Platform/Linux/platform_linux.cmake b/Gems/Atom/Utils/Code/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Utils/Code/Platform/Linux/platform_linux.cmake +++ b/Gems/Atom/Utils/Code/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/Platform/Mac/platform_mac.cmake b/Gems/Atom/Utils/Code/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Utils/Code/Platform/Mac/platform_mac.cmake +++ b/Gems/Atom/Utils/Code/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/Platform/Windows/platform_windows.cmake b/Gems/Atom/Utils/Code/Platform/Windows/platform_windows.cmake index 0f4d24e88a..7106cdfd1f 100644 --- a/Gems/Atom/Utils/Code/Platform/Windows/platform_windows.cmake +++ b/Gems/Atom/Utils/Code/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/Platform/iOS/platform_ios.cmake b/Gems/Atom/Utils/Code/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Atom/Utils/Code/Platform/iOS/platform_ios.cmake +++ b/Gems/Atom/Utils/Code/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/Source/AssetCollectionAsyncLoader.cpp b/Gems/Atom/Utils/Code/Source/AssetCollectionAsyncLoader.cpp index 1002f5909e..e6714fe9a4 100644 --- a/Gems/Atom/Utils/Code/Source/AssetCollectionAsyncLoader.cpp +++ b/Gems/Atom/Utils/Code/Source/AssetCollectionAsyncLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Source/DdsFile.cpp b/Gems/Atom/Utils/Code/Source/DdsFile.cpp index a63ef10d45..60495eb785 100644 --- a/Gems/Atom/Utils/Code/Source/DdsFile.cpp +++ b/Gems/Atom/Utils/Code/Source/DdsFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Source/ImageComparison.cpp b/Gems/Atom/Utils/Code/Source/ImageComparison.cpp index 0ebb8643df..216990c001 100644 --- a/Gems/Atom/Utils/Code/Source/ImageComparison.cpp +++ b/Gems/Atom/Utils/Code/Source/ImageComparison.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Source/PpmFile.cpp b/Gems/Atom/Utils/Code/Source/PpmFile.cpp index e630af4f01..2e545c4da8 100644 --- a/Gems/Atom/Utils/Code/Source/PpmFile.cpp +++ b/Gems/Atom/Utils/Code/Source/PpmFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Source/Utils.cpp b/Gems/Atom/Utils/Code/Source/Utils.cpp index ce3ede4b18..fa3605cb5a 100644 --- a/Gems/Atom/Utils/Code/Source/Utils.cpp +++ b/Gems/Atom/Utils/Code/Source/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Tests/ImageComparisonTests.cpp b/Gems/Atom/Utils/Code/Tests/ImageComparisonTests.cpp index 949b9fa31e..bca841cb48 100644 --- a/Gems/Atom/Utils/Code/Tests/ImageComparisonTests.cpp +++ b/Gems/Atom/Utils/Code/Tests/ImageComparisonTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/Tests/StableDynamicArrayTests.cpp b/Gems/Atom/Utils/Code/Tests/StableDynamicArrayTests.cpp index f77b81287d..eeb5d9a78d 100644 --- a/Gems/Atom/Utils/Code/Tests/StableDynamicArrayTests.cpp +++ b/Gems/Atom/Utils/Code/Tests/StableDynamicArrayTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Atom/Utils/Code/atom_utils_files.cmake b/Gems/Atom/Utils/Code/atom_utils_files.cmake index 299f9962f4..0eb18dd569 100644 --- a/Gems/Atom/Utils/Code/atom_utils_files.cmake +++ b/Gems/Atom/Utils/Code/atom_utils_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Atom/Utils/Code/atom_utils_tests_files.cmake b/Gems/Atom/Utils/Code/atom_utils_tests_files.cmake index 530af9df55..2029e31734 100644 --- a/Gems/Atom/Utils/Code/atom_utils_tests_files.cmake +++ b/Gems/Atom/Utils/Code/atom_utils_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomContent/CMakeLists.txt b/Gems/AtomContent/CMakeLists.txt index 9925d22de7..f16436c159 100644 --- a/Gems/AtomContent/CMakeLists.txt +++ b/Gems/AtomContent/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomContent/ReferenceMaterials/CMakeLists.txt b/Gems/AtomContent/ReferenceMaterials/CMakeLists.txt index ec9e3241c9..13506c2382 100644 --- a/Gems/AtomContent/ReferenceMaterials/CMakeLists.txt +++ b/Gems/AtomContent/ReferenceMaterials/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomContent/ReferenceMaterials/Launch_Cmd.bat b/Gems/AtomContent/ReferenceMaterials/Launch_Cmd.bat index 7b853eb7bc..c703c8148d 100644 --- a/Gems/AtomContent/ReferenceMaterials/Launch_Cmd.bat +++ b/Gems/AtomContent/ReferenceMaterials/Launch_Cmd.bat @@ -3,7 +3,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomContent/ReferenceMaterials/Launch_Maya_2020.bat b/Gems/AtomContent/ReferenceMaterials/Launch_Maya_2020.bat index abcd4b1632..eb0ae8115d 100644 --- a/Gems/AtomContent/ReferenceMaterials/Launch_Maya_2020.bat +++ b/Gems/AtomContent/ReferenceMaterials/Launch_Maya_2020.bat @@ -4,7 +4,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomContent/ReferenceMaterials/Launch_WingIDE-7-1.bat b/Gems/AtomContent/ReferenceMaterials/Launch_WingIDE-7-1.bat index daaee3c9d4..1c56dedb68 100644 --- a/Gems/AtomContent/ReferenceMaterials/Launch_WingIDE-7-1.bat +++ b/Gems/AtomContent/ReferenceMaterials/Launch_WingIDE-7-1.bat @@ -2,7 +2,7 @@ :: Launches Wing IDE and the DccScriptingInterface Project Files REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomContent/ReferenceMaterials/Project_Env.bat b/Gems/AtomContent/ReferenceMaterials/Project_Env.bat index a343294a4f..1d20d28399 100644 --- a/Gems/AtomContent/ReferenceMaterials/Project_Env.bat +++ b/Gems/AtomContent/ReferenceMaterials/Project_Env.bat @@ -2,7 +2,7 @@ :: Sets up environment for Lumberyard DCC tools and code access REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomContent/Sponza/CMakeLists.txt b/Gems/AtomContent/Sponza/CMakeLists.txt index fd347a4384..709fc02067 100644 --- a/Gems/AtomContent/Sponza/CMakeLists.txt +++ b/Gems/AtomContent/Sponza/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomContent/Sponza/Project_Env.bat b/Gems/AtomContent/Sponza/Project_Env.bat index 825e6f75d9..fefa5ec488 100644 --- a/Gems/AtomContent/Sponza/Project_Env.bat +++ b/Gems/AtomContent/Sponza/Project_Env.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomContent/Sponza/Tools/Launch_Cmd.bat b/Gems/AtomContent/Sponza/Tools/Launch_Cmd.bat index 11dcf27ff6..bc9673f989 100644 --- a/Gems/AtomContent/Sponza/Tools/Launch_Cmd.bat +++ b/Gems/AtomContent/Sponza/Tools/Launch_Cmd.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomContent/Sponza/Tools/Maya/Launch_Maya_2020.bat b/Gems/AtomContent/Sponza/Tools/Maya/Launch_Maya_2020.bat index 7cc8d37b76..5125a133c4 100644 --- a/Gems/AtomContent/Sponza/Tools/Maya/Launch_Maya_2020.bat +++ b/Gems/AtomContent/Sponza/Tools/Maya/Launch_Maya_2020.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/LyShineUI.azsl b/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/LyShineUI.azsl index b2f33cb555..b7f6b48151 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/LyShineUI.azsl +++ b/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/LyShineUI.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/SimpleTextured.azsl b/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/SimpleTextured.azsl index 3531992691..4cd8eded27 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/SimpleTextured.azsl +++ b/Gems/AtomLyIntegration/AtomBridge/Assets/Shaders/SimpleTextured.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/CMakeLists.txt b/Gems/AtomLyIntegration/AtomBridge/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/AtomBridge/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomBridge/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/CMakeLists.txt b/Gems/AtomLyIntegration/AtomBridge/Code/CMakeLists.txt index 64c6845b10..bd535dee72 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomBridge/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/AtomBridgeBus.h b/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/AtomBridgeBus.h index 481bb4686f..b0483bb4a2 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/AtomBridgeBus.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/AtomBridgeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/FlyCameraInputBus.h b/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/FlyCameraInputBus.h index 57e0ee4d6a..9829b10597 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/FlyCameraInputBus.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/FlyCameraInputBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/PerViewportDynamicDrawInterface.h b/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/PerViewportDynamicDrawInterface.h index f40ac7dd90..0f70342fee 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/PerViewportDynamicDrawInterface.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Include/AtomBridge/PerViewportDynamicDrawInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeEditorModule.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeEditorModule.cpp index 676ed097d6..674375ee0e 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeEditorModule.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.cpp index fa6459bdd4..0fef7e12e6 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.h b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.h index 169c8513b7..5da1d69a07 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.cpp index 4b42e5973c..6926ad048c 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.h b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.h index 62e526872b..d59e9d66c0 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomBridgeSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp index 740383850e..7791e78d15 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.h b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.h index e151e3459c..32d3e31aa9 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/AtomDebugDisplayViewportInterface.h @@ -1,7 +1,7 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp index 9d783245af..d50862b0bc 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.h b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.h index 4b0d5e8ab0..fa971f07a8 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Editor/AssetCollectionAsyncLoaderTestComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.cpp index ba6fed4651..c85ef167ea 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.h b/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.h index 32ad95e436..de36eb9222 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/FlyCameraInputComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp b/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp index 0bde53f67e..2a87e6efdb 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.h b/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.h index f9eb54989a..c13b2834c4 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.h +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/PerViewportDynamicDrawManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_runtime_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_runtime_deps.cmake index 09f2742520..3e40f48401 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_runtime_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_runtime_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_tool_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_tool_deps.cmake index 32efa960cc..c515052a55 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_tool_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Android/additional_android_tool_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_runtime_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_runtime_deps.cmake index 09f2742520..3e40f48401 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_runtime_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_runtime_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_tool_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_tool_deps.cmake index b99a351d84..34b476c9fc 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_tool_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Linux/additional_linux_tool_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_runtime_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_runtime_deps.cmake index db808a66f0..358d6137ad 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_runtime_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_runtime_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_tool_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_tool_deps.cmake index 5c78ffb342..d3d2cb1e4d 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_tool_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Mac/additional_mac_tool_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_runtime_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_runtime_deps.cmake index 8abe3b2938..9b2f90e617 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_runtime_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_runtime_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_tool_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_tool_deps.cmake index b99a351d84..34b476c9fc 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_tool_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/Windows/additional_windows_tool_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_runtime_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_runtime_deps.cmake index db808a66f0..358d6137ad 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_runtime_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_runtime_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_tool_deps.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_tool_deps.cmake index 32efa960cc..c515052a55 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_tool_deps.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/Source/Platform/iOS/additional_ios_tool_deps.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_editor_files.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_editor_files.cmake index 141fa0f76d..323b83e65a 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_editor_files.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_files.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_files.cmake index c1b5259d4b..155673e710 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_files.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_shared_files.cmake b/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_shared_files.cmake index 68cc5538a5..26c1694089 100644 --- a/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_shared_files.cmake +++ b/Gems/AtomLyIntegration/AtomBridge/Code/atombridge_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/CMakeLists.txt b/Gems/AtomLyIntegration/AtomFont/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/AtomFont/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomFont/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/CMakeLists.txt b/Gems/AtomLyIntegration/AtomFont/Code/CMakeLists.txt index 1e381b54b6..acd073b0ce 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomFont/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h index aeb14ddaff..9fe3f2c25b 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h index 63aa2159a1..7cb971f9e0 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomFont_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h index 22357e5970..e6fd6785eb 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/AtomNullFont.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h index dd034c365b..b40c05a783 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FBitmap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h index 44c29520aa..4c9f5b283b 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FFont.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontCommon.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontCommon.h index 0a7816488b..77c9be5aaf 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontCommon.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontRenderer.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontRenderer.h index 6aa0d3f9f0..7d5ba8c7ef 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontRenderer.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontTexture.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontTexture.h index a0ec32c2d6..2a2bea72c3 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontTexture.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/FontTexture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h index e6d6d3dcdf..d1507ed7aa 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphBitmap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphCache.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphCache.h index 1924cfce7d..69c3fbbdb5 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphCache.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/GlyphCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/resource.h b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/resource.h index 23a9212b5f..bcc8d1d6b0 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/resource.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Include/AtomLyIntegration/AtomFont/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Android/platform_android_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Android/platform_android_files.cmake index 7df300e916..5154736a21 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Android/platform_android_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FFontXML_Common.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FFontXML_Common.cpp index 1b48624691..77a6d05e39 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FFontXML_Common.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FFontXML_Common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp index 593b192051..6d0999c3d3 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Common/FontTexture_Common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Linux/platform_linux_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Linux/platform_linux_files.cmake index 7df300e916..5154736a21 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Linux/platform_linux_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Mac/platform_mac_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Mac/platform_mac_files.cmake index 7df300e916..5154736a21 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Mac/platform_mac_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FFontXML_Windows.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FFontXML_Windows.cpp index 85eb679e05..201ea06bc6 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FFontXML_Windows.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FFontXML_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp index 5409b85725..3f2c73d741 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/FontTexture_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/platform_windows_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/platform_windows_files.cmake index 7d25c061ba..b5b242c5de 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/platform_windows_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Platform/iOS/platform_ios_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/Platform/iOS/platform_ios_files.cmake index 7df300e916..5154736a21 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Platform/iOS/platform_ios_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp index 9c2954e583..114dbf62bb 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFont.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp index e396cc8b99..a33ed4b682 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.h b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.h index 39b347f0e4..ae2487f351 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomFontSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp index fff39ee490..a317fe2d22 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/AtomNullFont.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp index 1ca44c6760..50b0adf294 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFont.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp index 489f025d27..8797389fee 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h index 2cac25d29b..1e1597a083 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FFontXML_Internal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp index 1bf1694b6d..f22fe4c0bb 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontRenderer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp index 3b893ac743..0665cc8524 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/FontTexture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp index 60a6f3a67c..35b5b3e308 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphBitmap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp index 5ed82442f5..500afdc37e 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/GlyphCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/Module.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/Module.cpp index 05583ece12..e6b6df1a1a 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/Module.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/Source/Tests/test_Main.cpp b/Gems/AtomLyIntegration/AtomFont/Code/Source/Tests/test_Main.cpp index b1794447d1..6da80c58d6 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/Source/Tests/test_Main.cpp +++ b/Gems/AtomLyIntegration/AtomFont/Code/Source/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake index 1b00bfa2a0..28f23813e6 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/atomfont_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomFont/Code/atomfont_test_files.cmake b/Gems/AtomLyIntegration/AtomFont/Code/atomfont_test_files.cmake index 09fd3de830..1f45f2966e 100644 --- a/Gems/AtomLyIntegration/AtomFont/Code/atomfont_test_files.cmake +++ b/Gems/AtomLyIntegration/AtomFont/Code/atomfont_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/CMakeLists.txt b/Gems/AtomLyIntegration/AtomImGuiTools/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/AtomImGuiTools/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomImGuiTools/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/Code/CMakeLists.txt b/Gems/AtomLyIntegration/AtomImGuiTools/Code/CMakeLists.txt index 1b3d04ffee..e1cf0048b8 100644 --- a/Gems/AtomLyIntegration/AtomImGuiTools/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomImGuiTools/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsModule.cpp b/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsModule.cpp index ea393f6439..6c9602d11f 100644 --- a/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsModule.cpp +++ b/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.cpp b/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.cpp index 7abb4b808d..a5f80489f4 100644 --- a/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.cpp +++ b/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.h b/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.h index 1770ad245c..0e87700b0c 100644 --- a/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.h +++ b/Gems/AtomLyIntegration/AtomImGuiTools/Code/Source/AtomImGuiToolsSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_files.cmake b/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_files.cmake index 73e4597d29..3a0bb8ff58 100644 --- a/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_files.cmake +++ b/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_shared_files.cmake b/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_shared_files.cmake index 3784122993..671e5f2652 100644 --- a/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_shared_files.cmake +++ b/Gems/AtomLyIntegration/AtomImGuiTools/Code/atomimguitools_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Assets/Shaders/TexturedIcon.azsl b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Assets/Shaders/TexturedIcon.azsl index 4e548fb537..5121fee73c 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Assets/Shaders/TexturedIcon.azsl +++ b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Assets/Shaders/TexturedIcon.azsl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/CMakeLists.txt b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/CMakeLists.txt b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/CMakeLists.txt index 373ca15c8f..7b846631f3 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.cpp b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.cpp index 93c1340efc..305fad8ad0 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.cpp +++ b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.h b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.h index 2b64761837..8cb268d36a 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.h +++ b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/AtomViewportDisplayIconsSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/Module.cpp b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/Module.cpp index 85f6415583..745268924b 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/Module.cpp +++ b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/atomviewportdisplayicons_files.cmake b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/atomviewportdisplayicons_files.cmake index ecc5f46a18..81f135701f 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/atomviewportdisplayicons_files.cmake +++ b/Gems/AtomLyIntegration/AtomViewportDisplayIcons/Code/atomviewportdisplayicons_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/CMakeLists.txt b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/CMakeLists.txt b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/CMakeLists.txt index 160db45d12..0f652663b3 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Include/AtomLyIntegration/AtomViewportDisplayInfo/AtomViewportInfoDisplayBus.h b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Include/AtomLyIntegration/AtomViewportDisplayInfo/AtomViewportInfoDisplayBus.h index 85be0f5a50..bc906986d2 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Include/AtomLyIntegration/AtomViewportDisplayInfo/AtomViewportInfoDisplayBus.h +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Include/AtomLyIntegration/AtomViewportDisplayInfo/AtomViewportInfoDisplayBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp index 89e55d8c8f..5b14fbebb9 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.h b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.h index 518911d286..13f42dd638 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.h +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/AtomViewportDisplayInfoSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Module.cpp b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Module.cpp index f0c557ac8f..76b90b28ec 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Module.cpp +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Tests/test_Main.cpp b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Tests/test_Main.cpp index 6dc6a9a383..5bf92fbfdc 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Tests/test_Main.cpp +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/Source/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_files.cmake b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_files.cmake index 2a25450272..1d7d0820fb 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_files.cmake +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_test_files.cmake b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_test_files.cmake index 09fd3de830..1f45f2966e 100644 --- a/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_test_files.cmake +++ b/Gems/AtomLyIntegration/AtomViewportDisplayInfo/Code/atomviewportdisplayinfo_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CMakeLists.txt b/Gems/AtomLyIntegration/CMakeLists.txt index d717873e92..798cacfb2e 100644 --- a/Gems/AtomLyIntegration/CMakeLists.txt +++ b/Gems/AtomLyIntegration/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyActorComponentConverter.py b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyActorComponentConverter.py index f2ab7462f7..cf76bf8d8c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyActorComponentConverter.py +++ b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyActorComponentConverter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyComponentConverter.py b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyComponentConverter.py index 862790e0c5..09e5bb7413 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyComponentConverter.py +++ b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyComponentConverter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyConversionHelpers.py b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyConversionHelpers.py index 297693ad70..805c984797 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyConversionHelpers.py +++ b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyConversionHelpers.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMaterialComponentConverter.py b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMaterialComponentConverter.py index f42f1de0b6..02bee167bd 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMaterialComponentConverter.py +++ b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMaterialComponentConverter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMeshComponentConverter.py b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMeshComponentConverter.py index 50f0d44c80..b6db261199 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMeshComponentConverter.py +++ b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyMeshComponentConverter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyPointLightComponentConverter.py b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyPointLightComponentConverter.py index b41df024f4..6719096515 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyPointLightComponentConverter.py +++ b/Gems/AtomLyIntegration/CommonFeatures/Assets/Editor/Scripts/LegacyContentConversion/LegacyPointLightComponentConverter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/AtomLyIntegration/CommonFeatures/CMakeLists.txt b/Gems/AtomLyIntegration/CommonFeatures/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/CMakeLists.txt +++ b/Gems/AtomLyIntegration/CommonFeatures/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt b/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt index d8ecbf5cc5..6b3f15ec73 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightBus.h index 766f18bc7c..adeb542d67 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h index c7c4cd5721..fbb054ea34 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/AreaLightComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/CoreLightsConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/CoreLightsConstants.h index b26f9166b7..b83b85043e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/CoreLightsConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/CoreLightsConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h index 60377caf93..e240b31259 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h index 3d4f2cf0ba..6e33ff545d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/CoreLights/DirectionalLightComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalBus.h index 128f6234c0..d4b3d161b7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalComponentConfig.h index 1f3abbfe29..0ec1abeae7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalConstants.h index 9b57197762..8e5864b7c8 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Decals/DecalConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentBus.h index 5f17c97d5e..00f0e516cc 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConfig.h index 7271b2e879..1315dee11b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConstants.h index 3d50a9c2f4..c1ecf9e0ff 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Grid/GridComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentBus.h index 4555f7f30f..df03ab43a3 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConfig.h index 6615a45a7a..4c4e3b8023 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConstants.h index 503ab87a71..6342a7e16e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ImageBasedLights/ImageBasedLightComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/EditorMaterialSystemComponentRequestBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/EditorMaterialSystemComponentRequestBus.h index d3ee989280..2020d4c419 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/EditorMaterialSystemComponentRequestBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/EditorMaterialSystemComponentRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentBus.h index bfdf6806e1..c101d0b43a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConfig.h index 743c4956d1..062ab63047 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConstants.h index 033a27efa4..99623c6d35 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Material/MaterialComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h index 71b04d900a..5e9b8e5125 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentConstants.h index 1c69de1a6d..fb470ee943 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Mesh/MeshComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomBus.h index bf31c6969f..c9c8e9d3f5 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomComponentConfig.h index c292e588ce..d1020623de 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Bloom/BloomComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldBus.h index 94ec5c6fdb..f13a3a88b6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldComponentConfig.h index 87a58469ab..2196d53a4f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DepthOfField/DepthOfFieldComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentBus.h index 75a49c5ab2..488a125e38 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConfig.h index 4bfb96d8ca..fdfa21f464 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConstants.h index 388fdd22f3..89b74ffad8 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/DisplayMapper/DisplayMapperComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlBus.h index e6437c76b1..c96a373763 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConfig.h index cee8610d65..3570bf6d26 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConstants.h index 33babd4665..bf5d2d1400 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ExposureControl/ExposureControlComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.h index c63e4cbed4..ab64e2d307 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConstants.h index 43a41ee46a..dcba5ba8ba 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationBus.h index e24e13159a..853133e375 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConfig.h index 7d02545a5d..db71f3d7d4 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConstants.h index f73112d87b..28cd8cd4b7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/LookModification/LookModificationComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerBus.h index ce09139015..fb4cc945d9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerCategoriesProviderRequestBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerCategoriesProviderRequestBus.h index cc7c9e4cb4..b0d3c4eb13 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerCategoriesProviderRequestBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerCategoriesProviderRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConfig.h index 5979049dc1..cb5eef91f7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConstants.h index a8fee7455f..f91251e393 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxLayerComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxWeightRequestBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxWeightRequestBus.h index ac9e10e089..389a74d7c0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxWeightRequestBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/PostFxWeightRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.h index cc85c8a0bf..c75b1176fe 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConstants.h index 35b71eef01..f94bb738e7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.h index a1009e55c0..0143e5acfc 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConstants.h index 683e0fb5c0..7cb658b00a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoBus.h index 7d58cc8668..f008157287 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoComponentConfiguration.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoComponentConfiguration.h index a6bd27a5f1..a048fd2f8c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoComponentConfiguration.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/PostProcess/Ssao/SsaoComponentConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ReflectionProbe/EditorReflectionProbeBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ReflectionProbe/EditorReflectionProbeBus.h index f298431015..4b6a5368c7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ReflectionProbe/EditorReflectionProbeBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ReflectionProbe/EditorReflectionProbeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogBus.h index 3699052212..c114be7589 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogComponentConfig.h index 282efc608c..ef674df9fe 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/ScreenSpace/DeferredFogComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceComponentConfig.h index 59886405c6..6556546b4e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceConstants.h index f594a06227..4e0ec0da7a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceRequestBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceRequestBus.h index f685b67180..9305ec8d58 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceRequestBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Scripting/EntityReferenceRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxBus.h index b3a59eb453..4feecc4e1d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxComponentConfig.h index 1130e55357..8d16bb4565 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/HDRiSkyboxComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyBus.h index 86703d0805..12c847dcc7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyComponentConfig.h index dd1ef62ebd..724a77732e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/SkyBox/PhysicalSkyComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Thumbnails/ThumbnailFeatureProcessorProviderBus.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Thumbnails/ThumbnailFeatureProcessorProviderBus.h index 6b48a2c979..2c173ee5ee 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Thumbnails/ThumbnailFeatureProcessorProviderBus.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Include/AtomLyIntegration/CommonFeatures/Thumbnails/ThumbnailFeatureProcessorProviderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.cpp index cfed3d3fd0..cad8b6d0cd 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.h index afa5dd0855..b39b00c13d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/AttachmentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.cpp index 6b24736ada..4845a1daa1 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.h index f7f0b69938..c068c71a5e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Animation/EditorAttachmentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.cpp index aafcea7a99..2d01a50bde 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.h index 4eed13bf18..42e82ddcd1 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CommonFeaturesSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.cpp index 6d42158bda..4b8e35bc14 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.h index 05b9285617..ed78a1782c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp index 282636b8ad..6a908572b9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.cpp index c63295ffb9..d3cf6e8068 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.h index e22457cc93..a0dc8ea387 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/AreaLightComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp index 5b5dd87273..4b9a9b0223 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.h index 1c9ef9975c..5a1cc01024 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.cpp index 7ce6f5480c..de7e34eeea 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.h index c633e98f27..c093dbbdd0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp index b5f058931f..3923136bcc 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp index 918deeeaae..4552ce9ded 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h index 70e9b26158..dd40f30d5c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DirectionalLightComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.cpp index 7afe7ce17b..f46115dfce 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.h index da6f25112f..c51b84ed2e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/DiskLightDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp index 94e802f202..5dabd7317b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.h index abd843daec..6d92d46e16 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorAreaLightComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp index 99c219fb78..8163dcfe20 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.h index 23306a1296..6d2ddd4e77 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/EditorDirectionalLightComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.h index 1d2a95a5b5..00792fb853 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.inl b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.inl index 1374a0b121..36c53c8fab 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.inl +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateBase.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateInterface.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateInterface.h index 05e4f56a02..7d55022839 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateInterface.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/LightDelegateInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp index 6303bdbd52..1db22b4ad8 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.h index e2b6934a9a..475454e533 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp index 68eb8cb0c1..b69df642c9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.h index 53879bc8a9..9ad3165d6c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp index 05b697dbeb..b2835c7dd9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.h index a3b7d86c5f..a0b0f1b5ce 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.cpp index 8896535c4f..f6ec76b653 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.h index 65a606eff2..960e7c21cb 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimpleSpotLightDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp index 23323d8ab3..6ade4347f3 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.h index 7afea2fe93..fbe4b53028 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.cpp index 10fa1320d4..14fc30f626 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.h index e1b35cdf09..82469db2f2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.cpp index 21b7694e85..4a9fce3dbf 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.h index ce1bf62412..b8bd491d99 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/DecalComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.cpp index 9bd1149e95..43239ffd0a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.h index ee6787bb29..791d985a33 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Decals/EditorDecalComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.cpp index 75c52a8976..db7ba996e9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.h index 170dc91f1c..92b3bd17ff 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.cpp index 91af1353a5..c1b605bc82 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.h index 4fe91668b0..dabb0d7f41 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConstants.h index 008bf5e84d..00a7123397 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.cpp index fc13b376d8..183c1ef3fc 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.h index 2345d01580..2b46e5301b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseGlobalIlluminationComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.cpp index 43e3847162..402430c2d7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.h index 24ebea7bb5..f9d62a0980 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h index c539cd0607..2422153207 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp index 389341ff01..8cf0a6a9ac 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h index 5261ce5cc5..28ca214b1e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/DiffuseProbeGridComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.cpp index 3e3491ad6f..9e4a7fed5c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.h index 4231ed82b6..52c036500a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseGlobalIlluminationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp index 5cc97bd363..74d8348c83 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.h index 12d37a295e..f98e9b6daf 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/DiffuseGlobalIllumination/EditorDiffuseProbeGridComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.cpp index f83474288d..1896ccf1f0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.h index fc39671db8..a877b8ce95 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/EditorCommonFeaturesSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.cpp index 0b1a055f88..c166fa164e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.h index 34344ebe85..c34b64625a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/EditorGridComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.cpp index cb33afae57..c6d56f4939 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.h index f2b9d6534d..61f23dff04 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentConfig.cpp index 1432b6d6b8..1421d8cc39 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.cpp index f8efadf329..5a870419e8 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.h index 0e7ba76122..f5ce372906 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Grid/GridComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.cpp index a963f2eb61..0a0ceeed4b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.h index 6e5c4f21fc..7c134837f2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/EditorImageBasedLightComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.cpp index 948599ffd1..17f48831e3 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.h index 0f9813e30e..0c58e0de32 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentConfig.cpp index ff5d6c68a2..acac9d8c9a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.cpp index 5673c36a45..3fae14ae7d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.h index 60cfc17e99..c2d802a04f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ImageBasedLights/ImageBasedLightComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.cpp index fb2a1e28d1..4156e4904c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.h index 3ebc7201d8..fd34d6ae1d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp index 0618712482..f917a4bcc2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.h index fc7841bb05..8e6ae1f977 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp index d20a1c0e66..8749cb67ec 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.h index 34b16f5d2d..e7d7ec9589 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentInspector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp index 669e576107..416a2b7d94 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h index 95d1fb6a27..96b2b67016 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentSlot.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp index f6237b219b..e3fa514460 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.h index 716a918a14..170b9b078e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.cpp index 4ee429c3de..3d3c86421c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.h index 43a303abc1..018d247e2c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialModelUvNameMapInspector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.cpp index 11c6fc356f..a8d6270c7e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.h index b5ecc45470..cee1318d6a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.cpp index 2b2ce65caf..afba540562 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.h index c2c6c885d7..62503a0050 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.cpp index 2f8fa17324..629359cede 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.h index f3bb425fc8..1b3d3929a4 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentConfig.cpp index 9c89e495ef..38247c06ea 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp index ded457c7e1..0c7c67e089 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h index 65cfa11f3d..720a03d9c0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp index 5b30f5bc50..ff37a51bfc 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.h index 6860acdff6..178c41a929 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp index 8aedc79952..83c5cb0368 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.h index a9d9321816..8dcb328c04 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.cpp index b40d9c31f8..c0c61ecc1d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.h index 1299ea0019..9683c9de02 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/EditorMeshSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.cpp index 59fa6733c8..fc08e60e97 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.h index 9a1c664b3a..9499a2a4a5 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp index bd972c432d..2f8bfe5c02 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h index 722aab0a19..b0c3dfc1a1 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.cpp index 19506ca81f..586baa5084 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.h index df4eacffca..aff4504744 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Mesh/MeshThumbnail.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Module.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Module.cpp index 35b4d2e5dc..cfbe132bf7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Module.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.cpp index 9d9c7d8240..df9059c251 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.h index 6e1129185e..b53ea410be 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/EditorOcclusionCullingPlaneComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.cpp index 74b5c5170d..2266d37aa2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.h index c10e852462..9a90b63bee 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentConstants.h index 8750749941..bfa3d78f73 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.cpp index 64891cd46e..80baeb497f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.h index 8e9efd686f..5c4dacb8d2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/OcclusionCullingPlane/OcclusionCullingPlaneComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Android/platform_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/AppleTV/platform_appletv_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/AppleTV/platform_appletv_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/AppleTV/platform_appletv_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/AppleTV/platform_appletv_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Linux/platform_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Mac/platform_mac_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Windows/platform_windows_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/iOS/platform_ios_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.cpp index 6c21d2425e..d9af5a53cb 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.h index 3b5c02e2b1..15548d4d11 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentConfig.cpp index a21720858c..baac2da039 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.cpp index cc3a5cf7b1..ef76694552 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.h index 35ddde7703..b2bf21d4c0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/BloomComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp index b4177e4944..abd2cb5d8f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.h index 86c37968fe..4192d31660 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Bloom/EditorBloomComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.cpp index 06396350c8..0ff835aa26 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.h index e3bb6f9e19..ec2e5cba1b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentConfig.cpp index e4465eb704..8fbda33734 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.cpp index 3c8b822cfe..4b34ca795e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.h index 1b1f8ee2dc..21f93d6382 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/DepthOfFieldComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.cpp index 68310cc80d..fc4c4163c5 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.h index e1ea079cef..91c8732acd 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DepthOfField/EditorDepthOfFieldComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.cpp index 184b863fe8..e7dbe4bbca 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.h index a448706422..f5a827a010 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentConfig.cpp index ef2e00ee97..1cd53473fc 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.cpp index de9ceca267..6251393abe 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.h index 67e2469cc9..c55f4b048b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/DisplayMapperComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.cpp index 95ecdd70ac..2fc37e8bf2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.h index c062a547eb..613c2ce9f1 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/DisplayMapper/EditorDisplayMapperComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.cpp index 554cc76182..8f215b4e12 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.h index d2a0e18e5c..c8939cf7af 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerCategoriesAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.cpp index d795c5eb91..35fc90c4b3 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.h index 5218cd4b55..6ecafd6ad3 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxLayerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.cpp index 98630b30cb..7ee565ff0a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.h index 50058de765..dbcf3d4109 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/EditorPostFxSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.cpp index 1d9560a2ab..2712e07e60 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.h index f9f85915c9..f60ef7e3d7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/EditorExposureControlComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.cpp index b0ca0e1463..dd2ada0db6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.h index 02e8f2216b..f0ea4803ac 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentConfig.cpp index f745ee8479..06010b6f7d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.cpp index 09c53d7b74..3c8f9a9be9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.h index 8e52269439..d1901e0e90 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ExposureControl/ExposureControlComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.cpp index cd31b570bd..ba08f25acb 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.h index b5e163e52e..f3af9d2185 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/EditorGradientWeightModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.cpp index 8bca3dbc37..d82670a8a4 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.h index 68cff91f0b..a64fedb288 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.cpp index 88351c1a87..f21e64835a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.cpp index 248dbd6dee..b84dd65da2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.h index 94dc79ee10..7e9db0eca7 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/GradientWeightModifier/GradientWeightModifierController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.cpp index 8a74203544..e3f98cfa2e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.h index 12fd9ff711..4673b4871a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/EditorLookModificationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.cpp index 0942431275..7499a6a295 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.h index a90e48e2b7..8c7f746b29 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentConfig.cpp index 55c8162506..acf1551a9c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.cpp index b5b5c5118d..4b1ac65f06 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.h index 575427435f..53b8e6d853 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/LookModification/LookModificationComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.cpp index 50ef776e8f..983821afee 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.h index 65750d99d3..00a38929b5 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentConfig.cpp index a41ee486e2..e73f74f09b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.cpp index b86de6efaa..2a4781427e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.h index cf2a80523f..6b782e93c2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/PostFxLayerComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.cpp index e9dc2caec6..f5d2afcc15 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.h index c91e8818e0..bb6ac5f97d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/EditorRadiusWeightModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.cpp index 8f32750f2e..d0f27d8f50 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.h index fa9b5c8414..552ba81fde 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.cpp index 3c9d8feabe..c6c159d601 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.cpp index 971fe604ed..5f5994226f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.h index 50a5eaded3..3d4328cac3 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/RadiusWeightModifier/RadiusWeightModifierComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.cpp index fe6c5abed4..4768be6e85 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.h index bf5ad80816..e4bb8941db 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/EditorShapeWeightModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.cpp index ec8bad8927..abbc897f2f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.h index 1c8bc827af..c2a4d93fe2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.cpp index 8ec059544f..9b308aa2f6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.cpp index 7d0cf43c12..73f5380d8f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.h index 5b476e7364..08eb2a7749 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/ShapeWeightModifier/ShapeWeightModifierComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.cpp index 26a71432d1..d72ed3e476 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.h index 21b826ce09..eccbbffcc9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/EditorSsaoComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.cpp index 1d75bc763d..9bb73ecbe9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.h index b277134c0d..67891a042c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentConfig.cpp index 7936f8ffdf..975cd9fff6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.cpp index b5b8bcdc66..51faf647ab 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.h index 3899dfddf0..638050b4a3 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/PostProcess/Ssao/SsaoComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.cpp index 20b1ae87b3..c107e13593 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.h index 60d4d53730..5f7c7f31d8 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/EditorReflectionProbeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.cpp index 8e4df4538b..d0589f35bc 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.h index 165189d93b..0ea2b500ac 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h index 0c27bd1e39..55f4bc64ae 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp index b2d842c82b..4888778d3c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h index 1015c2433c..0532695ffb 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.cpp index 2bd4fc8382..63f5274311 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.h index 481bbeb077..debcafb324 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentConfig.cpp index 9de5c9074a..5a32752d7c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.cpp index 08b0e1a9e2..a1b6de16a9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.h index 9c9bed9e16..1085366636 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/DeferredFogComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.cpp index 7f397d5ee1..4d6ea44fb4 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.h index 04b9f7e905..3bef5d169f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ScreenSpace/EditorDeferredFogComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.cpp index 3ba3e60bcb..9e200e757a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.h index cb6eda509a..8f16b0ad3c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EditorEntityReferenceComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.cpp index 1f29e13641..72c1c37392 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.h index 85b109d9d4..0f7bf63fc1 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentConfig.cpp index 5a12acda1a..2a0fc9dfc9 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.cpp index 1eb21e2b8d..18ab9ed547 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.h index bdb0f50367..ed83a2b500 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Scripting/EntityReferenceComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.cpp index 6390ed80b8..3d5521e60e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.h index 7a02085dc1..c8dc8b04cf 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkinnedMesh/SkinnedMeshDebugDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.cpp index b31c444028..d1cadfed56 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.h index 4a12a49bb3..12c34d7807 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorHDRiSkyboxComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.cpp index 2f21639afb..beeb17abfe 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.h index 0d8ae66a84..506eb47f8f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/EditorPhysicalSkyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.cpp index d1dea1afd2..da06e853ca 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.h index 00a9970acb..b3a3cf3144 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentConfig.cpp index a5e8b6180d..075f10a61b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.cpp index b3da125537..14bf4cda94 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.h index 055e7b7802..0b9f52949d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/HDRiSkyboxComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.cpp index f5d892b711..2f8c4d664f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.h index 7276e80233..5bad9a26a5 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentConfig.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentConfig.cpp index 4ae687a268..1d55803080 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentConfig.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentConfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.cpp index 9b956efa39..b7fabdfde6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.h index 66de01d814..1f728ec78f 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SkyBox/PhysicalSkyComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.cpp index a4ba1b8859..1c2fe92f59 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.h index 36323af3cc..0b36c59683 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/EditorSurfaceDataMeshComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.cpp index 4daedacdab..1024ea7698 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.h index 2e0cdcb460..d997a1982a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/SurfaceData/SurfaceDataMeshComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.cpp index 59a9b4dcf9..c21799ea73 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.h index 136ac7b677..e0d8b980dd 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.cpp index 71fa8df95c..5f6fea2a84 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.h index 0bcc7ae285..837388e51b 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Preview/CommonPreviewerFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.cpp index 7a3633be58..a8ae3656b6 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.h index 60f28161cd..d217f62390 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/CommonThumbnailRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererContext.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererContext.h index 5a9ccfbd1f..2435b9c07e 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererContext.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererData.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererData.h index 5ddc5d7ca6..7df1286450 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererData.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp index a795b9a119..46d9b59edb 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.h index e9cf94e2c9..d1e17d19be 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/CaptureStep.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.cpp index 78d5241cfd..35899fefb0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.h index ccdcd9cc47..cf525e109c 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/FindThumbnailToRenderStep.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.cpp index 98ec4165b1..961d444532 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.h index 3509024ed9..d0ae0de2af 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/InitializeStep.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.cpp index 9ff3233d1b..3f441d43b1 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.h index dbd1478370..32ec7b084a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ReleaseResourcesStep.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ThumbnailRendererStep.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ThumbnailRendererStep.h index 577f65197d..90695d4795 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ThumbnailRendererStep.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/ThumbnailRendererStep.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.cpp index 633b7338cb..87e989b2fd 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.h index b0d15f2903..1a3e5fdb7a 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/Rendering/ThumbnailRendererSteps/WaitForAssetsToLoadStep.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.cpp index 7a3cb2c95f..bc89321340 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.h b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.h index e428167f40..e9d5d10016 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.h +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Thumbnails/ThumbnailUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_editor_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_editor_files.cmake index e94658bd35..464894ccdb 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_editor_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_files.cmake index 4be8ee6d79..14c8e37808 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_public_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_public_files.cmake index 69aa32c73e..f378cfe37d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_public_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_public_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_shared_files.cmake b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_shared_files.cmake index a93f67afd8..c686bffbe2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_shared_files.cmake +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/atomlyintegration_commonfeatures_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/CMakeLists.txt b/Gems/AtomLyIntegration/EMotionFXAtom/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/CMakeLists.txt +++ b/Gems/AtomLyIntegration/EMotionFXAtom/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/CMakeLists.txt b/Gems/AtomLyIntegration/EMotionFXAtom/Code/CMakeLists.txt index 9abff7e67e..d42a283eea 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp index 060596036b..9d686f9bba 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.h b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.h index 53b70cca78..100d03e417 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.h +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorModule.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorModule.cpp index 8a7f905fe1..f435ea5f88 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorModule.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.cpp index c9cb6086cc..9271a47114 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.h b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.h index e905d65bd0..a604b7cd4e 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.h +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.cpp index 2f5cfaee67..e38669b0a8 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.h b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.h index 21b5be1fc6..a3fcfb7cc7 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.h +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp index e91e0e4708..e106f78caf 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h index d8b306ef31..424ab952fb 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomActorInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.cpp index 8f44430951..b364f6eab9 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.h b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.h index ae8af721b2..c25ed4b78d 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.h +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/AtomBackend.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_editor_files.cmake b/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_editor_files.cmake index 1d51786012..ab5b372208 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_editor_files.cmake +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_files.cmake b/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_files.cmake index 782f1ee7cd..0bd2d3065d 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_files.cmake +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfx_atom_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfxatom_shared_files.cmake b/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfxatom_shared_files.cmake index 1d51786012..ab5b372208 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfxatom_shared_files.cmake +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/emotionfxatom_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/ImguiAtom/Assets/Shaders/ImGuiAtom/ImGuiAtom.azsl b/Gems/AtomLyIntegration/ImguiAtom/Assets/Shaders/ImGuiAtom/ImGuiAtom.azsl index fd992f5a53..db9d4b6281 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Assets/Shaders/ImGuiAtom/ImGuiAtom.azsl +++ b/Gems/AtomLyIntegration/ImguiAtom/Assets/Shaders/ImGuiAtom/ImGuiAtom.azsl @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/ImguiAtom/CMakeLists.txt b/Gems/AtomLyIntegration/ImguiAtom/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/CMakeLists.txt +++ b/Gems/AtomLyIntegration/ImguiAtom/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/CMakeLists.txt b/Gems/AtomLyIntegration/ImguiAtom/Code/CMakeLists.txt index 1001f5ca46..7016bb39ca 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.cpp b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.cpp index 2145402fd6..4e92f32001 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.cpp +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.h b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.h index cde1051b82..7dc301ea73 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.h +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/DebugConsole.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomModule.cpp b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomModule.cpp index e7d6d8b571..d7dea255e5 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomModule.cpp +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.cpp b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.cpp index 5036ff945a..fd41ff45a5 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.cpp +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.h b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.h index ab8fcf5fe8..e487c9a39a 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.h +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/Source/ImguiAtomSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_files.cmake b/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_files.cmake index 31c1201ad2..47cc4f39c5 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_files.cmake +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_shared_files.cmake b/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_shared_files.cmake index 9322440e29..c2d4ab1208 100644 --- a/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_shared_files.cmake +++ b/Gems/AtomLyIntegration/ImguiAtom/Code/imguiatom_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/CMakeLists.txt b/Gems/AtomLyIntegration/TechnicalArt/CMakeLists.txt index 2aee56fb57..322cb67f87 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/CMakeLists.txt +++ b/Gems/AtomLyIntegration/TechnicalArt/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/.env b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/.env index f56819c4cf..3f751e9269 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/.env +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/.env @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/CMakeLists.txt b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/CMakeLists.txt index 81f3b89b88..aead5b0eea 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/CMakeLists.txt +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/CMakeLists.txt b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/CMakeLists.txt index fc5c50378a..85692d831e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/CMakeLists.txt +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Include/DccScriptingInterface/DCCScriptingInterfaceBus.h b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Include/DccScriptingInterface/DCCScriptingInterfaceBus.h index ad3d8fd127..a46df59891 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Include/DccScriptingInterface/DCCScriptingInterfaceBus.h +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Include/DccScriptingInterface/DCCScriptingInterfaceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceModule.cpp b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceModule.cpp index a3b056f0e0..51d7f801ee 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceModule.cpp +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.cpp b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.cpp index aaa41404a0..49ae38b531 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.cpp +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.h b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.h index 252a8a6d3a..a6df98f99b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.h +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/Source/DCCScriptingInterfaceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_files.cmake b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_files.cmake index ba2c6c3ab2..937a7f5590 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_files.cmake +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_shared_files.cmake b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_shared_files.cmake index 36c6f295f7..a0cc934eac 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_shared_files.cmake +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Code/dccscriptinginterface_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Editor/Scripts/bootstrap.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Editor/Scripts/bootstrap.py index 1400392f2c..7c62fb4110 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Editor/Scripts/bootstrap.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Editor/Scripts/bootstrap.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Core.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Core.bat index 6d00debd54..6c58a14436 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Core.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Core.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Maya.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Maya.bat index cc3cc88886..858899b187 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Maya.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Maya.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat index e1eb5e9efc..93a457f292 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_PyCharm.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat index cf7fcb4a88..aba279d9e9 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Python.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Qt.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Qt.bat index 4d47d41dfd..e3032428ab 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Qt.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Qt.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Substance.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Substance.bat index e42633ebce..2a0f9805e6 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Substance.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_Substance.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_VScode.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_VScode.bat index c24e4cf04c..8513d8599a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_VScode.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_VScode.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat index e87a4632ea..f181b871a9 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Env_WingIDE.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Env_Cmd.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Env_Cmd.bat index 0d043ea8be..4e88f8e578 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Env_Cmd.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Env_Cmd.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat index 022cf2c54d..6fd2966b0d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_MayaPy_PyCharmPro.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Maya_2020.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Maya_2020.bat index 80c852f2ca..7de601f4c8 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Maya_2020.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Maya_2020.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyCharmPro.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyCharmPro.bat index c78f923b34..a5f0bf0b43 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyCharmPro.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyCharmPro.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyMin_Cmd.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyMin_Cmd.bat index 33dc23dcd1..b81400b3d1 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyMin_Cmd.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_PyMin_Cmd.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Qt_PyMin_Cmd.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Qt_PyMin_Cmd.bat index a34595e71c..4a5bd14898 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Qt_PyMin_Cmd.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_Qt_PyMin_Cmd.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat index 35a0c9e2e6..907770353d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_VScode.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat index 3938690414..3d99680fa7 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_WingIDE-7-1.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayaPy_2020.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayaPy_2020.bat index b1c399fbbd..b9f9bd5e2b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayaPy_2020.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayaPy_2020.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat index 8a24278072..5d8fc97cf9 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_mayapy_WingIDE-7-1.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE.bat index 2bc09a555d..9bdb5e3d61 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE_Cmd.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE_Cmd.bat index 5446fd1ff9..08ea6f1c4e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE_Cmd.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Launch_pyBASE_Cmd.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat index 7a34a52e5f..6107203b95 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Launchers/Windows/Setuo_copy_oiio.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/__init__.py index 35bdbbf6d1..00f4f0081a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/maya_materials_export.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/maya_materials_export.py index ddfdd85aac..247e3e69b4 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/maya_materials_export.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/DCC_Materials/maya_materials_export.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/minspect.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/minspect.py index e0681737e2..a2b645aac0 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/minspect.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Atom/Scripts/Python/minspect.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Lumberyard/Scripts/set_menu.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Lumberyard/Scripts/set_menu.py index 5cf09a204b..c38e8118ec 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Lumberyard/Scripts/set_menu.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Lumberyard/Scripts/set_menu.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/__init__.py index 23da964606..d4aa8277e7 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/blender_materials.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/blender_materials.py index 8b6e2e3b7d..9ec7eccd4b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/blender_materials.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/blender_materials.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/dcc_material_mapping.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/dcc_material_mapping.py index b5860baafe..dc265190c4 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/dcc_material_mapping.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/dcc_material_mapping.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/drag_and_drop.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/drag_and_drop.py index 8f6541d980..6a64189e1e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/drag_and_drop.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/drag_and_drop.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/main.py index 9ed0f175bf..cb646168c6 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/main.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/materials_export.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/materials_export.py index c6a14b41f0..c99435216d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/materials_export.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/materials_export.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/max_materials.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/max_materials.py index 66d1ad9800..38e684e81a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/max_materials.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/max_materials.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/maya_materials.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/maya_materials.py index 69452a0ee4..883b404bde 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/maya_materials.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/maya_materials.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/model.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/model.py index 5bb569dc0a..11c36bcdb6 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/model.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/dcc_materials/model.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/__init__.py index f200e34385..67440f899d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/launcher.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/launcher.bat index 84623b4d57..24bfb21605 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/launcher.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/launcher.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/main.py index 17051f9016..363d3776f8 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/main.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/process_fbx_file.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/process_fbx_file.py index 595d9a0d20..9e811ea9b9 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/process_fbx_file.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/process_fbx_file.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/standalone.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/standalone.py index b6de844689..db4ed160a5 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/standalone.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/kitbash_converter/standalone.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Cmd.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Cmd.bat index a9ba966894..910d656c2a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Cmd.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Cmd.bat @@ -1,7 +1,7 @@ :: coding:utf-8 :: !/usr/bin/python :: -:: Copyright (c) Contributors to the Open 3D Engine Project +:: 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 :: diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Maya_2020.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Maya_2020.bat index 8df79b5dea..daeb0fb8a3 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Maya_2020.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_Maya_2020.bat @@ -1,7 +1,7 @@ :: coding:utf-8 :: !/usr/bin/python :: -:: Copyright (c) Contributors to the Open 3D Engine Project +:: 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 :: diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_WingIDE-7-1.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_WingIDE-7-1.bat index 6b3bc01489..cb274bbe50 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_WingIDE-7-1.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Launch_WingIDE-7-1.bat @@ -1,7 +1,7 @@ :: coding:utf-8 :: !/usr/bin/python :: -:: Copyright (c) Contributors to the Open 3D Engine Project +:: 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 :: diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Project_Env.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Project_Env.bat index f5c1dc0b15..fd232f196b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Project_Env.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/Project_Env.bat @@ -1,7 +1,7 @@ :: coding:utf-8 :: !/usr/bin/python :: -:: Copyright (c) Contributors to the Open 3D Engine Project +:: 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 :: diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/__init__.py index 8f2f3697d9..463b1ab6ab 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/cli_control.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/cli_control.py index b9415e31db..ac8cbac2f6 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/cli_control.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/cli_control.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/constants.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/constants.py index 2d60cf8252..6d17f60fc1 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/constants.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/constants.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/create_maya_files.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/create_maya_files.py index bb74f6b65b..dcbe2ff30c 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/create_maya_files.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/create_maya_files.py @@ -1,7 +1,7 @@ # coding:utf-8 # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/image_conversion.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/image_conversion.py index e920abea01..9154b338ca 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/image_conversion.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/image_conversion.py @@ -1,7 +1,7 @@ # coding:utf-8 # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/isolate_and_assign.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/isolate_and_assign.py index 3c3fb5e2a5..50743d95b8 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/isolate_and_assign.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/isolate_and_assign.py @@ -1,7 +1,7 @@ # coding:utf-8 # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/lumberyard_data.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/lumberyard_data.py index 5eca0bf4f3..1f6a43797d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/lumberyard_data.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/lumberyard_data.py @@ -1,7 +1,7 @@ # coding:utf-8 # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/main.py index 7bd618b2b5..a7f1dd8bfb 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/main.py @@ -1,7 +1,7 @@ # coding:utf-8 # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/test_command_port.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/test_command_port.py index ab1fdeba11..cc09bcb725 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/test_command_port.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/test_command_port.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/utilities.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/utilities.py index 94c29ca031..84ef5a4d72 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/utilities.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/legacy_asset_converter/utilities.py @@ -1,7 +1,7 @@ # coding:utf-8 # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/__init__.py index 37ebd47864..1db662a520 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/maya_materials_export.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/maya_materials_export.py index 17e3f8af68..e62543ed7d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/maya_materials_export.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/maya_materials_export.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/minspect.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/minspect.py index 4b1dab5828..450eec64e5 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/minspect.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/maya_dcc_materials/minspect.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/__init__.py index 43ff5d29bd..167ef99c22 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/atom_mat.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/atom_mat.py index c2c6d26a27..8cb01f2994 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/atom_mat.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/atom_mat.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/fbx_to_atom.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/fbx_to_atom.py index b7dc86788a..abd5c0945b 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/fbx_to_atom.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/fbx_to_atom.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter.py index db152c8ffc..4edc5f7ecf 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter_maya.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter_maya.py index 0f56f12c25..d1d8c67d91 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter_maya.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/Python/stingraypbs_converter/stingrayPBS_converter_maya.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/constants.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/constants.py index 249b91728b..9ae02e7c93 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/constants.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/constants.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_callbacks.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_callbacks.py index 2fa95eb248..46a6850780 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_callbacks.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_callbacks.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_defaults.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_defaults.py index 0b1ecd8226..deba090476 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_defaults.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_defaults.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_menu.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_menu.py index 3f514b3259..3eccb2d96e 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_menu.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_menu.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_shelf.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_shelf.py index a3e5e7a3f2..203432da8f 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_shelf.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/set_shelf.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/setupPaths.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/setupPaths.py index 97e3a5238d..21dd0c0640 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/setupPaths.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/setupPaths.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/userSetup.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/userSetup.py index 41fd0a27b3..fb3b00caeb 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/userSetup.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/Scripts/userSetup.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/readme.txt b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/readme.txt index b4160b3b13..3538ccbd0d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/readme.txt +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Maya/readme.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 ------------------------------------------------------------------------------- diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Python/Tests/OpenImageIO/test_oiio.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Python/Tests/OpenImageIO/test_oiio.py index 2547463dde..2b4cd29e0e 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Python/Tests/OpenImageIO/test_oiio.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Python/Tests/OpenImageIO/test_oiio.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/blender_materials.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/blender_materials.py index 9ea65de685..79fc83a56d 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/blender_materials.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/blender_materials.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/cli_control.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/cli_control.py index 97e461fee5..cd0c92f572 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/cli_control.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/cli_control.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/dcc_material_mapping.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/dcc_material_mapping.py index e9b01e79cd..f53e953678 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/dcc_material_mapping.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/dcc_material_mapping.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/drag_and_drop.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/drag_and_drop.py index 489dad5ad2..7ca5b94abc 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/drag_and_drop.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/drag_and_drop.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/launcher.bat b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/launcher.bat index d79db62df0..57e9a71367 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/launcher.bat +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/launcher.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/main.py index 10554377e8..d7ec13894b 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/main.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/max_materials.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/max_materials.py index 5059980989..14ea1a45e6 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/max_materials.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/max_materials.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/maya_materials.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/maya_materials.py index 5dcd269e27..5ddfb5207c 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/maya_materials.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/maya_materials.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/model.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/model.py index 5bb569dc0a..11c36bcdb6 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/model.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/model.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/standalone.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/standalone.py index de6b4b053c..3e5b4301dd 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/standalone.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/DCC_Material_Converter/standalone.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/Launcher/main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/Launcher/main.py index 327408303f..ff72546ee3 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/Launcher/main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/PythonTools/Launcher/main.py @@ -3,7 +3,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/__init__.py index 3d5d772db7..f40140be84 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/atom_material.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/atom_material.py index d6f995096f..2cf2e6aac8 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/atom_material.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/atom_material.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/bootstrap.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/bootstrap.py index 050c3dee00..26f49a5b07 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/bootstrap.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/bootstrap.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sb_gui_main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sb_gui_main.py index ae260aefee..e90e4593a8 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sb_gui_main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sb_gui_main.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbs_to_sbsar.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbs_to_sbsar.py index ae7d9b4b61..bb9efca169 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbs_to_sbsar.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbs_to_sbsar.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_info.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_info.py index 61fe9bf6a6..a2fd64892b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_info.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_info.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_render.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_render.py index 1cbc872714..8ad5725d59 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_render.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_render.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_utils.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_utils.py index 0757578d64..354d330a0c 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_utils.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/sbsar_utils.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/substance_tools.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/substance_tools.py index 71b38dd894..27d5557184 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/substance_tools.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/substance_tools.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PyQt5_qtextedit_stdout.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PyQt5_qtextedit_stdout.py index edeae7232f..241541956b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PyQt5_qtextedit_stdout.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PyQt5_qtextedit_stdout.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PySide2_qtextedit_stdout.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PySide2_qtextedit_stdout.py index 298349c9c1..1339d4655c 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PySide2_qtextedit_stdout.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/PySide2_qtextedit_stdout.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/main.py index 1ccc944bad..e46207724c 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/main.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/selection_dialog.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/selection_dialog.py index af6a6d28a8..f3d677566a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/selection_dialog.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/selection_dialog.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BaseStyleSheet.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BaseStyleSheet.qss index 193bc3f10d..9dd7ead0fa 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BaseStyleSheet.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BaseStyleSheet.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BreadCrumbs.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BreadCrumbs.qss index f983bdb796..e02e74fc36 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BreadCrumbs.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BreadCrumbs.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BrowseEdit.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BrowseEdit.qss index b2586453e4..19455f41ec 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BrowseEdit.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/BrowseEdit.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Card.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Card.qss index 4dad3dab72..9c1ca9d24e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Card.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Card.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/CheckBox.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/CheckBox.qss index 82fe83f16e..e16de0cea8 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/CheckBox.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/CheckBox.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ColorPicker.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ColorPicker.qss index 0a236f4a9d..9ea9afdd45 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ColorPicker.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ColorPicker.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ComboBox.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ComboBox.qss index ef36b1cd33..952c77f86b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ComboBox.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ComboBox.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/LineEdit.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/LineEdit.qss index af2766050f..9c9fdfc3e5 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/LineEdit.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/LineEdit.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Menu.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Menu.qss index d84934fc6a..dd6b355612 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Menu.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Menu.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ProgressBar.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ProgressBar.qss index 06a25b8543..eeb2cb8d50 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ProgressBar.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ProgressBar.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/PushButton.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/PushButton.qss index f364132d8c..eb2f2e0d08 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/PushButton.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/PushButton.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/RadioButton.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/RadioButton.qss index f2c58470b4..5d9bfeed4b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/RadioButton.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/RadioButton.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ScrollBar.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ScrollBar.qss index fc7c9c8570..21c2612a83 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ScrollBar.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ScrollBar.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SegmentControl.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SegmentControl.qss index a375147723..1773194866 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SegmentControl.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SegmentControl.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Slider.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Slider.qss index 0510cbb2ec..110c08bf64 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Slider.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Slider.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SpinBox.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SpinBox.qss index 57710f92ec..5b9ceaf454 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SpinBox.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/SpinBox.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Text.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Text.qss index 59dc0f8eae..09b1333326 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Text.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/Text.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ToolTip.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ToolTip.qss index 5a96aacb96..fa89f2529f 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ToolTip.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/ui/stylesheets/ToolTip.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/watchdog/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/watchdog/__init__.py index 297860cc13..8c75164431 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/watchdog/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/builder/watchdog/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/scripts/sbs_builder_main_SD.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/scripts/sbs_builder_main_SD.py index f94abdcad5..6d3912656f 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/scripts/sbs_builder_main_SD.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/SDK/Substance/scripts/sbs_builder_main_SD.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.dev/readme.txt b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.dev/readme.txt index 693c6c6917..f2ecf01468 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.dev/readme.txt +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.dev/readme.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 ------------------------------------------------------------------------------- diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.idea/main.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.idea/main.py index da6709fe33..ff24801071 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.idea/main.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/.idea/main.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # !/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/readme.txt b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/readme.txt index 923258ef54..a7a9320acf 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/readme.txt +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/Solutions/readme.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 ------------------------------------------------------------------------------- diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/3dsmax/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/3dsmax/__init__.py index 800438ee3d..a1173e44b9 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/3dsmax/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/3dsmax/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/__init__.py index c335b94a3c..0d2d7e7b30 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/blender/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/blender/__init__.py index 58cc7eeac2..4854361c59 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/blender/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/blender/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/config_utils.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/config_utils.py index 347ac7046f..846e193db1 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/config_utils.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/config_utils.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/constants.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/constants.py index dde76ce451..201e198d70 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/constants.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/constants.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/__init__.py index 90b9a5ae89..1a105ca88d 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/__init__.py index 51fea703b6..d2ead2bdb3 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/examples/maya_command_script.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/examples/maya_command_script.py index bfb3eebb44..dc592e5436 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/examples/maya_command_script.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/examples/maya_command_script.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/__init__.py index f5d526d296..44163b0b3e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/hot_keys.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/hot_keys.py index febf220e37..dc74df10cd 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/hot_keys.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/hot_keys.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/test.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/test.py index e242441371..cd2c63a73f 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/test.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/ide/wing/test.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/__init__.py index 31e222e29b..6fe3b347dc 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/__init__.py index f914c2c06c..c2949b169e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/maya_app.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/maya_app.py index af09fe6745..a1bf66a964 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/maya_app.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/maya_app.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/running_state.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/running_state.py index 1e323c1d25..27fee8e3b1 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/running_state.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/dev/utils/check/running_state.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_base.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_base.py index 825890488f..4ac09deb7c 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_base.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_base.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_bool.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_bool.py index b306535628..fe45881b30 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_bool.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/env_bool.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/houdini/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/houdini/__init__.py index 1b27f61d72..6b9d72a0b4 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/houdini/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/houdini/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/lumberyard/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/lumberyard/__init__.py index 43b4ae3ef0..fb9bce354e 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/lumberyard/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/lumberyard/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/marmoset/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/marmoset/__init__.py index bb9fc572e1..cc2af8c11f 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/marmoset/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/marmoset/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/__init__.py index f9516434d6..2e0ad28125 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/__init__.py index 05a8aa2e16..751d5a2a0e 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/event_callback_handler.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/event_callback_handler.py index db67a95775..03d2075444 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/event_callback_handler.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/event_callback_handler.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/node_message_callback_handler.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/node_message_callback_handler.py index b4ac9b4a7f..fee8cfb788 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/node_message_callback_handler.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/node_message_callback_handler.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/on_shader_rename.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/on_shader_rename.py index 5798183b5f..603d09661c 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/on_shader_rename.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/callbacks/on_shader_rename.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/__init__.py index 15f76d396e..7835590254 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/undo_context.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/undo_context.py index f9010f90b2..24b34ed5d6 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/undo_context.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/undo_context.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/utils.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/utils.py index a6b781fc0c..5d4361d725 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/utils.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/helpers/utils.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/__init__.py index e8223e9191..b7f2a6529d 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/detach.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/detach.py index 1de410f63d..47a341ddde 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/detach.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/toolbits/detach.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/__init__.py index a3765d1669..1e53c99d0b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/execute_wing_code.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/execute_wing_code.py index ce506781b0..3b66f1461f 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/execute_wing_code.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/execute_wing_code.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/simple_command_port.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/simple_command_port.py index 0ba8eb8645..e266aa9429 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/simple_command_port.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/simple_command_port.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/wing_to_maya.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/wing_to_maya.py index f2be0a32d3..c2fd94a8c7 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/wing_to_maya.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/maya/utils/wing_to_maya.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/render/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/render/__init__.py index 93c2390e4a..67bdb51334 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/render/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/render/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/return_stub.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/return_stub.py index d7feed42e0..5d1006298a 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/return_stub.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/return_stub.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/__init__.py index 2a5efa19ca..323ca78a65 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/__init__.py index 7d7bd557fb..df4ee14c5a 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/core_utils.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/core_utils.py index 6eab1d2f94..3ea0515b18 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/core_utils.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/core_utils.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/envar_utils.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/envar_utils.py index a8c44d19c2..028acee34b 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/envar_utils.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/common/envar_utils.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/__init__.py index f4cfea393a..eb3060707d 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/find_arg.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/find_arg.py index 2da687f12a..2f0aa92f5b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/find_arg.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/find_arg.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/helpers.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/helpers.py index 3ecaf5ee73..8c0bd5c42f 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/helpers.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/helpers.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/node.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/node.py index d4e3b4e74b..39f569135b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/node.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/node.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/pathnode.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/pathnode.py index 56f1ba7c35..456ec383ab 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/pathnode.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/pathnode.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth.py index 14b0d5347a..77b30d9d76 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth_arg_kwarg.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth_arg_kwarg.py index 7a125983bb..a9759dbb32 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth_arg_kwarg.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/synth_arg_kwarg.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/test_foo.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/test_foo.py index 66fe90c759..0dba21dc79 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/test_foo.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/noodely/test_foo.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/__init__.py index 7e5f4e49f2..0273b9931b 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/base_widget.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/base_widget.py index bac5748522..2ca47221ae 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/base_widget.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/base_widget.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/custom_treemodel.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/custom_treemodel.py index b6e767458d..32f4359835 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/custom_treemodel.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/custom_treemodel.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/help_menu.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/help_menu.py index 73d9839a1e..4802e740da 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/help_menu.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/help_menu.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_qtextedit_stdout.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_qtextedit_stdout.py index 222726c440..5485b4a661 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_qtextedit_stdout.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_qtextedit_stdout.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_ui_utils.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_ui_utils.py index 17393f50af..603724bde9 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_ui_utils.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/pyside2_ui_utils.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/qt_settings.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/qt_settings.py index 934da0d78d..0a756aa91a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/qt_settings.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/qt_settings.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BaseStyleSheet.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BaseStyleSheet.qss index 193bc3f10d..9dd7ead0fa 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BaseStyleSheet.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BaseStyleSheet.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BreadCrumbs.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BreadCrumbs.qss index f983bdb796..e02e74fc36 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BreadCrumbs.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BreadCrumbs.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BrowseEdit.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BrowseEdit.qss index b2586453e4..19455f41ec 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BrowseEdit.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/BrowseEdit.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Card.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Card.qss index 4dad3dab72..9c1ca9d24e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Card.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Card.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/CheckBox.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/CheckBox.qss index 82fe83f16e..e16de0cea8 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/CheckBox.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/CheckBox.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ColorPicker.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ColorPicker.qss index 0a236f4a9d..9ea9afdd45 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ColorPicker.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ColorPicker.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ComboBox.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ComboBox.qss index ef36b1cd33..952c77f86b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ComboBox.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ComboBox.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/LineEdit.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/LineEdit.qss index af2766050f..9c9fdfc3e5 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/LineEdit.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/LineEdit.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Menu.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Menu.qss index d84934fc6a..dd6b355612 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Menu.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Menu.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ProgressBar.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ProgressBar.qss index 06a25b8543..eeb2cb8d50 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ProgressBar.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ProgressBar.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/PushButton.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/PushButton.qss index f364132d8c..eb2f2e0d08 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/PushButton.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/PushButton.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/RadioButton.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/RadioButton.qss index f2c58470b4..5d9bfeed4b 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/RadioButton.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/RadioButton.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ScrollBar.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ScrollBar.qss index fc7c9c8570..21c2612a83 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ScrollBar.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ScrollBar.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SegmentControl.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SegmentControl.qss index a375147723..1773194866 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SegmentControl.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SegmentControl.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Slider.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Slider.qss index 0510cbb2ec..110c08bf64 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Slider.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Slider.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SpinBox.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SpinBox.qss index 57710f92ec..5b9ceaf454 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SpinBox.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/SpinBox.qss @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Text.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Text.qss index 59dc0f8eae..09b1333326 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Text.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/Text.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ToolTip.qss b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ToolTip.qss index 5a96aacb96..fa89f2529f 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ToolTip.qss +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/resources/stylesheets/ToolTip.qss @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/templates.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/templates.py index 66724b69fe..747f5b4c0e 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/templates.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/shared/ui/templates.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/substance/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/substance/__init__.py index a0bad33866..c6500953ef 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/substance/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/substance/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/synthetic_env.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/synthetic_env.py index 7785419e99..e05ae6192a 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/synthetic_env.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/synthetic_env.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/__init__.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/__init__.py index a042e4cf21..51b55532f8 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/__init__.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/__init__.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/entry_test.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/entry_test.py index d4fcec36b7..1b5bfc2664 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/entry_test.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/azpy/test/entry_test.py @@ -1,7 +1,7 @@ # coding:utf-8 #!/usr/bin/python # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/config.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/config.py index ce9febda6e..42a39cce26 100755 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/config.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/config.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/setup.py b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/setup.py index bbea49da8a..a1b1bdbe18 100644 --- a/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/setup.py +++ b/Gems/AtomLyIntegration/TechnicalArt/DccScriptingInterface/setup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AtomTressFX/CMakeLists.txt b/Gems/AtomTressFX/CMakeLists.txt index 30503258bc..1fe051b062 100644 --- a/Gems/AtomTressFX/CMakeLists.txt +++ b/Gems/AtomTressFX/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AtomTressFX/Tools/Maya/TressFX_Exporter.py b/Gems/AtomTressFX/Tools/Maya/TressFX_Exporter.py index 1128799e00..85ef8b681e 100755 --- a/Gems/AtomTressFX/Tools/Maya/TressFX_Exporter.py +++ b/Gems/AtomTressFX/Tools/Maya/TressFX_Exporter.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/CMakeLists.txt b/Gems/AudioEngineWwise/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AudioEngineWwise/CMakeLists.txt +++ b/Gems/AudioEngineWwise/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/CMakeLists.txt b/Gems/AudioEngineWwise/Code/CMakeLists.txt index d143b76a38..b53f93ce94 100644 --- a/Gems/AudioEngineWwise/Code/CMakeLists.txt +++ b/Gems/AudioEngineWwise/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/AkPlatformFuncs_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Android/AkPlatformFuncs_Platform.h index a464193bb1..310cec0e9a 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/AkPlatformFuncs_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Android/AkPlatformFuncs_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Android.h b/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Android.h index b5b5126660..f9670755a1 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Android.h +++ b/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Platform.h index 279e3850d5..f1f98889cd 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Android/AudioEngineWwise_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/AudioSystemImpl_wwise_Android.cpp b/Gems/AudioEngineWwise/Code/Platform/Android/AudioSystemImpl_wwise_Android.cpp index 0fbc682aa2..ae4de09728 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/AudioSystemImpl_wwise_Android.cpp +++ b/Gems/AudioEngineWwise/Code/Platform/Android/AudioSystemImpl_wwise_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/FileIOHandler_wwise_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Android/FileIOHandler_wwise_Platform.h index 9005a35b33..31abc16f6c 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/FileIOHandler_wwise_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Android/FileIOHandler_wwise_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/PAL_android.cmake b/Gems/AudioEngineWwise/Code/Platform/Android/PAL_android.cmake index 9ec2c51a07..bd8ed51d44 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/PAL_android.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/platform_android.cmake b/Gems/AudioEngineWwise/Code/Platform/Android/platform_android.cmake index ddb67e27b5..24640d6fc9 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/platform_android.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Android/platform_android_files.cmake b/Gems/AudioEngineWwise/Code/Platform/Android/platform_android_files.cmake index 3eda8f7d26..265f08caf7 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Android/platform_android_files.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Common/Default/AkPlatformFuncs_Default.h b/Gems/AudioEngineWwise/Code/Platform/Common/Default/AkPlatformFuncs_Default.h index c8cede9581..7d660c620b 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Common/Default/AkPlatformFuncs_Default.h +++ b/Gems/AudioEngineWwise/Code/Platform/Common/Default/AkPlatformFuncs_Default.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.cpp b/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.cpp index 8c0a7fb67e..831a6f2ed8 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.cpp +++ b/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.h b/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.h index 1eb944845d..c5bfbda9dd 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.h +++ b/Gems/AudioEngineWwise/Code/Platform/Common/Default/FileIOHandler_wwise_Default.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Common/MSVC/AkPlatformFuncs_Default.h b/Gems/AudioEngineWwise/Code/Platform/Common/MSVC/AkPlatformFuncs_Default.h index bbbbe0905c..2ae470ed0d 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Common/MSVC/AkPlatformFuncs_Default.h +++ b/Gems/AudioEngineWwise/Code/Platform/Common/MSVC/AkPlatformFuncs_Default.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioEngineWwise_Unimplemented.cpp b/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioEngineWwise_Unimplemented.cpp index 3cb3eca663..512e9f6e56 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioEngineWwise_Unimplemented.cpp +++ b/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioEngineWwise_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioSystemImpl_wwise_Unimplemented.cpp b/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioSystemImpl_wwise_Unimplemented.cpp index a0e085235d..0993237dd8 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioSystemImpl_wwise_Unimplemented.cpp +++ b/Gems/AudioEngineWwise/Code/Platform/Common/Unimplemented/AudioSystemImpl_wwise_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Linux/AkPlatformFuncs_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Linux/AkPlatformFuncs_Platform.h index a464193bb1..310cec0e9a 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Linux/AkPlatformFuncs_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Linux/AkPlatformFuncs_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Linux.h b/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Linux.h index d00cd4c7a2..ab34c55087 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Linux.h +++ b/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Platform.h index 70e07c592c..7397fb10bd 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Linux/AudioEngineWwise_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Linux/FileIOHandler_wwise_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Linux/FileIOHandler_wwise_Platform.h index 9005a35b33..31abc16f6c 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Linux/FileIOHandler_wwise_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Linux/FileIOHandler_wwise_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Linux/PAL_linux.cmake b/Gems/AudioEngineWwise/Code/Platform/Linux/PAL_linux.cmake index 9ec2c51a07..bd8ed51d44 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Linux/PAL_linux.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux.cmake b/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux.cmake index 288c41befc..1dc04c4e9e 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux_files.cmake b/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux_files.cmake index 3b96e9efdd..c00ed4396e 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux_files.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Mac/AkPlatformFuncs_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Mac/AkPlatformFuncs_Platform.h index a464193bb1..310cec0e9a 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Mac/AkPlatformFuncs_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Mac/AkPlatformFuncs_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Mac.h b/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Mac.h index d00cd4c7a2..ab34c55087 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Mac.h +++ b/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Platform.h index 6d373dac76..80a48a86c9 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Mac/AudioEngineWwise_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Mac/FileIOHandler_wwise_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Mac/FileIOHandler_wwise_Platform.h index 9005a35b33..31abc16f6c 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Mac/FileIOHandler_wwise_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Mac/FileIOHandler_wwise_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Mac/PAL_mac.cmake b/Gems/AudioEngineWwise/Code/Platform/Mac/PAL_mac.cmake index 9ec2c51a07..bd8ed51d44 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Mac/PAL_mac.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac.cmake b/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac.cmake index 4e47154e36..0755b15e54 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac_files.cmake b/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac_files.cmake index 76d8dea85d..f136f765d6 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac_files.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/AkPlatformFuncs_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Windows/AkPlatformFuncs_Platform.h index 5664fb800b..5516e05f2e 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/AkPlatformFuncs_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/AkPlatformFuncs_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Platform.h index 0a797b11f4..5282e1f8df 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Windows.h b/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Windows.h index 40b4367bee..51f35c248c 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Windows.h +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/AudioEngineWwise_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/AudioSystemImpl_wwise_Windows.cpp b/Gems/AudioEngineWwise/Code/Platform/Windows/AudioSystemImpl_wwise_Windows.cpp index 996f5b9bb0..4324f050e6 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/AudioSystemImpl_wwise_Windows.cpp +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/AudioSystemImpl_wwise_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/FileIOHandler_wwise_Platform.h b/Gems/AudioEngineWwise/Code/Platform/Windows/FileIOHandler_wwise_Platform.h index 9005a35b33..31abc16f6c 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/FileIOHandler_wwise_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/FileIOHandler_wwise_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/PAL_windows.cmake b/Gems/AudioEngineWwise/Code/Platform/Windows/PAL_windows.cmake index 9ec2c51a07..bd8ed51d44 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/PAL_windows.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows.cmake b/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows_files.cmake b/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows_files.cmake index 9123b526ca..6d5d832d5f 100644 --- a/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows_files.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/iOS/AkPlatformFuncs_Platform.h b/Gems/AudioEngineWwise/Code/Platform/iOS/AkPlatformFuncs_Platform.h index a464193bb1..310cec0e9a 100644 --- a/Gems/AudioEngineWwise/Code/Platform/iOS/AkPlatformFuncs_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/iOS/AkPlatformFuncs_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_Platform.h b/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_Platform.h index b15955b160..e604816c03 100644 --- a/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_iOS.h b/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_iOS.h index b5b5126660..f9670755a1 100644 --- a/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_iOS.h +++ b/Gems/AudioEngineWwise/Code/Platform/iOS/AudioEngineWwise_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/iOS/FileIOHandler_wwise_Platform.h b/Gems/AudioEngineWwise/Code/Platform/iOS/FileIOHandler_wwise_Platform.h index 9005a35b33..31abc16f6c 100644 --- a/Gems/AudioEngineWwise/Code/Platform/iOS/FileIOHandler_wwise_Platform.h +++ b/Gems/AudioEngineWwise/Code/Platform/iOS/FileIOHandler_wwise_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Platform/iOS/PAL_ios.cmake b/Gems/AudioEngineWwise/Code/Platform/iOS/PAL_ios.cmake index 9ec2c51a07..bd8ed51d44 100644 --- a/Gems/AudioEngineWwise/Code/Platform/iOS/PAL_ios.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios.cmake b/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios.cmake index 31f59f86e1..896fb3930b 100644 --- a/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios_files.cmake b/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios_files.cmake index 958e6e70f1..68a581a810 100644 --- a/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios_files.cmake +++ b/Gems/AudioEngineWwise/Code/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.cpp b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.cpp index 1909b70ce2..5ff4136158 100644 --- a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.cpp +++ b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.h b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.h index 42de24c600..383f536752 100644 --- a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.h +++ b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseGemSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule.cpp b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule.cpp index 6911d014c5..526b1fa2d8 100644 --- a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule.cpp +++ b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule_Stub.cpp b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule_Stub.cpp index a6e2b1c4e2..1f49d27d64 100644 --- a/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule_Stub.cpp +++ b/Gems/AudioEngineWwise/Code/Source/AudioEngineWwiseModule_Stub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.cpp b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.cpp index c90e05ceb1..4f715a57b1 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.h b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.h index 4d77f63fc8..2156779170 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.h +++ b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.cpp b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.cpp index 488098bab4..5d80dcb37a 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.h b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.h index 34c4a870ff..e67a314fc9 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.h +++ b/Gems/AudioEngineWwise/Code/Source/Builder/AudioControlBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.cpp b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.cpp index 466d07a42d..80c486ed71 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.h b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.h index 50144cbf33..730b903375 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.h +++ b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.cpp b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.cpp index ff90d0fe36..c0c23381e0 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.h b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.h index 3e5b7bb4db..1c195a5449 100644 --- a/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.h +++ b/Gems/AudioEngineWwise/Code/Source/Builder/WwiseBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.cpp b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.cpp index 2a1f8723ce..192045cc1c 100644 --- a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.h b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.h index d8545e4ae5..d032b42db4 100644 --- a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemControl_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.cpp b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.cpp index b585c00f19..43de57bbca 100644 --- a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.h b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.h index 005123d20f..d61def26af 100644 --- a/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Editor/AudioSystemEditor_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.cpp b/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.cpp index 4b1b725d60..44712654a2 100644 --- a/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.h b/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.h index f82b8f68d6..6ff8ea70c3 100644 --- a/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.h +++ b/Gems/AudioEngineWwise/Code/Source/Editor/AudioWwiseLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/ATLEntities_wwise.h b/Gems/AudioEngineWwise/Code/Source/Engine/ATLEntities_wwise.h index e3363828d9..3f80ca6766 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/ATLEntities_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/ATLEntities_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.cpp index 1b47bcbbfc..7579f38e1b 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.h b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.h index bd3eeb67d6..83f19e2b6c 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.cpp index a8ef7f9f2c..3caa2090f0 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.h b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.h index 916138c504..b044458a45 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputMicrophone.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.cpp index 0f0458b2fe..b06ebbfb0c 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.h b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.h index 3e9c19891b..84a5a4b221 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/AudioInputStream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.cpp index 27c4492524..474285ee65 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.h b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.h index 06bf7ed850..b919d2ccfb 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioInput/WavParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.cpp index 3d5a09a44f..3bdc75bc10 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.h b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.h index a976b0394a..ee4ab5ea02 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSourceManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.cpp index c81c8cda2e..614d6cc7d5 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.h b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.h index 09d8574769..c14b89d56c 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImplCVars.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.cpp index 00a565f746..bd9c2b8cf1 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.h b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.h index 21a403fdb8..d836469282 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/AudioSystemImpl_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.cpp index 304f532a00..579f3eb84b 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.h b/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.h index cd5fd06bc8..cd3c65b27b 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/Common_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.cpp index 25d8bb9ea4..8e06e2fcaf 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.h b/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.h index f3a04ef649..c790ae5c34 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/Config_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp b/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp index 4b89760308..c947ae225f 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp +++ b/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.h b/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.h index 9857052e3b..a44a690667 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/FileIOHandler_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Source/Engine/PluginRegistration_wwise.h b/Gems/AudioEngineWwise/Code/Source/Engine/PluginRegistration_wwise.h index 84f9fe1428..567dccd62a 100644 --- a/Gems/AudioEngineWwise/Code/Source/Engine/PluginRegistration_wwise.h +++ b/Gems/AudioEngineWwise/Code/Source/Engine/PluginRegistration_wwise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Tests/AudioControlBuilderTest.cpp b/Gems/AudioEngineWwise/Code/Tests/AudioControlBuilderTest.cpp index e06d5c7fcb..dad32f8a5f 100644 --- a/Gems/AudioEngineWwise/Code/Tests/AudioControlBuilderTest.cpp +++ b/Gems/AudioEngineWwise/Code/Tests/AudioControlBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseBuilderTest.cpp b/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseBuilderTest.cpp index ca81f85cfe..a7b43a4433 100644 --- a/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseBuilderTest.cpp +++ b/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseEditorTest.cpp b/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseEditorTest.cpp index 552bc919f8..15dd2a477e 100644 --- a/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseEditorTest.cpp +++ b/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseEditorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseTest.cpp b/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseTest.cpp index 224bdb9d97..cb3cc529f4 100644 --- a/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseTest.cpp +++ b/Gems/AudioEngineWwise/Code/Tests/AudioEngineWwiseTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioEngineWwise/Code/audioenginewwise_editor_files.cmake b/Gems/AudioEngineWwise/Code/audioenginewwise_editor_files.cmake index 33e7247b76..5fa6bd686c 100644 --- a/Gems/AudioEngineWwise/Code/audioenginewwise_editor_files.cmake +++ b/Gems/AudioEngineWwise/Code/audioenginewwise_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/audioenginewwise_editor_shared_files.cmake b/Gems/AudioEngineWwise/Code/audioenginewwise_editor_shared_files.cmake index 03a1295fa1..ae4f647df2 100644 --- a/Gems/AudioEngineWwise/Code/audioenginewwise_editor_shared_files.cmake +++ b/Gems/AudioEngineWwise/Code/audioenginewwise_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/audioenginewwise_editor_tests_files.cmake b/Gems/AudioEngineWwise/Code/audioenginewwise_editor_tests_files.cmake index 11255ee20a..f1e0a38663 100644 --- a/Gems/AudioEngineWwise/Code/audioenginewwise_editor_tests_files.cmake +++ b/Gems/AudioEngineWwise/Code/audioenginewwise_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/audioenginewwise_files.cmake b/Gems/AudioEngineWwise/Code/audioenginewwise_files.cmake index c64a1cb030..648a9ce239 100644 --- a/Gems/AudioEngineWwise/Code/audioenginewwise_files.cmake +++ b/Gems/AudioEngineWwise/Code/audioenginewwise_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/audioenginewwise_shared_files.cmake b/Gems/AudioEngineWwise/Code/audioenginewwise_shared_files.cmake index e038580ed5..19e2a69fe2 100644 --- a/Gems/AudioEngineWwise/Code/audioenginewwise_shared_files.cmake +++ b/Gems/AudioEngineWwise/Code/audioenginewwise_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/audioenginewwise_stub_files.cmake b/Gems/AudioEngineWwise/Code/audioenginewwise_stub_files.cmake index 2eb937755d..91cb05af62 100644 --- a/Gems/AudioEngineWwise/Code/audioenginewwise_stub_files.cmake +++ b/Gems/AudioEngineWwise/Code/audioenginewwise_stub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Code/audioenginewwise_tests_files.cmake b/Gems/AudioEngineWwise/Code/audioenginewwise_tests_files.cmake index 8a7f66c219..723b0129a1 100644 --- a/Gems/AudioEngineWwise/Code/audioenginewwise_tests_files.cmake +++ b/Gems/AudioEngineWwise/Code/audioenginewwise_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioEngineWwise/Tools/WwiseATLGen/wwise_atl_gen_tool.py b/Gems/AudioEngineWwise/Tools/WwiseATLGen/wwise_atl_gen_tool.py index 4eb893234e..c9639a17f6 100755 --- a/Gems/AudioEngineWwise/Tools/WwiseATLGen/wwise_atl_gen_tool.py +++ b/Gems/AudioEngineWwise/Tools/WwiseATLGen/wwise_atl_gen_tool.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ @@ -13,7 +13,7 @@ import sys __version__ = '0.1.0' -__copyright__ = 'Copyright (c) Contributors to the Open 3D Engine Project.' +__copyright__ = '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..' all_events = set() diff --git a/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/__init__.py b/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/__init__.py +++ b/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/bank_info_parser.py b/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/bank_info_parser.py index 231225244d..10e6d0e667 100755 --- a/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/bank_info_parser.py +++ b/Gems/AudioEngineWwise/Tools/WwiseAuthoringScripts/bank_info_parser.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ @@ -13,7 +13,7 @@ from xml.etree import ElementTree __version__ = '0.1.0' -__copyright__ = 'Copyright (c) Contributors to the Open 3D Engine Project.' +__copyright__ = '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..' metadata_file_extension = '.bankdeps' metadata_version = '1.0' diff --git a/Gems/AudioEngineWwise/Tools/WwiseConfig/setup_wwise_config.py b/Gems/AudioEngineWwise/Tools/WwiseConfig/setup_wwise_config.py index 36233cf6be..7cac7e247d 100755 --- a/Gems/AudioEngineWwise/Tools/WwiseConfig/setup_wwise_config.py +++ b/Gems/AudioEngineWwise/Tools/WwiseConfig/setup_wwise_config.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ @@ -14,7 +14,7 @@ import sys __version__ = '0.1.0' -__copyright__ = 'Copyright (c) Contributors to the Open 3D Engine Project.' +__copyright__ = '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..' wwise_versions = dict() project_platforms = dict() diff --git a/Gems/AudioSystem/CMakeLists.txt b/Gems/AudioSystem/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AudioSystem/CMakeLists.txt +++ b/Gems/AudioSystem/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/CMakeLists.txt b/Gems/AudioSystem/Code/CMakeLists.txt index aaadf0ef9e..e3fda7080a 100644 --- a/Gems/AudioSystem/Code/CMakeLists.txt +++ b/Gems/AudioSystem/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Include/Editor/ACETypes.h b/Gems/AudioSystem/Code/Include/Editor/ACETypes.h index 19ed3b1dfc..3a46a338a0 100644 --- a/Gems/AudioSystem/Code/Include/Editor/ACETypes.h +++ b/Gems/AudioSystem/Code/Include/Editor/ACETypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Editor/IAudioConnection.h b/Gems/AudioSystem/Code/Include/Editor/IAudioConnection.h index fd2f32d62f..ea5802c34b 100644 --- a/Gems/AudioSystem/Code/Include/Editor/IAudioConnection.h +++ b/Gems/AudioSystem/Code/Include/Editor/IAudioConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Editor/IAudioSystemControl.h b/Gems/AudioSystem/Code/Include/Editor/IAudioSystemControl.h index f4dcb9942d..9c21a23f58 100644 --- a/Gems/AudioSystem/Code/Include/Editor/IAudioSystemControl.h +++ b/Gems/AudioSystem/Code/Include/Editor/IAudioSystemControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Editor/IAudioSystemEditor.h b/Gems/AudioSystem/Code/Include/Editor/IAudioSystemEditor.h index d0509c8eea..d62041aaff 100644 --- a/Gems/AudioSystem/Code/Include/Editor/IAudioSystemEditor.h +++ b/Gems/AudioSystem/Code/Include/Editor/IAudioSystemEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Engine/ATLCommon.h b/Gems/AudioSystem/Code/Include/Engine/ATLCommon.h index f6633950ca..c912cf7bcf 100644 --- a/Gems/AudioSystem/Code/Include/Engine/ATLCommon.h +++ b/Gems/AudioSystem/Code/Include/Engine/ATLCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Engine/ATLEntityData.h b/Gems/AudioSystem/Code/Include/Engine/ATLEntityData.h index ee9179382a..eb296070aa 100644 --- a/Gems/AudioSystem/Code/Include/Engine/ATLEntityData.h +++ b/Gems/AudioSystem/Code/Include/Engine/ATLEntityData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Engine/AudioAllocators.h b/Gems/AudioSystem/Code/Include/Engine/AudioAllocators.h index 8e8ed3468a..9fd5454489 100644 --- a/Gems/AudioSystem/Code/Include/Engine/AudioAllocators.h +++ b/Gems/AudioSystem/Code/Include/Engine/AudioAllocators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Engine/AudioFileUtils.h b/Gems/AudioSystem/Code/Include/Engine/AudioFileUtils.h index 03d52e8ad6..c813f22164 100644 --- a/Gems/AudioSystem/Code/Include/Engine/AudioFileUtils.h +++ b/Gems/AudioSystem/Code/Include/Engine/AudioFileUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Engine/AudioLogger.h b/Gems/AudioSystem/Code/Include/Engine/AudioLogger.h index aec7fa3952..375cf18bba 100644 --- a/Gems/AudioSystem/Code/Include/Engine/AudioLogger.h +++ b/Gems/AudioSystem/Code/Include/Engine/AudioLogger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Engine/AudioRingBuffer.h b/Gems/AudioSystem/Code/Include/Engine/AudioRingBuffer.h index 4f41ffb8d4..b6ad57f51b 100644 --- a/Gems/AudioSystem/Code/Include/Engine/AudioRingBuffer.h +++ b/Gems/AudioSystem/Code/Include/Engine/AudioRingBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Include/Engine/IAudioSystemImplementation.h b/Gems/AudioSystem/Code/Include/Engine/IAudioSystemImplementation.h index de5f1c04b3..2d2db187cb 100644 --- a/Gems/AudioSystem/Code/Include/Engine/IAudioSystemImplementation.h +++ b/Gems/AudioSystem/Code/Include/Engine/IAudioSystemImplementation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Android.h b/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Android.h index 726d4af81a..1882780e85 100644 --- a/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Android.h +++ b/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Platform.h b/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Platform.h index 9ed7b86929..b882e623a8 100644 --- a/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Platform.h +++ b/Gems/AudioSystem/Code/Platform/Android/AudioSystem_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Android/platform_android.cmake b/Gems/AudioSystem/Code/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/AudioSystem/Code/Platform/Android/platform_android.cmake +++ b/Gems/AudioSystem/Code/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/Android/platform_android_files.cmake b/Gems/AudioSystem/Code/Platform/Android/platform_android_files.cmake index cddb805955..d3631dfa13 100644 --- a/Gems/AudioSystem/Code/Platform/Android/platform_android_files.cmake +++ b/Gems/AudioSystem/Code/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/Common/Default/AudioSystemGemSystemComponent_default.cpp b/Gems/AudioSystem/Code/Platform/Common/Default/AudioSystemGemSystemComponent_default.cpp index cfd75ec511..b1da5516f8 100644 --- a/Gems/AudioSystem/Code/Platform/Common/Default/AudioSystemGemSystemComponent_default.cpp +++ b/Gems/AudioSystem/Code/Platform/Common/Default/AudioSystemGemSystemComponent_default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Linux.h b/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Linux.h index 476dfea073..b2c65d2f42 100644 --- a/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Linux.h +++ b/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Platform.h b/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Platform.h index 9f04cfe9d9..04af04c032 100644 --- a/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Platform.h +++ b/Gems/AudioSystem/Code/Platform/Linux/AudioSystem_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Linux/platform_linux.cmake b/Gems/AudioSystem/Code/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/AudioSystem/Code/Platform/Linux/platform_linux.cmake +++ b/Gems/AudioSystem/Code/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/Linux/platform_linux_files.cmake b/Gems/AudioSystem/Code/Platform/Linux/platform_linux_files.cmake index 60ae1bc8a0..69c0955bed 100644 --- a/Gems/AudioSystem/Code/Platform/Linux/platform_linux_files.cmake +++ b/Gems/AudioSystem/Code/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Mac.h b/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Mac.h index 476dfea073..b2c65d2f42 100644 --- a/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Mac.h +++ b/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Platform.h b/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Platform.h index e5ec15fbd9..874a9e2765 100644 --- a/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Platform.h +++ b/Gems/AudioSystem/Code/Platform/Mac/AudioSystem_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Mac/platform_mac.cmake b/Gems/AudioSystem/Code/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/AudioSystem/Code/Platform/Mac/platform_mac.cmake +++ b/Gems/AudioSystem/Code/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/Mac/platform_mac_files.cmake b/Gems/AudioSystem/Code/Platform/Mac/platform_mac_files.cmake index 4fd04f3b6a..ca4ccb88a1 100644 --- a/Gems/AudioSystem/Code/Platform/Mac/platform_mac_files.cmake +++ b/Gems/AudioSystem/Code/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Platform.h b/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Platform.h index 893c6dc739..845d1bc0d2 100644 --- a/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Platform.h +++ b/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Windows.h b/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Windows.h index 171c9bafd5..a652d1cbc8 100644 --- a/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Windows.h +++ b/Gems/AudioSystem/Code/Platform/Windows/AudioSystem_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/Windows/platform_windows.cmake b/Gems/AudioSystem/Code/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/AudioSystem/Code/Platform/Windows/platform_windows.cmake +++ b/Gems/AudioSystem/Code/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/Windows/platform_windows_files.cmake b/Gems/AudioSystem/Code/Platform/Windows/platform_windows_files.cmake index fa941729ca..ac7d6adcc0 100644 --- a/Gems/AudioSystem/Code/Platform/Windows/platform_windows_files.cmake +++ b/Gems/AudioSystem/Code/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_Platform.h b/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_Platform.h index ce7bec780e..3cc1451ba1 100644 --- a/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_Platform.h +++ b/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_iOS.h b/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_iOS.h index 8e98073fbc..da5c831f14 100644 --- a/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_iOS.h +++ b/Gems/AudioSystem/Code/Platform/iOS/AudioSystem_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Platform/iOS/platform_ios.cmake b/Gems/AudioSystem/Code/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/AudioSystem/Code/Platform/iOS/platform_ios.cmake +++ b/Gems/AudioSystem/Code/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Platform/iOS/platform_ios_files.cmake b/Gems/AudioSystem/Code/Platform/iOS/platform_ios_files.cmake index 7ae5866449..63604352b3 100644 --- a/Gems/AudioSystem/Code/Platform/iOS/platform_ios_files.cmake +++ b/Gems/AudioSystem/Code/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.cpp b/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.cpp index 1f780920c1..64846617b2 100644 --- a/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.cpp +++ b/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.h b/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.h index 3ca37de53b..174bd18355 100644 --- a/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.h +++ b/Gems/AudioSystem/Code/Source/AudioSystemGemSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/AudioSystemModule.cpp b/Gems/AudioSystem/Code/Source/AudioSystemModule.cpp index 292b7e6e31..9a3787b19e 100644 --- a/Gems/AudioSystem/Code/Source/AudioSystemModule.cpp +++ b/Gems/AudioSystem/Code/Source/AudioSystemModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/AudioSystemModule_Stub.cpp b/Gems/AudioSystem/Code/Source/AudioSystemModule_Stub.cpp index def277f2c2..7477c33f9b 100644 --- a/Gems/AudioSystem/Code/Source/AudioSystemModule_Stub.cpp +++ b/Gems/AudioSystem/Code/Source/AudioSystemModule_Stub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ACEEnums.h b/Gems/AudioSystem/Code/Source/Editor/ACEEnums.h index 64bdcd7839..2d06dcdffa 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ACEEnums.h +++ b/Gems/AudioSystem/Code/Source/Editor/ACEEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.cpp b/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.cpp index cd88b53945..a9371bedd1 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.h b/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.h index e31e7b01b5..646160aa37 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.h +++ b/Gems/AudioSystem/Code/Source/Editor/ATLControlsModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.cpp b/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.cpp index ba1f3ba4ae..8d07c890fc 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.h b/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.h index 11f2e4d3e8..3bd033861b 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.h +++ b/Gems/AudioSystem/Code/Source/Editor/ATLControlsPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.cpp b/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.cpp index 78ca889fe3..c2cf4f893f 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.h b/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.h index 6246869218..7025f7c9b9 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.h +++ b/Gems/AudioSystem/Code/Source/Editor/ATLControlsResourceDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControl.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControl.cpp index 971be95f1f..ac3d7c30a2 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControl.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControl.h b/Gems/AudioSystem/Code/Source/Editor/AudioControl.h index 1d9b2735be..957f2dd2e5 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControl.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.cpp index 4d1e06175a..558ef6c38c 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.h b/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.h index 39055e8afa..707f2bfe57 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlFilters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.cpp index 1b2024ea1e..438053237c 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.h b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.h index 1419231b63..2d38b4e7ed 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.cpp index 095e1e19ab..22ca35ce90 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.h b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.h index 46ae0ba35e..c3be779432 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorUndo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.cpp index 6ffcdb0262..b386c745db 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.h b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.h index d0ef20706a..5c00a06491 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsEditorWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp index 0b8ccea34a..01f8045922 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.h b/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.h index 08812295d5..4f6d26efe5 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.cpp index 5f9aecf8c6..405f1a4e80 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.h b/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.h index f5b74c1b19..20065f6db0 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControlsWriter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioResourceSelectors.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioResourceSelectors.cpp index e72a19cc5b..57460e461d 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioResourceSelectors.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioResourceSelectors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.cpp b/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.cpp index 56b5a12a7d..321e7a7b1c 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.h b/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.h index 8cdc1e6b00..1a2df6e0a9 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioSystemPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.cpp b/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.cpp index 9badca9ea6..e3332b4ccc 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.h b/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.h index 9005ccb802..8a23023d98 100644 --- a/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.h +++ b/Gems/AudioSystem/Code/Source/Editor/ImplementationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.cpp b/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.cpp index 976b4ee9f4..4c89fe8fcd 100644 --- a/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.h b/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.h index 903f32f5e9..7b7ddb7371 100644 --- a/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.h +++ b/Gems/AudioSystem/Code/Source/Editor/InspectorPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.cpp b/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.cpp index e15dd97dfa..a7ea803f94 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.h b/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.h index 98f8d11a9d..0e0f366b06 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.h +++ b/Gems/AudioSystem/Code/Source/Editor/QATLControlsTreeModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QAudioControlEditorIcons.h b/Gems/AudioSystem/Code/Source/Editor/QAudioControlEditorIcons.h index be84f7b047..923eabccfa 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QAudioControlEditorIcons.h +++ b/Gems/AudioSystem/Code/Source/Editor/QAudioControlEditorIcons.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.cpp b/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.cpp index 3ed1c74cca..77421f6a77 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.h b/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.h index 1e8ca576a0..49f25e1fa6 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.h +++ b/Gems/AudioSystem/Code/Source/Editor/QAudioControlTreeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QConnectionListWidget.h b/Gems/AudioSystem/Code/Source/Editor/QConnectionListWidget.h index 59dde7737c..3feaa1a043 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QConnectionListWidget.h +++ b/Gems/AudioSystem/Code/Source/Editor/QConnectionListWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.cpp b/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.cpp index 1acf2d9899..08e4e1ce4c 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.h b/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.h index 02e3eba360..918cf1d8cd 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.h +++ b/Gems/AudioSystem/Code/Source/Editor/QConnectionsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.cpp b/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.cpp index dfddaab5a1..219483971c 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.h b/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.h index e968a18f37..8c6a8eaa38 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.h +++ b/Gems/AudioSystem/Code/Source/Editor/QSimpleAudioControlListWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.cpp b/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.cpp index 0434e184fa..c2ea84c612 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.cpp +++ b/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.h b/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.h index 8e8a070914..f4aba6441c 100644 --- a/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.h +++ b/Gems/AudioSystem/Code/Source/Editor/QTreeWidgetFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATL.cpp b/Gems/AudioSystem/Code/Source/Engine/ATL.cpp index a1452ac378..02b69bc204 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATL.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATL.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATL.h b/Gems/AudioSystem/Code/Source/Engine/ATL.h index 22d1b4e790..4d3c86e08c 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATL.h +++ b/Gems/AudioSystem/Code/Source/Engine/ATL.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp b/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp index eafb8f6411..29a529ed28 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.h b/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.h index 4ad0e4dcf2..f17dfe2b6c 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.h +++ b/Gems/AudioSystem/Code/Source/Engine/ATLAudioObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp index 75988f221c..a2244823eb 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h index 2ed316d617..c7c983d2ee 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h +++ b/Gems/AudioSystem/Code/Source/Engine/ATLComponents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLEntities.cpp b/Gems/AudioSystem/Code/Source/Engine/ATLEntities.cpp index edc8ec4c04..42ae16e6e5 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLEntities.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATLEntities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLEntities.h b/Gems/AudioSystem/Code/Source/Engine/ATLEntities.h index 2bd43fa33c..b946936c54 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLEntities.h +++ b/Gems/AudioSystem/Code/Source/Engine/ATLEntities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLUtils.cpp b/Gems/AudioSystem/Code/Source/Engine/ATLUtils.cpp index e2ddecf260..5dc62544fa 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLUtils.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/ATLUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/ATLUtils.h b/Gems/AudioSystem/Code/Source/Engine/ATLUtils.h index 2e5ad263e5..95449bf448 100644 --- a/Gems/AudioSystem/Code/Source/Engine/ATLUtils.h +++ b/Gems/AudioSystem/Code/Source/Engine/ATLUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioInternalInterfaces.h b/Gems/AudioSystem/Code/Source/Engine/AudioInternalInterfaces.h index 2755a90d25..a61ab28c67 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioInternalInterfaces.h +++ b/Gems/AudioSystem/Code/Source/Engine/AudioInternalInterfaces.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioProxy.cpp b/Gems/AudioSystem/Code/Source/Engine/AudioProxy.cpp index 6cd457023a..6e0d2df2a4 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioProxy.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/AudioProxy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioProxy.h b/Gems/AudioSystem/Code/Source/Engine/AudioProxy.h index 9e61798042..b54138b382 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioProxy.h +++ b/Gems/AudioSystem/Code/Source/Engine/AudioProxy.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioRequests.cpp b/Gems/AudioSystem/Code/Source/Engine/AudioRequests.cpp index 4dd87e980d..7fa406fb85 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioRequests.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/AudioRequests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp index 8be7671703..d65d27667f 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h index 89a0e7ea8f..fe37175d41 100644 --- a/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h +++ b/Gems/AudioSystem/Code/Source/Engine/AudioSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp b/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp index fc1bac2e12..4749da5568 100644 --- a/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.h b/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.h index fb3a93e736..a9b62f10b3 100644 --- a/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.h +++ b/Gems/AudioSystem/Code/Source/Engine/FileCacheManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/SoundCVars.cpp b/Gems/AudioSystem/Code/Source/Engine/SoundCVars.cpp index d233dc1abd..83e1139495 100644 --- a/Gems/AudioSystem/Code/Source/Engine/SoundCVars.cpp +++ b/Gems/AudioSystem/Code/Source/Engine/SoundCVars.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Source/Engine/SoundCVars.h b/Gems/AudioSystem/Code/Source/Engine/SoundCVars.h index 7d66228512..7cb7c5712c 100644 --- a/Gems/AudioSystem/Code/Source/Engine/SoundCVars.h +++ b/Gems/AudioSystem/Code/Source/Engine/SoundCVars.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Tests/AudioSystemEditorTest.cpp b/Gems/AudioSystem/Code/Tests/AudioSystemEditorTest.cpp index aa5df70fe8..74c67263a7 100644 --- a/Gems/AudioSystem/Code/Tests/AudioSystemEditorTest.cpp +++ b/Gems/AudioSystem/Code/Tests/AudioSystemEditorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Tests/AudioSystemTest.cpp b/Gems/AudioSystem/Code/Tests/AudioSystemTest.cpp index 09aee29acd..7dc9e1f5b3 100644 --- a/Gems/AudioSystem/Code/Tests/AudioSystemTest.cpp +++ b/Gems/AudioSystem/Code/Tests/AudioSystemTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Tests/Mocks/ATLEntitiesMock.h b/Gems/AudioSystem/Code/Tests/Mocks/ATLEntitiesMock.h index ead239b305..84309bc645 100644 --- a/Gems/AudioSystem/Code/Tests/Mocks/ATLEntitiesMock.h +++ b/Gems/AudioSystem/Code/Tests/Mocks/ATLEntitiesMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Tests/Mocks/FileCacheManagerMock.h b/Gems/AudioSystem/Code/Tests/Mocks/FileCacheManagerMock.h index 0bf090e406..e57cff16f6 100644 --- a/Gems/AudioSystem/Code/Tests/Mocks/FileCacheManagerMock.h +++ b/Gems/AudioSystem/Code/Tests/Mocks/FileCacheManagerMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Tests/Mocks/IAudioSystemImplementationMock.h b/Gems/AudioSystem/Code/Tests/Mocks/IAudioSystemImplementationMock.h index 8c27b46139..4daf0862e5 100644 --- a/Gems/AudioSystem/Code/Tests/Mocks/IAudioSystemImplementationMock.h +++ b/Gems/AudioSystem/Code/Tests/Mocks/IAudioSystemImplementationMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/Tests/WaveTable48000Sine.h b/Gems/AudioSystem/Code/Tests/WaveTable48000Sine.h index a43ac9752d..a788398272 100644 --- a/Gems/AudioSystem/Code/Tests/WaveTable48000Sine.h +++ b/Gems/AudioSystem/Code/Tests/WaveTable48000Sine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AudioSystem/Code/audiosystem_editor_files.cmake b/Gems/AudioSystem/Code/audiosystem_editor_files.cmake index 6554d61756..19692856c2 100644 --- a/Gems/AudioSystem/Code/audiosystem_editor_files.cmake +++ b/Gems/AudioSystem/Code/audiosystem_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/audiosystem_editor_shared_files.cmake b/Gems/AudioSystem/Code/audiosystem_editor_shared_files.cmake index 4193043ddd..9eafb6683d 100644 --- a/Gems/AudioSystem/Code/audiosystem_editor_shared_files.cmake +++ b/Gems/AudioSystem/Code/audiosystem_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/audiosystem_editor_tests_files.cmake b/Gems/AudioSystem/Code/audiosystem_editor_tests_files.cmake index 80c8029d40..42280168a7 100644 --- a/Gems/AudioSystem/Code/audiosystem_editor_tests_files.cmake +++ b/Gems/AudioSystem/Code/audiosystem_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/audiosystem_files.cmake b/Gems/AudioSystem/Code/audiosystem_files.cmake index 243d9861c7..73840578a9 100644 --- a/Gems/AudioSystem/Code/audiosystem_files.cmake +++ b/Gems/AudioSystem/Code/audiosystem_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/audiosystem_shared_files.cmake b/Gems/AudioSystem/Code/audiosystem_shared_files.cmake index 5de54c9e22..32029d8b4a 100644 --- a/Gems/AudioSystem/Code/audiosystem_shared_files.cmake +++ b/Gems/AudioSystem/Code/audiosystem_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/audiosystem_stub_files.cmake b/Gems/AudioSystem/Code/audiosystem_stub_files.cmake index 46c03de10f..f5c7ff3fff 100644 --- a/Gems/AudioSystem/Code/audiosystem_stub_files.cmake +++ b/Gems/AudioSystem/Code/audiosystem_stub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AudioSystem/Code/audiosystem_tests_files.cmake b/Gems/AudioSystem/Code/audiosystem_tests_files.cmake index eeb3f7788c..acf675a741 100644 --- a/Gems/AudioSystem/Code/audiosystem_tests_files.cmake +++ b/Gems/AudioSystem/Code/audiosystem_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AutomatedLauncherTesting/CMakeLists.txt b/Gems/AutomatedLauncherTesting/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/AutomatedLauncherTesting/CMakeLists.txt +++ b/Gems/AutomatedLauncherTesting/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AutomatedLauncherTesting/Code/CMakeLists.txt b/Gems/AutomatedLauncherTesting/Code/CMakeLists.txt index c6c044afdb..41c81bc3f1 100644 --- a/Gems/AutomatedLauncherTesting/Code/CMakeLists.txt +++ b/Gems/AutomatedLauncherTesting/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AutomatedLauncherTesting/Code/Include/AutomatedLauncherTesting/AutomatedLauncherTestingBus.h b/Gems/AutomatedLauncherTesting/Code/Include/AutomatedLauncherTesting/AutomatedLauncherTestingBus.h index 77b596ac34..f5cad4827c 100644 --- a/Gems/AutomatedLauncherTesting/Code/Include/AutomatedLauncherTesting/AutomatedLauncherTestingBus.h +++ b/Gems/AutomatedLauncherTesting/Code/Include/AutomatedLauncherTesting/AutomatedLauncherTestingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingModule.cpp b/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingModule.cpp index c8d0817238..4dfad2ecbd 100644 --- a/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingModule.cpp +++ b/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.cpp b/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.cpp index 52722e13bf..fd1e0b5a54 100644 --- a/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.cpp +++ b/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.h b/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.h index 3db5161300..6ab5ed710e 100644 --- a/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.h +++ b/Gems/AutomatedLauncherTesting/Code/Source/AutomatedLauncherTestingSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.cpp b/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.cpp index 88dac70eaa..3b555d58a0 100644 --- a/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.cpp +++ b/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.h b/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.h index 20f707c962..1bc161ca90 100644 --- a/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.h +++ b/Gems/AutomatedLauncherTesting/Code/Source/SpawnDynamicSlice.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_files.cmake b/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_files.cmake index f8a0ee8971..f6c1942225 100644 --- a/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_files.cmake +++ b/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_shared_files.cmake b/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_shared_files.cmake index c86f138d10..e810bc132f 100644 --- a/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_shared_files.cmake +++ b/Gems/AutomatedLauncherTesting/Code/automatedlaunchertesting_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/CMakeLists.txt b/Gems/Blast/CMakeLists.txt index 0baf19674a..d7e8a04473 100644 --- a/Gems/Blast/CMakeLists.txt +++ b/Gems/Blast/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/CMakeLists.txt b/Gems/Blast/Code/CMakeLists.txt index b3fccc8211..eb9f965780 100644 --- a/Gems/Blast/Code/CMakeLists.txt +++ b/Gems/Blast/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/Editor/ConfigurationWidget.cpp b/Gems/Blast/Code/Editor/ConfigurationWidget.cpp index 6768f1dc1c..a7ab82bf41 100644 --- a/Gems/Blast/Code/Editor/ConfigurationWidget.cpp +++ b/Gems/Blast/Code/Editor/ConfigurationWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Editor/ConfigurationWidget.h b/Gems/Blast/Code/Editor/ConfigurationWidget.h index 8aa423e5a3..a1e87422db 100644 --- a/Gems/Blast/Code/Editor/ConfigurationWidget.h +++ b/Gems/Blast/Code/Editor/ConfigurationWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Editor/EditorWindow.cpp b/Gems/Blast/Code/Editor/EditorWindow.cpp index 9f1da0763a..a162041cbb 100644 --- a/Gems/Blast/Code/Editor/EditorWindow.cpp +++ b/Gems/Blast/Code/Editor/EditorWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Editor/EditorWindow.h b/Gems/Blast/Code/Editor/EditorWindow.h index d25dd368dd..4c960672bf 100644 --- a/Gems/Blast/Code/Editor/EditorWindow.h +++ b/Gems/Blast/Code/Editor/EditorWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Editor/MaterialIdWidget.cpp b/Gems/Blast/Code/Editor/MaterialIdWidget.cpp index f495f0b0cb..9942578fc1 100644 --- a/Gems/Blast/Code/Editor/MaterialIdWidget.cpp +++ b/Gems/Blast/Code/Editor/MaterialIdWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Editor/MaterialIdWidget.h b/Gems/Blast/Code/Editor/MaterialIdWidget.h index 1735d8b071..ae1138f221 100644 --- a/Gems/Blast/Code/Editor/MaterialIdWidget.h +++ b/Gems/Blast/Code/Editor/MaterialIdWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Editor/SettingsWidget.cpp b/Gems/Blast/Code/Editor/SettingsWidget.cpp index 7f9a9d630f..14848fa5f7 100644 --- a/Gems/Blast/Code/Editor/SettingsWidget.cpp +++ b/Gems/Blast/Code/Editor/SettingsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Editor/SettingsWidget.h b/Gems/Blast/Code/Editor/SettingsWidget.h index 0cc1cf8857..4e7b1bd1d6 100644 --- a/Gems/Blast/Code/Editor/SettingsWidget.h +++ b/Gems/Blast/Code/Editor/SettingsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Include/Blast/BlastActor.h b/Gems/Blast/Code/Include/Blast/BlastActor.h index 8c78bc51f9..91f3457505 100644 --- a/Gems/Blast/Code/Include/Blast/BlastActor.h +++ b/Gems/Blast/Code/Include/Blast/BlastActor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Include/Blast/BlastActorData.h b/Gems/Blast/Code/Include/Blast/BlastActorData.h index 7a523277cb..e408867c51 100644 --- a/Gems/Blast/Code/Include/Blast/BlastActorData.h +++ b/Gems/Blast/Code/Include/Blast/BlastActorData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Include/Blast/BlastDebug.h b/Gems/Blast/Code/Include/Blast/BlastDebug.h index 616e47a305..2530eb4217 100644 --- a/Gems/Blast/Code/Include/Blast/BlastDebug.h +++ b/Gems/Blast/Code/Include/Blast/BlastDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Include/Blast/BlastFamilyComponentBus.h b/Gems/Blast/Code/Include/Blast/BlastFamilyComponentBus.h index bd5b227d45..9dae3e4c18 100644 --- a/Gems/Blast/Code/Include/Blast/BlastFamilyComponentBus.h +++ b/Gems/Blast/Code/Include/Blast/BlastFamilyComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Include/Blast/BlastMaterial.h b/Gems/Blast/Code/Include/Blast/BlastMaterial.h index f3b8cdd6c6..32fda2ea0f 100644 --- a/Gems/Blast/Code/Include/Blast/BlastMaterial.h +++ b/Gems/Blast/Code/Include/Blast/BlastMaterial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Include/Blast/BlastSystemBus.h b/Gems/Blast/Code/Include/Blast/BlastSystemBus.h index bb5b12bbed..7d129d2b39 100644 --- a/Gems/Blast/Code/Include/Blast/BlastSystemBus.h +++ b/Gems/Blast/Code/Include/Blast/BlastSystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Include/PxSmartPtr.h b/Gems/Blast/Code/Include/PxSmartPtr.h index 717d3b6dc2..fb476f12ba 100644 --- a/Gems/Blast/Code/Include/PxSmartPtr.h +++ b/Gems/Blast/Code/Include/PxSmartPtr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Platform/Android/PAL_android.cmake b/Gems/Blast/Code/Platform/Android/PAL_android.cmake index b3822d6dcc..9dc5e67275 100644 --- a/Gems/Blast/Code/Platform/Android/PAL_android.cmake +++ b/Gems/Blast/Code/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/Platform/Linux/PAL_linux.cmake b/Gems/Blast/Code/Platform/Linux/PAL_linux.cmake index b3822d6dcc..9dc5e67275 100644 --- a/Gems/Blast/Code/Platform/Linux/PAL_linux.cmake +++ b/Gems/Blast/Code/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/Platform/Mac/PAL_mac.cmake b/Gems/Blast/Code/Platform/Mac/PAL_mac.cmake index b3822d6dcc..9dc5e67275 100644 --- a/Gems/Blast/Code/Platform/Mac/PAL_mac.cmake +++ b/Gems/Blast/Code/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake b/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake index 30755f83d2..7dfb9cb9b2 100644 --- a/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake +++ b/Gems/Blast/Code/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/Platform/iOS/PAL_ios.cmake b/Gems/Blast/Code/Platform/iOS/PAL_ios.cmake index b3822d6dcc..9dc5e67275 100644 --- a/Gems/Blast/Code/Platform/iOS/PAL_ios.cmake +++ b/Gems/Blast/Code/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/Source/Actor/BlastActorDesc.h b/Gems/Blast/Code/Source/Actor/BlastActorDesc.h index de0e461c11..c99c4c87cb 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorDesc.h +++ b/Gems/Blast/Code/Source/Actor/BlastActorDesc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp b/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp index ea27eb2a37..178e0c9d02 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp +++ b/Gems/Blast/Code/Source/Actor/BlastActorFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/BlastActorFactory.h b/Gems/Blast/Code/Source/Actor/BlastActorFactory.h index f27d309704..626285a48e 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorFactory.h +++ b/Gems/Blast/Code/Source/Actor/BlastActorFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp b/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp index 75c22d985f..abc6319d3a 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp +++ b/Gems/Blast/Code/Source/Actor/BlastActorImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/BlastActorImpl.h b/Gems/Blast/Code/Source/Actor/BlastActorImpl.h index f3c65545d9..dd58249869 100644 --- a/Gems/Blast/Code/Source/Actor/BlastActorImpl.h +++ b/Gems/Blast/Code/Source/Actor/BlastActorImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/EntityProvider.cpp b/Gems/Blast/Code/Source/Actor/EntityProvider.cpp index 493902436b..2bd0807120 100644 --- a/Gems/Blast/Code/Source/Actor/EntityProvider.cpp +++ b/Gems/Blast/Code/Source/Actor/EntityProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/EntityProvider.h b/Gems/Blast/Code/Source/Actor/EntityProvider.h index efb023e18c..35d147d4ed 100644 --- a/Gems/Blast/Code/Source/Actor/EntityProvider.h +++ b/Gems/Blast/Code/Source/Actor/EntityProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp b/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp index 4af40e1683..d973054eec 100644 --- a/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp +++ b/Gems/Blast/Code/Source/Actor/ShapesProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Actor/ShapesProvider.h b/Gems/Blast/Code/Source/Actor/ShapesProvider.h index 99a9988844..a7a2fc4e9b 100644 --- a/Gems/Blast/Code/Source/Actor/ShapesProvider.h +++ b/Gems/Blast/Code/Source/Actor/ShapesProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp index d6a95872cc..dc5f315a7f 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Asset/BlastAsset.h b/Gems/Blast/Code/Source/Asset/BlastAsset.h index 622a56380b..b7335117b3 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAsset.h +++ b/Gems/Blast/Code/Source/Asset/BlastAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp b/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp index 64e309e0fb..4f73b1a19c 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Asset/BlastAssetHandler.h b/Gems/Blast/Code/Source/Asset/BlastAssetHandler.h index 4e559f52a7..311cb6650a 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAssetHandler.h +++ b/Gems/Blast/Code/Source/Asset/BlastAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp b/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp index 01e93ec32c..e1fec56c05 100644 --- a/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastSliceAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Asset/BlastSliceAsset.h b/Gems/Blast/Code/Source/Asset/BlastSliceAsset.h index ba27d06469..d3cbb7a135 100644 --- a/Gems/Blast/Code/Source/Asset/BlastSliceAsset.h +++ b/Gems/Blast/Code/Source/Asset/BlastSliceAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/BlastModule.cpp b/Gems/Blast/Code/Source/BlastModule.cpp index c21f884d7f..354f1a169f 100644 --- a/Gems/Blast/Code/Source/BlastModule.cpp +++ b/Gems/Blast/Code/Source/BlastModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/BlastModuleUnsupported.cpp b/Gems/Blast/Code/Source/BlastModuleUnsupported.cpp index 7a4d149c69..f99e9dfb18 100644 --- a/Gems/Blast/Code/Source/BlastModuleUnsupported.cpp +++ b/Gems/Blast/Code/Source/BlastModuleUnsupported.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Common/BlastInterfaces.h b/Gems/Blast/Code/Source/Common/BlastInterfaces.h index 449a0f3020..0f70a6fec8 100644 --- a/Gems/Blast/Code/Source/Common/BlastInterfaces.h +++ b/Gems/Blast/Code/Source/Common/BlastInterfaces.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Common/BlastMaterial.cpp b/Gems/Blast/Code/Source/Common/BlastMaterial.cpp index a3b5f615f0..c369c99b1f 100644 --- a/Gems/Blast/Code/Source/Common/BlastMaterial.cpp +++ b/Gems/Blast/Code/Source/Common/BlastMaterial.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Common/Utils.h b/Gems/Blast/Code/Source/Common/Utils.h index 0d4adc8d34..2d034e9498 100644 --- a/Gems/Blast/Code/Source/Common/Utils.h +++ b/Gems/Blast/Code/Source/Common/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp index c071f2998e..ab3af2b655 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h index 31a1a39c09..67d8f78992 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp b/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp index 0173cd08d7..9b1ea9ffaf 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.h b/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.h index 0b7487f97c..66aa744ac7 100644 --- a/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.h +++ b/Gems/Blast/Code/Source/Components/BlastFamilyComponentNotificationBusHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp b/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp index 41265ad0aa..fd7e16c689 100644 --- a/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.h b/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.h index 0ebbe18d87..f98f86cade 100644 --- a/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.h +++ b/Gems/Blast/Code/Source/Components/BlastMeshDataComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp b/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp index b2c74a5738..5001274a33 100644 --- a/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp +++ b/Gems/Blast/Code/Source/Components/BlastSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Components/BlastSystemComponent.h b/Gems/Blast/Code/Source/Components/BlastSystemComponent.h index 68ff4f586c..bb030ade86 100644 --- a/Gems/Blast/Code/Source/Components/BlastSystemComponent.h +++ b/Gems/Blast/Code/Source/Components/BlastSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp b/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp index db88dc4a23..ffef4e5088 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.h b/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.h index 27245c4575..5a2b4c1d84 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.h +++ b/Gems/Blast/Code/Source/Editor/EditorBlastFamilyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp b/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp index 322d8a0706..99fd82285b 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.h b/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.h index 02f19e54a7..bc7b837671 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.h +++ b/Gems/Blast/Code/Source/Editor/EditorBlastMeshDataComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp b/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp index 0d87892f0e..9985bfd0f9 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.h b/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.h index 1cd24a675d..b6976ac276 100644 --- a/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.h +++ b/Gems/Blast/Code/Source/Editor/EditorBlastSliceAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp b/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp index ab030a990c..ea41bcd81f 100644 --- a/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp +++ b/Gems/Blast/Code/Source/Editor/EditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Editor/EditorSystemComponent.h b/Gems/Blast/Code/Source/Editor/EditorSystemComponent.h index ab597701f1..fe3e1f8fd5 100644 --- a/Gems/Blast/Code/Source/Editor/EditorSystemComponent.h +++ b/Gems/Blast/Code/Source/Editor/EditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp b/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp index ca1ace7b65..0a4857fa25 100644 --- a/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp +++ b/Gems/Blast/Code/Source/Family/ActorRenderManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/ActorRenderManager.h b/Gems/Blast/Code/Source/Family/ActorRenderManager.h index 22cfe6e68d..c4037bb638 100644 --- a/Gems/Blast/Code/Source/Family/ActorRenderManager.h +++ b/Gems/Blast/Code/Source/Family/ActorRenderManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/ActorTracker.cpp b/Gems/Blast/Code/Source/Family/ActorTracker.cpp index 9b383a3fd6..479e526f60 100644 --- a/Gems/Blast/Code/Source/Family/ActorTracker.cpp +++ b/Gems/Blast/Code/Source/Family/ActorTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/ActorTracker.h b/Gems/Blast/Code/Source/Family/ActorTracker.h index a81ba58981..91914eeec1 100644 --- a/Gems/Blast/Code/Source/Family/ActorTracker.h +++ b/Gems/Blast/Code/Source/Family/ActorTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/BlastFamily.h b/Gems/Blast/Code/Source/Family/BlastFamily.h index 51016de56e..1c97d0d90a 100644 --- a/Gems/Blast/Code/Source/Family/BlastFamily.h +++ b/Gems/Blast/Code/Source/Family/BlastFamily.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp b/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp index cfb9b6ba60..7eecd85c6d 100644 --- a/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp +++ b/Gems/Blast/Code/Source/Family/BlastFamilyImpl.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/BlastFamilyImpl.h b/Gems/Blast/Code/Source/Family/BlastFamilyImpl.h index 019a8c95b0..4c93ee6517 100644 --- a/Gems/Blast/Code/Source/Family/BlastFamilyImpl.h +++ b/Gems/Blast/Code/Source/Family/BlastFamilyImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/DamageManager.cpp b/Gems/Blast/Code/Source/Family/DamageManager.cpp index fe34c63495..ce9ec7af1c 100644 --- a/Gems/Blast/Code/Source/Family/DamageManager.cpp +++ b/Gems/Blast/Code/Source/Family/DamageManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/Family/DamageManager.h b/Gems/Blast/Code/Source/Family/DamageManager.h index d3691f933d..8b88344372 100644 --- a/Gems/Blast/Code/Source/Family/DamageManager.h +++ b/Gems/Blast/Code/Source/Family/DamageManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/StdAfx.cpp b/Gems/Blast/Code/Source/StdAfx.cpp index c875b3c106..4343b68bae 100644 --- a/Gems/Blast/Code/Source/StdAfx.cpp +++ b/Gems/Blast/Code/Source/StdAfx.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Source/StdAfx.h b/Gems/Blast/Code/Source/StdAfx.h index 4badd2450e..5c0746868b 100644 --- a/Gems/Blast/Code/Source/StdAfx.h +++ b/Gems/Blast/Code/Source/StdAfx.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp b/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp index 6affb64588..5e59959e42 100644 --- a/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp +++ b/Gems/Blast/Code/Tests/ActorRenderManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/BlastActorTest.cpp b/Gems/Blast/Code/Tests/BlastActorTest.cpp index 11c187e04b..a078a07fe8 100644 --- a/Gems/Blast/Code/Tests/BlastActorTest.cpp +++ b/Gems/Blast/Code/Tests/BlastActorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/BlastFamilyTest.cpp b/Gems/Blast/Code/Tests/BlastFamilyTest.cpp index bda4d56974..b81ea2049d 100644 --- a/Gems/Blast/Code/Tests/BlastFamilyTest.cpp +++ b/Gems/Blast/Code/Tests/BlastFamilyTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/BlastTest.cpp b/Gems/Blast/Code/Tests/BlastTest.cpp index 676c6316b5..c615bd9d59 100644 --- a/Gems/Blast/Code/Tests/BlastTest.cpp +++ b/Gems/Blast/Code/Tests/BlastTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/DamageManagerTest.cpp b/Gems/Blast/Code/Tests/DamageManagerTest.cpp index df7f5a4525..4eca0fd010 100644 --- a/Gems/Blast/Code/Tests/DamageManagerTest.cpp +++ b/Gems/Blast/Code/Tests/DamageManagerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp b/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp index 7324f6b06a..9c22f1eeb4 100644 --- a/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp +++ b/Gems/Blast/Code/Tests/Editor/EditorBlastSliceAssetHandlerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp b/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp index 676c6316b5..c615bd9d59 100644 --- a/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp +++ b/Gems/Blast/Code/Tests/Editor/EditorTestMain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/Tests/Mocks/BlastMocks.h b/Gems/Blast/Code/Tests/Mocks/BlastMocks.h index bb865d8654..06edb8ada8 100644 --- a/Gems/Blast/Code/Tests/Mocks/BlastMocks.h +++ b/Gems/Blast/Code/Tests/Mocks/BlastMocks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Blast/Code/blast_editor_files.cmake b/Gems/Blast/Code/blast_editor_files.cmake index 12a08075da..b3867de4c6 100644 --- a/Gems/Blast/Code/blast_editor_files.cmake +++ b/Gems/Blast/Code/blast_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/blast_editor_shared_files.cmake b/Gems/Blast/Code/blast_editor_shared_files.cmake index 007942b3c5..3182f31175 100644 --- a/Gems/Blast/Code/blast_editor_shared_files.cmake +++ b/Gems/Blast/Code/blast_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/blast_editor_tests_files.cmake b/Gems/Blast/Code/blast_editor_tests_files.cmake index e1029f0f96..ca8cf5c38f 100644 --- a/Gems/Blast/Code/blast_editor_tests_files.cmake +++ b/Gems/Blast/Code/blast_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/blast_files.cmake b/Gems/Blast/Code/blast_files.cmake index 0baa713b5c..c3e2e8c244 100644 --- a/Gems/Blast/Code/blast_files.cmake +++ b/Gems/Blast/Code/blast_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/blast_shared_files.cmake b/Gems/Blast/Code/blast_shared_files.cmake index 007942b3c5..3182f31175 100644 --- a/Gems/Blast/Code/blast_shared_files.cmake +++ b/Gems/Blast/Code/blast_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/blast_stub_files.cmake b/Gems/Blast/Code/blast_stub_files.cmake index 26073dc079..fa2810a5fb 100644 --- a/Gems/Blast/Code/blast_stub_files.cmake +++ b/Gems/Blast/Code/blast_stub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/blast_tests_files.cmake b/Gems/Blast/Code/blast_tests_files.cmake index 709f4c611f..2719a99b4c 100644 --- a/Gems/Blast/Code/blast_tests_files.cmake +++ b/Gems/Blast/Code/blast_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Code/blast_unsupported.cmake b/Gems/Blast/Code/blast_unsupported.cmake index 5f40fa91c8..1980c168d3 100644 --- a/Gems/Blast/Code/blast_unsupported.cmake +++ b/Gems/Blast/Code/blast_unsupported.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Blast/Editor/Scripts/asset_builder_blast.py b/Gems/Blast/Editor/Scripts/asset_builder_blast.py index 781d73d3bc..795a6ec13f 100755 --- a/Gems/Blast/Editor/Scripts/asset_builder_blast.py +++ b/Gems/Blast/Editor/Scripts/asset_builder_blast.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Blast/Editor/Scripts/bootstrap.py b/Gems/Blast/Editor/Scripts/bootstrap.py index bdcaa8891b..de7b05485e 100755 --- a/Gems/Blast/Editor/Scripts/bootstrap.py +++ b/Gems/Blast/Editor/Scripts/bootstrap.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/Camera/CMakeLists.txt b/Gems/Camera/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Camera/CMakeLists.txt +++ b/Gems/Camera/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Camera/Code/CMakeLists.txt b/Gems/Camera/Code/CMakeLists.txt index 96d73530e7..2b9c31f698 100644 --- a/Gems/Camera/Code/CMakeLists.txt +++ b/Gems/Camera/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Camera/Code/Source/CameraComponent.cpp b/Gems/Camera/Code/Source/CameraComponent.cpp index 6246d74e5e..81f7802004 100644 --- a/Gems/Camera/Code/Source/CameraComponent.cpp +++ b/Gems/Camera/Code/Source/CameraComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraComponent.h b/Gems/Camera/Code/Source/CameraComponent.h index 8060cceaf2..91fe892a70 100644 --- a/Gems/Camera/Code/Source/CameraComponent.h +++ b/Gems/Camera/Code/Source/CameraComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraComponentController.cpp b/Gems/Camera/Code/Source/CameraComponentController.cpp index 51f1360117..29df270e95 100644 --- a/Gems/Camera/Code/Source/CameraComponentController.cpp +++ b/Gems/Camera/Code/Source/CameraComponentController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraComponentController.h b/Gems/Camera/Code/Source/CameraComponentController.h index 2766d1e0ca..0ec615a1c6 100644 --- a/Gems/Camera/Code/Source/CameraComponentController.h +++ b/Gems/Camera/Code/Source/CameraComponentController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraComponentConverter.cpp b/Gems/Camera/Code/Source/CameraComponentConverter.cpp index 9009237c97..1be286e58a 100644 --- a/Gems/Camera/Code/Source/CameraComponentConverter.cpp +++ b/Gems/Camera/Code/Source/CameraComponentConverter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp b/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp index 3e3c044c74..27a732adc6 100644 --- a/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp +++ b/Gems/Camera/Code/Source/CameraEditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraEditorSystemComponent.h b/Gems/Camera/Code/Source/CameraEditorSystemComponent.h index 4437270673..dc1cd19258 100644 --- a/Gems/Camera/Code/Source/CameraEditorSystemComponent.h +++ b/Gems/Camera/Code/Source/CameraEditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraGem.cpp b/Gems/Camera/Code/Source/CameraGem.cpp index a7692a86d4..44650988c7 100644 --- a/Gems/Camera/Code/Source/CameraGem.cpp +++ b/Gems/Camera/Code/Source/CameraGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/CameraViewRegistrationBus.h b/Gems/Camera/Code/Source/CameraViewRegistrationBus.h index 5fba4cd1dd..d55602e74d 100644 --- a/Gems/Camera/Code/Source/CameraViewRegistrationBus.h +++ b/Gems/Camera/Code/Source/CameraViewRegistrationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/Camera_precompiled.h b/Gems/Camera/Code/Source/Camera_precompiled.h index 3f7c2e94bc..707737d1bd 100644 --- a/Gems/Camera/Code/Source/Camera_precompiled.h +++ b/Gems/Camera/Code/Source/Camera_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/EditorCameraComponent.cpp b/Gems/Camera/Code/Source/EditorCameraComponent.cpp index 97725581f3..255db33153 100644 --- a/Gems/Camera/Code/Source/EditorCameraComponent.cpp +++ b/Gems/Camera/Code/Source/EditorCameraComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/EditorCameraComponent.h b/Gems/Camera/Code/Source/EditorCameraComponent.h index 0357c86446..aa4d6d13c9 100644 --- a/Gems/Camera/Code/Source/EditorCameraComponent.h +++ b/Gems/Camera/Code/Source/EditorCameraComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp index d8346ced23..5dcdd9f111 100644 --- a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp +++ b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.h b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.h index 2154787d4f..c2b8146eb8 100644 --- a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.h +++ b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h index c8fd1eca9b..193bbdea3f 100644 --- a/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h +++ b/Gems/Camera/Code/Source/ViewportCameraSelectorWindow_Internals.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/Tests/CameraEditorUITests.cpp b/Gems/Camera/Code/Tests/CameraEditorUITests.cpp index 0f69475f67..191c05c8e9 100644 --- a/Gems/Camera/Code/Tests/CameraEditorUITests.cpp +++ b/Gems/Camera/Code/Tests/CameraEditorUITests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Camera/Code/camera_editor_files.cmake b/Gems/Camera/Code/camera_editor_files.cmake index 0877bdcc02..cfe843b006 100644 --- a/Gems/Camera/Code/camera_editor_files.cmake +++ b/Gems/Camera/Code/camera_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Camera/Code/camera_files.cmake b/Gems/Camera/Code/camera_files.cmake index 4a0603101a..85179aa686 100644 --- a/Gems/Camera/Code/camera_files.cmake +++ b/Gems/Camera/Code/camera_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Camera/Code/camera_shared_files.cmake b/Gems/Camera/Code/camera_shared_files.cmake index ff56e5e7bf..028e27bdd4 100644 --- a/Gems/Camera/Code/camera_shared_files.cmake +++ b/Gems/Camera/Code/camera_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CameraFramework/CMakeLists.txt b/Gems/CameraFramework/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/CameraFramework/CMakeLists.txt +++ b/Gems/CameraFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CameraFramework/Code/CMakeLists.txt b/Gems/CameraFramework/Code/CMakeLists.txt index a348598951..2d13950c18 100644 --- a/Gems/CameraFramework/Code/CMakeLists.txt +++ b/Gems/CameraFramework/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraLookAtBehavior.h b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraLookAtBehavior.h index f4547cc4dc..ce723963b0 100644 --- a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraLookAtBehavior.h +++ b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraLookAtBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraSubComponent.h b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraSubComponent.h index ca7a699ac2..ccc4f2b8a2 100644 --- a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraSubComponent.h +++ b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraSubComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTargetAcquirer.h b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTargetAcquirer.h index 875dc71c8e..aece68523d 100644 --- a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTargetAcquirer.h +++ b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTargetAcquirer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTransformBehavior.h b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTransformBehavior.h index a559ef2088..b1ebc7a087 100644 --- a/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTransformBehavior.h +++ b/Gems/CameraFramework/Code/Include/CameraFramework/ICameraTransformBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp b/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp index 05cba7a892..fe837db76f 100644 --- a/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp +++ b/Gems/CameraFramework/Code/Source/CameraFrameworkGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/Source/CameraFramework_precompiled.h b/Gems/CameraFramework/Code/Source/CameraFramework_precompiled.h index abb8d454a7..10305b3c2f 100644 --- a/Gems/CameraFramework/Code/Source/CameraFramework_precompiled.h +++ b/Gems/CameraFramework/Code/Source/CameraFramework_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp b/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp index 2d65692763..b52f1b9340 100644 --- a/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp +++ b/Gems/CameraFramework/Code/Source/CameraRigComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/Source/CameraRigComponent.h b/Gems/CameraFramework/Code/Source/CameraRigComponent.h index 0adea49d80..a0b2d6a94c 100644 --- a/Gems/CameraFramework/Code/Source/CameraRigComponent.h +++ b/Gems/CameraFramework/Code/Source/CameraRigComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CameraFramework/Code/cameraframework_files.cmake b/Gems/CameraFramework/Code/cameraframework_files.cmake index 844e971e07..071adff0e1 100644 --- a/Gems/CameraFramework/Code/cameraframework_files.cmake +++ b/Gems/CameraFramework/Code/cameraframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CameraFramework/Code/cameraframework_shared_files.cmake b/Gems/CameraFramework/Code/cameraframework_shared_files.cmake index 5eefd39914..d99851c3b2 100644 --- a/Gems/CameraFramework/Code/cameraframework_shared_files.cmake +++ b/Gems/CameraFramework/Code/cameraframework_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CertificateManager/CMakeLists.txt b/Gems/CertificateManager/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/CertificateManager/CMakeLists.txt +++ b/Gems/CertificateManager/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CertificateManager/Code/CMakeLists.txt b/Gems/CertificateManager/Code/CMakeLists.txt index 9c0d786cdc..922ef64a0b 100644 --- a/Gems/CertificateManager/Code/CMakeLists.txt +++ b/Gems/CertificateManager/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CertificateManager/Code/CertificateManager_files.cmake b/Gems/CertificateManager/Code/CertificateManager_files.cmake index 91064f4c4f..4128f6e44f 100644 --- a/Gems/CertificateManager/Code/CertificateManager_files.cmake +++ b/Gems/CertificateManager/Code/CertificateManager_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/FileDataSourceBus.h b/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/FileDataSourceBus.h index 7fc8105dc5..7ab831f426 100644 --- a/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/FileDataSourceBus.h +++ b/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/FileDataSourceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/IDataSource.h b/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/IDataSource.h index 8ad44851ec..e09c9d18d3 100644 --- a/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/IDataSource.h +++ b/Gems/CertificateManager/Code/Include/CertificateManager/DataSource/IDataSource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CertificateManager/Code/Include/CertificateManager/ICertificateManagerGem.h b/Gems/CertificateManager/Code/Include/CertificateManager/ICertificateManagerGem.h index 260bf24648..c3138b039e 100644 --- a/Gems/CertificateManager/Code/Include/CertificateManager/ICertificateManagerGem.h +++ b/Gems/CertificateManager/Code/Include/CertificateManager/ICertificateManagerGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CertificateManager/Code/Source/CertificateManagerGem.cpp b/Gems/CertificateManager/Code/Source/CertificateManagerGem.cpp index ca3b610b1e..e8ddadccc6 100644 --- a/Gems/CertificateManager/Code/Source/CertificateManagerGem.cpp +++ b/Gems/CertificateManager/Code/Source/CertificateManagerGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CertificateManager/Code/Source/CertificateManagerGem.h b/Gems/CertificateManager/Code/Source/CertificateManagerGem.h index 83c4dd0152..b501e18351 100644 --- a/Gems/CertificateManager/Code/Source/CertificateManagerGem.h +++ b/Gems/CertificateManager/Code/Source/CertificateManagerGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.cpp b/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.cpp index 076254f947..9fe48d0a3d 100644 --- a/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.cpp +++ b/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.h b/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.h index ced6914016..ce218a4e9e 100644 --- a/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.h +++ b/Gems/CertificateManager/Code/Source/DataSource/FileDataSource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CertificateManager/Code/certificatemanager_shared_files.cmake b/Gems/CertificateManager/Code/certificatemanager_shared_files.cmake index f20f0f6402..a73cba2bbd 100644 --- a/Gems/CertificateManager/Code/certificatemanager_shared_files.cmake +++ b/Gems/CertificateManager/Code/certificatemanager_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/CMakeLists.txt b/Gems/CrashReporting/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/CrashReporting/CMakeLists.txt +++ b/Gems/CrashReporting/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/CMakeLists.txt b/Gems/CrashReporting/Code/CMakeLists.txt index 9cf4b1d02e..40dcf86a6f 100644 --- a/Gems/CrashReporting/Code/CMakeLists.txt +++ b/Gems/CrashReporting/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashHandler.h b/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashHandler.h index b3f6be6c0b..daa65dbcbf 100644 --- a/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashHandler.h +++ b/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashUploader.h b/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashUploader.h index 43b37e796c..a4aa48c241 100644 --- a/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashUploader.h +++ b/Gems/CrashReporting/Code/Include/CrashReporting/GameCrashUploader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Platform/Android/PAL_android.cmake b/Gems/CrashReporting/Code/Platform/Android/PAL_android.cmake index 570a4d1592..0c07a18151 100644 --- a/Gems/CrashReporting/Code/Platform/Android/PAL_android.cmake +++ b/Gems/CrashReporting/Code/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Platform/Common/UnixLike/GameCrashUploader_UnixLike.cpp b/Gems/CrashReporting/Code/Platform/Common/UnixLike/GameCrashUploader_UnixLike.cpp index 057f209ffd..ae6b8b2cf6 100644 --- a/Gems/CrashReporting/Code/Platform/Common/UnixLike/GameCrashUploader_UnixLike.cpp +++ b/Gems/CrashReporting/Code/Platform/Common/UnixLike/GameCrashUploader_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Platform/Common/UnixLike/main_UnixLike.cpp b/Gems/CrashReporting/Code/Platform/Common/UnixLike/main_UnixLike.cpp index 9640efa064..90a14fba09 100644 --- a/Gems/CrashReporting/Code/Platform/Common/UnixLike/main_UnixLike.cpp +++ b/Gems/CrashReporting/Code/Platform/Common/UnixLike/main_UnixLike.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Platform/Linux/PAL_linux.cmake b/Gems/CrashReporting/Code/Platform/Linux/PAL_linux.cmake index 570a4d1592..0c07a18151 100644 --- a/Gems/CrashReporting/Code/Platform/Linux/PAL_linux.cmake +++ b/Gems/CrashReporting/Code/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Platform/Mac/PAL_mac.cmake b/Gems/CrashReporting/Code/Platform/Mac/PAL_mac.cmake index 570a4d1592..0c07a18151 100644 --- a/Gems/CrashReporting/Code/Platform/Mac/PAL_mac.cmake +++ b/Gems/CrashReporting/Code/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Platform/Windows/GameCrashHandler_windows.cpp b/Gems/CrashReporting/Code/Platform/Windows/GameCrashHandler_windows.cpp index 8d90e65cc3..1401b8d4c0 100644 --- a/Gems/CrashReporting/Code/Platform/Windows/GameCrashHandler_windows.cpp +++ b/Gems/CrashReporting/Code/Platform/Windows/GameCrashHandler_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Platform/Windows/GameCrashUploader_windows.cpp b/Gems/CrashReporting/Code/Platform/Windows/GameCrashUploader_windows.cpp index 6a1250b3aa..8e7107f241 100644 --- a/Gems/CrashReporting/Code/Platform/Windows/GameCrashUploader_windows.cpp +++ b/Gems/CrashReporting/Code/Platform/Windows/GameCrashUploader_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Platform/Windows/PAL_windows.cmake b/Gems/CrashReporting/Code/Platform/Windows/PAL_windows.cmake index 2ec4e2d13c..8360363c3d 100644 --- a/Gems/CrashReporting/Code/Platform/Windows/PAL_windows.cmake +++ b/Gems/CrashReporting/Code/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Platform/Windows/crashreporting_static_windows_files.cmake b/Gems/CrashReporting/Code/Platform/Windows/crashreporting_static_windows_files.cmake index ba897960a8..fb626007b2 100644 --- a/Gems/CrashReporting/Code/Platform/Windows/crashreporting_static_windows_files.cmake +++ b/Gems/CrashReporting/Code/Platform/Windows/crashreporting_static_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Platform/Windows/game_crash_uploader_windows_files.cmake b/Gems/CrashReporting/Code/Platform/Windows/game_crash_uploader_windows_files.cmake index 615d9eb1f0..e3863889cb 100644 --- a/Gems/CrashReporting/Code/Platform/Windows/game_crash_uploader_windows_files.cmake +++ b/Gems/CrashReporting/Code/Platform/Windows/game_crash_uploader_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Platform/Windows/main_windows.cpp b/Gems/CrashReporting/Code/Platform/Windows/main_windows.cpp index 276fd4a244..2dfac96f35 100644 --- a/Gems/CrashReporting/Code/Platform/Windows/main_windows.cpp +++ b/Gems/CrashReporting/Code/Platform/Windows/main_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Platform/iOS/PAL_ios.cmake b/Gems/CrashReporting/Code/Platform/iOS/PAL_ios.cmake index 570a4d1592..0c07a18151 100644 --- a/Gems/CrashReporting/Code/Platform/iOS/PAL_ios.cmake +++ b/Gems/CrashReporting/Code/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/Source/GameCrashHandler.cpp b/Gems/CrashReporting/Code/Source/GameCrashHandler.cpp index d48f73f663..292d3cdc39 100644 --- a/Gems/CrashReporting/Code/Source/GameCrashHandler.cpp +++ b/Gems/CrashReporting/Code/Source/GameCrashHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/Source/GameCrashUploader.cpp b/Gems/CrashReporting/Code/Source/GameCrashUploader.cpp index 80b6c44778..aba84549fc 100644 --- a/Gems/CrashReporting/Code/Source/GameCrashUploader.cpp +++ b/Gems/CrashReporting/Code/Source/GameCrashUploader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CrashReporting/Code/crashreporting_static_files.cmake b/Gems/CrashReporting/Code/crashreporting_static_files.cmake index 7de4244353..f587e5adfc 100644 --- a/Gems/CrashReporting/Code/crashreporting_static_files.cmake +++ b/Gems/CrashReporting/Code/crashreporting_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CrashReporting/Code/game_crash_uploader_files.cmake b/Gems/CrashReporting/Code/game_crash_uploader_files.cmake index e372077fc9..df95eed58f 100644 --- a/Gems/CrashReporting/Code/game_crash_uploader_files.cmake +++ b/Gems/CrashReporting/Code/game_crash_uploader_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CustomAssetExample/CMakeLists.txt b/Gems/CustomAssetExample/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/CustomAssetExample/CMakeLists.txt +++ b/Gems/CustomAssetExample/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CustomAssetExample/Code/CMakeLists.txt b/Gems/CustomAssetExample/Code/CMakeLists.txt index 2447ff7d6d..52bb8d4c99 100644 --- a/Gems/CustomAssetExample/Code/CMakeLists.txt +++ b/Gems/CustomAssetExample/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.cpp b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.cpp index 8be5d9fca9..c69132ef9f 100644 --- a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.cpp +++ b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.h b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.h index e700e8a4a1..5ca353bb6f 100644 --- a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.h +++ b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.cpp b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.cpp index e2ebfc0fc1..404bde5003 100644 --- a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.cpp +++ b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.h b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.h index f56ca8722b..7175ab7b3f 100644 --- a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.h +++ b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/Builder/CustomAssetExampleBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleEditorModule.cpp b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleEditorModule.cpp index 6d827c0e78..9c8e6b4be4 100644 --- a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleEditorModule.cpp +++ b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleModule.cpp b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleModule.cpp index 9d6ad2307b..1b5e802201 100644 --- a/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleModule.cpp +++ b/Gems/CustomAssetExample/Code/Source/CustomAssetExample/CustomAssetExampleModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/CustomAssetExample/Code/customassetexample_editor_files.cmake b/Gems/CustomAssetExample/Code/customassetexample_editor_files.cmake index 66eeb931ce..5d033123c3 100644 --- a/Gems/CustomAssetExample/Code/customassetexample_editor_files.cmake +++ b/Gems/CustomAssetExample/Code/customassetexample_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/CustomAssetExample/Code/customassetexample_shared_files.cmake b/Gems/CustomAssetExample/Code/customassetexample_shared_files.cmake index 5565e2205f..b9043faab6 100644 --- a/Gems/CustomAssetExample/Code/customassetexample_shared_files.cmake +++ b/Gems/CustomAssetExample/Code/customassetexample_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/DebugDraw/CMakeLists.txt b/Gems/DebugDraw/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/DebugDraw/CMakeLists.txt +++ b/Gems/DebugDraw/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/DebugDraw/Code/CMakeLists.txt b/Gems/DebugDraw/Code/CMakeLists.txt index 52462c27fc..897614ad92 100644 --- a/Gems/DebugDraw/Code/CMakeLists.txt +++ b/Gems/DebugDraw/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/DebugDraw/Code/Include/DebugDraw/DebugDrawBus.h b/Gems/DebugDraw/Code/Include/DebugDraw/DebugDrawBus.h index 00cb37d2f0..f2c144c194 100644 --- a/Gems/DebugDraw/Code/Include/DebugDraw/DebugDrawBus.h +++ b/Gems/DebugDraw/Code/Include/DebugDraw/DebugDrawBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp index ca987c3d7c..ce64e7ed91 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.h b/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.h index 6976acb8dc..92a57444af 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.h +++ b/Gems/DebugDraw/Code/Source/DebugDrawLineComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp b/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp index aa4a0624b6..13628a1ac4 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp index 6d0cc0a0a7..405a96dac4 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.h b/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.h index 820cb34480..848e72a3f9 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.h +++ b/Gems/DebugDraw/Code/Source/DebugDrawObbComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp index 2da77e451d..1e4b8d3975 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.h b/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.h index 076a50955c..302d156fd6 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.h +++ b/Gems/DebugDraw/Code/Source/DebugDrawRayComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp index 83e9d85022..fe8fc8e44a 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.h b/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.h index 32f897919c..bb3a1728c0 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.h +++ b/Gems/DebugDraw/Code/Source/DebugDrawSphereComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp index 28b7d926c9..7b7e229919 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.h b/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.h index fc6dda7e62..2c261b1b2c 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.h +++ b/Gems/DebugDraw/Code/Source/DebugDrawSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp b/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp index 2c86cc5bde..5cffc2e501 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp +++ b/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.h b/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.h index 2d19611a9d..b8126239ec 100644 --- a/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.h +++ b/Gems/DebugDraw/Code/Source/DebugDrawTextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/DebugDraw_precompiled.h b/Gems/DebugDraw/Code/Source/DebugDraw_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/DebugDraw/Code/Source/DebugDraw_precompiled.h +++ b/Gems/DebugDraw/Code/Source/DebugDraw_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp index 7ebda773e8..deb95c4251 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.h b/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.h index a166e7d862..a7f481b94a 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.h +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawComponentCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp index e601a28122..4453358ba8 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.h b/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.h index 8760b850c4..d22b9d1367 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.h +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawLineComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp index 5a7825c39d..6462b65c6f 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.h b/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.h index ec361a0776..a8b053bd2a 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.h +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawObbComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp index 7e148df2c1..af3b125bb1 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.h b/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.h index cdbddd41fd..0508cbae3a 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.h +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawRayComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp index fc43d0fdf5..6ddaac84ac 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.h b/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.h index a757d7b993..a2b26afe7e 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.h +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawSphereComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp b/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp index cf5720f2cf..20ce2ff09f 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.h b/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.h index a6352204cf..aeda0e8ac8 100644 --- a/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.h +++ b/Gems/DebugDraw/Code/Source/EditorDebugDrawTextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/DebugDraw/Code/debugdraw_editor_files.cmake b/Gems/DebugDraw/Code/debugdraw_editor_files.cmake index c171c1f2f9..b1e8cc372d 100644 --- a/Gems/DebugDraw/Code/debugdraw_editor_files.cmake +++ b/Gems/DebugDraw/Code/debugdraw_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/DebugDraw/Code/debugdraw_files.cmake b/Gems/DebugDraw/Code/debugdraw_files.cmake index 2064b6e396..d45871ed3f 100644 --- a/Gems/DebugDraw/Code/debugdraw_files.cmake +++ b/Gems/DebugDraw/Code/debugdraw_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/DebugDraw/Code/debugdraw_shared_files.cmake b/Gems/DebugDraw/Code/debugdraw_shared_files.cmake index 3fda7e9225..71f31c13ef 100644 --- a/Gems/DebugDraw/Code/debugdraw_shared_files.cmake +++ b/Gems/DebugDraw/Code/debugdraw_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/DevTextures/CMakeLists.txt b/Gems/DevTextures/CMakeLists.txt index 55d5bd6aa4..36fa5f970e 100644 --- a/Gems/DevTextures/CMakeLists.txt +++ b/Gems/DevTextures/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/CMakeLists.txt b/Gems/EMotionFX/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/EMotionFX/CMakeLists.txt +++ b/Gems/EMotionFX/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/CMakeLists.txt b/Gems/EMotionFX/Code/CMakeLists.txt index 88312e17fd..f1c676ef17 100644 --- a/Gems/EMotionFX/Code/CMakeLists.txt +++ b/Gems/EMotionFX/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp index 77e2909cd5..13ae46113d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.h index ccfeeb4d41..fc95691dd1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.cpp index fa9682cea8..9ee04dbe38 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.h index baeed5ee3c..d0b5829c5c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ActorInstanceCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.cpp index 7cfc20a64b..f55625c4cc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.h index cf41be4952..ffb10f1228 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.cpp index 7be13237d0..93fb39c443 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.h index c45aa2c9c3..da22ab20fe 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConditionCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp index 16448cc3a3..acac4db827 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.h index 0109f198cf..724a7fffdc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.cpp index 215854c37b..b4a2d82184 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.h index 35171c33f7..f87a220d70 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphCopyPasteData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.cpp index c7e2fef34e..216be3f583 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.h index 0365e05f9c..fcbb512eb1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphGroupParameterCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.cpp index 4e458ef02b..0302d97fd4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.h index 18b13d58fd..bb0de06f39 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.cpp index e26a7f06f6..b64c22fd36 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.h index 044dcc51b3..7924dcac62 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphNodeGroupCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.cpp index 62b083d7e6..2d136c66b1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.h index 98157f6a99..3041760b25 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.cpp index 4aa475b127..5ab2e3d6ab 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.h index 71e86ee4ba..3d66b660a7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AnimGraphTriggerActionCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.cpp index 65fce45e06..dfa2e7ba8a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.h index 6a1de35af9..c92ebc0348 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/AttachmentCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.cpp index ad48d8d254..cde492797c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.h index ad40f9af80..a71ec7a09e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ColliderCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.cpp index 44b4c69520..6456045081 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.h index 25c56adbd4..2730eac01b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandSystemConfig.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandSystemConfig.h index ffe8b6b7c3..e8cb37dfbc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandSystemConfig.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/CommandSystemConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.cpp index f9d3bd3300..d63a8e305b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.h index 1c1473d480..dc6021cccd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ImporterCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.cpp index 0cc96d8a2e..b7c9b61687 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.h index 7fba241110..d15a8d436c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MetaData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.cpp index 1538a6257b..0d871145a1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.h index 0745ea759e..bd852783ed 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MiscCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.cpp index bdc306b56e..547c768edd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.h index 2cc9d7c155..338d03696a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MorphTargetCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.cpp index baf6890728..0a7f77216f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.h index 9830b2da88..9207651695 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.cpp index 85b910d3ea..86a0149c51 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.h index ab9d4452a1..1c7a80ae95 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionEventCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp index 958e689a44..1088acda4c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.h index d18861400c..8b9dc0f716 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/MotionSetCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.cpp index 7f712596f8..becb2c9cd3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.h index 4aa8b580c3..a721978a05 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/NodeGroupCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.cpp index 6faebe2450..19416df0b1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.h index 7a1b13fdc7..ddd38a3513 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/ParameterMixins.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.cpp index 60e7e4b3af..8aadfb834d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.h index 7e3b7d29f0..f8bfaa75eb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/RagdollCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.cpp index a45dcb2302..77ddd8e747 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.h index cd699cd2c1..64cb7e0b13 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.cpp index 6df8bb484e..2f1d349a78 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.h index 3ea836e785..481b8f6e9b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SelectionList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.cpp b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.cpp index 05f9448a27..6a2d5d7db7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.h b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.h index b1596c3931..9cc365b587 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.h +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/Source/SimulatedObjectCommands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/commandsystem_files.cmake b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/commandsystem_files.cmake index 97ba7315f3..61ffd43e78 100644 --- a/Gems/EMotionFX/Code/EMotionFX/CommandSystem/commandsystem_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/CommandSystem/commandsystem_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/EndianConversion.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/EndianConversion.cpp index 8d2bd16f7f..802bfd99f3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/EndianConversion.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/EndianConversion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/Exporter.h b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/Exporter.h index a4cdbaaf4d..0f88fc575e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/Exporter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/Exporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterActor.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterActor.cpp index f50c4f20fe..642412ff65 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterActor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterActor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.cpp index 96e451c4d7..4be9c78c8a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.h b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.h index cb348a82d7..035de4e705 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/ExporterFileProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/FileHeaderExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/FileHeaderExport.cpp index 6b230d8ed1..e422547354 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/FileHeaderExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/FileHeaderExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MaterialExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MaterialExport.cpp index be477945ae..95bba9d321 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MaterialExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MaterialExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MeshExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MeshExport.cpp index 775493b7aa..8af466c430 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MeshExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MeshExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MorphTargetExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MorphTargetExport.cpp index b56d8da647..1c0bfdbd03 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MorphTargetExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MorphTargetExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp index 78daf024f5..168cc5d0bf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/MotionEventExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/NodeExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/NodeExport.cpp index 0a71605b5b..7c16aa81f2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/NodeExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/NodeExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkeletalMotionExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkeletalMotionExport.cpp index 033dfea66f..c55e91c3de 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkeletalMotionExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkeletalMotionExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkinExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkinExport.cpp index e7ec35fd71..aad841d64b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkinExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/SkinExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/StringExport.cpp b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/StringExport.cpp index 6e8c5754f8..b57de0c818 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/StringExport.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/Exporter/StringExport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/exporterlib_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/exporterlib_files.cmake index ceaca933e5..a63de02e81 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/exporterlib_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Exporters/ExporterLib/exporterlib_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/AzSceneDef.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/AzSceneDef.h index 7556f6310b..9696400167 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/AzSceneDef.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/AzSceneDef.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.cpp index 0d86bc3f1f..f0ae260b4c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.h index dec56e0b78..f949534e76 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/AnimGraphBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.cpp index e4b3abf21b..27fb59d602 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.h index c418f7dc87..694dbee258 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/EMotionFXBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.cpp index b87da613ad..48286b9567 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.h index 0260ce1210..5087c5138c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/MotionSetBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/emotionfxbuilder_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/emotionfxbuilder_files.cmake index d9ec627d17..b6ab6cf30c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/emotionfxbuilder_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/EMotionFXBuilder/emotionfxbuilder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.cpp index f204c58e0f..92b85f8fa0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.h index c7241d0f9a..54ffbed99a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.cpp index 075f269751..afea82ced4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.h index 1ff77209d9..7619fd72ba 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp index c24f887e6c..64ca2b68dc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.h index 79d676fc04..652a519583 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.cpp index 3ecdaf2db1..9adf4d568e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.h index 7058622c09..dd8dabc843 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/MorphTargetExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.cpp index 5cb2995cc7..5c9acdc15a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.h index 87922b49a8..15492ef025 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/ExportContexts.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp index 9568f3e143..d0963a33ee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.h index 16fe3bc5e2..5cf865324b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionDataBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.cpp index 05fac9cda1..a4d30fac15 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.h index 98efdca00f..9115a07d7c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.cpp index c4ed3307ae..bb8aa07c1b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.h index 379177e26d..1fc675a4c2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Motion/MotionGroupExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/rc_ext_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/rc_ext_files.cmake index cf6eaed3ec..cb901d6d4b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/rc_ext_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/rc_ext_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp index d199c0c2cc..c3202398b4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.h index 3b7cc2e51a..da1c375fdb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/ActorGroupBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.cpp index cc2f29d461..a946f0ceae 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.h index 3216a1cf80..461ef89444 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/LodRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.cpp index ac6e001739..acd58da87e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.h index 1b42c63231..58f79d5cf6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MorphTargetRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.cpp index 42f369d992..60191ed309 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.h index f648596ddc..afa023f124 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionGroupBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp index 65926ee3b4..e2847ac75c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.h index 5e802c1565..7457d67a1b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.cpp index e11a398a38..71a65d0b60 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.h index ca01d13069..55275116b3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/SkeletonOptimizationRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.cpp index f1c8690fa5..69c4d0710e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.h index 6e6915bf95..6f4683267a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Data/LodNodeSelectionList.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.cpp index e5d8bc65de..e4065f58e0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.h index 07b0b51d31..fddb0d6afc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/ActorGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IActorGroup.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IActorGroup.h index bb2a878e4b..398ec2c559 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IActorGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IActorGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h index df152c8b2a..ec8e926544 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.cpp index c699e12a0c..7dfa2564c4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.h index 40b21b3a2d..7633a66a05 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/MotionGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.cpp index fdac74d346..c71386cc60 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.h index 897d22cdd0..5d7df89019 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorPhysicsSetupRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.cpp index f0324c65a5..0db083af10 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.h index e9d55276f9..a0b9a3b688 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ActorScaleRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.h index 066423433f..2d2276a133 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.inl b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.inl index da97743229..4559d89782 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.inl +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/ExternalToolRule.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IActorScaleRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IActorScaleRule.h index d8150b7094..ed67d0520f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IActorScaleRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IActorScaleRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionCompressionSettingsRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionCompressionSettingsRule.h index 416bf1b57c..7bfd3cf801 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionCompressionSettingsRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionCompressionSettingsRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionScaleRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionScaleRule.h index 3c7a6af438..7712c848f7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionScaleRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/IMotionScaleRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.cpp index de9f3c5d5d..c5c2acf607 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.h index 432316a579..76f007515e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/LodRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.cpp index d229b0e663..940a886d18 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.h index 58250174da..7744459362 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.inl b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.inl index 22ec2214ed..c0f55c08bb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.inl +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MetaDataRule.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.cpp index 35499866c0..e1ca6b9d50 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.h index 27364e73ce..cb19e210b6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MorphTargetRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.cpp index 5c8da60135..e1225feee2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.h index 05820e19f6..77eacaeb6f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionAdditiveRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.cpp index 61b2e9f2a5..e96fdfa79c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.h index 6fa35e6055..76a7710234 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionCompressionSettingsRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.cpp index 40648a7f8f..ae00c7f852 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.h index 8ede0e130f..873dccef72 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionMetaDataRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.cpp index 506a0457ca..0840f4bf49 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.h index a2c9daa98e..62b75c0cae 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionRangeRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp index 2e7ccb6829..84a951eeed 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h index f7d3e8fb6f..f7464bf80c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.cpp index e8c85ca82b..302aed8daf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.h index 220235af45..4769df6f13 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionScaleRule.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.cpp index aa363438de..3313da8002 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.h index 530b517325..e3c34d0e38 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SimulatedObjectSetupRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.cpp index 6bd90676f6..5628b6527d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.h index 7d74754aa2..3e7fc87280 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/SkeletonOptimizationRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.cpp index f65d8efa23..ce495a0983 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.h index ed6b4b1455..1707c5ac88 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Utilities/LODSelector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/sceneapi_ext_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/sceneapi_ext_files.cmake index 211f85cb1c..8e4c840515 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/sceneapi_ext_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/sceneapi_ext_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.cpp index 653416c64b..599f40b436 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.h index 493aba7539..2512e9d7e4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.inl b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.inl index b8a1e86a8b..67513882a4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.inl +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/Camera.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.cpp index c406ad6bf7..8031cdb678 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.h index 88592c9c3c..dc2a7bddef 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/FirstPersonCamera.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.cpp index 2157c44880..cb8edb6e4f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.h index 0d76ac3ca2..30981d85be 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/LookAtCamera.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/MCommonConfig.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/MCommonConfig.h index 207bcebae9..a06aa56aa7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/MCommonConfig.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/MCommonConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.cpp index 9c865b57fd..ad4342d4c0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.h index 5451c07437..32226707fe 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrbitCamera.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.cpp index b4e4fd16a1..2d1f844d18 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.h index 1cf018a81f..f3e312f9cf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/OrthographicCamera.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp index 7527317397..e9f2df7f87 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.h index e2aed7aca8..c7dfab8d73 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RenderUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.cpp index bbd34139f4..0e61c3814d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.h index 3af3519258..bb74d8d576 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/RotateManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.cpp index 8bf9d04fe6..0e6b24b549 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.h index cb7ebbb995..27b1139e72 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/ScaleManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TransformationManipulator.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TransformationManipulator.h index 7babc479a0..6f27d89f20 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TransformationManipulator.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TransformationManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.cpp index 2a21358826..ba5ec3cf83 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.h index 8cd8c9a517..acf4011a6b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/Common/TranslateManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.cpp index 27b1c364af..7dbfc0a002 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.h index 82821eb6cc..30f1b56e76 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLActor.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLActor.cpp index 2de50f8ee6..7c6cd65243 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLActor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLActor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.cpp index 15af7038da..ced0c2d54b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.h index e8b7f847b0..8a3782b73b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLExtensions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.cpp index ab8231eaff..b17be2b5c8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.h index 6cec75a51b..f9d2ff00f0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLRenderUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.cpp index cc2f539e65..064bc7837f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.h index f918f8f9a8..463315263d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GLSLShader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.cpp index dcbffe05d3..f10cf47c82 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.h index a326d7c43a..fdb91b5dbd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/GraphicsManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.cpp index 56b0306617..b13caae155 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.h index 523ba5abd7..3ae7ca238e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/IndexBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Light.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Light.h index df25256e5b..aafac3130e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Light.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Light.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.cpp index 122a3cb8a0..4017d7b1b5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.h index badb7cf4fc..6dd3ccc53a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Material.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.cpp index 83ff323a6c..c15aeafbca 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.h index 8255de0462..37e97376c2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/PostProcessShader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderGLConfig.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderGLConfig.h index a6b36e9648..5db4bcc2c4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderGLConfig.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderGLConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.cpp index 7e61f30a76..06b6fc2e95 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.h index 4a94a2ac83..3858d4d275 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/RenderTexture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Shader.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Shader.h index fa84ac46a5..bcd1ffa332 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Shader.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/Shader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/ShaderCache.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/ShaderCache.cpp index 28558c052e..41223e8c78 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/ShaderCache.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/ShaderCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.cpp index 03cd069688..79e0cfe302 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.h index d93b53a18c..8b48b75530 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/StandardMaterial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.cpp index c3ce9edeef..575064f8db 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.h index 908d89e9ba..cddf4da5ff 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/TextureCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.cpp b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.cpp index e6169a80e9..b2573bb03f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.h index feb355fc01..ee05c3e28b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/VertexBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/glactor.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/glactor.h index a9f609740c..05f191a767 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/glactor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/glactor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/shadercache.h b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/shadercache.h index 717a77fd3c..966b9e0e96 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/shadercache.h +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/OpenGL2/Source/shadercache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Rendering/rendering_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Rendering/rendering_files.cmake index 1eec8e84d7..a1f17cb4b3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Rendering/rendering_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Rendering/rendering_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Actor.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Actor.cpp index b05958ad44..4f8f1bdaac 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Actor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Actor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Actor.h b/Gems/EMotionFX/Code/EMotionFX/Source/Actor.h index 039fd2233d..6b51c0fdbd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Actor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Actor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ActorBus.h b/Gems/EMotionFX/Code/EMotionFX/Source/ActorBus.h index 0c397758d5..dd13e97f21 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ActorBus.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ActorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.cpp index 8dc3a287d6..14d8112b4a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.h b/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.h index 913178c7fa..ddcbcfacc9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstanceBus.h b/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstanceBus.h index df98e0abee..1b7c176978 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstanceBus.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ActorInstanceBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.cpp index e821dd0aa2..e93c26309b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.h b/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.h index 505133d187..4d7857916f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ActorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ActorUpdateScheduler.h b/Gems/EMotionFX/Code/EMotionFX/Source/ActorUpdateScheduler.h index 350537e184..44b161a54a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ActorUpdateScheduler.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ActorUpdateScheduler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Algorithms.h b/Gems/EMotionFX/Code/EMotionFX/Source/Algorithms.h index 40744eabdd..14e3178787 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Algorithms.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Algorithms.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.cpp index 220df1162e..9df5002d20 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.h b/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.h index 51924b8b5c..30199b9351 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Allocators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.cpp index 3effa1cfb5..447c07ab16 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.h index 77d70df19b..5c7a473cd1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.cpp index f96a0eefbc..effb1f145b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.h index b140e3c555..6c01a97b50 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphAttributeTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.cpp index d7554e192b..d2d54503fb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.h index d6c1c636e8..e1ab3eca80 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBindPoseNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBus.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBus.h index 90dc4cfaee..c6b14213b2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBus.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.cpp index 3b3d9edcf1..e491ee637b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.h index 692428c785..3ad6fffc7f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEntryNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.cpp index 916d01dfa6..7dc4283aa6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.h index 951a338378..1eda8c6b8d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphEventBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.cpp index baec425058..7d704e1359 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.h index b37b93834f..0ad2d59eb5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphExitNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.cpp index 94ef9ba449..6ab9cbd5fb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.h index db790a610b..bbc1cd913f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphFollowerParameterAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.cpp index 7ea08a8c77..507f71c046 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.h index 1322477fe6..a0c1868fa8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphGameControllerSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.cpp index 0c41ed887b..dd51025c30 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.h index 3b4cc65a23..4bc6b8478e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphHubNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.cpp index 90f3c08d12..bc8ce90487 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.h index 22b901183e..4123e036db 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.cpp index 2bc27db3a7..c937622c9d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.h index bc6f2b2d3e..9ac795aaea 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.cpp index b3b5318d79..e6991ece0c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.h index 37028fa83c..81b4de75cf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.cpp index ab5df359d0..ad0f5aa141 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.h index 00713eba0b..f6a249da98 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphMotionNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.cpp index 90e56b9bc7..0d61ef31ec 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.h index 5e3d948314..7dd4d97393 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNetworkSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.cpp index 3ddbf5a134..718e217029 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.h index 6ff68f30fb..31b53ddd18 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.cpp index 96414a551c..96a2ea053a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.h index c1a4cb3735..141190a996 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.cpp index c96b814af8..4d70518bb2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.h index 47461948df..1f0b3397da 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphNodeGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.cpp index 01b7d8bc46..608552ed48 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.h index d14b9a1d04..b753f44520 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.cpp index 32594b7760..e625dc4e45 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.h index 79d257114b..6ccc7fd08d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.cpp index a6bc629db5..a391d56378 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.h index c76acde065..e7fe36589e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectIds.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectIds.h index 48d7283386..b1c001ca28 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectIds.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphObjectIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.cpp index 4c7f2057f8..51c4e55d0e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.h index 18be4e854d..33d51a923d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.cpp index 29ffcefb29..96781b0c32 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.h index 62d02a953f..90662fde94 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphParameterCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.cpp index de179be8c8..9a9098db78 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.h index 6c47595701..e2e0bb9451 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPlayTimeCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.cpp index bb146d71fb..eb05c3221e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.h index 7a9eb64f4e..7412748ab6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPose.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.cpp index c0d5e25e1e..5da15149a6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.h index 24b1db45ad..45d43cf873 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphPosePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedData.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedData.h index 409118e0d7..5e0b04faee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.cpp index f129ecec1d..1cdd0c6467 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.h index c2b5700ad4..fbce38505a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphRefCountedDataPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.cpp index e8e78b0376..25089af972 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.h index 31cc2e3ddf..4859e255e4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphReferenceNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.cpp index 8de51d1099..f757df23fc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.h index 74ea7a2867..3f6ad2a73e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSnapshot.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.cpp index 9039ef6543..6078fdde51 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.h index 507d4815db..d675ec20db 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.cpp index f3a5791369..0373a8366a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.h index 7bdc3c98a5..9f0970ce60 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateMachine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.cpp index b5fbef19d6..4c3570657c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.h index 658eff5c6a..38e27179ac 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphStateTransition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.cpp index 877be9154f..1b0fbe6002 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.h index ba82d8d098..ca1e4ee204 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSymbolicFollowerParameterAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.cpp index d0b91db800..67b37ef80a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.h index fcd8f96f12..f3837fadaf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphSyncTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.cpp index ec7b00ab05..726d52bf4a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.h index c4a5dd831f..db29766773 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTagCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.cpp index a4b1b8dcdd..a648373d40 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.h index 852a88dbb2..65b08bd62e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTimeCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.cpp index a26430ee9f..ae28f37c43 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.h index 039b4e9fbc..a6ca69fc97 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTransitionCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.cpp index 03b080249d..0264792545 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.h index 2726cc14bf..d1cb7fc36c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphTriggerAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.cpp index 3dd12b912d..8f764c5871 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.h b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.h index 8c7fec8198..d906206353 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AnimGraphVector2Condition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.cpp index 1658a6b3ea..79df29f52c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h b/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h index 1529f1efc5..8ced10a58c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Attachment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.cpp index a628d089ec..c6624a2fcd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.h index 3208f8c2fb..81079063a7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.cpp index 6c6a7a9782..7f650d42fc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.h b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.h index 0255e22e82..b75a5702cc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AttachmentSkin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/AutoRegisteredActor.h b/Gems/EMotionFX/Code/EMotionFX/Source/AutoRegisteredActor.h index d885fe25e1..054678c48d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/AutoRegisteredActor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/AutoRegisteredActor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.cpp index c985012886..85cf316610 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.h b/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.h index 61c028d393..a921445a3a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BaseObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.cpp index d036a0a735..5d681a380e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.h index 3f6e129b57..a5bc71c66a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace1DNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp index 103ce4c8a2..e4de6f71e1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.h index b5ccd82396..c3b1b3d784 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpace2DNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.cpp index 194684cce9..c8c6e43a75 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.h index aba57f99c8..401d23f5a5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.cpp index aeed9ed02d..32b12192be 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.h index d1e7815b39..e36840cdda 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.cpp index 5150aeaecf..11c4d871f2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.h index 037155502c..408f40f552 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendSpaceParamEvaluator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.cpp index 1573a37d3b..5ff2c6fb3b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.h index 4d9f1ce32c..e019d0ab27 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.cpp index 3c679dd092..9bd5330e9e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.h index 97654e8ec2..0a84446528 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeAccumTransformNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.cpp index 39e7d0b910..3ced42d6ca 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.h index 8a97cbe216..841409d33e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2AdditiveNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.cpp index c2c4ef79e8..37240db611 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.h index 811a0fad77..37b5810080 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2LegacyNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.cpp index f8158cc9dd..c467e2df69 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.h index c71071a7b9..8c3b5d41e8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.cpp index 88bc0272cb..fc64b46082 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.h index 7e55fff71a..fdaa8aa550 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlend2NodeBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.cpp index 270c1e5f5f..155eddc08f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.h index 0e4cd4505e..05d9201573 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBlendNNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.cpp index a04b9e87a4..a41f83ae58 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.h index 6983ac4b77..94eb2c55a8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeBoolLogicNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.cpp index 7a22af4b84..daf0b6aa83 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.h index 0c8d977242..3c2b9861c0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.cpp index cae7f9fff5..44f73267a6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.h index 221bcb980c..effa332b4d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeDirectionToWeightNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.cpp index a9053942ae..e30b2a1d40 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.h index af5bf519f0..3349e9e2d5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFinalNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.cpp index bb3f8f439d..14ba1cf978 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.h index f820bfe620..18d9a30934 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConditionNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.cpp index 8859faa3c7..8a5a5fabc4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.h index d3bfebe9e6..5aed0d103c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatConstantNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.cpp index d1dbb21c3a..c12c946271 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.h index 0cccddb873..a3be3d95a4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath1Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.cpp index 4f6cbb1be9..a70b526684 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.h index 30f916be93..7adebdd5e6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatMath2Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.cpp index 0610a9ead3..7513b1788c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.h index f6936aeff0..adba009f5b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFloatSwitchNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.cpp index e9dc44c50c..8bc6f8e9f0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.h index e9ffc49ecf..33c3061c99 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeFootIKNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.cpp index 768e489abc..bffdd61fa4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.h index 1ed57db54f..4dbdd31550 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeGetTransformNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.cpp index 350aab5e7a..57fa502abd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.h index 0d0972ac9b..95e955213c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeLookAtNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.cpp index fb22ef6f59..3ec09d7254 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.h index 5184e9efad..c3ea2c57ae 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskLegacyNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.cpp index 6bb78c471e..367aa0eeb0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.h index 81d6cf195c..9d1f037f28 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMaskNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.cpp index ab4b756277..f742dbf47d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.h index e8afb88caa..edfe056d83 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMirrorPoseNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.cpp index 9ccfd71390..28c1347d31 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.h index 81d30ee55a..850a980e31 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMorphTargetNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.cpp index 0cf56705c7..a511f29c5d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.h index 9a470943e9..ad509cce50 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeMotionFrameNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.cpp index 57b259b465..905ef200cf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.h index 8429418995..d2444d01c2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeParameterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.cpp index 6227eae85c..445b98ed4d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.h index 42f87abdf0..069c631c88 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSubtractNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.cpp index 27a908f1ea..7a554f79ff 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.h index 013b0892a3..44d601aed4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreePoseSwitchNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.cpp index 16ff2210b8..cbfd741de7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.h index 0f95846862..df73cd23fe 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.cpp index 60c1cb1224..ae679039f7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.h index 91cea6d5ef..c60e54a749 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRagdollStrengthModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.cpp index d5360c3df6..3efc7da2a5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.h index 9826ec059c..fc2a1f83e6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRangeRemapperNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.cpp index 1dc5cea9fc..2140b4bc51 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.h index 557d0e2397..643a1e9990 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRaycastNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.cpp index 75c3378186..add46e5265 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.h index 214746e7fb..12f7db7e16 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationLimitNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.cpp index 47fba4f282..aae10e676a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.h index b07e3e3ca0..ecd239d37b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeRotationMath2Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.cpp index 2074ee928f..02bc68d699 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.h index a01f756f78..ab4c941a54 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSetTransformNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.cpp index 74b8720898..25f76c2d41 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.h index 6067817fbc..05cf8188c8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSimulatedObjectNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.cpp index 7c3d9f1f86..212862c1e3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.h index 9ad8d741ed..969460ab2f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeSmoothingNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.cpp index 95edc6838e..b8abf2cc90 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.h index f046715100..038439df46 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTransformNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.cpp index e5f79c3ec0..a5fbff05c3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.h index 445192900d..deac5ade2c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeTwoLinkIKNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.cpp index f480aed9f7..636744ba56 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.h index 9791b4cb98..c02afbf178 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2ComposeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.cpp index 35410c9e6b..c86ac36045 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.h index e89bc1e4a1..60cde5c304 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector2DecomposeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.cpp index 5030c6954b..438c2a7cd0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.h index f3560eeee1..a34ab2edbc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3ComposeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.cpp index 547f3e8c6b..49700621e3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.h index 24243dc7da..09e1c691f8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3DecomposeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.cpp index 641cff3cfb..0d1f82a4df 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.h index d3a83774c6..cac4cc2d03 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math1Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.cpp index c37b73e5b9..2ee0d92dcc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.h index 4a675509f6..63343eb00e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector3Math2Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.cpp index 29ef1d521e..07f7d64172 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.h index ea117793bd..07493ad5de 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4ComposeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.cpp index cabffe7559..c1b14af03b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.h b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.h index da24a0d31b..44655e4a46 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/BlendTreeVector4DecomposeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/CompressedKeyFrames.h b/Gems/EMotionFX/Code/EMotionFX/Source/CompressedKeyFrames.h index dfcf250ef9..b7ab2350ac 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/CompressedKeyFrames.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/CompressedKeyFrames.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Constraint.h b/Gems/EMotionFX/Code/EMotionFX/Source/Constraint.h index 1241ad91e0..2de89ee8b8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Constraint.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Constraint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransform.h b/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransform.h index 3f505e9b3c..89628f8bc9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransform.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.cpp index 433e5d6ffb..241d34ffe1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.h b/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.h index 93478a2f48..16a3343278 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ConstraintTransformRotationAngles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.cpp index 370ea19f23..9649af9f6a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.h b/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.h index 5746bc2ac3..ca23305d33 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/DebugDraw.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.cpp index a1195ca87a..881d548c35 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.h b/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.h index e7890cd7a7..630bd140fd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/DualQuatSkinDeformer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFX.h b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFX.h index 27fa78b9f5..0d4cdfe420 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFX.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFX.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.cpp index 308643a86d..baa3452e7a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.h b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.h index cabb3c7c4b..fe2209276b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXAllocatorInitializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXConfig.h b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXConfig.h index 384bcdfd35..2559444d35 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXConfig.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.cpp index 5f82e8f223..36bae5c1ec 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.h b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.h index a66e4245dc..25bfe0d34e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EMotionFXManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Event.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Event.cpp index e69ef9f20e..d71fad4d1e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Event.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Event.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Event.h b/Gems/EMotionFX/Code/EMotionFX/Source/Event.h index 6665ef1ae3..aaf1514aba 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Event.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Event.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/EventData.cpp index 74032bb100..b55ba7ef65 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventData.h b/Gems/EMotionFX/Code/EMotionFX/Source/EventData.h index f1827eddf4..4484c30b55 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.cpp index e015b56cf3..bb4ae87272 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.h b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.h index 4056cfcba4..57c9064ecf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataFootIK.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.cpp index bfd39da30f..ffb751c789 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.h b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.h index 54f0986f61..da991c6789 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventDataSyncable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.cpp index 5141e0040c..74360aaaf3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.h b/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.h index 4179e58fd5..f354cefd1e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventInfo.h b/Gems/EMotionFX/Code/EMotionFX/Source/EventInfo.h index 55c658b2ba..db9b3ff5f2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventInfo.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.cpp index 281476e386..5ebdb0e63f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.h b/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.h index cf1d751a36..676a19fb33 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/EventManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ActorFileFormat.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ActorFileFormat.h index 68231974c2..0ad6901bbd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ActorFileFormat.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ActorFileFormat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.cpp index cff0731631..93743d9683 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.h index 68970af177..c7ce48b973 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/AnimGraphFileFormat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp index ac4a44b8c0..2565d2759a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.h index 057ebea83f..bf090c9ab1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/ChunkProcessors.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.cpp index 2c74c5f4e9..f4f626a402 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.h index adc938f99f..4e5d4eb125 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/Importer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.cpp index 1230bfad07..ae8d9418dc 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.h index 76082686fb..dae571d553 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/LegacyAnimGraphNodeParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionFileFormat.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionFileFormat.h index 601df32b3a..1582dbc745 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionFileFormat.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionFileFormat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionSetFileFormat.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionSetFileFormat.h index 9e792dac87..02498a44d4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionSetFileFormat.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/MotionSetFileFormat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/NodeMapFileFormat.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/NodeMapFileFormat.h index 4a549afcf4..3a40f37146 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/NodeMapFileFormat.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/NodeMapFileFormat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/SharedFileFormatStructs.h b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/SharedFileFormatStructs.h index 52ebbf8b4b..6338b27804 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Importer/SharedFileFormatStructs.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Importer/SharedFileFormatStructs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.h b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.h index 8181f2444c..e749c459a9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.inl b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.inl index 5da8fb650c..977e4c05c3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.inl +++ b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrame.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.h b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.h index b107849510..62fb6087ce 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.inl b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.inl index 152c7a0d74..0bb54e2469 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.inl +++ b/Gems/EMotionFX/Code/EMotionFX/Source/KeyFrameFinder.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.h b/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.h index ffc4a98b9f..7abf725e36 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.inl b/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.inl index f56db4a145..0269a523a3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.inl +++ b/Gems/EMotionFX/Code/EMotionFX/Source/KeyTrackLinearDynamic.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/LayerPass.h b/Gems/EMotionFX/Code/EMotionFX/Source/LayerPass.h index a54706cbf6..9307a6cf38 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/LayerPass.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/LayerPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Material.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Material.cpp index a76e3759db..edaffa7ff7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Material.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Material.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Material.h b/Gems/EMotionFX/Code/EMotionFX/Source/Material.h index e4787516d5..f804e9e9f6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Material.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Material.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MemoryCategories.h b/Gems/EMotionFX/Code/EMotionFX/Source/MemoryCategories.h index 2dc57a9324..cbf79ab7c8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MemoryCategories.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MemoryCategories.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.cpp index 31570dbeb5..896ac2db42 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.h b/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.h index 90c4c23290..f056a7cb2e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.inl b/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.inl index 3be4003622..dd2a9e641a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.inl +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Mesh.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MeshBuilderInvalidIndex.h b/Gems/EMotionFX/Code/EMotionFX/Source/MeshBuilderInvalidIndex.h index bf3caa0bcf..ed75918a77 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MeshBuilderInvalidIndex.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MeshBuilderInvalidIndex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.cpp index 19fd65f60c..f50c6328dd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.h b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.h index 1b22ba9479..f6ca96d32f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.cpp index e2ae776fe2..473a36ea42 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.h b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.h index 0ab75d19b2..2e85dc5bf7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MeshDeformerStack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.cpp index e8924c5211..f5cbd3f901 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.h b/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.h index aebcec4402..68bbacc9d3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphMeshDeformer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.cpp index a97c1e3065..0509e6509b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.h b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.h index 478c7abab6..e4b92b24d6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.cpp index c66592af1a..cf0737840b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.h b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.h index 15124005b5..51f32a2803 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphSetupInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.cpp index dad77c8767..30120a8562 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.h b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.h index 8b20321961..290b25a04e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTarget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.cpp index d9f613b31d..28d001e3d8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h index c07b7053c0..8b16bea29f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MorphTargetStandard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Motion.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Motion.cpp index bff1f855d6..1a7fa23336 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Motion.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Motion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Motion.h b/Gems/EMotionFX/Code/EMotionFX/Source/Motion.h index e34e2ef7ab..d6f7724be3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Motion.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Motion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.cpp index d46fed35e4..d6494b3153 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h index b247c0536a..d018e8c50d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.cpp index 02e17cbdcb..1eb1fdbd60 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.h index b9a7f3e83b..cff35947de 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionDataFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp index e108018eca..9368e74950 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h index ca97d1f54b..abb633f1a7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp index f66eb53396..a74ee8c45f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h index 45edd6e947..3b8ff21d58 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.cpp index 825926d871..602059524f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.h index 93acf514ef..5c1dfbe5d7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.cpp index 751f7e551a..6114c0512a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.h index 2101843a52..1531e721bf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.cpp index f1ec5950fb..bb3665c4bf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.h index b7cfc526cc..f62143bd19 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionEventTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionGroup.cpp index 4ae5f29347..ee601fb624 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.cpp index 629bf18ce6..36a1a12d76 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.h index 56bb831571..cfaa9faaca 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.cpp index cecbb35b03..e514ac9c8d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.h index 2ffd1d6373..aaf90e176b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionInstancePool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.cpp index 4f90ea3e80..ed8ae07470 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.h index f2c00368d9..16c20dabf3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionLayerSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.cpp index 43cc4b91ec..1d6cd70f38 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.h index f7e5711e8b..c017855691 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.cpp index 1d924b5c02..847ba0e594 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.h index 211bffd357..09ec047f80 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.cpp index 701180611e..fd2174038e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.h index 10a1ae78e2..8c2eb3759c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSet.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.cpp index 5624c241d8..b6f26dbdeb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.h index df5c439cb2..6562b59b1b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.cpp index a0c2992513..9dbfe02940 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.h b/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.h index c482710da4..759cfd6357 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MultiThreadScheduler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Node.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Node.cpp index 0406f2bf6d..916b178c8d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Node.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Node.h b/Gems/EMotionFX/Code/EMotionFX/Source/Node.h index 68c4eb20f9..819dfa92a8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Node.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/NodeAttribute.h b/Gems/EMotionFX/Code/EMotionFX/Source/NodeAttribute.h index de13dc7039..5737b33a79 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/NodeAttribute.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/NodeAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.cpp index b10b41b734..20444c26ce 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.h b/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.h index d2e907db74..0f78827ff7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/NodeGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.cpp index da37ef29c4..ef67bfec54 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.h b/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.h index 792d1547c3..5b15476648 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/NodeMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.cpp index f94a260898..a3530f9a5a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.h b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.h index 7d4f08c52a..7c1af14f13 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectAffectedByParameterChanges.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.cpp index db15efa68a..90a1a7b93f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.h b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.h index 1b7459d4d2..de83fe5436 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ObjectId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.cpp index 5afe683652..5900e2bdfa 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.h index 604830216e..fbdcdd9ad3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/BoolParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.cpp index 68dfbf35c5..e2ec8c27ac 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.h index 006caa6489..2947597d34 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ColorParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/DefaultValueParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/DefaultValueParameter.h index 070f02bb35..f0f70c01a4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/DefaultValueParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/DefaultValueParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.cpp index 4aca16a323..2531908f12 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.h index 46892172e0..34907fcffb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.cpp index b82098c383..296cfc4a7c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.h index ff206613fc..bbc51afb8a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSliderParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.cpp index 227ee4f09c..8f659a71a1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.h index 2951e009c8..b37ccc833e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/FloatSpinnerParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.cpp index d375fbdc77..275804c11d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.h index 24da5073a6..e7fe2390a2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/GroupParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.cpp index 5db832913b..9c7192e533 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.h index a73f760a69..df50f158ee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.cpp index 9ac7f8b8fb..87794a8687 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.h index 0b0488a27c..eb6b47b3d1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSliderParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.cpp index 3856c6737a..ab5aee9391 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.h index 7fda10adf5..d184255f58 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/IntSpinnerParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.cpp index d08cdbb647..2b9fe09da0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.h index 4f73fd06a6..91a37408ae 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Parameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.cpp index 3863e8e1ab..1ee321081e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.h index ba11b8de62..e3e770471b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ParameterFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RangedValueParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RangedValueParameter.h index 095f95f4f9..46e78fc76d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RangedValueParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RangedValueParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.cpp index 31452ef63f..cd9460050d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.h index 5eec690a5f..7d30ee351a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/RotationParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.cpp index 1f379d36a8..a9e61a4f6c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.h index 7eaf692461..a04dec818c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/StringParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.cpp index 193e55a75e..0d0c635f4a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.h index 29a81cb7c2..15f40ca46c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/TagParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.cpp index 3f392f31da..dd174253b7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.h index b1920ed80f..ac9abe80ab 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/ValueParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.cpp index 23596edf25..db83b9cd03 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.h index 1a94ad76a0..b7140ccb11 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector2Parameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.cpp index dda8cd6e35..f925027ebb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.h index 689e604c1c..386aebee42 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3GizmoParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.cpp index 580e4a10e3..8753b3b99b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.h index 7b822548c8..ef7341e481 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector3Parameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.cpp index 9abd3f08e9..bc13fa2a5b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.h b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.h index 05c4588a45..0908c63d58 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Parameter/Vector4Parameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.cpp index 33e5e3dbc8..b7065e1640 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.h b/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.h index 5cf625957f..995c8f63ff 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PhysicsSetup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PlayBackInfo.h b/Gems/EMotionFX/Code/EMotionFX/Source/PlayBackInfo.h index f1b76dbf93..92c1ae04c5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PlayBackInfo.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PlayBackInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp index 3058f3610f..1870229c1f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Pose.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Pose.h b/Gems/EMotionFX/Code/EMotionFX/Source/Pose.h index c98bcd0519..1d5611322e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Pose.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Pose.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.cpp index 4c7d4e5416..e687353204 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.h b/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.h index b73b608a79..08f605a5b5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PoseData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.cpp index 9e232f11c7..bb3acdd061 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.h b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.h index 5ef92e5530..369725c4d7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.cpp index 3324046880..36075ca1f4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.h b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.h index c8d51fb2e0..7fcf079b8a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/PoseDataRagdoll.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp index 1cf1cb8a7a..0760f46f7b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.h b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.h index 64e726dbd8..deefa42813 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.cpp index 237d332a82..89c7809022 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.h b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.h index 12669e1985..4572fba993 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RagdollVelocityEvaluators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.cpp index 1227a04690..33b2792d10 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.h b/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.h index 174a1947bd..89063e0ffe 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Recorder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RecorderBus.h b/Gems/EMotionFX/Code/EMotionFX/Source/RecorderBus.h index 137a3e8c64..d9f28c5192 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RecorderBus.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RecorderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.cpp index f6c9f20043..7f3d405364 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.h b/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.h index 32a92396bc..fc165eff99 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/RepositioningLayerPass.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectBus.h b/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectBus.h index 3676056cbe..0f3502f630 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectBus.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.cpp index 8d3a6f584e..321f173794 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.h b/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.h index 8c6d9ab3cc..0c7c58d884 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SimulatedObjectSetup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.cpp index 7c031c4a30..14bd566bb5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.h b/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.h index 450a153f3e..9c171e0f3d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SingleThreadScheduler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.cpp index 4904f262f7..c8592b5b22 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.h b/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.h index 8bd6ed3348..bde4e65094 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Skeleton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.cpp index 74bfdd64ba..8b0a16b542 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.h b/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.h index 0440252f77..93d2713662 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SkinningInfoVertexAttributeLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.cpp index e500a776d6..ff3ade6e6a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.h b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.h index 6b7b503791..bcd62de1f9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinDeformer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.cpp index ec593c82d0..507135c51b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.h b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.h index 4a413d840d..2b7417e334 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SoftSkinManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp index ab445b4279..a4d510698f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.h b/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.h index 140f36d4ff..9008f3442d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SpringSolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.cpp index 4132fedda7..bc6ad999ff 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.h b/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.h index 5b6b868ab4..316d503545 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/StandardMaterial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.cpp index d52bafbf05..f0f16ea261 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.h b/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.h index 57753a6ba8..653e247f7b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/SubMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.cpp index a2b95f6baf..bb8700c259 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.h b/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.h index e5bca4a237..d2493b7b90 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/ThreadData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Transform.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/Transform.cpp index e3cf237d6e..9997823ad0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Transform.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Transform.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h b/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h index 969718cde4..a7e6f6265e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/Transform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.cpp index 4acdfeceec..ada0d7b8d5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.h b/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.h index c6b63d5a79..5a813e6003 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TransformData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.cpp index 09b5d75b2e..398f9b1ae0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.h b/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.h index bc8e910c5a..a226c7cc8c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TransformSpace.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.cpp index b5fdfad736..16f88f40e5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.h b/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.h index 1b06d3bd60..a05f43a5f8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TriggerActionSetup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.cpp index a54ec76b08..530bf6c0dd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.h b/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.h index 2574463b26..7faee2ed2c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/TwoStringEventData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.cpp index d3833d72d8..e9de0aebd7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.h b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.h index 4d4290ac74..6ce6b9a7c2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.cpp index 4662086c49..0efb9b1107 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.h b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.h index 182d45c6bc..62a54e1518 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/VertexAttributeLayerAbstractData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.cpp index 738436e976..6472e8cac4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.h index 1f0664b1a0..8c7f58c482 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Allocators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.cpp index 8c22d657c3..ed0776f6f6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.h index 18e83442dc..6d0e19952d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Commands.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.cpp index cbb6f25cb1..3979b6122f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.h index 6bad749b08..68f1f2c3df 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/DockWidgetPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioConfig.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioConfig.h index 565e84d874..5d441dcce5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioConfig.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioCore.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioCore.h index 5fccb84817..6f41c017ea 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioCore.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioCore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.cpp index 2fc587b1d7..a9bcfc4ee3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.h index 1b30eb96d7..7a29b2248d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.cpp index 9e9843323d..b572cd6d0d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.h index 9033fb52c9..ec2f4212e4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/EMStudioPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp index 574d3bccd8..3d8770a1d2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h index 5633a15805..1b80061fc5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/FileManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.cpp index 4b56ac28a2..c8ff660988 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.h index 62e8c685b1..907ed94064 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/GUIOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.cpp index 1663c94581..90e1ee8a4c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.h index fb8ef14f79..599c9002ee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/InvisiblePlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.cpp index af26b63640..668ddca338 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.h index 8f8dfa0447..a42236e546 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/KeyboardShortcutsWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.cpp index 4c75af9e35..96e075e34c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.h index eb5179ac14..80709627ac 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LayoutManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.cpp index d8f9bd6cd5..572227ccb6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.h index cc8e6c18ca..8c5be0b480 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/LoadActorSettingsWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.cpp index a0c6a8bcb3..8b9feb5a32 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h index 1141f5d7a1..3919a4a397 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h index 8783394fef..2460770e26 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.cpp index 7405b4845d..d876e4c42a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.h index a860a55354..f2ce75da67 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MorphTargetSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.cpp index df416e0671..1e47f92a71 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.h index 52994eeb52..d60b48d7a5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionEventPresetManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.cpp index 71626b8f6c..ebd55b4e55 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.h index 4b649303af..04fc9d942d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetHierarchyWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.cpp index 1c89c5a6a3..e47e04a066 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.h index ad511f43ed..84b56e63f8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MotionSetSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp index 4afbfc95eb..509423b7b4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.h index d79ac69586..8b8c54473c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeHierarchyWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.cpp index 93d2ee7e32..c815b99705 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.h index 313281f9d8..89312deb05 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NodeSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.cpp index c2f65ed036..b3e79687a6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.h index a988a80e1b..c02c88d84f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.cpp index 179547d013..b4c6ae63af 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.h index 70ac678c0c..5341cc72c8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/NotificationWindowManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.cpp index 9fefaa9b8e..acae90f136 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.h index 4e1cad4cb4..746efc1452 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.cpp index 37d45b1c9a..80f9371d4f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.h index f6864a52fd..f053d8093a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptionsBus.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptionsBus.h index 8bf742529c..a7db8721f6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptionsBus.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PluginOptionsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.cpp index e6b89bd5c3..be09f63226 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.h index 7d5491192b..d31bae4db0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/PreferencesWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.cpp index dfb75290da..8bbf075231 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.h index e25e2e0994..f196e1ebe0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RecoverFilesWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.cpp index f6ca5d7409..1c73976abf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.h index ceff4dac61..224f24ebc9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RemovePluginOnCloseDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/CommandCallbacks.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/CommandCallbacks.cpp index 3a589105a6..a194b829b7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/CommandCallbacks.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/CommandCallbacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.cpp index 3f44669f2b..4b0a7d965a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.h index 4246d2d75e..dbec88a264 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/ManipulatorCallbacks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderLayouts.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderLayouts.h index 927193ae96..328706c0f1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderLayouts.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderLayouts.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * 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 3a1bfa4295..4ae50c2559 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 @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.h index 9343f09a33..bf7a9a8129 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp index 0f479872e1..f9851ccd2e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h index ecea26f8f6..5ee1d746bf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.cpp index 46c4b8df57..3a237bdf24 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.h index 00bfa385c9..3f8ca9aec3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderUpdateCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewContextMenu.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewContextMenu.cpp index c71305a434..bd161c6bb4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewContextMenu.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.cpp index 8139c50261..56dd03a127 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.h index 639b844bfd..ef04e7b8f3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderViewWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.cpp index 4d84325cdd..305a355da0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.h index a4d5341c19..5bdae1be04 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/RenderPlugin/RenderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.cpp index 158bb2c348..aa6e761454 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.h index 3d13826e5a..3170bd844c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ResetSettingsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.cpp index c3a5ef422d..5fd411d2e9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.h index 2b1c75b594..39521435aa 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/SaveChangedFilesManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.cpp index bb0792b408..5b151c82e9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.h index ec77df25b0..3cda511be0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/ToolBarPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.cpp index 6420660328..9c73c9113a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.h index 7db3b669bb..4b46a7ba51 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/UnitScaleWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.cpp index 5ecbd530ec..0460b10a9a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.h index 62b787511f..3bbfa93aab 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/Workspace.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/emstudiosdk_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/emstudiosdk_files.cmake index 7fd40c2508..d6b96f75a0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/emstudiosdk_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/EMStudioSDK/emstudiosdk_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.cpp index 86cfed5919..eaff43b56c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.h index 572e203d4b..908b252d37 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/GLWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.cpp index d8f28416d2..da7fd67156 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h index 02ce99180c..def1c852aa 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/OpenGLRender/OpenGLRenderPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RegisterPlugins.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RegisterPlugins.cpp index 2595288e57..717067bb58 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RegisterPlugins.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RegisterPlugins.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RenderPluginsConfig.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RenderPluginsConfig.h index ac728b2656..fcb4bb4fbf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RenderPluginsConfig.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/Source/RenderPluginsConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/renderplugins_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/renderplugins_files.cmake index ac585f89f1..68b352b361 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/renderplugins_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/RenderPlugins/renderplugins_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.cpp index 469e07a638..ff60003b9e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.h index c199c08f28..6b369005a8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp index ab48fc7dcf..c124b9ed43 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.h index 17d292c464..e809f19d72 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/ActionHistory/ActionHistoryPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.cpp index 544bccd5a8..836ed5331f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.h index a26540d22c..18aafc358c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphActionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.cpp index fd820d04f2..ded4bccc5c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.h index c59414f0dc..595e615e0b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.cpp index e1a6214b37..67054a17e7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.h index c0a27f742e..51d2d37ea9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphHierarchyWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.cpp index ddcfa2a697..2ad15788be 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.h index abc6c3127c..464c2f4d5c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphItemDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.cpp index ce5af87158..6829515630 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h index 17f0d33762..a154e20ee4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModelCallbacks.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModelCallbacks.cpp index 5141f0bf45..3c164c7e1e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModelCallbacks.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphModelCallbacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.cpp index 561561cf7f..ff7e195c90 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.h index dd27d88736..805c75e975 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphNodeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.cpp index 52f6b178a2..88f0af2589 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.h index c96c879168..4fc14cb757 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphOptions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp index 69d6509b3b..aa848b4254 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.h index 6686090a4c..8ad9d4e7b9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPluginCallbacks.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPluginCallbacks.cpp index 028d6b10e1..6962784851 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPluginCallbacks.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphPluginCallbacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSelectionProxyModel.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSelectionProxyModel.cpp index dbdbcdc439..20be2c2a34 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSelectionProxyModel.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSelectionProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.cpp index 306b3c6533..fc78d6c47d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.h index 00412ffd51..1dcc3e9770 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphSortFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.cpp index f02962b6a5..3098faf05e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.h index c5a75b2b9a..074a4d28bb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AnimGraphVisualNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.cpp index d29d8a4869..419ea838c2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.h index 3fd0eccc1d..df05a9d1b6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/AttributesWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.cpp index 4ce46ce0be..f1b7616ba9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.h index 47d7daf84d..3f5537adf3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphViewWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.cpp index 1601ca392a..a1aa99014d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.h index 2a9329e401..e2ea8bfcf0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.cpp index 5c1d5a15ba..c7c98ec0bd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.h index af24a1deca..ab351191ec 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendGraphWidgetCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.cpp index c0e7175e00..d584f608f8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.h index 14b44bca27..e3f1e5ca41 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendNodeSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp index 93d1f43571..3db2dee9f5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.h index d749d9b1c3..7b888217e5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace1DNodeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.cpp index 3e947d77a6..e9470d7291 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.h index a9e232ac61..c7967c8e87 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpace2DNodeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.cpp index 4dbe344d81..82851dcf8c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.h index 0021bb9f86..e2e89fa04a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendSpaceNodeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.cpp index 7a33ab0ec5..6f496fafbd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.h index f919717cf4..c224ccb5ee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/BlendTreeVisualNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ContextMenu.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ContextMenu.cpp index ca550f86ce..606d312126 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ContextMenu.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.cpp index a5b6eb55ae..cc55462b26 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.h index 25ee2394bf..006dd9610a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/DebugEventHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.cpp index a9f0af8e29..1761b732b2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.h index 0c6f7c020c..3a51e63e0d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.cpp index 005589c983..761500fbdb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.h index 027724a314..47b1ce39e3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GameControllerWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.cpp index 6061178bc1..e8ec055401 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.h index a44d1f737c..a4129dfdee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.cpp index 7b916878e4..d22e54bd49 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.h index 628ae2120a..db94b1a005 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphNodeFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphWidgetCallback.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphWidgetCallback.h index d01fe0136a..9bfa56cea4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphWidgetCallback.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/GraphWidgetCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.cpp index 7871e9ea81..b323e4eed1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.h index 7a4744e925..0ff7ec9379 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigateWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.cpp index 951e3dfe2a..8ec740dff6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.h index 908be587c5..fb040afa79 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationHistory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.cpp index ea37c0b1ac..914cafff86 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.h index 3c55dd8420..3fa1e6c988 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NavigationLinkWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.cpp index 854a50b874..62a6a0264e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.h index fdf950aa9b..56d22338a4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp index 353bba9550..9c928d56c5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.h index 78bda45652..a7353f4241 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.cpp index da28dc0cf7..6ce11c0329 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.h index 970cc3167e..ce8e1e150c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGraphWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.cpp index 4d3f032f4c..1890c10e8d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.h index 8232912e76..71a5f2a620 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodeGroupWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.cpp index 2e67d37cb3..2145ee6e0e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.h index 8776636335..3d9d9b1eaf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/NodePaletteWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.cpp index 1e13e86c93..7b6e33ffee 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.h index 5def7feb3d..ab8624af21 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterCreateEditDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.cpp index 2736b5da67..22919eb600 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.h index 3fe0b03ec6..b37247fa34 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/BoolParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.cpp index 3e33dac3f5..95d5a708af 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.h index 8dffd7f438..24652c22b1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ColorParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.cpp index fab48afdc5..3df249b57e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.h index d35ef32007..21f304bb1b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSliderParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.cpp index c49639d451..7cb128d49b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.h index 3368f3c49a..309fc4f0b2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/FloatSpinnerParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.cpp index 39ad6419ab..63bb0b0fd4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.h index a9099938f8..5ca3721549 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSliderParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.cpp index 2d5199aba9..f3cb0a395b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.h index f171f6239e..64b0690eaf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/IntSpinnerParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.cpp index 93b9c97f41..779e25136d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.h index 3cfcd554d0..f308778d13 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ParameterEditorFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.cpp index b6d9b060a4..c3d3a6a2ba 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.h index 48305a367b..1f23e2e981 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/RotationParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.cpp index b6af8070da..002ec3196f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.h index d76d622f27..2d0581a0b9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/StringParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.cpp index 47de30c382..27c9b58a64 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.h index 8db359bf2c..2924264800 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/TagParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.cpp index e497de91a9..7f7172f498 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.h index c7b6bb092e..acbaa0bf89 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/ValueParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.cpp index ac194cc5fd..93f7cc5b43 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.h index dc8b17bcb9..5ca8304484 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector2ParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.cpp index f3b268c491..9ec1ef5760 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.h index 3c4cd24584..eff734307c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3GizmoParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.cpp index 19bd3292a2..3477d45caf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.h index 1af71bf0ff..9e1dbb3615 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector3ParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.cpp index 182190d8e9..b2d0f18e47 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.h index b3b4e39d01..591c4e4642 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterEditor/Vector4ParameterEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.cpp index 54c29ef16d..07bda1ec24 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.h index 9d325eea95..366ef35b5f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.cpp index a5b52a9aa1..4b78170c13 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.h index 751c205f7d..b4a85d532e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp index dd0355b7fd..b2c5ea5677 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h index b8af21f5bf..b5ef67bed4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/ParameterWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.cpp index 53c302f65c..9698bbec0a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.h index dba30234a7..3d1bf44328 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/RoleFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/SelectionProxyModel.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/SelectionProxyModel.h index 6052c453ba..2e47430d2e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/SelectionProxyModel.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/SelectionProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.cpp index 4dbe5f3198..7443235eb5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.h index cedce22fda..b5db937459 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateFilterSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.cpp index bcd6003243..d95f639008 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.h index e22c9d7114..9351bbc58c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/AnimGraph/StateGraphNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.cpp index a0d9a28918..b6f6687747 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.h index df6aef58ed..ebc422b7d3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentNodesWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.cpp index 932b267816..bbf8466aba 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.h index 8307dd115e..da5aff76ba 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsHierarchyWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.cpp index a2dfdd5e28..98b4609455 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h index 9f161d41f2..845876f14b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.cpp index 7dadfbba6c..94aac81580 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.h index f9c10daad7..db5bc0acbf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/Attachments/AttachmentsWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp index 7d58759bf0..5c46434631 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.h index 8396edad4a..677ac77b15 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBar/CommandBarPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.cpp index 06b4f75ef4..ced6aec4b5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h index 95a66ceb3e..426ac01e8b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/CommandBrowser/CommandBrowserPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.cpp index b0fcd19b02..960e84e9f7 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.h index 687ca7b227..bf2cec3a44 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp index 2cb2eadfd7..14967adcd9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.h index 69c820352a..7cf5746af6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/LogWindow/LogWindowPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.cpp index c0c2275777..1998688ade 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.h index 1cbd25a7c7..71689c790e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetEditWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.cpp index 29b4a1023b..7bc4509f95 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.h index 1f349c4e38..1ab6c5e9b6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetGroupWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.cpp index 3d6ea78bba..a04d69cfdf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h index d5a13cd9ee..1d403c003d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/MorphTargetsWindowPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.cpp index 250f9c684a..7928cbf4c3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.h index ec84cbbd10..23a09f5c47 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MorphTargetsWindow/PhonemeSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.cpp index ff4eaafe3e..4643619cdf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.h index 346c9a7c9c..3052a54402 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/EventDataEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.cpp index f0233e45a2..b6656a72af 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.h index 9cdd1779ad..ec86a04e78 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.cpp index 1b52e500d0..6846389066 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.h index 944319245f..8ff66c98d2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetCreateDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.cpp index d7335f815b..2bc1e6d9ad 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.h index 6e7b201b85..6c89a93faa 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventPresetsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.cpp index 1c3a81907c..5c2bd0cbaa 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.h index ec095a7f62..b557fb29e9 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp index 68cb11a8a5..4667785530 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h index ca70676b44..ddb2bdc932 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionEvents/MotionEventsPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.cpp index 6d9f2cd877..e384558d96 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.h index 652b2141b9..5ce486716d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetManagementWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp index 17342c49eb..75f88d27f3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h index 15c8630e7e..e7e7a10d43 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.cpp index 8e13060f94..c4ae380e9f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h index f064900103..f78019fa9d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionSetsWindow/MotionSetsWindowPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.cpp index 3c7319fdd2..8c64341507 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h index 24b0081256..6f085b909d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionExtractionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.cpp index 131b47e68f..100e2165ec 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.h index 9204a6b4ce..a70f8b1d07 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionListWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.cpp index 2394ea950d..e76ecbf57f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.h index 0668ad0641..e783e561ef 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionPropertiesWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.cpp index 37836be175..5695ddc1fd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h index dbf4d0270c..bc59c4558f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionRetargetingWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.cpp index 50a38fc0f9..4c1f43f37f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h index c82f1b491c..7679a39219 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/MotionWindow/MotionWindowPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.cpp index c7eaa03dba..4ff42f1b15 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.h index 90162fe28b..50ac7d4bd5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupManagementWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.cpp index 1e237d80c6..1c9fc191eb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h index f7f5869aec..69da9cdb99 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.cpp index 3314dba580..c6ca0c03ef 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h index c99c311a3c..61d23902eb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeGroups/NodeGroupsPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.cpp index 402d8b7263..35dcf5ea40 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.h index e98c48a327..92940fabd5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/ActorInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.cpp index d23f259510..c5582e7b2a 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.h index 2649d8ea2b..43afb13a75 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/MeshInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.cpp index 43f1dc1b1b..c02bfbfb9b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.h index 0242dca3fe..9677d5a2af 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NamedPropertyStringValue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.cpp index de7828d9ce..6fc544cb66 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.h index b6fb75c018..90adae75a0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeGroupInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.cpp index 070d0e9673..5766cbbd79 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.h index 11f2f282c5..cf3f1951ff 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.cpp index 1fc6e0bfe6..3f18fde9b5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h index 7a4af96cb6..d82cfd841b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/NodeWindowPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.cpp index 8c45737109..638e219fc8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.h index 3cb6f89436..3b35fa4d9f 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/NodeWindow/SubMeshInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.cpp index f2180e5d19..7f30e6cbff 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.h index 9b110b3cd7..da8b1ef588 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorPropertiesWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.cpp index 220a9f884c..019973975e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.h index 1cfa79a676..975c06b198 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/ActorsWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.cpp index b1265ac55b..9f99df9704 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.h index 4a32505ba8..5d3e3f9946 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/MirrorSetupWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.cpp index 2a01443c00..d3a4d67d02 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h index 09ede17f90..179c45ad1b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/SceneManager/SceneManagerPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/StandardPluginsConfig.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/StandardPluginsConfig.h index 2dd5b0ac89..6e3c9bcfd0 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/StandardPluginsConfig.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/StandardPluginsConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.cpp index 3c48142401..652bdabb19 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.h index fd689e12c7..ed19999114 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackControlsGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.cpp index 6fa350bf91..f97f0e5d31 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.h index ff8b0d6a66..eb6cc8426c 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/PlaybackOptionsGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.cpp index b7a4558262..4d2ea0d9b8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.h index 12739db942..ae30c2e28e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/RecorderGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.cpp index 99e3cde601..c2690e22dd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.h index dd65fb67ad..f9f845ded6 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeInfoWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.cpp index b6ff7fa009..bd7b2542a4 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.h index f965c6e1a8..4c776a5e73 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.cpp index a647619cd7..4cbfa9acb1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.h index abd2e58098..df4b7d3951 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeTrackElement.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp index 6845fadb53..b8d6e443cf 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.h index b00ebc88bc..ed74710816 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewShared.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewShared.h index cb4f8f9e95..2ccbfeeb78 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewShared.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewShared.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp index 23a8360d0f..a8c300a362 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.h index b7840d3617..c299c75742 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TimeViewToolBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp index 8e20b1d9e4..478aa126d3 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.h index aade5afe7d..856335189d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataHeaderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.cpp index 8a2ecf39a2..a2a1f811e5 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.h index 5f97cceccc..4ca300ff69 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackDataWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.cpp b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.cpp index 8bb6fda380..d5636e6e1d 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.h b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.h index bdbef2df40..e4a178ac27 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.h +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/Source/TimeView/TrackHeaderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/standardplugins_files.cmake b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/standardplugins_files.cmake index 6a66c5eef7..4ec5a171a1 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/standardplugins_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/Tools/EMotionStudio/Plugins/StandardPlugins/standardplugins_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/EMotionFX/emotionfx_files.cmake b/Gems/EMotionFX/Code/EMotionFX/emotionfx_files.cmake index 29032431fe..f78bc8dbcd 100644 --- a/Gems/EMotionFX/Code/EMotionFX/emotionfx_files.cmake +++ b/Gems/EMotionFX/Code/EMotionFX/emotionfx_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Android.h b/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Android.h index dfc31a7ba3..681c9018ed 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Android.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Platform.h index 8c6415e30e..64add412b1 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Android/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Android/platform_android_files.cmake b/Gems/EMotionFX/Code/Editor/Platform/Android/platform_android_files.cmake index a6fe6a77db..07a8ce2fc2 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Android/platform_android_files.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/Common/Default/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Default.cpp b/Gems/EMotionFX/Code/Editor/Platform/Common/Default/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Default.cpp index 09d1a18064..d26e0c9f52 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Common/Default/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Default.cpp +++ b/Gems/EMotionFX/Code/Editor/Platform/Common/Default/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Default.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Linux.h b/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Linux.h index dfc31a7ba3..681c9018ed 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Linux.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Platform.h index 9a0fe548d3..ce9d5b4cc3 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Linux/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux.cmake b/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux_files.cmake b/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux_files.cmake index e2459ccc11..6ed7b68372 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux_files.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Mac.h b/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Mac.h index 655ac25647..12900b60fa 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Mac.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Platform.h index ab5b209253..b2209cdc80 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Mac/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac.cmake b/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac_files.cmake b/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac_files.cmake index 3ec6f5c2b4..ca3b544268 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac_files.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Windows.cpp b/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Windows.cpp index a05345bbc7..0da6529ab3 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Windows.cpp +++ b/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX/Tools/EMotionStudio/EMStudioSDK/Source/MainWindowEventFilter_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Platform.h index 9571083712..fba200e907 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Windows.h b/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Windows.h index 38ef21f726..bfd0ca7cd7 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Windows.h +++ b/Gems/EMotionFX/Code/Editor/Platform/Windows/EMotionFX_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows.cmake b/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows.cmake index 1e6ff91a50..8044aaf717 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows_files.cmake b/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows_files.cmake index 2916d216a5..14aafca297 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows_files.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_Platform.h index 7be159dae3..0e2d3c5198 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_iOS.h b/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_iOS.h index dfc31a7ba3..681c9018ed 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_iOS.h +++ b/Gems/EMotionFX/Code/Editor/Platform/iOS/EMotionFX_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Editor/Platform/iOS/platform_ios_files.cmake b/Gems/EMotionFX/Code/Editor/Platform/iOS/platform_ios_files.cmake index ea4e92ad2a..487a3b694f 100644 --- a/Gems/EMotionFX/Code/Editor/Platform/iOS/platform_ios_files.cmake +++ b/Gems/EMotionFX/Code/Editor/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Include/Integration/ActorComponentBus.h b/Gems/EMotionFX/Code/Include/Integration/ActorComponentBus.h index 48537da363..c1680d5a90 100644 --- a/Gems/EMotionFX/Code/Include/Integration/ActorComponentBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/ActorComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/AnimAudioComponentBus.h b/Gems/EMotionFX/Code/Include/Integration/AnimAudioComponentBus.h index cc6d6802be..30516d10cc 100644 --- a/Gems/EMotionFX/Code/Include/Integration/AnimAudioComponentBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/AnimAudioComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/AnimGraphComponentBus.h b/Gems/EMotionFX/Code/Include/Integration/AnimGraphComponentBus.h index 87aae39a82..c1d35b887b 100644 --- a/Gems/EMotionFX/Code/Include/Integration/AnimGraphComponentBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/AnimGraphComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/AnimGraphNetworkingBus.h b/Gems/EMotionFX/Code/Include/Integration/AnimGraphNetworkingBus.h index f3b5e010e2..860cc4fe6f 100644 --- a/Gems/EMotionFX/Code/Include/Integration/AnimGraphNetworkingBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/AnimGraphNetworkingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/AnimationBus.h b/Gems/EMotionFX/Code/Include/Integration/AnimationBus.h index f00748dd80..afccb5f1cb 100644 --- a/Gems/EMotionFX/Code/Include/Integration/AnimationBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/AnimationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/EMotionFXBus.h b/Gems/EMotionFX/Code/Include/Integration/EMotionFXBus.h index d4ddba2538..bb80e43fa0 100644 --- a/Gems/EMotionFX/Code/Include/Integration/EMotionFXBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/EMotionFXBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/EditorSimpleMotionComponentBus.h b/Gems/EMotionFX/Code/Include/Integration/EditorSimpleMotionComponentBus.h index 98889d75b4..cb20cc0bfa 100644 --- a/Gems/EMotionFX/Code/Include/Integration/EditorSimpleMotionComponentBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/EditorSimpleMotionComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/MotionExtractionBus.h b/Gems/EMotionFX/Code/Include/Integration/MotionExtractionBus.h index ef366876d5..877f8899fb 100644 --- a/Gems/EMotionFX/Code/Include/Integration/MotionExtractionBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/MotionExtractionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Include/Integration/SimpleMotionComponentBus.h b/Gems/EMotionFX/Code/Include/Integration/SimpleMotionComponentBus.h index e8dd3d214c..fb75a165a6 100644 --- a/Gems/EMotionFX/Code/Include/Integration/SimpleMotionComponentBus.h +++ b/Gems/EMotionFX/Code/Include/Integration/SimpleMotionComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AABB.h b/Gems/EMotionFX/Code/MCore/Source/AABB.h index 0c40cd0aa2..8bce886df3 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AABB.h +++ b/Gems/EMotionFX/Code/MCore/Source/AABB.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AbstractData.h b/Gems/EMotionFX/Code/MCore/Source/AbstractData.h index e6a580c721..0d786faeee 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AbstractData.h +++ b/Gems/EMotionFX/Code/MCore/Source/AbstractData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp b/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp index 6a7ad6b470..fe4c757238 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Algorithms.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Algorithms.h b/Gems/EMotionFX/Code/MCore/Source/Algorithms.h index 5e7df83ae6..7883ac426a 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Algorithms.h +++ b/Gems/EMotionFX/Code/MCore/Source/Algorithms.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Algorithms.inl b/Gems/EMotionFX/Code/MCore/Source/Algorithms.inl index 62540f9267..14dc47fbf2 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Algorithms.inl +++ b/Gems/EMotionFX/Code/MCore/Source/Algorithms.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AlignedArray.h b/Gems/EMotionFX/Code/MCore/Source/AlignedArray.h index 921c1c3ddd..c6657edb65 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AlignedArray.h +++ b/Gems/EMotionFX/Code/MCore/Source/AlignedArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Array.h b/Gems/EMotionFX/Code/MCore/Source/Array.h index f9ae7ff9b2..049e730f3e 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Array.h +++ b/Gems/EMotionFX/Code/MCore/Source/Array.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Array2D.h b/Gems/EMotionFX/Code/MCore/Source/Array2D.h index 53c13b5c7e..2872e9a74b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Array2D.h +++ b/Gems/EMotionFX/Code/MCore/Source/Array2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Array2D.inl b/Gems/EMotionFX/Code/MCore/Source/Array2D.inl index 0d814a0777..455e4aeb67 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Array2D.inl +++ b/Gems/EMotionFX/Code/MCore/Source/Array2D.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Attribute.cpp b/Gems/EMotionFX/Code/MCore/Source/Attribute.cpp index 7a9f3df056..b08e5086b5 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Attribute.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Attribute.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Attribute.h b/Gems/EMotionFX/Code/MCore/Source/Attribute.h index c520a3fd0e..6a37d6cd54 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Attribute.h +++ b/Gems/EMotionFX/Code/MCore/Source/Attribute.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.cpp b/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.cpp index a6396684e4..58e539ed02 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.h b/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.h index 3c2708c629..3a3aac1e41 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeBool.cpp b/Gems/EMotionFX/Code/MCore/Source/AttributeBool.cpp index 32ea8e4cfe..08981b83bf 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeBool.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeBool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeBool.h b/Gems/EMotionFX/Code/MCore/Source/AttributeBool.h index 2b23fd73df..90defccd0a 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeBool.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeBool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeColor.h b/Gems/EMotionFX/Code/MCore/Source/AttributeColor.h index 4d3be0a650..4ed13f7cd6 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeColor.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeColor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeCreateFunctions.cpp b/Gems/EMotionFX/Code/MCore/Source/AttributeCreateFunctions.cpp index 5de24599f9..fc56d3d3a8 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeCreateFunctions.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeCreateFunctions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.cpp b/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.cpp index d017181fc0..a3a33533dc 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.h b/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.h index 704fce407b..2e801edc17 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.cpp b/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.cpp index 879b3fdd8c..c143d5a78b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.h b/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.h index b5ab5fb5e0..cfb81bdb78 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeFloat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.cpp b/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.cpp index cba5f3b580..a8d5d8cf08 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.h b/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.h index 6e92462e2a..ad0f235920 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeInt32.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributePointer.h b/Gems/EMotionFX/Code/MCore/Source/AttributePointer.h index 851c8cfc7c..6323cfffc5 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributePointer.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributePointer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeQuaternion.h b/Gems/EMotionFX/Code/MCore/Source/AttributeQuaternion.h index 15564ea43e..1030189828 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeQuaternion.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeQuaternion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeString.h b/Gems/EMotionFX/Code/MCore/Source/AttributeString.h index 0b8a31b322..2487c862c0 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeString.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeString.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeVector2.h b/Gems/EMotionFX/Code/MCore/Source/AttributeVector2.h index e1bb761fca..475251fb01 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeVector2.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeVector2.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeVector3.h b/Gems/EMotionFX/Code/MCore/Source/AttributeVector3.h index 706acc168a..c11af6580d 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeVector3.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeVector3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AttributeVector4.h b/Gems/EMotionFX/Code/MCore/Source/AttributeVector4.h index a115bdd158..e851ad89cc 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AttributeVector4.h +++ b/Gems/EMotionFX/Code/MCore/Source/AttributeVector4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/AzCoreConversions.h b/Gems/EMotionFX/Code/MCore/Source/AzCoreConversions.h index d2cf268215..7060545640 100644 --- a/Gems/EMotionFX/Code/MCore/Source/AzCoreConversions.h +++ b/Gems/EMotionFX/Code/MCore/Source/AzCoreConversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.cpp b/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.cpp index 42c19a0711..bde3dd321d 100644 --- a/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.h b/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.h index 25381ec794..d7ed80b7f0 100644 --- a/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.h +++ b/Gems/EMotionFX/Code/MCore/Source/BoundingSphere.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Color.cpp b/Gems/EMotionFX/Code/MCore/Source/Color.cpp index 505767a638..da4a121199 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Color.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Color.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Color.h b/Gems/EMotionFX/Code/MCore/Source/Color.h index 7d4635f08a..af5e202350 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Color.h +++ b/Gems/EMotionFX/Code/MCore/Source/Color.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Command.cpp b/Gems/EMotionFX/Code/MCore/Source/Command.cpp index b4f6abf4df..f67e4e03a6 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Command.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Command.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Command.h b/Gems/EMotionFX/Code/MCore/Source/Command.h index e0998a2396..6069771aa2 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Command.h +++ b/Gems/EMotionFX/Code/MCore/Source/Command.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CommandGroup.cpp b/Gems/EMotionFX/Code/MCore/Source/CommandGroup.cpp index 7463d8f840..e16cfd0a9c 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CommandGroup.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/CommandGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CommandGroup.h b/Gems/EMotionFX/Code/MCore/Source/CommandGroup.h index 7246f22364..27b400d199 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CommandGroup.h +++ b/Gems/EMotionFX/Code/MCore/Source/CommandGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CommandLine.cpp b/Gems/EMotionFX/Code/MCore/Source/CommandLine.cpp index aa61dc92b9..a018a93e75 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CommandLine.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/CommandLine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CommandLine.h b/Gems/EMotionFX/Code/MCore/Source/CommandLine.h index 85dd47bad9..863dcb5faf 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CommandLine.h +++ b/Gems/EMotionFX/Code/MCore/Source/CommandLine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CommandManagerCallback.h b/Gems/EMotionFX/Code/MCore/Source/CommandManagerCallback.h index 776140df41..7602b77564 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CommandManagerCallback.h +++ b/Gems/EMotionFX/Code/MCore/Source/CommandManagerCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.cpp b/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.cpp index e9aadf3aff..db80e85a00 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.h b/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.h index 92ac9ec403..0655fa8d42 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.h +++ b/Gems/EMotionFX/Code/MCore/Source/CommandSyntax.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Compare.h b/Gems/EMotionFX/Code/MCore/Source/Compare.h index cedecace91..5fe4c7d6c6 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Compare.h +++ b/Gems/EMotionFX/Code/MCore/Source/Compare.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Compare.inl b/Gems/EMotionFX/Code/MCore/Source/Compare.inl index e7dd845a6c..71fdac2c8b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Compare.inl +++ b/Gems/EMotionFX/Code/MCore/Source/Compare.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.h b/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.h index 44fcd4cfc7..6c2425452b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.h +++ b/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.inl b/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.inl index 105e73a8a4..15e98aa561 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.inl +++ b/Gems/EMotionFX/Code/MCore/Source/CompressedFloat.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.h b/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.h index 2d5652cac6..56fdd461e1 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.h +++ b/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.inl b/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.inl index e25c536d62..c2be07f54a 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.inl +++ b/Gems/EMotionFX/Code/MCore/Source/CompressedQuaternion.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CompressedVector.h b/Gems/EMotionFX/Code/MCore/Source/CompressedVector.h index 1bcdd45b8f..082e9c4186 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CompressedVector.h +++ b/Gems/EMotionFX/Code/MCore/Source/CompressedVector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/CompressedVector.inl b/Gems/EMotionFX/Code/MCore/Source/CompressedVector.inl index fefa516e7a..d00de5c19b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/CompressedVector.inl +++ b/Gems/EMotionFX/Code/MCore/Source/CompressedVector.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Config.h b/Gems/EMotionFX/Code/MCore/Source/Config.h index a3c0aba4eb..0865bfe859 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Config.h +++ b/Gems/EMotionFX/Code/MCore/Source/Config.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.cpp b/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.cpp index 38326a91d0..1070053af6 100644 --- a/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.h b/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.h index 2f14ef02f2..699ed8eaa1 100644 --- a/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.h +++ b/Gems/EMotionFX/Code/MCore/Source/DelaunayTriangulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/DiskFile.cpp b/Gems/EMotionFX/Code/MCore/Source/DiskFile.cpp index 19eec217db..4eca4362a8 100644 --- a/Gems/EMotionFX/Code/MCore/Source/DiskFile.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/DiskFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/DiskFile.h b/Gems/EMotionFX/Code/MCore/Source/DiskFile.h index 2da807f088..a96a2a35c4 100644 --- a/Gems/EMotionFX/Code/MCore/Source/DiskFile.h +++ b/Gems/EMotionFX/Code/MCore/Source/DiskFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Distance.cpp b/Gems/EMotionFX/Code/MCore/Source/Distance.cpp index ac441428a5..8f5982f0e4 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Distance.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Distance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Distance.h b/Gems/EMotionFX/Code/MCore/Source/Distance.h index 02ef8c00bc..60156d332b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Distance.h +++ b/Gems/EMotionFX/Code/MCore/Source/Distance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.cpp b/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.cpp index c04aececf5..b253a79c57 100644 --- a/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.h b/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.h index 8f7470c279..3e90f60927 100644 --- a/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.h +++ b/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.inl b/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.inl index 6cfeee8ca1..61bfefb780 100644 --- a/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.inl +++ b/Gems/EMotionFX/Code/MCore/Source/DualQuaternion.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Endian.h b/Gems/EMotionFX/Code/MCore/Source/Endian.h index 79d1e95c22..cf858cbff1 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Endian.h +++ b/Gems/EMotionFX/Code/MCore/Source/Endian.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Endian.inl b/Gems/EMotionFX/Code/MCore/Source/Endian.inl index 47cada1f38..5a97ae4ddc 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Endian.inl +++ b/Gems/EMotionFX/Code/MCore/Source/Endian.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/FastMath.cpp b/Gems/EMotionFX/Code/MCore/Source/FastMath.cpp index 6cb9c0f08e..4a0a82be10 100644 --- a/Gems/EMotionFX/Code/MCore/Source/FastMath.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/FastMath.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/FastMath.h b/Gems/EMotionFX/Code/MCore/Source/FastMath.h index f6f137bfac..25a7c98869 100644 --- a/Gems/EMotionFX/Code/MCore/Source/FastMath.h +++ b/Gems/EMotionFX/Code/MCore/Source/FastMath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/FastMath.inl b/Gems/EMotionFX/Code/MCore/Source/FastMath.inl index 3841681bcd..bb969c23a1 100644 --- a/Gems/EMotionFX/Code/MCore/Source/FastMath.inl +++ b/Gems/EMotionFX/Code/MCore/Source/FastMath.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/File.h b/Gems/EMotionFX/Code/MCore/Source/File.h index e8e547c7f8..ad8d89f470 100644 --- a/Gems/EMotionFX/Code/MCore/Source/File.h +++ b/Gems/EMotionFX/Code/MCore/Source/File.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/FileSystem.cpp b/Gems/EMotionFX/Code/MCore/Source/FileSystem.cpp index d11e467a72..27a1d8e295 100644 --- a/Gems/EMotionFX/Code/MCore/Source/FileSystem.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/FileSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/FileSystem.h b/Gems/EMotionFX/Code/MCore/Source/FileSystem.h index adf7df91c7..39a0d4103d 100644 --- a/Gems/EMotionFX/Code/MCore/Source/FileSystem.h +++ b/Gems/EMotionFX/Code/MCore/Source/FileSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/HashFunctions.h b/Gems/EMotionFX/Code/MCore/Source/HashFunctions.h index 70ec15733d..311f164945 100644 --- a/Gems/EMotionFX/Code/MCore/Source/HashFunctions.h +++ b/Gems/EMotionFX/Code/MCore/Source/HashFunctions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/HashTable.h b/Gems/EMotionFX/Code/MCore/Source/HashTable.h index 73db3b8834..eb631cb12d 100644 --- a/Gems/EMotionFX/Code/MCore/Source/HashTable.h +++ b/Gems/EMotionFX/Code/MCore/Source/HashTable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/HashTable.inl b/Gems/EMotionFX/Code/MCore/Source/HashTable.inl index 4f2aae6264..578911930d 100644 --- a/Gems/EMotionFX/Code/MCore/Source/HashTable.inl +++ b/Gems/EMotionFX/Code/MCore/Source/HashTable.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/IDGenerator.cpp b/Gems/EMotionFX/Code/MCore/Source/IDGenerator.cpp index 08f1e91b54..8d34d9b37e 100644 --- a/Gems/EMotionFX/Code/MCore/Source/IDGenerator.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/IDGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/IDGenerator.h b/Gems/EMotionFX/Code/MCore/Source/IDGenerator.h index bcadda4158..225313e1a3 100644 --- a/Gems/EMotionFX/Code/MCore/Source/IDGenerator.h +++ b/Gems/EMotionFX/Code/MCore/Source/IDGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/LogManager.cpp b/Gems/EMotionFX/Code/MCore/Source/LogManager.cpp index b198a8c1db..e7c38bb73a 100644 --- a/Gems/EMotionFX/Code/MCore/Source/LogManager.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/LogManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/LogManager.h b/Gems/EMotionFX/Code/MCore/Source/LogManager.h index 503429d036..06b11dbf7f 100644 --- a/Gems/EMotionFX/Code/MCore/Source/LogManager.h +++ b/Gems/EMotionFX/Code/MCore/Source/LogManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.cpp b/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.cpp index 53d97b150e..1b82c48981 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.h b/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.h index 9fe2a7e5be..2b447ca4e8 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.h +++ b/Gems/EMotionFX/Code/MCore/Source/MCoreCommandManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.cpp b/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.cpp index f4e85e6b70..2f2a3359cd 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.h b/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.h index b55271960a..e8120a66a9 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.h +++ b/Gems/EMotionFX/Code/MCore/Source/MCoreSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Macros.h b/Gems/EMotionFX/Code/MCore/Source/Macros.h index 6c9d92f8c8..a2a115eda7 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Macros.h +++ b/Gems/EMotionFX/Code/MCore/Source/Macros.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Matrix4.cpp b/Gems/EMotionFX/Code/MCore/Source/Matrix4.cpp index 3bc2ac7b51..0436d79dfd 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Matrix4.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Matrix4.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Matrix4.h b/Gems/EMotionFX/Code/MCore/Source/Matrix4.h index 59cc8c4b75..0a4650c187 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Matrix4.h +++ b/Gems/EMotionFX/Code/MCore/Source/Matrix4.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Matrix4.inl b/Gems/EMotionFX/Code/MCore/Source/Matrix4.inl index f100c4f394..da3d1e274b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Matrix4.inl +++ b/Gems/EMotionFX/Code/MCore/Source/Matrix4.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryCategoriesCore.h b/Gems/EMotionFX/Code/MCore/Source/MemoryCategoriesCore.h index eb17de3ca1..672e3a5f4b 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryCategoriesCore.h +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryCategoriesCore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryFile.cpp b/Gems/EMotionFX/Code/MCore/Source/MemoryFile.cpp index bc4c38221c..f7c3d9dd0f 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryFile.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryFile.h b/Gems/EMotionFX/Code/MCore/Source/MemoryFile.h index 86db94e243..2bfab3dd65 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryFile.h +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryFile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryManager.cpp b/Gems/EMotionFX/Code/MCore/Source/MemoryManager.cpp index 4102a6cf95..14cc1168c4 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryManager.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryManager.h b/Gems/EMotionFX/Code/MCore/Source/MemoryManager.h index facb519587..233195f552 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryManager.h +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryObject.cpp b/Gems/EMotionFX/Code/MCore/Source/MemoryObject.cpp index 247f488bc1..4e3130defb 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryObject.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryObject.h b/Gems/EMotionFX/Code/MCore/Source/MemoryObject.h index 3eec186b1d..a3e77d6dd5 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryObject.h +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.cpp b/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.cpp index af2dd9a8c7..6f206229ae 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.h b/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.h index 00386a2ff4..967cca1de9 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.h +++ b/Gems/EMotionFX/Code/MCore/Source/MemoryTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/MultiThreadManager.h b/Gems/EMotionFX/Code/MCore/Source/MultiThreadManager.h index e84cdcfe5b..27755dddbb 100644 --- a/Gems/EMotionFX/Code/MCore/Source/MultiThreadManager.h +++ b/Gems/EMotionFX/Code/MCore/Source/MultiThreadManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/OBB.cpp b/Gems/EMotionFX/Code/MCore/Source/OBB.cpp index 2ae27fcb1f..8ee36f5c7f 100644 --- a/Gems/EMotionFX/Code/MCore/Source/OBB.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/OBB.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/OBB.h b/Gems/EMotionFX/Code/MCore/Source/OBB.h index db06cf6279..a3e29ceae1 100644 --- a/Gems/EMotionFX/Code/MCore/Source/OBB.h +++ b/Gems/EMotionFX/Code/MCore/Source/OBB.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/OBB.inl b/Gems/EMotionFX/Code/MCore/Source/OBB.inl index 21ea02bb45..25e08f0ef3 100644 --- a/Gems/EMotionFX/Code/MCore/Source/OBB.inl +++ b/Gems/EMotionFX/Code/MCore/Source/OBB.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/PlaneEq.cpp b/Gems/EMotionFX/Code/MCore/Source/PlaneEq.cpp index 3cd864fe22..e80ad51387 100644 --- a/Gems/EMotionFX/Code/MCore/Source/PlaneEq.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/PlaneEq.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/PlaneEq.h b/Gems/EMotionFX/Code/MCore/Source/PlaneEq.h index eb68bf750a..1d788379ae 100644 --- a/Gems/EMotionFX/Code/MCore/Source/PlaneEq.h +++ b/Gems/EMotionFX/Code/MCore/Source/PlaneEq.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/PlaneEq.inl b/Gems/EMotionFX/Code/MCore/Source/PlaneEq.inl index eb46ade7bd..daeabd76ad 100644 --- a/Gems/EMotionFX/Code/MCore/Source/PlaneEq.inl +++ b/Gems/EMotionFX/Code/MCore/Source/PlaneEq.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Quaternion.cpp b/Gems/EMotionFX/Code/MCore/Source/Quaternion.cpp index c260863efd..f00ece7b12 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Quaternion.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Quaternion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Quaternion.h b/Gems/EMotionFX/Code/MCore/Source/Quaternion.h index 7482e450ce..9fbe8ddd4a 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Quaternion.h +++ b/Gems/EMotionFX/Code/MCore/Source/Quaternion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Quaternion.inl b/Gems/EMotionFX/Code/MCore/Source/Quaternion.inl index 6c7803b28c..62cafdc383 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Quaternion.inl +++ b/Gems/EMotionFX/Code/MCore/Source/Quaternion.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Random.cpp b/Gems/EMotionFX/Code/MCore/Source/Random.cpp index 411f319710..6a5f891152 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Random.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Random.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Random.h b/Gems/EMotionFX/Code/MCore/Source/Random.h index a01fbbb3c0..6a51f50192 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Random.h +++ b/Gems/EMotionFX/Code/MCore/Source/Random.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Ray.cpp b/Gems/EMotionFX/Code/MCore/Source/Ray.cpp index acd1385ede..1d60078a5e 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Ray.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/Ray.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Ray.h b/Gems/EMotionFX/Code/MCore/Source/Ray.h index 0f9816be1e..5a90875908 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Ray.h +++ b/Gems/EMotionFX/Code/MCore/Source/Ray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.cpp b/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.cpp index 5e90bf0045..3a8690c4e5 100644 --- a/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.h b/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.h index b15294b7c1..19ef90f8bc 100644 --- a/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.h +++ b/Gems/EMotionFX/Code/MCore/Source/ReflectionSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/SmallArray.h b/Gems/EMotionFX/Code/MCore/Source/SmallArray.h index 66bd827258..28522fab09 100644 --- a/Gems/EMotionFX/Code/MCore/Source/SmallArray.h +++ b/Gems/EMotionFX/Code/MCore/Source/SmallArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StandardHeaders.h b/Gems/EMotionFX/Code/MCore/Source/StandardHeaders.h index 56f85b2201..b408f3dc4e 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StandardHeaders.h +++ b/Gems/EMotionFX/Code/MCore/Source/StandardHeaders.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.cpp b/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.cpp index 204de39c0e..538337e9b7 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.h b/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.h index 119e52d6c9..4f4c7e6644 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.h +++ b/Gems/EMotionFX/Code/MCore/Source/StaticAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StaticString.h b/Gems/EMotionFX/Code/MCore/Source/StaticString.h index dbb89e2a5e..2bf8725c98 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StaticString.h +++ b/Gems/EMotionFX/Code/MCore/Source/StaticString.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Stream.h b/Gems/EMotionFX/Code/MCore/Source/Stream.h index 8b6137ec70..7b1a882fb1 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Stream.h +++ b/Gems/EMotionFX/Code/MCore/Source/Stream.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp b/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp index 88180fd4a6..a95ed3dee2 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/StringConversions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StringConversions.h b/Gems/EMotionFX/Code/MCore/Source/StringConversions.h index 4e5097aa24..d33a4a945e 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StringConversions.h +++ b/Gems/EMotionFX/Code/MCore/Source/StringConversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StringIdPool.cpp b/Gems/EMotionFX/Code/MCore/Source/StringIdPool.cpp index eef8f224d6..c771c631a5 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StringIdPool.cpp +++ b/Gems/EMotionFX/Code/MCore/Source/StringIdPool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/StringIdPool.h b/Gems/EMotionFX/Code/MCore/Source/StringIdPool.h index 971b6685fb..0f3f29b009 100644 --- a/Gems/EMotionFX/Code/MCore/Source/StringIdPool.h +++ b/Gems/EMotionFX/Code/MCore/Source/StringIdPool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/TriangleListOptimizer.h b/Gems/EMotionFX/Code/MCore/Source/TriangleListOptimizer.h index 507cf74cb1..d31fe41598 100644 --- a/Gems/EMotionFX/Code/MCore/Source/TriangleListOptimizer.h +++ b/Gems/EMotionFX/Code/MCore/Source/TriangleListOptimizer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/Source/Vector.h b/Gems/EMotionFX/Code/MCore/Source/Vector.h index 28f4b8a8b1..fe34182791 100644 --- a/Gems/EMotionFX/Code/MCore/Source/Vector.h +++ b/Gems/EMotionFX/Code/MCore/Source/Vector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MCore/mcore_files.cmake b/Gems/EMotionFX/Code/MCore/mcore_files.cmake index 0171d27175..ac588d59a6 100644 --- a/Gems/EMotionFX/Code/MCore/mcore_files.cmake +++ b/Gems/EMotionFX/Code/MCore/mcore_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp index d6714da05c..28b6667fcf 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp +++ b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h index daff33ffae..d3512c1021 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h +++ b/Gems/EMotionFX/Code/MysticQt/Source/DialogStack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.cpp b/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.cpp index 727372daeb..f2814a5d80 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.cpp +++ b/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.h b/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.h index 80ef8cc6fb..dd3e9d3e5a 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.h +++ b/Gems/EMotionFX/Code/MysticQt/Source/KeyboardShortcutManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/MysticQtConfig.h b/Gems/EMotionFX/Code/MysticQt/Source/MysticQtConfig.h index db42673ee8..65e5042549 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/MysticQtConfig.h +++ b/Gems/EMotionFX/Code/MysticQt/Source/MysticQtConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.cpp b/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.cpp index 472fb0677e..005e1ff07b 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.cpp +++ b/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.h b/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.h index b0e08fa130..850a7db0f4 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.h +++ b/Gems/EMotionFX/Code/MysticQt/Source/MysticQtManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.cpp b/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.cpp index d4af4aab45..0e975d026c 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.cpp +++ b/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.h b/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.h index d145089fa2..02959e82a6 100644 --- a/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.h +++ b/Gems/EMotionFX/Code/MysticQt/Source/RecentFiles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/MysticQt/mysticqt_files.cmake b/Gems/EMotionFX/Code/MysticQt/mysticqt_files.cmake index 7fe6b8654d..eb82993ad6 100644 --- a/Gems/EMotionFX/Code/MysticQt/mysticqt_files.cmake +++ b/Gems/EMotionFX/Code/MysticQt/mysticqt_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Android.h b/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Android.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Android.h +++ b/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Platform.h index 8c6415e30e..64add412b1 100644 --- a/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Platform/Android/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Android/platform_android.cmake b/Gems/EMotionFX/Code/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/EMotionFX/Code/Platform/Android/platform_android.cmake +++ b/Gems/EMotionFX/Code/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Android/platform_android_files.cmake b/Gems/EMotionFX/Code/Platform/Android/platform_android_files.cmake index 897d1b3d6b..baeed2321f 100644 --- a/Gems/EMotionFX/Code/Platform/Android/platform_android_files.cmake +++ b/Gems/EMotionFX/Code/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Common/FileOffsetType/MCore/Source/DiskFile_FileOffsetType.cpp b/Gems/EMotionFX/Code/Platform/Common/FileOffsetType/MCore/Source/DiskFile_FileOffsetType.cpp index 73eda994cb..47c57bd137 100644 --- a/Gems/EMotionFX/Code/Platform/Common/FileOffsetType/MCore/Source/DiskFile_FileOffsetType.cpp +++ b/Gems/EMotionFX/Code/Platform/Common/FileOffsetType/MCore/Source/DiskFile_FileOffsetType.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Common/WinAPI/MCore/Source/DiskFile_WinAPI.cpp b/Gems/EMotionFX/Code/Platform/Common/WinAPI/MCore/Source/DiskFile_WinAPI.cpp index 6cb359dd8b..b784a8943b 100644 --- a/Gems/EMotionFX/Code/Platform/Common/WinAPI/MCore/Source/DiskFile_WinAPI.cpp +++ b/Gems/EMotionFX/Code/Platform/Common/WinAPI/MCore/Source/DiskFile_WinAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Linux.h b/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Linux.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Linux.h +++ b/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Platform.h index 9a0fe548d3..ce9d5b4cc3 100644 --- a/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Platform/Linux/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Linux/platform_linux.cmake b/Gems/EMotionFX/Code/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/EMotionFX/Code/Platform/Linux/platform_linux.cmake +++ b/Gems/EMotionFX/Code/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Linux/platform_linux_files.cmake b/Gems/EMotionFX/Code/Platform/Linux/platform_linux_files.cmake index 897d1b3d6b..baeed2321f 100644 --- a/Gems/EMotionFX/Code/Platform/Linux/platform_linux_files.cmake +++ b/Gems/EMotionFX/Code/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Mac.h b/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Mac.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Mac.h +++ b/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Platform.h index ab5b209253..b2209cdc80 100644 --- a/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Platform/Mac/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Mac/platform_mac.cmake b/Gems/EMotionFX/Code/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/EMotionFX/Code/Platform/Mac/platform_mac.cmake +++ b/Gems/EMotionFX/Code/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Mac/platform_mac_files.cmake b/Gems/EMotionFX/Code/Platform/Mac/platform_mac_files.cmake index 897d1b3d6b..baeed2321f 100644 --- a/Gems/EMotionFX/Code/Platform/Mac/platform_mac_files.cmake +++ b/Gems/EMotionFX/Code/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Platform.h index 9571083712..fba200e907 100644 --- a/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Windows.h b/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Windows.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Windows.h +++ b/Gems/EMotionFX/Code/Platform/Windows/EMotionFX_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/Windows/platform_windows.cmake b/Gems/EMotionFX/Code/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/EMotionFX/Code/Platform/Windows/platform_windows.cmake +++ b/Gems/EMotionFX/Code/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/Windows/platform_windows_files.cmake b/Gems/EMotionFX/Code/Platform/Windows/platform_windows_files.cmake index cfdb7ea449..aac92b38c8 100644 --- a/Gems/EMotionFX/Code/Platform/Windows/platform_windows_files.cmake +++ b/Gems/EMotionFX/Code/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_Platform.h b/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_Platform.h index 7be159dae3..0e2d3c5198 100644 --- a/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_Platform.h +++ b/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_iOS.h b/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_iOS.h index 7f7ea5181a..8e79c044b5 100644 --- a/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_iOS.h +++ b/Gems/EMotionFX/Code/Platform/iOS/EMotionFX_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Platform/iOS/platform_ios.cmake b/Gems/EMotionFX/Code/Platform/iOS/platform_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/EMotionFX/Code/Platform/iOS/platform_ios.cmake +++ b/Gems/EMotionFX/Code/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Platform/iOS/platform_ios_files.cmake b/Gems/EMotionFX/Code/Platform/iOS/platform_ios_files.cmake index 897d1b3d6b..baeed2321f 100644 --- a/Gems/EMotionFX/Code/Platform/iOS/platform_ios_files.cmake +++ b/Gems/EMotionFX/Code/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Source/EMotionFX_precompiled.h b/Gems/EMotionFX/Code/Source/EMotionFX_precompiled.h index b6a7fecad2..6416d94c41 100644 --- a/Gems/EMotionFX/Code/Source/EMotionFX_precompiled.h +++ b/Gems/EMotionFX/Code/Source/EMotionFX_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ActorEditorBus.h b/Gems/EMotionFX/Code/Source/Editor/ActorEditorBus.h index 9761328ebe..c11efcf86b 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ActorEditorBus.h +++ b/Gems/EMotionFX/Code/Source/Editor/ActorEditorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.cpp b/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.cpp index be1906609f..277a0350d9 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.h b/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.h index ed20a5acca..e9642ca36b 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.h +++ b/Gems/EMotionFX/Code/Source/Editor/ActorJointBrowseEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/AnimGraphEditorBus.h b/Gems/EMotionFX/Code/Source/Editor/AnimGraphEditorBus.h index cd781e8ea5..3463c4069a 100644 --- a/Gems/EMotionFX/Code/Source/Editor/AnimGraphEditorBus.h +++ b/Gems/EMotionFX/Code/Source/Editor/AnimGraphEditorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.cpp index 00904da266..b751f18c62 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.h b/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.h index 8bd339a0f5..227df80a1a 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/ColliderContainerWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.cpp b/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.cpp index f6f94dd1d9..15b51713d0 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.h b/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.h index ecab2ff749..04d5749180 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.h +++ b/Gems/EMotionFX/Code/Source/Editor/ColliderHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.cpp b/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.cpp index 494cfa6fe5..101dc1799e 100644 --- a/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.h b/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.h index eb325c55b6..63f50e55a2 100644 --- a/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.h +++ b/Gems/EMotionFX/Code/Source/Editor/InputDialogValidatable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.cpp b/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.cpp index db414a3a33..8d41260390 100644 --- a/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.h b/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.h index 975e51bdf8..f668d9aaba 100644 --- a/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.h +++ b/Gems/EMotionFX/Code/Source/Editor/JointSelectionDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.cpp index 9b3f11e418..c8ac20427e 100644 --- a/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.h b/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.h index c80b4504ef..4a76016574 100644 --- a/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/JointSelectionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.cpp b/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.cpp index ff3d0d5650..10b05c4efd 100644 --- a/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.h b/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.h index 21a8d058c7..1616d7bc2f 100644 --- a/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.h +++ b/Gems/EMotionFX/Code/Source/Editor/LineEditValidatable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.cpp index 6b75491bdd..87e45d4cf2 100644 --- a/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.h b/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.h index 67d92463d8..df49e074b9 100644 --- a/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/NotificationWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.cpp b/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.cpp index b0f17076e0..848206bf44 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.h b/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.h index 9ba04db7b9..5dd0263146 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.h +++ b/Gems/EMotionFX/Code/Source/Editor/ObjectEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp index 18fbb9f2d8..4e966ec1bb 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.h index 43870eb7c8..f8dafd01d8 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointInspectorPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.cpp index 0836b301a3..3d70c912af 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.h index f994065c62..ddd75357fa 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Cloth/ClothJointWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp index e30b6542c3..9e0b3258a2 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.h index 4433e70188..51cd828e22 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointInspectorPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.cpp index d1a172ebb5..af280f7010 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.h index ee9c91d469..81b8dc1a0f 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/HitDetection/HitDetectionJointWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.cpp index f4e8be4710..27b433b929 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.h index 612f4de8a8..97ec647a92 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollJointLimitWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp index dc6103d32c..405faca6bb 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.h index 2b44097f0f..fabcee71a5 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeInspectorPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.cpp index 85dd3870e9..5331bbc57f 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.h index 91d0088ce8..2bfb606b63 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/Ragdoll/RagdollNodeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp index 5bb1778e1c..8e745c2657 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.h index 9f0d07f285..731bc98e5d 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedJointWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.cpp index 0de2f0c638..fade950005 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.h index 2fa3c2af53..8251d7dc46 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectActionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.cpp index 07d2eb288f..ad7ed548ce 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.h index 2bf0c4f38a..f25df30c6f 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectColliderWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.cpp index 492cdfef56..21ef2ec7f4 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.h index 9f72455124..5eebdadd45 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.cpp index b098a1c3ff..57de2344cc 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.h index 0a73950165..7030c8ab9a 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectSelectionWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp index 0a32f2254a..87dc574818 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.h index 127ff495f5..e14ee9143d 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SimulatedObject/SimulatedObjectWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerBus.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerBus.h index 7f8bdb0c20..11016a8694 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerBus.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.cpp b/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.cpp index f72af7b00b..01656b58cc 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.h b/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.h index 184d31a248..3bfb86ab95 100644 --- a/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.h +++ b/Gems/EMotionFX/Code/Source/Editor/Plugins/SkeletonOutliner/SkeletonOutlinerPlugin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.cpp index 8fd58a31f2..87a2c467f3 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.h index 28bab88fe9..807c7755fa 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorGoalNodeHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.cpp index 224d76adf1..487cec5ce9 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.h index bf1936aa03..b8341f45b7 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorJointHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.cpp index 2973eea2a1..6c6c837b33 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.h index 6b3a6dc123..dad84741b9 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/ActorMorphTargetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.cpp index 80d977ab6a..59a951e081 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.h index e3dca960c7..cb893d1d61 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.cpp index 8a1bbf0608..87da127541 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.h index 9d72dffbc7..871694d769 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphNodeNameHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.cpp index c2274bb24e..aaa55f9a0f 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.h index f610665570..844e7c6ae9 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.cpp index ab62935239..978bf97578 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.h index 451284b9b0..0bc77e86aa 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphParameterMaskHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.cpp index 0a3fff1fcf..f27ac9d019 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.h index f616aa1663..6c2497c53b 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTagHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp index f869640fb7..6564dbde08 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.h index 2c290a5b82..59d055af7d 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/AnimGraphTransitionHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.cpp index 0c82e10284..bd36826e50 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.h index 89aed5baea..46c56ee604 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendNParamWeightsHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.cpp index 95afe20f6f..02c4a74f2d 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.h index f9810e2720..2c63a18e66 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceEvaluatorHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.cpp index 52152c0fa0..71fb8b330e 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.h index f9150bf8ff..0ba3b872f3 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionContainerHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.cpp index 8f088ed155..fee29379a6 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.h index 4c0131f531..b4d6534e58 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendSpaceMotionHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.cpp index 0041811a13..a6371a6b72 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.h index 6bfc23cea6..78e0cbd719 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/BlendTreeRotationLimitHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.cpp index 55acb9e6ca..dab047aaa3 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.h index 17e68eab0b..25f7950578 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/EventDataHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.cpp index 97e696ad99..64a3300752 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.h index 3edbbc5787..fa8fa76ecb 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODSceneGraphWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.cpp index 0020c76fe2..12fd95aab8 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.h index e20b7be3a2..fb9977dae0 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.cpp index e7f75cba25..2333f3c18d 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.h index 594a5e6bc7..32c6481f05 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/LODTreeSelectionWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp index f53567494b..e3dbe7efb4 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.h index b1bb93e49b..d5d0bd2ff7 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.cpp index d3d25765c2..2bddc67a1a 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.h index ceca274854..ea821869c6 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetMotionIdHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.cpp index 0d6a1a58b1..ee9c206cee 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.h index e9ddc08af8..90853403ae 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionSetNameHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.cpp index e52f88e718..11fd7f996e 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.h index fb9b1c62de..7ddcaae30c 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyWidgetAllocator.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyWidgetAllocator.h index 4cc7e00829..49bb4895ed 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyWidgetAllocator.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/PropertyWidgetAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.cpp index d96bf24078..6b8a0a412b 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.h index b89c8ae51e..4003bc5bf5 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/RagdollJointHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.cpp index b6d46b1c60..2c33a3a383 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.h index 610a8430a9..daff46f720 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectColliderTagHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.cpp index 8c3a3b1353..07cf98249e 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.h index 2be270babe..ec516d6c49 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectNameHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.cpp index c1aced30e1..1634e2363b 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.h index 6555d06770..6d541a852f 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/SimulatedObjectSelectionHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.cpp index 4c7700179a..7d3a9382cc 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.h b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.h index d108320b78..a6421e6286 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.h +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/TransitionStateFilterLocalHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/QtMetaTypes.h b/Gems/EMotionFX/Code/Source/Editor/QtMetaTypes.h index 9e9a2ce13b..30f7adfdea 100644 --- a/Gems/EMotionFX/Code/Source/Editor/QtMetaTypes.h +++ b/Gems/EMotionFX/Code/Source/Editor/QtMetaTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.cpp b/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.cpp index d574b4997e..cb1f51fa35 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.h b/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.h index af07759166..ad6c47d0cc 100644 --- a/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.h +++ b/Gems/EMotionFX/Code/Source/Editor/ReselectingTreeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.cpp b/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.cpp index faa1948f1d..e911eb6d08 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.h b/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.h index 95a0d79fc7..3f2f25ab17 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.h +++ b/Gems/EMotionFX/Code/Source/Editor/SelectionProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectBus.h b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectBus.h index 5dc2544ed2..e438608a83 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectBus.h +++ b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.cpp b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.cpp index e3eb0f4aee..b820c7dd29 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.h b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.h index 1384621b98..31b4a95fea 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.h +++ b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.cpp b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.cpp index bb4fa21d1e..72902f7999 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.h b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.h index d75234b662..cb95c5e776 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.h +++ b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModelCallbacks.cpp b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModelCallbacks.cpp index ff737cdb21..7a4a0f57be 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModelCallbacks.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/SimulatedObjectModelCallbacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.cpp b/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.cpp index 444a1f2f6e..cd0f72d373 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.h b/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.h index 05fa9011d7..5f62d9ec91 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.h +++ b/Gems/EMotionFX/Code/Source/Editor/SkeletonModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.cpp b/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.cpp index f863924f25..97cdb2286e 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.h b/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.h index c11f982fef..ac51a5f5be 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.h +++ b/Gems/EMotionFX/Code/Source/Editor/SkeletonModelJointWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.cpp b/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.cpp index 097015e05e..e5f8909ecd 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.h b/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.h index 939ac668a7..75ef1b9eb0 100644 --- a/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.h +++ b/Gems/EMotionFX/Code/Source/Editor/SkeletonSortFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/TagSelector.cpp b/Gems/EMotionFX/Code/Source/Editor/TagSelector.cpp index f0f9a7da95..8b39d3c443 100644 --- a/Gems/EMotionFX/Code/Source/Editor/TagSelector.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/TagSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/TagSelector.h b/Gems/EMotionFX/Code/Source/Editor/TagSelector.h index 20ad573274..cd324740cb 100644 --- a/Gems/EMotionFX/Code/Source/Editor/TagSelector.h +++ b/Gems/EMotionFX/Code/Source/Editor/TagSelector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.cpp b/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.cpp index 6ac3bc4d20..8f3568fd93 100644 --- a/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.h b/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.h index d797e46313..bd6959ad9b 100644 --- a/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.h +++ b/Gems/EMotionFX/Code/Source/Editor/TypeChoiceButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.cpp b/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.cpp index 69cccace81..66b0ff1d82 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.h b/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.h index 2f18a166d2..6dbc011803 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.h +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/ActorAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp b/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp index 0712558542..8955d714d5 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.h b/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.h index 49a4afc400..d023b2f222 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.h +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/AnimGraphAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/AssetCommon.h b/Gems/EMotionFX/Code/Source/Integration/Assets/AssetCommon.h index 0737862ab0..169de4c405 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/AssetCommon.h +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/AssetCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp index a8b0221e6f..e4013aed7c 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.h b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.h index 3a6170eaae..4a5232f2d7 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.h +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp index 47003a3d9f..e988fd9b46 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.h b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.h index c95abfe719..808ebf5fe2 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.h +++ b/Gems/EMotionFX/Code/Source/Integration/Assets/MotionSetAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp index 66c7ff3570..c444a922ec 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.h b/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.h index f7d2ec31b7..d1e656ae1b 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Components/ActorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp index 508aee6791..d9cfe881d8 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h index f87a1bc995..0c14a6f585 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Components/AnimAudioComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp index 3b04eff11f..81c445f99f 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.h b/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.h index 9a743426be..76e4742e60 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Components/AnimGraphComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp index ebf125f6ce..5ea88f2c7b 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.h b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.h index 763a0296b2..1c4597c790 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleLODComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp index 1f537b70d9..6287d2ddb8 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.h b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.h index 480c733e76..d27d0e2b46 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Components/SimpleMotionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp index d5ae23ca5a..365bf2642b 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h index d216938357..6d7d876954 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp index 04af8e8d7d..e0c79aeb77 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.h b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.h index a2e80c5953..d6e9483bc3 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimAudioComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp index 0573ac0ced..4e8f743fe9 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.h b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.h index 622b120eea..cba01730bb 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorAnimGraphComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp index 6f0280ab07..65deb8f928 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.h b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.h index 37a13a50b9..fec8d65a3f 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleLODComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp index 0ca7248f26..3398b954e4 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.h b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.h index 5c4c01072e..6eec960968 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorSimpleMotionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.cpp b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.cpp index 1decb2d0a5..28c0663f8f 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.h b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.h index b64f86fd0e..b661835525 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.h +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.cpp b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.cpp index 55515d8e09..29955e7e2c 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.h b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.h index fb5d88038e..78afa5a049 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.h +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderActorInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.cpp b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.cpp index 3891da64df..86fd87247b 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.h b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.h index 7db219bc53..94dbdff500 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.h +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackend.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.cpp b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.cpp index 7b545b2813..d557e5343c 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.h b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.h index f63991f0ea..9325abed1c 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.h +++ b/Gems/EMotionFX/Code/Source/Integration/Rendering/RenderBackendManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp b/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp index 923fe8ef00..e2f74fe0cd 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/System/AnimationModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/CVars.h b/Gems/EMotionFX/Code/Source/Integration/System/CVars.h index 406a0ba75f..a8f802b7dc 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/CVars.h +++ b/Gems/EMotionFX/Code/Source/Integration/System/CVars.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.cpp index 12c72f28db..dbfa22f083 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.h b/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.h index d8b4ccb2fc..5f591aac8a 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/System/PipelineComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/SystemCommon.h b/Gems/EMotionFX/Code/Source/Integration/System/SystemCommon.h index 550c7406df..6196e67297 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/SystemCommon.h +++ b/Gems/EMotionFX/Code/Source/Integration/System/SystemCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp index 0c227302d6..131ff2ff7c 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.h b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.h index 3cc94d1c72..7b40bd7b9c 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Source/Integration/System/emotionfx_module_files.cmake b/Gems/EMotionFX/Code/Source/Integration/System/emotionfx_module_files.cmake index c21401a5b2..73ed142e99 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/emotionfx_module_files.cmake +++ b/Gems/EMotionFX/Code/Source/Integration/System/emotionfx_module_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/Tests/ActorBuilderTests.cpp b/Gems/EMotionFX/Code/Tests/ActorBuilderTests.cpp index a1340715e8..ba22cf1038 100644 --- a/Gems/EMotionFX/Code/Tests/ActorBuilderTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ActorBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ActorBusTests.cpp b/Gems/EMotionFX/Code/Tests/ActorBusTests.cpp index 261b55f8ea..2e3bf424b9 100644 --- a/Gems/EMotionFX/Code/Tests/ActorBusTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ActorBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ActorComponentBusTests.cpp b/Gems/EMotionFX/Code/Tests/ActorComponentBusTests.cpp index 4ccc565985..02158819df 100644 --- a/Gems/EMotionFX/Code/Tests/ActorComponentBusTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ActorComponentBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ActorFixture.cpp b/Gems/EMotionFX/Code/Tests/ActorFixture.cpp index bcb85adcda..1c2367146c 100644 --- a/Gems/EMotionFX/Code/Tests/ActorFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/ActorFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ActorFixture.h b/Gems/EMotionFX/Code/Tests/ActorFixture.h index 0a0d3f048f..f97b304226 100644 --- a/Gems/EMotionFX/Code/Tests/ActorFixture.h +++ b/Gems/EMotionFX/Code/Tests/ActorFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ActorInstanceCommandTests.cpp b/Gems/EMotionFX/Code/Tests/ActorInstanceCommandTests.cpp index 4ee960ce00..9f18e2d44d 100644 --- a/Gems/EMotionFX/Code/Tests/ActorInstanceCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ActorInstanceCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AdditiveMotionSamplingTests.cpp b/Gems/EMotionFX/Code/Tests/AdditiveMotionSamplingTests.cpp index 57d588bbfa..298e406a66 100644 --- a/Gems/EMotionFX/Code/Tests/AdditiveMotionSamplingTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AdditiveMotionSamplingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimAudioComponentTests.cpp b/Gems/EMotionFX/Code/Tests/AnimAudioComponentTests.cpp index d5344a0cda..3baffc40b0 100644 --- a/Gems/EMotionFX/Code/Tests/AnimAudioComponentTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimAudioComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphActionCommandTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphActionCommandTests.cpp index 2795a3c848..eeb6b9482e 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphActionCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphActionCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphActionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphActionTests.cpp index f1ce12458d..3d608c18cb 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphActionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphActionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphCommandTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphCommandTests.cpp index 270cfa2a18..8d6d04148a 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphComponentBusTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphComponentBusTests.cpp index 0b2c7be9a6..c73b2d18e9 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphComponentBusTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphComponentBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp index 0f7d032dc1..f39386be6d 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphCopyPasteTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphDeferredInitTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphDeferredInitTests.cpp index ec44b1dec9..976e908f94 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphDeferredInitTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphDeferredInitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.cpp index 1a33c6614f..43060c3ab7 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.h b/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.h index 1cc5a2ccac..20f5ad28c1 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.h +++ b/Gems/EMotionFX/Code/Tests/AnimGraphEventHandlerCounter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp index bb9c5c2857..73e0aaef07 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphEventTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphFixture.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphFixture.cpp index fe63bbbcb1..92eace2300 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphFixture.h b/Gems/EMotionFX/Code/Tests/AnimGraphFixture.h index 89aebab5dc..6fbdd3c084 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphFixture.h +++ b/Gems/EMotionFX/Code/Tests/AnimGraphFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphFuzzTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphFuzzTests.cpp index 1117292cf5..7b8ff12760 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphFuzzTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphFuzzTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphHubNodeTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphHubNodeTests.cpp index cdede041a4..478ccc1941 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphHubNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphHubNodeTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphLoadingTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphLoadingTests.cpp index 3f1d614e1f..94eea2787c 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphLoadingTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphLoadingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphMotionConditionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphMotionConditionTests.cpp index 8b5d0fadbf..46549dd832 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphMotionConditionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphMotionConditionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphMotionNodeTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphMotionNodeTests.cpp index b4cdbe32c6..11a21c62fb 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphMotionNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphMotionNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphNetworkingBusTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphNetworkingBusTests.cpp index bd97005061..e06795c734 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphNetworkingBusTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphNetworkingBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphNodeEventFilterTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphNodeEventFilterTests.cpp index 75678ecab4..41cec3f515 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphNodeEventFilterTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphNodeEventFilterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphNodeGroupTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphNodeGroupTests.cpp index 85cec73661..568f27e230 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphNodeGroupTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphNodeGroupTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphNodeProcessingTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphNodeProcessingTests.cpp index 53d28132cf..fdeccac7f7 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphNodeProcessingTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphNodeProcessingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphParameterActionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphParameterActionTests.cpp index cb05d9c06f..52c386c464 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphParameterActionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphParameterActionTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphParameterCommandsTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphParameterCommandsTests.cpp index aa5729ee20..b911271608 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphParameterCommandsTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphParameterCommandsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionCommandTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionCommandTests.cpp index 24268a01a0..f5e1401585 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionTests.cpp index 13939ca916..83ded8195d 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphParameterConditionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp index 5ed901a015..9280ddc404 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphRefCountTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphReferenceNodeTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphReferenceNodeTests.cpp index 0b3088cd37..ba378515d9 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphReferenceNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphReferenceNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp index 68fd6d82cc..142db99b3e 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineInterruptionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp index 39705a1cec..4aa5e43cb0 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineSyncTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineTests.cpp index be48367736..794b3bacda 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphStateMachineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphSyncTrackTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphSyncTrackTests.cpp index 6d363eacf7..0de49bff58 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphSyncTrackTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphSyncTrackTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTagConditionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphTagConditionTests.cpp index 47a8929ad5..dcaf237f31 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTagConditionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTagConditionTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionCommandTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionCommandTests.cpp index b527ee69a5..9053aa6abc 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionCommandTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionCommandTests.cpp index a3a90b4f8e..8feaa6e20b 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.cpp index 904d7abadd..d16490600d 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.h b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.h index 066a203613..899add827a 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.h +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionTests.cpp index 75f8971586..f2b5021009 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionConditionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.cpp index b1febef5df..f15aaa7c83 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.h b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.h index af65681eb9..61e411a3d8 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.h +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionTests.cpp index 435910fc0d..e9f8301f7b 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphTransitionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphTransitionTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AnimGraphVector2ConditionTests.cpp b/Gems/EMotionFX/Code/Tests/AnimGraphVector2ConditionTests.cpp index 33438a1e7f..b247c28b78 100644 --- a/Gems/EMotionFX/Code/Tests/AnimGraphVector2ConditionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AnimGraphVector2ConditionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/AutoSkeletonLODTests.cpp b/Gems/EMotionFX/Code/Tests/AutoSkeletonLODTests.cpp index 985884a365..b0b03fd550 100644 --- a/Gems/EMotionFX/Code/Tests/AutoSkeletonLODTests.cpp +++ b/Gems/EMotionFX/Code/Tests/AutoSkeletonLODTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.cpp b/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.cpp index 7afa032003..431f82e3d6 100644 --- a/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.h b/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.h index ebaaa315b8..31cc337541 100644 --- a/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.h +++ b/Gems/EMotionFX/Code/Tests/BlendSpaceFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendSpaceTests.cpp b/Gems/EMotionFX/Code/Tests/BlendSpaceTests.cpp index 4a379eac71..4e2ac50d71 100644 --- a/Gems/EMotionFX/Code/Tests/BlendSpaceTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendSpaceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp index 560e43c2bc..21e2789c14 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeBlendNNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeFloatConditionNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeFloatConditionNodeTests.cpp index 5de373ac06..1c2fdaabe8 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeFloatConditionNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeFloatConditionNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeFloatConstantNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeFloatConstantNodeTests.cpp index f8bc6e87d5..a6cec624d9 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeFloatConstantNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeFloatConstantNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeFloatMath1NodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeFloatMath1NodeTests.cpp index 8b906d8aae..46f5f0e5b5 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeFloatMath1NodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeFloatMath1NodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeFootIKNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeFootIKNodeTests.cpp index 9bd1487e12..9d30127536 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeFootIKNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeFootIKNodeTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeMaskNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeMaskNodeTests.cpp index 670f3a2b9a..47fc716ffc 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeMaskNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeMaskNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeMirrorPoseNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeMirrorPoseNodeTests.cpp index 25e2b1aa1c..92509f4395 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeMirrorPoseNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeMirrorPoseNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeMotionFrameNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeMotionFrameNodeTests.cpp index d10a8b003a..bc4b29b5b9 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeMotionFrameNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeMotionFrameNodeTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeParameterNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeParameterNodeTests.cpp index 4247d76c8f..a2857b381c 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeParameterNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeParameterNodeTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp index 044d1953bd..0f2ff4de09 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeRagdollNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeRangeRemapperNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeRangeRemapperNodeTests.cpp index 2877f16868..6af42096d9 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeRangeRemapperNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeRangeRemapperNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeRotationLimitNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeRotationLimitNodeTests.cpp index 830db0bcc3..d938a12c1e 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeRotationLimitNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeRotationLimitNodeTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeRotationMath2NodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeRotationMath2NodeTests.cpp index 17ae49b796..6147bbd826 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeRotationMath2NodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeRotationMath2NodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeSimulatedObjectNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeSimulatedObjectNodeTests.cpp index 275d40db59..eb0f3f4f2c 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeSimulatedObjectNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeSimulatedObjectNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeTransformNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeTransformNodeTests.cpp index 38ee8acfe1..7d137cf864 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeTransformNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeTransformNodeTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp index 6553339510..7eaee62989 100644 --- a/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BlendTreeTwoLinkIKNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/BoolLogicNodeTests.cpp b/Gems/EMotionFX/Code/Tests/BoolLogicNodeTests.cpp index 88bf44ecf3..c1bac25564 100644 --- a/Gems/EMotionFX/Code/Tests/BoolLogicNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/BoolLogicNodeTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteExitNodeAfterItHasBeenActive.cpp b/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteExitNodeAfterItHasBeenActive.cpp index 9ddbb86452..fd233e4d4b 100644 --- a/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteExitNodeAfterItHasBeenActive.cpp +++ b/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteExitNodeAfterItHasBeenActive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionSetWhenSameMotionInTwoMotionSets.cpp b/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionSetWhenSameMotionInTwoMotionSets.cpp index 08ea4e6d21..a5f4450ea1 100644 --- a/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionSetWhenSameMotionInTwoMotionSets.cpp +++ b/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionSetWhenSameMotionInTwoMotionSets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionWhenMotionIsBeingBlended.cpp b/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionWhenMotionIsBeingBlended.cpp index 889d7821c4..3688508481 100644 --- a/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionWhenMotionIsBeingBlended.cpp +++ b/Gems/EMotionFX/Code/Tests/Bugs/CanDeleteMotionWhenMotionIsBeingBlended.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Bugs/CanUndoParameterDeletionAndRestoreBlendTreeConnections.cpp b/Gems/EMotionFX/Code/Tests/Bugs/CanUndoParameterDeletionAndRestoreBlendTreeConnections.cpp index cc1a992f50..7f4c43c61a 100644 --- a/Gems/EMotionFX/Code/Tests/Bugs/CanUndoParameterDeletionAndRestoreBlendTreeConnections.cpp +++ b/Gems/EMotionFX/Code/Tests/Bugs/CanUndoParameterDeletionAndRestoreBlendTreeConnections.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ColliderCommandTests.cpp b/Gems/EMotionFX/Code/Tests/ColliderCommandTests.cpp index 9dcee6357d..50e792e2b6 100644 --- a/Gems/EMotionFX/Code/Tests/ColliderCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ColliderCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/CommandAdjustSimulatedObjectTests.cpp b/Gems/EMotionFX/Code/Tests/CommandAdjustSimulatedObjectTests.cpp index 1c662a0363..747531e4cb 100644 --- a/Gems/EMotionFX/Code/Tests/CommandAdjustSimulatedObjectTests.cpp +++ b/Gems/EMotionFX/Code/Tests/CommandAdjustSimulatedObjectTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/CommandRemoveMotionTests.cpp b/Gems/EMotionFX/Code/Tests/CommandRemoveMotionTests.cpp index fcdeff7945..a8d7f16f7e 100644 --- a/Gems/EMotionFX/Code/Tests/CommandRemoveMotionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/CommandRemoveMotionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/CoordinateSystemConverterTests.cpp b/Gems/EMotionFX/Code/Tests/CoordinateSystemConverterTests.cpp index 867f7258e7..67fca2a9d7 100644 --- a/Gems/EMotionFX/Code/Tests/CoordinateSystemConverterTests.cpp +++ b/Gems/EMotionFX/Code/Tests/CoordinateSystemConverterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.cpp b/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.cpp index 3f0d86b4a1..d7cf6601ca 100644 --- a/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.cpp +++ b/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.h b/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.h index 088f39d7e5..0133527b45 100644 --- a/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.h +++ b/Gems/EMotionFX/Code/Tests/D6JointLimitConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp index eeb0ee7a1d..b4cfa1e5f4 100644 --- a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.h b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.h index 697eed3d04..279cdfa7b9 100644 --- a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.h +++ b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderTests.cpp b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderTests.cpp index a87ccf8bba..bbefaf1c38 100644 --- a/Gems/EMotionFX/Code/Tests/EMotionFXBuilderTests.cpp +++ b/Gems/EMotionFX/Code/Tests/EMotionFXBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/EMotionFXTest.cpp b/Gems/EMotionFX/Code/Tests/EMotionFXTest.cpp index 1ece327412..8c9476a406 100644 --- a/Gems/EMotionFX/Code/Tests/EMotionFXTest.cpp +++ b/Gems/EMotionFX/Code/Tests/EMotionFXTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Editor/FileManagerTests.cpp b/Gems/EMotionFX/Code/Tests/Editor/FileManagerTests.cpp index b725b09784..f969bcac82 100644 --- a/Gems/EMotionFX/Code/Tests/Editor/FileManagerTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Editor/FileManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Editor/MotionSetLoadEscalation.cpp b/Gems/EMotionFX/Code/Tests/Editor/MotionSetLoadEscalation.cpp index 607f10c761..f4687bd48c 100644 --- a/Gems/EMotionFX/Code/Tests/Editor/MotionSetLoadEscalation.cpp +++ b/Gems/EMotionFX/Code/Tests/Editor/MotionSetLoadEscalation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Editor/ParametersGroupDefaultValues.cpp b/Gems/EMotionFX/Code/Tests/Editor/ParametersGroupDefaultValues.cpp index 51ef3e987f..77e795c8c8 100644 --- a/Gems/EMotionFX/Code/Tests/Editor/ParametersGroupDefaultValues.cpp +++ b/Gems/EMotionFX/Code/Tests/Editor/ParametersGroupDefaultValues.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp b/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp index 443d5e4bdf..c0e8ae1be5 100644 --- a/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp +++ b/Gems/EMotionFX/Code/Tests/EmotionFXMathLibTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/EventManagerTests.cpp b/Gems/EMotionFX/Code/Tests/EventManagerTests.cpp index c717a1b27e..3a7f83ab3b 100644 --- a/Gems/EMotionFX/Code/Tests/EventManagerTests.cpp +++ b/Gems/EMotionFX/Code/Tests/EventManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Game/SampleGameFixture.h b/Gems/EMotionFX/Code/Tests/Game/SampleGameFixture.h index f65c07256d..17e0b49c7b 100644 --- a/Gems/EMotionFX/Code/Tests/Game/SampleGameFixture.h +++ b/Gems/EMotionFX/Code/Tests/Game/SampleGameFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp b/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp index 4f8a726235..87f4b46955 100644 --- a/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/InitSceneAPIFixture.h b/Gems/EMotionFX/Code/Tests/InitSceneAPIFixture.h index 113181185f..e1ae786310 100644 --- a/Gems/EMotionFX/Code/Tests/InitSceneAPIFixture.h +++ b/Gems/EMotionFX/Code/Tests/InitSceneAPIFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/ActorComponentAttachmentTest.cpp b/Gems/EMotionFX/Code/Tests/Integration/ActorComponentAttachmentTest.cpp index 275fc38a9a..f7f8399b65 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/ActorComponentAttachmentTest.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/ActorComponentAttachmentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp b/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp index 750999123a..b487a53cb9 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/ActorComponentRagdollTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/CanAddActor.cpp b/Gems/EMotionFX/Code/Tests/Integration/CanAddActor.cpp index dc443a3c59..0706f8bdb7 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/CanAddActor.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/CanAddActor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/CanAddSimpleMotionComponent.cpp b/Gems/EMotionFX/Code/Tests/Integration/CanAddSimpleMotionComponent.cpp index 14818dc01f..2f4abdaebf 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/CanAddSimpleMotionComponent.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/CanAddSimpleMotionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/CanDeleteJackEntity.cpp b/Gems/EMotionFX/Code/Tests/Integration/CanDeleteJackEntity.cpp index e2e5162b28..320278060c 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/CanDeleteJackEntity.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/CanDeleteJackEntity.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/Components/AnimGraph/CanApplyDefaultParameterValues.cpp b/Gems/EMotionFX/Code/Tests/Integration/Components/AnimGraph/CanApplyDefaultParameterValues.cpp index 2da8a331b6..1155a278dd 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/Components/AnimGraph/CanApplyDefaultParameterValues.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/Components/AnimGraph/CanApplyDefaultParameterValues.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.cpp b/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.cpp index d5f40bd575..3423473a19 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.h b/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.h index b10b03550d..c43afbe80f 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.h +++ b/Gems/EMotionFX/Code/Tests/Integration/EntityComponentFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonFixture.h b/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonFixture.h index af674f21c1..c1f5e80b3e 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonFixture.h +++ b/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonTests.cpp b/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonTests.cpp index ebb32707fe..278c258852 100644 --- a/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Integration/PoseComparisonTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/JackGraphFixture.cpp b/Gems/EMotionFX/Code/Tests/JackGraphFixture.cpp index 064a464764..20c17742fb 100644 --- a/Gems/EMotionFX/Code/Tests/JackGraphFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/JackGraphFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/JackGraphFixture.h b/Gems/EMotionFX/Code/Tests/JackGraphFixture.h index 0e317f45f0..e26c4febc3 100644 --- a/Gems/EMotionFX/Code/Tests/JackGraphFixture.h +++ b/Gems/EMotionFX/Code/Tests/JackGraphFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp b/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp index 35bdc4159d..e2481f4b19 100644 --- a/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp +++ b/Gems/EMotionFX/Code/Tests/KeyTrackLinearTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/LeaderFollowerVersionTests.cpp b/Gems/EMotionFX/Code/Tests/LeaderFollowerVersionTests.cpp index 4f762e2a85..5f4d2d48d1 100644 --- a/Gems/EMotionFX/Code/Tests/LeaderFollowerVersionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/LeaderFollowerVersionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MCore/Array2DTests.cpp b/Gems/EMotionFX/Code/Tests/MCore/Array2DTests.cpp index a5e521e155..9234675146 100644 --- a/Gems/EMotionFX/Code/Tests/MCore/Array2DTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MCore/Array2DTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MCore/CommandLineTests.cpp b/Gems/EMotionFX/Code/Tests/MCore/CommandLineTests.cpp index 9dcf7f1fbf..6eef81ad4c 100644 --- a/Gems/EMotionFX/Code/Tests/MCore/CommandLineTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MCore/CommandLineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MCore/CommandManagerTests.cpp b/Gems/EMotionFX/Code/Tests/MCore/CommandManagerTests.cpp index af07a5255a..2098064ee9 100644 --- a/Gems/EMotionFX/Code/Tests/MCore/CommandManagerTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MCore/CommandManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MCore/DualQuaternionTests.cpp b/Gems/EMotionFX/Code/Tests/MCore/DualQuaternionTests.cpp index 7d5eed88fa..9adbe991cb 100644 --- a/Gems/EMotionFX/Code/Tests/MCore/DualQuaternionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MCore/DualQuaternionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MCore/OBBTests.cpp b/Gems/EMotionFX/Code/Tests/MCore/OBBTests.cpp index f6b12acf9f..9d8e54d4f4 100644 --- a/Gems/EMotionFX/Code/Tests/MCore/OBBTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MCore/OBBTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.cpp b/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.cpp index 89a5e509fa..3de6f6d013 100644 --- a/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.h b/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.h index d5e847d05d..89942826a6 100644 --- a/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.h +++ b/Gems/EMotionFX/Code/Tests/MCoreSystemFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Matchers.h b/Gems/EMotionFX/Code/Tests/Matchers.h index 3eb69ab142..c240d572ff 100644 --- a/Gems/EMotionFX/Code/Tests/Matchers.h +++ b/Gems/EMotionFX/Code/Tests/Matchers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MetaDataRuleTests.cpp b/Gems/EMotionFX/Code/Tests/MetaDataRuleTests.cpp index 6a410087b0..c4e11d3b76 100644 --- a/Gems/EMotionFX/Code/Tests/MetaDataRuleTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MetaDataRuleTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/Actor.h b/Gems/EMotionFX/Code/Tests/Mocks/Actor.h index 4e72e6bf54..59b2b54f1f 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/Actor.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/Actor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/ActorManager.h b/Gems/EMotionFX/Code/Tests/Mocks/ActorManager.h index da7bab2b37..5683f78465 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/ActorManager.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/ActorManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraph.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraph.h index be786f073f..ae60e4cc9a 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraph.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphInstance.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphInstance.h index 9b6155fb5e..35ff2db14c 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphInstance.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphManager.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphManager.h index 1c290f4357..ecaafd2d6b 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphManager.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphNode.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphNode.h index bb760af9af..cae960659b 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphNode.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObject.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObject.h index 418d8e2d62..bedcc7d62e 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObject.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObjectData.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObjectData.h index 4010cd0abe..a5c488e2fa 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObjectData.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphObjectData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphStateTransition.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphStateTransition.h index e098b2ea32..1e53cc755f 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphStateTransition.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphStateTransition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphTransitionCondition.h b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphTransitionCondition.h index fcc72d9427..c33969dcce 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphTransitionCondition.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/AnimGraphTransitionCondition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/BlendTreeParameterNode.h b/Gems/EMotionFX/Code/Tests/Mocks/BlendTreeParameterNode.h index ade6813b3f..6f2da3fcd4 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/BlendTreeParameterNode.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/BlendTreeParameterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/Command.h b/Gems/EMotionFX/Code/Tests/Mocks/Command.h index e9458514d1..e6a5f4e6c7 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/Command.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/Command.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/CommandManager.h b/Gems/EMotionFX/Code/Tests/Mocks/CommandManager.h index 1b719471fc..c527d0d264 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/CommandManager.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/CommandManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/CommandManagerCallback.h b/Gems/EMotionFX/Code/Tests/Mocks/CommandManagerCallback.h index d9e7dda90a..2aa19de12d 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/CommandManagerCallback.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/CommandManagerCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/CommandSystemCommandManager.h b/Gems/EMotionFX/Code/Tests/Mocks/CommandSystemCommandManager.h index 2e2cff0e56..f59efaaf77 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/CommandSystemCommandManager.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/CommandSystemCommandManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/EMotionFXManager.h b/Gems/EMotionFX/Code/Tests/Mocks/EMotionFXManager.h index d672fc9cbd..4514d55547 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/EMotionFXManager.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/EMotionFXManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/EventHandler.h b/Gems/EMotionFX/Code/Tests/Mocks/EventHandler.h index 07c0ff17c9..d94e6a9817 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/EventHandler.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/EventHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/GroupParameter.h b/Gems/EMotionFX/Code/Tests/Mocks/GroupParameter.h index 8929899c8c..3dbf673c68 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/GroupParameter.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/GroupParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/Node.h b/Gems/EMotionFX/Code/Tests/Mocks/Node.h index 25bfd601f5..2e6d727ffc 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/Node.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/ObjectAffectedByParameterChanges.h b/Gems/EMotionFX/Code/Tests/Mocks/ObjectAffectedByParameterChanges.h index fd3a7ee002..c70e5b4b06 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/ObjectAffectedByParameterChanges.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/ObjectAffectedByParameterChanges.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/Parameter.h b/Gems/EMotionFX/Code/Tests/Mocks/Parameter.h index 4239772a63..ff06d341da 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/Parameter.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/Parameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/ParameterFactory.h b/Gems/EMotionFX/Code/Tests/Mocks/ParameterFactory.h index f2fabdccf3..5326fd6c7d 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/ParameterFactory.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/ParameterFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/PhysicsRagdoll.h b/Gems/EMotionFX/Code/Tests/Mocks/PhysicsRagdoll.h index d044d9202d..7f780ff978 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/PhysicsRagdoll.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/PhysicsRagdoll.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/PhysicsSystem.h b/Gems/EMotionFX/Code/Tests/Mocks/PhysicsSystem.h index b45c1c6e71..0862570a4a 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/PhysicsSystem.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/PhysicsSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/SimulatedJoint.h b/Gems/EMotionFX/Code/Tests/Mocks/SimulatedJoint.h index 9bf162b776..ca76fd6218 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/SimulatedJoint.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/SimulatedJoint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObject.h b/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObject.h index 7fa90d3dec..a5b7d80325 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObject.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObjectSetup.h b/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObjectSetup.h index 95fb1a2839..969b366bb2 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObjectSetup.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/SimulatedObjectSetup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/Skeleton.h b/Gems/EMotionFX/Code/Tests/Mocks/Skeleton.h index 13fc83f303..8431ad754c 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/Skeleton.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/Skeleton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Mocks/ValueParameter.h b/Gems/EMotionFX/Code/Tests/Mocks/ValueParameter.h index 6efdff88d1..b4b6427550 100644 --- a/Gems/EMotionFX/Code/Tests/Mocks/ValueParameter.h +++ b/Gems/EMotionFX/Code/Tests/Mocks/ValueParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MorphSkinAttachmentTests.cpp b/Gems/EMotionFX/Code/Tests/MorphSkinAttachmentTests.cpp index a9b1e5fd8d..5ab42c2322 100644 --- a/Gems/EMotionFX/Code/Tests/MorphSkinAttachmentTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MorphSkinAttachmentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MorphTargetPipelineTests.cpp b/Gems/EMotionFX/Code/Tests/MorphTargetPipelineTests.cpp index e20b2e16e0..caff74a431 100644 --- a/Gems/EMotionFX/Code/Tests/MorphTargetPipelineTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MorphTargetPipelineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MorphTargetRuntimeTests.cpp b/Gems/EMotionFX/Code/Tests/MorphTargetRuntimeTests.cpp index 5e7c7d1034..fda9ea2c04 100644 --- a/Gems/EMotionFX/Code/Tests/MorphTargetRuntimeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MorphTargetRuntimeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MotionDataTests.cpp b/Gems/EMotionFX/Code/Tests/MotionDataTests.cpp index d7c820a086..e8c55cdeea 100644 --- a/Gems/EMotionFX/Code/Tests/MotionDataTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MotionEventCommandTests.cpp b/Gems/EMotionFX/Code/Tests/MotionEventCommandTests.cpp index 497efd666e..99a8a2c2b9 100644 --- a/Gems/EMotionFX/Code/Tests/MotionEventCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionEventCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MotionEventTrackTests.cpp b/Gems/EMotionFX/Code/Tests/MotionEventTrackTests.cpp index 42711e2ca7..d88845a9e9 100644 --- a/Gems/EMotionFX/Code/Tests/MotionEventTrackTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionEventTrackTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp b/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp index e9a701400f..70b73f09f1 100644 --- a/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionExtractionBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MotionExtractionTests.cpp b/Gems/EMotionFX/Code/Tests/MotionExtractionTests.cpp index dd9c8ee7ba..cf03766bb7 100644 --- a/Gems/EMotionFX/Code/Tests/MotionExtractionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionExtractionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MotionInstanceTests.cpp b/Gems/EMotionFX/Code/Tests/MotionInstanceTests.cpp index 6baf65966f..502f9163e3 100644 --- a/Gems/EMotionFX/Code/Tests/MotionInstanceTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionInstanceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MotionLayerSystemTests.cpp b/Gems/EMotionFX/Code/Tests/MotionLayerSystemTests.cpp index ab5e575e01..97ef1527ad 100644 --- a/Gems/EMotionFX/Code/Tests/MotionLayerSystemTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MotionLayerSystemTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/MultiThreadSchedulerTests.cpp b/Gems/EMotionFX/Code/Tests/MultiThreadSchedulerTests.cpp index d53170dc25..062be2b0e2 100644 --- a/Gems/EMotionFX/Code/Tests/MultiThreadSchedulerTests.cpp +++ b/Gems/EMotionFX/Code/Tests/MultiThreadSchedulerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/NonUniformMotionDataTests.cpp b/Gems/EMotionFX/Code/Tests/NonUniformMotionDataTests.cpp index a0985f1a0e..0e54487524 100644 --- a/Gems/EMotionFX/Code/Tests/NonUniformMotionDataTests.cpp +++ b/Gems/EMotionFX/Code/Tests/NonUniformMotionDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.cpp b/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.cpp index 1b06c407dd..ff9f70d078 100644 --- a/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.cpp +++ b/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.h b/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.h index 5b178c797b..8e3118fb93 100644 --- a/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.h +++ b/Gems/EMotionFX/Code/Tests/PhysicsSetupUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/PoseTests.cpp b/Gems/EMotionFX/Code/Tests/PoseTests.cpp index 965c1a1592..212bd30846 100644 --- a/Gems/EMotionFX/Code/Tests/PoseTests.cpp +++ b/Gems/EMotionFX/Code/Tests/PoseTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h b/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h index e7d885144d..b97322789f 100644 --- a/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h +++ b/Gems/EMotionFX/Code/Tests/Prefabs/LeftArmSkeleton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Printers.cpp b/Gems/EMotionFX/Code/Tests/Printers.cpp index 2fa8ede4a1..a68a1eb601 100644 --- a/Gems/EMotionFX/Code/Tests/Printers.cpp +++ b/Gems/EMotionFX/Code/Tests/Printers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Printers.h b/Gems/EMotionFX/Code/Tests/Printers.h index 00e05bb5f9..b70ec07e14 100644 --- a/Gems/EMotionFX/Code/Tests/Printers.h +++ b/Gems/EMotionFX/Code/Tests/Printers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphActivateTests.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphActivateTests.cpp index aef5378d10..e5c47cde17 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphActivateTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphActivateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphModelTests.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphModelTests.cpp index eeb434cee1..b66336b121 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphModelTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphModelTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphNodeTests.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphNodeTests.cpp index 707a1cae21..4fa022f012 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphNodeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphNodeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphPreviewMotionTests.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphPreviewMotionTests.cpp index 918ea13191..007deefc14 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphPreviewMotionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/AnimGraphPreviewMotionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanDeleteAnimGraphNode.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanDeleteAnimGraphNode.cpp index e1eaacd16e..945d6859f6 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanDeleteAnimGraphNode.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanDeleteAnimGraphNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanEditAnimGraphNode.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanEditAnimGraphNode.cpp index 044cc0ea0d..4053153419 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanEditAnimGraphNode.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/CanEditAnimGraphNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParameterWindowTests.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParameterWindowTests.cpp index 7e637cc573..dacf06afd8 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParameterWindowTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParameterWindowTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddGroup.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddGroup.cpp index 95cdadea72..f495fcd62a 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddGroup.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddParameter.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddParameter.cpp index 57d3b3eff8..0d912b236f 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddParameter.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/AddParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/CannotAssignGroupsParentAsChild.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/CannotAssignGroupsParentAsChild.cpp index 4ee1d5517f..6c91ff4a60 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/CannotAssignGroupsParentAsChild.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/CannotAssignGroupsParentAsChild.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/ParameterGroupEdit.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/ParameterGroupEdit.cpp index 2019fc650a..7b46a1fc74 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/ParameterGroupEdit.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/ParameterGroupEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveGroup.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveGroup.cpp index 7f458b9ebb..3e273281a9 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveGroup.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveParameter.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveParameter.cpp index 7a9e28aa2b..425fa30720 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveParameter.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Parameters/RemoveParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParametersGroupDefaultValues.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParametersGroupDefaultValues.cpp index b1466b30c7..af87d1d8c0 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParametersGroupDefaultValues.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/ParametersGroupDefaultValues.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.cpp index bf2e310fdf..8403517ee4 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.h b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.h index 2c5759368f..aa5d7c3e97 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.h +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/PreviewMotionFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.cpp index 35893cc3b4..fc29e577bf 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.h b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.h index 6d6eea92ce..58003a324c 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.h +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/SimpleAnimGraphUIFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/StateMachine/EntryStateTests.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/StateMachine/EntryStateTests.cpp index e32942c7bb..f6938d2d20 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/StateMachine/EntryStateTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/StateMachine/EntryStateTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransition.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransition.cpp index ba618a3825..0b68c02619 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransition.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransitionCondition.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransitionCondition.cpp index b3f03c400e..1d2436909e 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransitionCondition.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/AddTransitionCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/EditTransition.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/EditTransition.cpp index a319a7b7bb..bf590da3d4 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/EditTransition.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/EditTransition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp index 46bcd8aecf..487290fc33 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp index 70c6f22863..a8465f8025 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/AnimGraph/Transitions/RemoveTransitionCondition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/Menus/FileMenu/CanReset.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/Menus/FileMenu/CanReset.cpp index fec45e9f81..55e9aded3c 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/Menus/FileMenu/CanReset.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/Menus/FileMenu/CanReset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanCreateMotionSet.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanCreateMotionSet.cpp index 2e8f1b5702..68e19f768f 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanCreateMotionSet.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanCreateMotionSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanRemoveMotionSet.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanRemoveMotionSet.cpp index 061f6a5ac1..d47a3b2f94 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanRemoveMotionSet.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/MotionSet/CanRemoveMotionSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanAddMotions.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanAddMotions.cpp index 14a9990b5a..7a4e5d0bcb 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanAddMotions.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanAddMotions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanRemoveMotions.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanRemoveMotions.cpp index 5d25a6aa57..617436746d 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanRemoveMotions.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/CanRemoveMotions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/MotionPlaybacksTests.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/MotionPlaybacksTests.cpp index 4d260c484c..3045b6e7f9 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/MotionPlaybacksTests.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/Motions/MotionPlaybacksTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteColliders.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteColliders.cpp index 6f0312da98..c3e480ca35 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteColliders.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteColliders.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteJointLimits.cpp b/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteJointLimits.cpp index 20c18f9a39..03bf9724b1 100644 --- a/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteJointLimits.cpp +++ b/Gems/EMotionFX/Code/Tests/ProvidesUI/Ragdoll/CanCopyPasteJointLimits.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/QuaternionParameterTests.cpp b/Gems/EMotionFX/Code/Tests/QuaternionParameterTests.cpp index a1e5b8075f..b63f64893c 100644 --- a/Gems/EMotionFX/Code/Tests/QuaternionParameterTests.cpp +++ b/Gems/EMotionFX/Code/Tests/QuaternionParameterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/RagdollCommandTests.cpp b/Gems/EMotionFX/Code/Tests/RagdollCommandTests.cpp index 4303025086..e1f172c825 100644 --- a/Gems/EMotionFX/Code/Tests/RagdollCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/RagdollCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/RandomMotionSelectionTests.cpp b/Gems/EMotionFX/Code/Tests/RandomMotionSelectionTests.cpp index 3bcb995db5..7d45b31753 100644 --- a/Gems/EMotionFX/Code/Tests/RandomMotionSelectionTests.cpp +++ b/Gems/EMotionFX/Code/Tests/RandomMotionSelectionTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/RenderBackendManagerTests.cpp b/Gems/EMotionFX/Code/Tests/RenderBackendManagerTests.cpp index df83c9c09c..639093d6d1 100644 --- a/Gems/EMotionFX/Code/Tests/RenderBackendManagerTests.cpp +++ b/Gems/EMotionFX/Code/Tests/RenderBackendManagerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SelectionListTests.cpp b/Gems/EMotionFX/Code/Tests/SelectionListTests.cpp index ccaeda1e2b..9297ee0d9b 100644 --- a/Gems/EMotionFX/Code/Tests/SelectionListTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SelectionListTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SimpleMotionComponentBusTests.cpp b/Gems/EMotionFX/Code/Tests/SimpleMotionComponentBusTests.cpp index b2baf3d6d4..e710381e32 100644 --- a/Gems/EMotionFX/Code/Tests/SimpleMotionComponentBusTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SimpleMotionComponentBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SimulatedObjectCommandTests.cpp b/Gems/EMotionFX/Code/Tests/SimulatedObjectCommandTests.cpp index 75495287b0..783987cd9a 100644 --- a/Gems/EMotionFX/Code/Tests/SimulatedObjectCommandTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SimulatedObjectCommandTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SimulatedObjectModelTests.cpp b/Gems/EMotionFX/Code/Tests/SimulatedObjectModelTests.cpp index a5cc21bece..88008106ef 100644 --- a/Gems/EMotionFX/Code/Tests/SimulatedObjectModelTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SimulatedObjectModelTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SimulatedObjectPipelineTests.cpp b/Gems/EMotionFX/Code/Tests/SimulatedObjectPipelineTests.cpp index df4d5dcb43..d64682a128 100644 --- a/Gems/EMotionFX/Code/Tests/SimulatedObjectPipelineTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SimulatedObjectPipelineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SimulatedObjectSerializeTests.cpp b/Gems/EMotionFX/Code/Tests/SimulatedObjectSerializeTests.cpp index abcee94e38..036e331b4e 100644 --- a/Gems/EMotionFX/Code/Tests/SimulatedObjectSerializeTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SimulatedObjectSerializeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp b/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp index 24a76fa925..76a46a4776 100644 --- a/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SimulatedObjectSetupTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SkeletalLODTests.cpp b/Gems/EMotionFX/Code/Tests/SkeletalLODTests.cpp index 85bae2389a..2f53d4568f 100644 --- a/Gems/EMotionFX/Code/Tests/SkeletalLODTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SkeletalLODTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SkeletonNodeSearchTests.cpp b/Gems/EMotionFX/Code/Tests/SkeletonNodeSearchTests.cpp index 9d3a77181c..650b299f65 100644 --- a/Gems/EMotionFX/Code/Tests/SkeletonNodeSearchTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SkeletonNodeSearchTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SyncingSystemTests.cpp b/Gems/EMotionFX/Code/Tests/SyncingSystemTests.cpp index 1131305850..28f7a36738 100644 --- a/Gems/EMotionFX/Code/Tests/SyncingSystemTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SyncingSystemTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SystemComponentFixture.h b/Gems/EMotionFX/Code/Tests/SystemComponentFixture.h index 99e894d959..f40d1a810d 100644 --- a/Gems/EMotionFX/Code/Tests/SystemComponentFixture.h +++ b/Gems/EMotionFX/Code/Tests/SystemComponentFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/SystemComponentTests.cpp b/Gems/EMotionFX/Code/Tests/SystemComponentTests.cpp index ed03c22453..f70ee875f3 100644 --- a/Gems/EMotionFX/Code/Tests/SystemComponentTests.cpp +++ b/Gems/EMotionFX/Code/Tests/SystemComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorAssetFactory.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorAssetFactory.h index 4075af3073..da0450b92b 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorAssetFactory.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorAssetFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorFactory.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorFactory.h index 3b23d319d8..e65c849576 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorFactory.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/ActorFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphAssetFactory.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphAssetFactory.h index 4913517557..b963fd8559 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphAssetFactory.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphAssetFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.cpp b/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.cpp index 6e3108aa22..8fa56e1d47 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.cpp +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.h index 9f0b36e843..8b6f88665e 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/AnimGraphFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.cpp b/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.cpp index 7b4090905e..115647ecde 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.cpp +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.h index ddb8630b86..e48e606717 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/JackActor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.cpp b/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.cpp index 77bb6f79ef..89a424d2b0 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.cpp +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.h index 6c26a6f4f4..3a6090b082 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/MeshFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.cpp b/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.cpp index 03b7972d58..823fb75316 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.cpp +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.h index ce67e7bda8..4be3fdb7b0 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionSetAssetFactory.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionSetAssetFactory.h index cfe79f5f5e..50231d8db3 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionSetAssetFactory.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/MotionSetAssetFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.cpp b/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.cpp index aa00c03d0e..6dda21cb46 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.cpp +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.h index 01dd33dd29..4a9303f4e9 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/SimpleActors.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.cpp b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.cpp index 79726203a3..fb88ffb2b7 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.cpp +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.h index 178c71b23f..e0883ac03b 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestActorAssets.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.cpp b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.cpp index bb918574d1..299a09f3b7 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.cpp +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.h b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.h index 1721616414..1fd909c21c 100644 --- a/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.h +++ b/Gems/EMotionFX/Code/Tests/TestAssetCode/TestMotionAssets.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/TransformUnitTests.cpp b/Gems/EMotionFX/Code/Tests/TransformUnitTests.cpp index 601dd5104b..5845677336 100644 --- a/Gems/EMotionFX/Code/Tests/TransformUnitTests.cpp +++ b/Gems/EMotionFX/Code/Tests/TransformUnitTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.cpp b/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.cpp index 3c2be8e901..808a3556b4 100644 --- a/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.h b/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.h index 35affe1518..dd4a2eaeb7 100644 --- a/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.h +++ b/Gems/EMotionFX/Code/Tests/UI/AnimGraphUIFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAddAnimGraph.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAddAnimGraph.cpp index 49b5093d7a..55b0562703 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAddAnimGraph.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAddAnimGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAddJointAndChildren.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAddJointAndChildren.cpp index aa5cdb77c5..aff2bf956c 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAddJointAndChildren.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAddJointAndChildren.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToAnimGraphNode.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToAnimGraphNode.cpp index 4736dfe0b2..93fa4e9ae5 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToAnimGraphNode.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToAnimGraphNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToMotionSet.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToMotionSet.cpp index affbbddf7f..c12df4fe65 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToMotionSet.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAddMotionToMotionSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAddReferenceNode.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAddReferenceNode.cpp index f0d209ab77..84dfb755c3 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAddReferenceNode.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAddReferenceNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAddSimulatedObject.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAddSimulatedObject.cpp index 290faecd85..07a6933450 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAddSimulatedObject.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAddSimulatedObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAddToSimulatedObject.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAddToSimulatedObject.cpp index 64e02e991e..33e48ef6b9 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAddToSimulatedObject.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAddToSimulatedObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAdjustGroupParameter.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAdjustGroupParameter.cpp index f6dc5069e6..a4ba140832 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAdjustGroupParameter.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAdjustGroupParameter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanAutoSaveFile.cpp b/Gems/EMotionFX/Code/Tests/UI/CanAutoSaveFile.cpp index 1ff415ebec..8783a97f34 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanAutoSaveFile.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanAutoSaveFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanChangeParametersInSimulatedObject.cpp b/Gems/EMotionFX/Code/Tests/UI/CanChangeParametersInSimulatedObject.cpp index 9d428f4ab8..e389552174 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanChangeParametersInSimulatedObject.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanChangeParametersInSimulatedObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanDeleteAnimGraphNode_AnimGraphModelUpdates.cpp b/Gems/EMotionFX/Code/Tests/UI/CanDeleteAnimGraphNode_AnimGraphModelUpdates.cpp index 3a693ed5c4..9ccbb99ca6 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanDeleteAnimGraphNode_AnimGraphModelUpdates.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanDeleteAnimGraphNode_AnimGraphModelUpdates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanEditParameters.cpp b/Gems/EMotionFX/Code/Tests/UI/CanEditParameters.cpp index 20ac76cd47..f03aa79ee3 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanEditParameters.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanEditParameters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanMorphManyShapes.cpp b/Gems/EMotionFX/Code/Tests/UI/CanMorphManyShapes.cpp index da14bc5604..f7a5c532f8 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanMorphManyShapes.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanMorphManyShapes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanOpenWorkspace.cpp b/Gems/EMotionFX/Code/Tests/UI/CanOpenWorkspace.cpp index a11a13171c..fa3905e733 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanOpenWorkspace.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanOpenWorkspace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanRemoveMotionFromMotionSet.cpp b/Gems/EMotionFX/Code/Tests/UI/CanRemoveMotionFromMotionSet.cpp index 0c47aea473..5a44d1e7cc 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanRemoveMotionFromMotionSet.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanRemoveMotionFromMotionSet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanRenameParameter_ParameterNodeUpdates.cpp b/Gems/EMotionFX/Code/Tests/UI/CanRenameParameter_ParameterNodeUpdates.cpp index e7e7656d64..498f096570 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanRenameParameter_ParameterNodeUpdates.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanRenameParameter_ParameterNodeUpdates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanSeeJoints.cpp b/Gems/EMotionFX/Code/Tests/UI/CanSeeJoints.cpp index 9df26b9c27..2b5acae522 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanSeeJoints.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanSeeJoints.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanUseEditMenu.cpp b/Gems/EMotionFX/Code/Tests/UI/CanUseEditMenu.cpp index 2f9737931f..86b2db6804 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanUseEditMenu.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanUseEditMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp b/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp index 1de5d3942e..f599985cfa 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanUseHelpMenu.cpp b/Gems/EMotionFX/Code/Tests/UI/CanUseHelpMenu.cpp index f72e4f79b9..3dc7f37e58 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanUseHelpMenu.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanUseHelpMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanUseLayoutMenu.cpp b/Gems/EMotionFX/Code/Tests/UI/CanUseLayoutMenu.cpp index 1eb571967b..29f6b7e8fe 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanUseLayoutMenu.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanUseLayoutMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CanUseViewMenu.cpp b/Gems/EMotionFX/Code/Tests/UI/CanUseViewMenu.cpp index e152b4b09f..096a3396b8 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanUseViewMenu.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanUseViewMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/ClothColliderTests.cpp b/Gems/EMotionFX/Code/Tests/UI/ClothColliderTests.cpp index eef25d67d3..f4fd5ec8bb 100644 --- a/Gems/EMotionFX/Code/Tests/UI/ClothColliderTests.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/ClothColliderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.cpp b/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.cpp index c455284df1..2949f93144 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.h b/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.h index 025bd869be..48375b478c 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.h +++ b/Gems/EMotionFX/Code/Tests/UI/CommandRunnerFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp b/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp index 8c259725d0..26fb67f681 100644 --- a/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/LODSkinnedMeshTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.cpp b/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.cpp index 382e9fe44e..e014584355 100644 --- a/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.h b/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.h index b06d193996..d68f550d73 100644 --- a/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.h +++ b/Gems/EMotionFX/Code/Tests/UI/MenuUIFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.cpp b/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.cpp index 10ca7f946c..0f85648792 100644 --- a/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.h b/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.h index 02d68be5c9..b8ef7b9b91 100644 --- a/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.h +++ b/Gems/EMotionFX/Code/Tests/UI/ModalPopupHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/RagdollEditTests.cpp b/Gems/EMotionFX/Code/Tests/UI/RagdollEditTests.cpp index 14b919237b..d5876b1a94 100644 --- a/Gems/EMotionFX/Code/Tests/UI/RagdollEditTests.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/RagdollEditTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/UIFixture.cpp b/Gems/EMotionFX/Code/Tests/UI/UIFixture.cpp index 2bef10a42b..9140b3f86d 100644 --- a/Gems/EMotionFX/Code/Tests/UI/UIFixture.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/UIFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UI/UIFixture.h b/Gems/EMotionFX/Code/Tests/UI/UIFixture.h index 9b03081299..7475d15800 100644 --- a/Gems/EMotionFX/Code/Tests/UI/UIFixture.h +++ b/Gems/EMotionFX/Code/Tests/UI/UIFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/UniformMotionDataTests.cpp b/Gems/EMotionFX/Code/Tests/UniformMotionDataTests.cpp index 3dbe321ad8..01930004fc 100644 --- a/Gems/EMotionFX/Code/Tests/UniformMotionDataTests.cpp +++ b/Gems/EMotionFX/Code/Tests/UniformMotionDataTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Vector2ToVector3CompatibilityTests.cpp b/Gems/EMotionFX/Code/Tests/Vector2ToVector3CompatibilityTests.cpp index 8275d84681..416f0c9110 100644 --- a/Gems/EMotionFX/Code/Tests/Vector2ToVector3CompatibilityTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Vector2ToVector3CompatibilityTests.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/Vector3ParameterTests.cpp b/Gems/EMotionFX/Code/Tests/Vector3ParameterTests.cpp index 7cc79d3b91..302e758752 100644 --- a/Gems/EMotionFX/Code/Tests/Vector3ParameterTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Vector3ParameterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EMotionFX/Code/Tests/run_EMotionFX_tests.py b/Gems/EMotionFX/Code/Tests/run_EMotionFX_tests.py index e00ebc0f21..8e8734d2be 100755 --- a/Gems/EMotionFX/Code/Tests/run_EMotionFX_tests.py +++ b/Gems/EMotionFX/Code/Tests/run_EMotionFX_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Gems/EMotionFX/Code/emotionfx_editor_files.cmake b/Gems/EMotionFX/Code/emotionfx_editor_files.cmake index 74431809c2..112309b710 100644 --- a/Gems/EMotionFX/Code/emotionfx_editor_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/emotionfx_editor_tests_files.cmake b/Gems/EMotionFX/Code/emotionfx_editor_tests_files.cmake index e4f0f7d9ca..8f961434a1 100644 --- a/Gems/EMotionFX/Code/emotionfx_editor_tests_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/emotionfx_files.cmake b/Gems/EMotionFX/Code/emotionfx_files.cmake index 83fceb06ef..6eb336b81d 100644 --- a/Gems/EMotionFX/Code/emotionfx_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/emotionfx_shared_files.cmake b/Gems/EMotionFX/Code/emotionfx_shared_files.cmake index 73115a36cb..dceac88c4d 100644 --- a/Gems/EMotionFX/Code/emotionfx_shared_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/emotionfx_shared_tests_files.cmake b/Gems/EMotionFX/Code/emotionfx_shared_tests_files.cmake index 4b608f997e..2262aa7a41 100644 --- a/Gems/EMotionFX/Code/emotionfx_shared_tests_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_shared_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EMotionFX/Code/emotionfx_tests_files.cmake b/Gems/EMotionFX/Code/emotionfx_tests_files.cmake index 58d094b308..93c3fed1f5 100644 --- a/Gems/EMotionFX/Code/emotionfx_tests_files.cmake +++ b/Gems/EMotionFX/Code/emotionfx_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/CMakeLists.txt b/Gems/EditorPythonBindings/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/EditorPythonBindings/CMakeLists.txt +++ b/Gems/EditorPythonBindings/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/CMakeLists.txt b/Gems/EditorPythonBindings/Code/CMakeLists.txt index a811239661..ef26a2b033 100644 --- a/Gems/EditorPythonBindings/Code/CMakeLists.txt +++ b/Gems/EditorPythonBindings/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/CustomTypeBindingBus.h b/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/CustomTypeBindingBus.h index 386e9f6cf8..8299f36ab4 100644 --- a/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/CustomTypeBindingBus.h +++ b/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/CustomTypeBindingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsBus.h b/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsBus.h index 77a48406ae..71bc7e6a83 100644 --- a/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsBus.h +++ b/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsSymbols.h b/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsSymbols.h index 3b253f0268..6b50654a9d 100644 --- a/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsSymbols.h +++ b/Gems/EditorPythonBindings/Code/Include/EditorPythonBindings/EditorPythonBindingsSymbols.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/EditorPythonBindingsModule.cpp b/Gems/EditorPythonBindings/Code/Source/EditorPythonBindingsModule.cpp index c202cc03b2..a141b3caa6 100644 --- a/Gems/EditorPythonBindings/Code/Source/EditorPythonBindingsModule.cpp +++ b/Gems/EditorPythonBindings/Code/Source/EditorPythonBindingsModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_static_clang.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_static_clang.cmake index e5c49c47cd..89a2dfa866 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_static_clang.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_static_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_tests_clang.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_tests_clang.cmake index e5c49c47cd..89a2dfa866 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_tests_clang.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Common/Clang/editorpythonbindings_tests_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_static_msvc.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_static_msvc.cmake index 002a8c63ef..e7e2742b9d 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_static_msvc.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_static_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_tests_msvc.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_tests_msvc.cmake index 002a8c63ef..e7e2742b9d 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_tests_msvc.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Common/MSVC/editorpythonbindings_tests_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Linux/PythonSystemComponent_linux.cpp b/Gems/EditorPythonBindings/Code/Source/Platform/Linux/PythonSystemComponent_linux.cpp index 5faf1417c2..21c369bb80 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Linux/PythonSystemComponent_linux.cpp +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Linux/PythonSystemComponent_linux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux.cmake index e5c49c47cd..89a2dfa866 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux_files.cmake index 3bdc26b1fe..2073ab359e 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Mac/PythonSystemComponent_mac.cpp b/Gems/EditorPythonBindings/Code/Source/Platform/Mac/PythonSystemComponent_mac.cpp index a0c304b6f6..61e02727d2 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Mac/PythonSystemComponent_mac.cpp +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Mac/PythonSystemComponent_mac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac_files.cmake index 9187325816..5daf394a6b 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Windows/PythonSystemComponent_windows.cpp b/Gems/EditorPythonBindings/Code/Source/Platform/Windows/PythonSystemComponent_windows.cpp index 6731f70e35..53164ea0fd 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Windows/PythonSystemComponent_windows.cpp +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Windows/PythonSystemComponent_windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows.cmake index c1d9d8b6b5..db62374d57 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows_files.cmake index 710bad7088..cc6175a24f 100644 --- a/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/EditorPythonBindings/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/Source/PythonCommon.h b/Gems/EditorPythonBindings/Code/Source/PythonCommon.h index 4ce3330475..b9df3e3c78 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonCommon.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.cpp b/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.cpp index 0e7460ddc1..f80e42e925 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.h b/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.h index 33f6469b9e..6366b75753 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonLogSymbolsComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp b/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp index a761911a56..08794fc464 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.h b/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.h index 81e837d42c..737272e908 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonMarshalComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.cpp b/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.cpp index 520fc84b28..da2cbd42d2 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.h b/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.h index c71fcec5cc..c4814fba59 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonProxyBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.cpp b/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.cpp index 970b5bf2c1..745385d5e8 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.h b/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.h index 86ec80d1ff..54890bf5fd 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonProxyObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.cpp b/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.cpp index 2a47b6a172..dcdbb93882 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.h b/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.h index 88b594d359..396a045615 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonReflectionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonSymbolsBus.h b/Gems/EditorPythonBindings/Code/Source/PythonSymbolsBus.h index 2f993f2b43..b13cb16243 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonSymbolsBus.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonSymbolsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.cpp b/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.cpp index 3e3e54507d..e4b7775f98 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.h b/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.h index b6d6c1b7a5..532da24954 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonTypeCasters.h b/Gems/EditorPythonBindings/Code/Source/PythonTypeCasters.h index 4d0064a06a..c842b74c70 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonTypeCasters.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonTypeCasters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonUtility.cpp b/Gems/EditorPythonBindings/Code/Source/PythonUtility.cpp index aeb9298352..a036c0dfa6 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonUtility.cpp +++ b/Gems/EditorPythonBindings/Code/Source/PythonUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Source/PythonUtility.h b/Gems/EditorPythonBindings/Code/Source/PythonUtility.h index adb901eb74..c8655020d7 100644 --- a/Gems/EditorPythonBindings/Code/Source/PythonUtility.h +++ b/Gems/EditorPythonBindings/Code/Source/PythonUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/CustomTypeBindingBusTests.cpp b/Gems/EditorPythonBindings/Code/Tests/CustomTypeBindingBusTests.cpp index f454c71ce2..66bcb07cdb 100644 --- a/Gems/EditorPythonBindings/Code/Tests/CustomTypeBindingBusTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/CustomTypeBindingBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.cpp b/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.cpp index 34ffb0414a..fa3d2374c4 100644 --- a/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.py b/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.py index aced41006b..345b1200cb 100755 --- a/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.py +++ b/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTest.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTestWithArgs.py b/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTestWithArgs.py index 1916a95c16..dd77a33f2e 100755 --- a/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTestWithArgs.py +++ b/Gems/EditorPythonBindings/Code/Tests/EditorPythonBindingsTestWithArgs.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonAssetTypesTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonAssetTypesTests.cpp index 264088275a..e73ff0459f 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonAssetTypesTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonAssetTypesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonAssociativeTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonAssociativeTests.cpp index d0d0dfdc46..a5d360dcaf 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonAssociativeTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonAssociativeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonBindingLibTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonBindingLibTests.cpp index 7537d6fb4f..babbd819b7 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonBindingLibTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonBindingLibTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonContainerAnyTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonContainerAnyTests.cpp index fc5f69f7a6..58fa74f2d6 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonContainerAnyTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonContainerAnyTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonDictionaryTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonDictionaryTests.cpp index 39b80b9771..31c5f35764 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonDictionaryTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonDictionaryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonGlobalsTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonGlobalsTests.cpp index 49b8e3bf14..fa8b815aaf 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonGlobalsTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonGlobalsTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonLogSymbolsComponentTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonLogSymbolsComponentTests.cpp index 348b76ab59..57581515cd 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonLogSymbolsComponentTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonLogSymbolsComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.cpp index 291d00079a..91bc9492fa 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.h b/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.h index d96f5d8904..a93fabaa31 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.h +++ b/Gems/EditorPythonBindings/Code/Tests/PythonPairTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonProxyBusTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonProxyBusTests.cpp index ea957f86bc..aae9d9cdde 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonProxyBusTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonProxyBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonProxyObjectTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonProxyObjectTests.cpp index 1ff2ae12a4..85448a9ec7 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonProxyObjectTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonProxyObjectTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonReflectionComponentTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonReflectionComponentTests.cpp index f0818087cb..d472ee98aa 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonReflectionComponentTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonReflectionComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonTestingUtility.h b/Gems/EditorPythonBindings/Code/Tests/PythonTestingUtility.h index b4f7e94357..8bf0f96a99 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonTestingUtility.h +++ b/Gems/EditorPythonBindings/Code/Tests/PythonTestingUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonThreadingTests.cpp b/Gems/EditorPythonBindings/Code/Tests/PythonThreadingTests.cpp index 6664e9e8cf..1588e4a22b 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonThreadingTests.cpp +++ b/Gems/EditorPythonBindings/Code/Tests/PythonThreadingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/PythonTraceMessageSink.h b/Gems/EditorPythonBindings/Code/Tests/PythonTraceMessageSink.h index e499b4a45d..903b5b3391 100644 --- a/Gems/EditorPythonBindings/Code/Tests/PythonTraceMessageSink.h +++ b/Gems/EditorPythonBindings/Code/Tests/PythonTraceMessageSink.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/EditorPythonBindings/Code/Tests/__init__.py b/Gems/EditorPythonBindings/Code/Tests/__init__.py index 3a3549d485..5482b53e84 100755 --- a/Gems/EditorPythonBindings/Code/Tests/__init__.py +++ b/Gems/EditorPythonBindings/Code/Tests/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/EditorPythonBindings/Code/Tests/test_package/__init__.py b/Gems/EditorPythonBindings/Code/Tests/test_package/__init__.py index 3a3549d485..5482b53e84 100755 --- a/Gems/EditorPythonBindings/Code/Tests/test_package/__init__.py +++ b/Gems/EditorPythonBindings/Code/Tests/test_package/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/EditorPythonBindings/Code/Tests/test_package/do_work.py b/Gems/EditorPythonBindings/Code/Tests/test_package/do_work.py index 72d4012f14..5a527a6b70 100755 --- a/Gems/EditorPythonBindings/Code/Tests/test_package/do_work.py +++ b/Gems/EditorPythonBindings/Code/Tests/test_package/do_work.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/EditorPythonBindings/Code/Tests/test_package/import_many.py b/Gems/EditorPythonBindings/Code/Tests/test_package/import_many.py index 5097a3a075..3a3f97eeaf 100755 --- a/Gems/EditorPythonBindings/Code/Tests/test_package/import_many.py +++ b/Gems/EditorPythonBindings/Code/Tests/test_package/import_many.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/EditorPythonBindings/Code/Tests/test_package/import_test.py b/Gems/EditorPythonBindings/Code/Tests/test_package/import_test.py index 2ec18f4b13..e0a498662f 100755 --- a/Gems/EditorPythonBindings/Code/Tests/test_package/import_test.py +++ b/Gems/EditorPythonBindings/Code/Tests/test_package/import_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/EditorPythonBindings/Code/editorpythonbindings_common_files.cmake b/Gems/EditorPythonBindings/Code/editorpythonbindings_common_files.cmake index 34b1c6377e..34f7727edc 100644 --- a/Gems/EditorPythonBindings/Code/editorpythonbindings_common_files.cmake +++ b/Gems/EditorPythonBindings/Code/editorpythonbindings_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/editorpythonbindings_common_stub_files.cmake b/Gems/EditorPythonBindings/Code/editorpythonbindings_common_stub_files.cmake index ff8860dca5..2c92e48f60 100644 --- a/Gems/EditorPythonBindings/Code/editorpythonbindings_common_stub_files.cmake +++ b/Gems/EditorPythonBindings/Code/editorpythonbindings_common_stub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/editorpythonbindings_editor_files.cmake b/Gems/EditorPythonBindings/Code/editorpythonbindings_editor_files.cmake index dd815084ce..f564bbd0cc 100644 --- a/Gems/EditorPythonBindings/Code/editorpythonbindings_editor_files.cmake +++ b/Gems/EditorPythonBindings/Code/editorpythonbindings_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/EditorPythonBindings/Code/editorpythonbindings_tests_files.cmake b/Gems/EditorPythonBindings/Code/editorpythonbindings_tests_files.cmake index 7982b37f4d..8ca72d63fe 100644 --- a/Gems/EditorPythonBindings/Code/editorpythonbindings_tests_files.cmake +++ b/Gems/EditorPythonBindings/Code/editorpythonbindings_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ExpressionEvaluation/CMakeLists.txt b/Gems/ExpressionEvaluation/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ExpressionEvaluation/CMakeLists.txt +++ b/Gems/ExpressionEvaluation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ExpressionEvaluation/Code/CMakeLists.txt b/Gems/ExpressionEvaluation/Code/CMakeLists.txt index 9205910dd8..19d3b325c7 100644 --- a/Gems/ExpressionEvaluation/Code/CMakeLists.txt +++ b/Gems/ExpressionEvaluation/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine.h b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine.h index 19e24d1eac..6132d84083 100644 --- a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine.h +++ b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h index eb927c4697..52c5a153d0 100644 --- a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h +++ b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTypes.h b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTypes.h index 43cd2f4f92..d579fc61cc 100644 --- a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTypes.h +++ b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEngine/ExpressionTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEvaluationBus.h b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEvaluationBus.h index bcdbd7af5e..579bda2553 100644 --- a/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEvaluationBus.h +++ b/Gems/ExpressionEvaluation/Code/Include/ExpressionEvaluation/ExpressionEvaluationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionElementParser.h b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionElementParser.h index f0d6de9f2c..2e94d1f0b1 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionElementParser.h +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionElementParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.cpp b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.cpp index 8282ec923f..796227659c 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.cpp +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.h b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.h index ee0245096f..da3dc53fb1 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.h +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionPrimitive.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.cpp b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.cpp index cde8b4ee23..3ba6a099a0 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.cpp +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.h b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.h index f1aa47bce9..cf24f0bff0 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.h +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/ExpressionVariable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/InternalTypes.h b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/InternalTypes.h index 04505c3ab4..5b378119ff 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/InternalTypes.h +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/InternalTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.cpp b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.cpp index 9a6cf90062..1589a067dc 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.cpp +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.h b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.h index 134b6ed03c..956f40f5ad 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.h +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/MathOperators/MathExpressionOperators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/Utils.h b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/Utils.h index d9224ab154..939401d516 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/Utils.h +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEngine/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationModule.cpp b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationModule.cpp index db4066cad9..a0de74e99e 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationModule.cpp +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp index 142fe2385f..57aa0766e2 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.h b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.h index b50da8bfec..278e526893 100644 --- a/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.h +++ b/Gems/ExpressionEvaluation/Code/Source/ExpressionEvaluationSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTestFixture.h b/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTestFixture.h index dbca1182bf..0018c7a8a0 100644 --- a/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTestFixture.h +++ b/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTests.cpp b/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTests.cpp index 5bbd3a22b1..0e95f7f554 100644 --- a/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTests.cpp +++ b/Gems/ExpressionEvaluation/Code/Tests/ExpressionEngineTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Tests/ExpressionEvaluationGemTest.cpp b/Gems/ExpressionEvaluation/Code/Tests/ExpressionEvaluationGemTest.cpp index ed3869b92e..34179f53fd 100644 --- a/Gems/ExpressionEvaluation/Code/Tests/ExpressionEvaluationGemTest.cpp +++ b/Gems/ExpressionEvaluation/Code/Tests/ExpressionEvaluationGemTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/Tests/MathExpressionTests.cpp b/Gems/ExpressionEvaluation/Code/Tests/MathExpressionTests.cpp index f09d8f11a0..aa63f2d8ce 100644 --- a/Gems/ExpressionEvaluation/Code/Tests/MathExpressionTests.cpp +++ b/Gems/ExpressionEvaluation/Code/Tests/MathExpressionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake b/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake index 34d5b7c853..67e7ae27eb 100644 --- a/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake +++ b/Gems/ExpressionEvaluation/Code/expressionevaluation_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ExpressionEvaluation/Code/expressionevaluation_shared_files.cmake b/Gems/ExpressionEvaluation/Code/expressionevaluation_shared_files.cmake index 83f8577d18..7e99d79451 100644 --- a/Gems/ExpressionEvaluation/Code/expressionevaluation_shared_files.cmake +++ b/Gems/ExpressionEvaluation/Code/expressionevaluation_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ExpressionEvaluation/Code/expressionevaluation_tests_files.cmake b/Gems/ExpressionEvaluation/Code/expressionevaluation_tests_files.cmake index 0e98205428..de9d29b2c0 100644 --- a/Gems/ExpressionEvaluation/Code/expressionevaluation_tests_files.cmake +++ b/Gems/ExpressionEvaluation/Code/expressionevaluation_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/FastNoise/CMakeLists.txt b/Gems/FastNoise/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/FastNoise/CMakeLists.txt +++ b/Gems/FastNoise/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/FastNoise/Code/CMakeLists.txt b/Gems/FastNoise/Code/CMakeLists.txt index 4e8c740972..a44cc73036 100644 --- a/Gems/FastNoise/Code/CMakeLists.txt +++ b/Gems/FastNoise/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseBus.h b/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseBus.h index 3cda553fb0..55c35ed7c1 100644 --- a/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseBus.h +++ b/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseGradientRequestBus.h b/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseGradientRequestBus.h index a691ee47d3..dae99d2aa3 100644 --- a/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseGradientRequestBus.h +++ b/Gems/FastNoise/Code/Include/FastNoise/Ebuses/FastNoiseGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp b/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp index 721373e0f1..881839dd52 100644 --- a/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp +++ b/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.h b/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.h index e101c592f6..a0484f9197 100644 --- a/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.h +++ b/Gems/FastNoise/Code/Source/EditorFastNoiseGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp index aea817591f..d3d92b81bf 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h index 400ec0a671..75eb7f163a 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h +++ b/Gems/FastNoise/Code/Source/FastNoiseEditorModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp b/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp index 774661b3bc..ec6f16482d 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.h b/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.h index 3ecbefe5d1..c7f5edd9ae 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.h +++ b/Gems/FastNoise/Code/Source/FastNoiseGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseModule.cpp b/Gems/FastNoise/Code/Source/FastNoiseModule.cpp index 98d183b1ad..46b3fbafd0 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseModule.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseModule.h b/Gems/FastNoise/Code/Source/FastNoiseModule.h index 304b13e8cb..9a42740f7f 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseModule.h +++ b/Gems/FastNoise/Code/Source/FastNoiseModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp b/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp index e49be4c065..2973cd4ecc 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp +++ b/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.h b/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.h index 17169da981..47f4bda07f 100644 --- a/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.h +++ b/Gems/FastNoise/Code/Source/FastNoiseSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Source/FastNoise_precompiled.h b/Gems/FastNoise/Code/Source/FastNoise_precompiled.h index 4899df5161..d424689241 100644 --- a/Gems/FastNoise/Code/Source/FastNoise_precompiled.h +++ b/Gems/FastNoise/Code/Source/FastNoise_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp b/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp index c027bc14c5..2b39128b16 100644 --- a/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp +++ b/Gems/FastNoise/Code/Tests/FastNoiseTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/FastNoise/Code/fastnoise_editor_files.cmake b/Gems/FastNoise/Code/fastnoise_editor_files.cmake index 2615dfbbbe..4615139531 100644 --- a/Gems/FastNoise/Code/fastnoise_editor_files.cmake +++ b/Gems/FastNoise/Code/fastnoise_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/FastNoise/Code/fastnoise_editor_shared_files.cmake b/Gems/FastNoise/Code/fastnoise_editor_shared_files.cmake index 5c8090b527..40c6ee127e 100644 --- a/Gems/FastNoise/Code/fastnoise_editor_shared_files.cmake +++ b/Gems/FastNoise/Code/fastnoise_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/FastNoise/Code/fastnoise_files.cmake b/Gems/FastNoise/Code/fastnoise_files.cmake index 0f0cff680c..4b14feaa7b 100644 --- a/Gems/FastNoise/Code/fastnoise_files.cmake +++ b/Gems/FastNoise/Code/fastnoise_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/FastNoise/Code/fastnoise_shared_files.cmake b/Gems/FastNoise/Code/fastnoise_shared_files.cmake index 45d2d25b64..d959b80c17 100644 --- a/Gems/FastNoise/Code/fastnoise_shared_files.cmake +++ b/Gems/FastNoise/Code/fastnoise_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/FastNoise/Code/fastnoise_tests_files.cmake b/Gems/FastNoise/Code/fastnoise_tests_files.cmake index 090439c846..903b9be8b3 100644 --- a/Gems/FastNoise/Code/fastnoise_tests_files.cmake +++ b/Gems/FastNoise/Code/fastnoise_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameState/CMakeLists.txt b/Gems/GameState/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/GameState/CMakeLists.txt +++ b/Gems/GameState/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameState/Code/CMakeLists.txt b/Gems/GameState/Code/CMakeLists.txt index 17cb29460b..53ab007f75 100644 --- a/Gems/GameState/Code/CMakeLists.txt +++ b/Gems/GameState/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameState/Code/Include/GameState/GameState.h b/Gems/GameState/Code/Include/GameState/GameState.h index fcc217f1bf..60cdb6ff07 100644 --- a/Gems/GameState/Code/Include/GameState/GameState.h +++ b/Gems/GameState/Code/Include/GameState/GameState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameState/Code/Include/GameState/GameStateNotificationBus.h b/Gems/GameState/Code/Include/GameState/GameStateNotificationBus.h index a2c9ed7f18..73ef56154a 100644 --- a/Gems/GameState/Code/Include/GameState/GameStateNotificationBus.h +++ b/Gems/GameState/Code/Include/GameState/GameStateNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameState/Code/Include/GameState/GameStateRequestBus.h b/Gems/GameState/Code/Include/GameState/GameStateRequestBus.h index 4b05a460b9..cf427771df 100644 --- a/Gems/GameState/Code/Include/GameState/GameStateRequestBus.h +++ b/Gems/GameState/Code/Include/GameState/GameStateRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameState/Code/Source/GameStateModule.cpp b/Gems/GameState/Code/Source/GameStateModule.cpp index cb4e1aa3a4..8936fed0d5 100644 --- a/Gems/GameState/Code/Source/GameStateModule.cpp +++ b/Gems/GameState/Code/Source/GameStateModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameState/Code/Source/GameStateSystemComponent.cpp b/Gems/GameState/Code/Source/GameStateSystemComponent.cpp index b7ff848edb..4984edbe80 100644 --- a/Gems/GameState/Code/Source/GameStateSystemComponent.cpp +++ b/Gems/GameState/Code/Source/GameStateSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameState/Code/Source/GameStateSystemComponent.h b/Gems/GameState/Code/Source/GameStateSystemComponent.h index 23d3a1585f..6ac0ab443e 100644 --- a/Gems/GameState/Code/Source/GameStateSystemComponent.h +++ b/Gems/GameState/Code/Source/GameStateSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameState/Code/Tests/GameStateTest.cpp b/Gems/GameState/Code/Tests/GameStateTest.cpp index d4d9a72260..7cbf8e08cb 100644 --- a/Gems/GameState/Code/Tests/GameStateTest.cpp +++ b/Gems/GameState/Code/Tests/GameStateTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameState/Code/gamestate_files.cmake b/Gems/GameState/Code/gamestate_files.cmake index 587ff55fe7..f591a15c3f 100644 --- a/Gems/GameState/Code/gamestate_files.cmake +++ b/Gems/GameState/Code/gamestate_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameState/Code/gamestate_shared_files.cmake b/Gems/GameState/Code/gamestate_shared_files.cmake index 4b4a2ebecb..bdd06407f3 100644 --- a/Gems/GameState/Code/gamestate_shared_files.cmake +++ b/Gems/GameState/Code/gamestate_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameState/Code/gamestate_tests_files.cmake b/Gems/GameState/Code/gamestate_tests_files.cmake index 7f955e5cf3..d83228a1a2 100644 --- a/Gems/GameState/Code/gamestate_tests_files.cmake +++ b/Gems/GameState/Code/gamestate_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/CMakeLists.txt b/Gems/GameStateSamples/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/GameStateSamples/CMakeLists.txt +++ b/Gems/GameStateSamples/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/CMakeLists.txt b/Gems/GameStateSamples/Code/CMakeLists.txt index f142a2afff..17af09ac90 100644 --- a/Gems/GameStateSamples/Code/CMakeLists.txt +++ b/Gems/GameStateSamples/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameOptionRequestBus.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameOptionRequestBus.h index 7b3dd9db8a..cf9e01c6f3 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameOptionRequestBus.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameOptionRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.h index 844d7cd30c..48627fbcfd 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.inl index ae23b779a3..2370fe19aa 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelLoading.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.h index c3e8fa12fc..56f5c4aa70 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.inl index 50d8309f09..7d28f6d43c 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelPaused.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.h index 0ff9ec9bc3..ffc1140a7c 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.inl index 18e8646384..37dc50c8f7 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLevelRunning.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.h index 292789f319..f9493ad375 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.inl index 5669151abc..7c59be1022 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateLocalUserLobby.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.h index 5ae034c7b7..864c36ab16 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.inl index fa9361a251..859a840fd0 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateMainMenu.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.h index e1a1b55ccb..8a05647cfe 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.inl index be40bce8de..ae2d901638 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStateOptionsMenu.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.h index 1120d2b75e..b044774c3b 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.inl index d77ed9a9d0..452c691428 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryControllerDisconnected.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.h index feab636804..1e8bd08e03 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.inl index fdc6813ac0..586ec578d1 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserMonitor.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.h index 4c320ffc04..02e5cfddf7 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.inl index 200300a455..a863de1632 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSelection.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.h b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.h index 035ba6ec8c..0f9cea7c0c 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.h +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.inl b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.inl index fbecc5b6be..996cff075f 100644 --- a/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.inl +++ b/Gems/GameStateSamples/Code/Include/GameStateSamples/GameStatePrimaryUserSignedOut.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Android.h b/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Android.h index 667ef359dd..55f1de5f5a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Android.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Platform.h b/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Platform.h index d588ccafd7..c38e3f017a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Platform.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Android/GameStateSamples/GameStateSamples_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Android/platform_android_files.cmake b/Gems/GameStateSamples/Code/Include/Platform/Android/platform_android_files.cmake index e1979b96ea..07bf379582 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Android/platform_android_files.cmake +++ b/Gems/GameStateSamples/Code/Include/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Linux.h b/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Linux.h index 667ef359dd..55f1de5f5a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Linux.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Platform.h b/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Platform.h index 24787b4459..5569aed8c9 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Platform.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Linux/GameStateSamples/GameStateSamples_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Linux/platform_linux_files.cmake b/Gems/GameStateSamples/Code/Include/Platform/Linux/platform_linux_files.cmake index 7b67f4157c..b4ab7d9f85 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Linux/platform_linux_files.cmake +++ b/Gems/GameStateSamples/Code/Include/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Mac.h b/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Mac.h index 667ef359dd..55f1de5f5a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Mac.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Platform.h b/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Platform.h index 31b7c78c8b..9651b87b7a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Platform.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Mac/GameStateSamples/GameStateSamples_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Mac/platform_mac_files.cmake b/Gems/GameStateSamples/Code/Include/Platform/Mac/platform_mac_files.cmake index 94d4c66c16..c7ba7886ce 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Mac/platform_mac_files.cmake +++ b/Gems/GameStateSamples/Code/Include/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Platform.h b/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Platform.h index 6a4072428a..190cc4b27a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Platform.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Windows.h b/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Windows.h index 667ef359dd..55f1de5f5a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Windows.h +++ b/Gems/GameStateSamples/Code/Include/Platform/Windows/GameStateSamples/GameStateSamples_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/Windows/platform_windows_files.cmake b/Gems/GameStateSamples/Code/Include/Platform/Windows/platform_windows_files.cmake index 298cb0468c..007eb766f8 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/Windows/platform_windows_files.cmake +++ b/Gems/GameStateSamples/Code/Include/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_Platform.h b/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_Platform.h index dbfd3b4263..db4f3407c6 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_Platform.h +++ b/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_iOS.h b/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_iOS.h index 667ef359dd..55f1de5f5a 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_iOS.h +++ b/Gems/GameStateSamples/Code/Include/Platform/iOS/GameStateSamples/GameStateSamples_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/Include/Platform/iOS/platform_ios_files.cmake b/Gems/GameStateSamples/Code/Include/Platform/iOS/platform_ios_files.cmake index 47e655fb98..cb4042a0b1 100644 --- a/Gems/GameStateSamples/Code/Include/Platform/iOS/platform_ios_files.cmake +++ b/Gems/GameStateSamples/Code/Include/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/Source/GameStateSamplesModule.cpp b/Gems/GameStateSamples/Code/Source/GameStateSamplesModule.cpp index 8bb8e550b0..7138a14cc4 100644 --- a/Gems/GameStateSamples/Code/Source/GameStateSamplesModule.cpp +++ b/Gems/GameStateSamples/Code/Source/GameStateSamplesModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GameStateSamples/Code/gamestatesamples_headers_files.cmake b/Gems/GameStateSamples/Code/gamestatesamples_headers_files.cmake index 058429c007..d000d9d5ac 100644 --- a/Gems/GameStateSamples/Code/gamestatesamples_headers_files.cmake +++ b/Gems/GameStateSamples/Code/gamestatesamples_headers_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GameStateSamples/Code/gamestatesamples_shared_files.cmake b/Gems/GameStateSamples/Code/gamestatesamples_shared_files.cmake index 1abef40869..84fa27623e 100644 --- a/Gems/GameStateSamples/Code/gamestatesamples_shared_files.cmake +++ b/Gems/GameStateSamples/Code/gamestatesamples_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Gestures/CMakeLists.txt b/Gems/Gestures/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Gestures/CMakeLists.txt +++ b/Gems/Gestures/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Gestures/Code/CMakeLists.txt b/Gems/Gestures/Code/CMakeLists.txt index 9255aa7bfd..175dbaf1ef 100644 --- a/Gems/Gestures/Code/CMakeLists.txt +++ b/Gems/Gestures/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.h index 9ceb0ce61e..57e974a370 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl index 7e6971eae6..c14fd6c0f1 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerClickOrTap.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.h index 28b0fe95db..d5c2a4d349 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl index 761d348977..f1166a4aae 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerDrag.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h index 23882094a1..5e47ce945b 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl index 8385037d32..8029ee4a87 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerHold.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.h index a619d75652..ab9b1a0a44 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl index f2324a2d95..2eb3254988 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerPinch.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.h index 4cb9eb6156..8c47ca67fa 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl index e255f4df24..b6277a1c82 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerRotate.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h index e0b2d73a05..a2d0629a40 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.inl b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.inl index 5ba76c0504..8e82463ac4 100644 --- a/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.inl +++ b/Gems/Gestures/Code/Include/Gestures/GestureRecognizerSwipe.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Include/Gestures/IGestureRecognizer.h b/Gems/Gestures/Code/Include/Gestures/IGestureRecognizer.h index 6265d8a772..69e28df102 100644 --- a/Gems/Gestures/Code/Include/Gestures/IGestureRecognizer.h +++ b/Gems/Gestures/Code/Include/Gestures/IGestureRecognizer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Mocks/IRecognizerMock.h b/Gems/Gestures/Code/Mocks/IRecognizerMock.h index cd2d18b04a..80a13db362 100644 --- a/Gems/Gestures/Code/Mocks/IRecognizerMock.h +++ b/Gems/Gestures/Code/Mocks/IRecognizerMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/GesturesModule.cpp b/Gems/Gestures/Code/Source/GesturesModule.cpp index 31a0126896..404ed2f265 100644 --- a/Gems/Gestures/Code/Source/GesturesModule.cpp +++ b/Gems/Gestures/Code/Source/GesturesModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp b/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp index 9a8c583cfd..a5cafecb68 100644 --- a/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp +++ b/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/GesturesSystemComponent.h b/Gems/Gestures/Code/Source/GesturesSystemComponent.h index 5b7c9142d1..c760615239 100644 --- a/Gems/Gestures/Code/Source/GesturesSystemComponent.h +++ b/Gems/Gestures/Code/Source/GesturesSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/Gestures_precompiled.h b/Gems/Gestures/Code/Source/Gestures_precompiled.h index df0fc10464..51811e518a 100644 --- a/Gems/Gestures/Code/Source/Gestures_precompiled.h +++ b/Gems/Gestures/Code/Source/Gestures_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGesture.cpp b/Gems/Gestures/Code/Source/InputChannelGesture.cpp index bcde86b08f..0a0e92ef1e 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesture.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGesture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGesture.h b/Gems/Gestures/Code/Source/InputChannelGesture.h index 54f64bc946..ad22619544 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesture.h +++ b/Gems/Gestures/Code/Source/InputChannelGesture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp index f6e36ea199..843ee5b529 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.h b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.h index 21d1a03e5b..066d40e63d 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.h +++ b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp b/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp index 6f97f097d0..6f3121b12d 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureDrag.h b/Gems/Gestures/Code/Source/InputChannelGestureDrag.h index 42dc1ae56f..7956349ae8 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureDrag.h +++ b/Gems/Gestures/Code/Source/InputChannelGestureDrag.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp b/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp index 4da8b7535d..ee8c382667 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureHold.h b/Gems/Gestures/Code/Source/InputChannelGestureHold.h index 96c81da0a1..7f4c53b4d7 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureHold.h +++ b/Gems/Gestures/Code/Source/InputChannelGestureHold.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp b/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp index 20df922ee8..f8981e996f 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGesturePinch.h b/Gems/Gestures/Code/Source/InputChannelGesturePinch.h index 47cbcb9b50..89c18b58be 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesturePinch.h +++ b/Gems/Gestures/Code/Source/InputChannelGesturePinch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp b/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp index c31aa3ed03..baeca606fa 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureRotate.h b/Gems/Gestures/Code/Source/InputChannelGestureRotate.h index b0ad5c7621..33da8d62d7 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureRotate.h +++ b/Gems/Gestures/Code/Source/InputChannelGestureRotate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp index 6b2d965605..360f2c071a 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.h b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.h index ea748b1581..ae2ae4abac 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.h +++ b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputDeviceGestures.cpp b/Gems/Gestures/Code/Source/InputDeviceGestures.cpp index 17016605cc..9ecd57a7b2 100644 --- a/Gems/Gestures/Code/Source/InputDeviceGestures.cpp +++ b/Gems/Gestures/Code/Source/InputDeviceGestures.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Source/InputDeviceGestures.h b/Gems/Gestures/Code/Source/InputDeviceGestures.h index 4ca532941a..2afd4a4f65 100644 --- a/Gems/Gestures/Code/Source/InputDeviceGestures.h +++ b/Gems/Gestures/Code/Source/InputDeviceGestures.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Tests/BaseGestureTest.h b/Gems/Gestures/Code/Tests/BaseGestureTest.h index b839567c3b..6ba69ad5e4 100644 --- a/Gems/Gestures/Code/Tests/BaseGestureTest.h +++ b/Gems/Gestures/Code/Tests/BaseGestureTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp b/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp index b270ac6a17..58e33d4e85 100644 --- a/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp +++ b/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp b/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp index 5dce9001a7..7fce2db313 100644 --- a/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp +++ b/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/Tests/GesturesTest.cpp b/Gems/Gestures/Code/Tests/GesturesTest.cpp index d2d97956b9..e92f8c4d9c 100644 --- a/Gems/Gestures/Code/Tests/GesturesTest.cpp +++ b/Gems/Gestures/Code/Tests/GesturesTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Gestures/Code/gestures_files.cmake b/Gems/Gestures/Code/gestures_files.cmake index ceba5bb483..3faf88eea7 100644 --- a/Gems/Gestures/Code/gestures_files.cmake +++ b/Gems/Gestures/Code/gestures_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Gestures/Code/gestures_shared_files.cmake b/Gems/Gestures/Code/gestures_shared_files.cmake index 0cd32e4bc1..5bea6dacbe 100644 --- a/Gems/Gestures/Code/gestures_shared_files.cmake +++ b/Gems/Gestures/Code/gestures_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Gestures/Code/gestures_test_files.cmake b/Gems/Gestures/Code/gestures_test_files.cmake index b54f1e8e5f..597c341bae 100644 --- a/Gems/Gestures/Code/gestures_test_files.cmake +++ b/Gems/Gestures/Code/gestures_test_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/CMakeLists.txt b/Gems/GradientSignal/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/GradientSignal/CMakeLists.txt +++ b/Gems/GradientSignal/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/Code/CMakeLists.txt b/Gems/GradientSignal/Code/CMakeLists.txt index c8c29da072..70077a06da 100644 --- a/Gems/GradientSignal/Code/CMakeLists.txt +++ b/Gems/GradientSignal/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ConstantGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ConstantGradientRequestBus.h index 587b058e20..5bdf3953c4 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ConstantGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ConstantGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/DitherGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/DitherGradientRequestBus.h index 2e1bca1555..f52c873df4 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/DitherGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/DitherGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewContextRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewContextRequestBus.h index 8661ace1b8..b97f8310b1 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewContextRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewContextRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewRequestBus.h index 24ef577d74..764acc1175 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientPreviewRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientRequestBus.h index d722780a48..affc2e8c26 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientSurfaceDataRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientSurfaceDataRequestBus.h index 66d001181d..47a3a992eb 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientSurfaceDataRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientSurfaceDataRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformModifierRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformModifierRequestBus.h index 08f5abf3f4..cde361fa1a 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformModifierRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformModifierRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformRequestBus.h index e149660991..5c102f1871 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/GradientTransformRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ImageGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ImageGradientRequestBus.h index 852cb1a697..2d1f8a1eb2 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ImageGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ImageGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/InvertGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/InvertGradientRequestBus.h index 3ad73fd3d9..e885ead0b5 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/InvertGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/InvertGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/LevelsGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/LevelsGradientRequestBus.h index 5ff4f18b42..e423ca6368 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/LevelsGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/LevelsGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/MixedGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/MixedGradientRequestBus.h index 6b5c393505..4349682628 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/MixedGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/MixedGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PerlinGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PerlinGradientRequestBus.h index 274de2eac4..6243b4b543 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PerlinGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PerlinGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PosterizeGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PosterizeGradientRequestBus.h index 3d18dc4a92..88f7a0d45b 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PosterizeGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/PosterizeGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/RandomGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/RandomGradientRequestBus.h index af7b384e9e..2aaeba629e 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/RandomGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/RandomGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ReferenceGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ReferenceGradientRequestBus.h index f017f36926..ae483d755d 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ReferenceGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ReferenceGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SectorDataRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SectorDataRequestBus.h index d546923af1..36622a93a6 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SectorDataRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SectorDataRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ShapeAreaFalloffGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ShapeAreaFalloffGradientRequestBus.h index 06d2aafbf5..6522442030 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ShapeAreaFalloffGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ShapeAreaFalloffGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepGradientRequestBus.h index 186f434e29..1c3f51d6b8 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepRequestBus.h index 7c4440bb4d..7f25556896 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SmoothStepRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceAltitudeGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceAltitudeGradientRequestBus.h index 66dbfc5458..86bfe84ce6 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceAltitudeGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceAltitudeGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceMaskGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceMaskGradientRequestBus.h index 0609b025ff..cda9afa8a0 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceMaskGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceMaskGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceSlopeGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceSlopeGradientRequestBus.h index 4ddccd7c10..e1dcdec8e9 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceSlopeGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/SurfaceSlopeGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ThresholdGradientRequestBus.h b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ThresholdGradientRequestBus.h index a75fb3b48a..4c8358817a 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ThresholdGradientRequestBus.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Ebuses/ThresholdGradientRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.h b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.h index f56d0e0b9e..04b4320800 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.inl b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.inl index 5c5db38063..61d0dfc933 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.inl +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientComponentBase.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientPreviewRenderer.h b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientPreviewRenderer.h index b50f8ca3a4..a8e68b4a3b 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientPreviewRenderer.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientPreviewRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientTypeIds.h b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientTypeIds.h index 06189592d1..3b152641b7 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientTypeIds.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Editor/EditorGradientTypeIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/GradientImageConversion.h b/Gems/GradientSignal/Code/Include/GradientSignal/GradientImageConversion.h index 3958960f00..7aaaf3868b 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/GradientImageConversion.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/GradientImageConversion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/GradientSampler.h b/Gems/GradientSignal/Code/Include/GradientSignal/GradientSampler.h index b4271bd796..735e373ec4 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/GradientSampler.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/GradientSampler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/ImageAsset.h b/Gems/GradientSignal/Code/Include/GradientSignal/ImageAsset.h index 5ba56b2dc0..9cd1f88c95 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/ImageAsset.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/ImageAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/ImageSettings.h b/Gems/GradientSignal/Code/Include/GradientSignal/ImageSettings.h index 70b7f6d7d5..2e05b12698 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/ImageSettings.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/ImageSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/PerlinImprovedNoise.h b/Gems/GradientSignal/Code/Include/GradientSignal/PerlinImprovedNoise.h index a3de1a11ae..8bc7212710 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/PerlinImprovedNoise.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/PerlinImprovedNoise.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h b/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h index 10374616db..382e821a59 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/SmoothStep.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Include/GradientSignal/Util.h b/Gems/GradientSignal/Code/Include/GradientSignal/Util.h index 0056ae03c7..a3fb3e9b1f 100644 --- a/Gems/GradientSignal/Code/Include/GradientSignal/Util.h +++ b/Gems/GradientSignal/Code/Include/GradientSignal/Util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp index ee352b0414..7cb7ef928e 100644 --- a/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.h index c61329921d..9e4bb79404 100644 --- a/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/ConstantGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp index ec6772abd2..2730cfafba 100644 --- a/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.h index 0222783cd2..5541391f9e 100644 --- a/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/DitherGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp b/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp index 101c794764..c19ad7e5b0 100644 --- a/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.h b/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.h index 85f38a14ea..d13e7cb43f 100644 --- a/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/GradientSurfaceDataComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp index 668c1ba019..617bdc759f 100644 --- a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.h b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.h index 8a27da56db..c83a7d9562 100644 --- a/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/GradientTransformComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp index ba75f0fc67..21378d705e 100644 --- a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.h index fc67238292..66dd554058 100644 --- a/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/ImageGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp index 3e72e0ce27..1d8f742a31 100644 --- a/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.h index 0bd6305403..88868bfdb5 100644 --- a/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/InvertGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp index c73c7a7f6a..950cc3b4b6 100644 --- a/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.h index ea824e88fe..1c7fa54ae4 100644 --- a/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/LevelsGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp index ae030bb828..722ade48a0 100644 --- a/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.h index 03643b0a94..bc28f9ce8e 100644 --- a/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/MixedGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp index 1f6a42df68..fed2c49590 100644 --- a/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.h index 9e654cfe1a..c79f5a1b99 100644 --- a/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/PerlinGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp index d94ecb8346..0346c0adf9 100644 --- a/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.h index 3f24d57d69..0adf52340c 100644 --- a/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/PosterizeGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp index 3a189831ca..8268fd2a7b 100644 --- a/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.h index 9eff9626b5..3e03d39789 100644 --- a/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/RandomGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp index deecd4de38..c3b97e41e2 100644 --- a/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.h index e838971ffd..a5fd16ee8e 100644 --- a/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/ReferenceGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp index ba58694285..943ffca2e2 100644 --- a/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.h index 644169096f..9eb1347a59 100644 --- a/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/ShapeAreaFalloffGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp index 070a5155f6..262c12fb10 100644 --- a/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.h index f1cdbf6915..c9513ad408 100644 --- a/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/SmoothStepGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp index 68a1ed00d3..23a4d122d6 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.h index 28cb71c5b8..7f6b5d285c 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceAltitudeGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp index dc125e193d..0c7331a64a 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.h index a877e6399a..691730e708 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceMaskGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp index 5a830aba59..bb7e5b3528 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.h index 4eec21b9e6..23ea1ffa1d 100644 --- a/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/SurfaceSlopeGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp index afdead0ee4..04819dd27a 100644 --- a/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.h b/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.h index fa95e2c142..414611e2b9 100644 --- a/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Components/ThresholdGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp index a39662eff1..78b7fcb3b4 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.h index fd74228fa0..61e3566350 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorConstantGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp index 2d9da8d6e3..cd5e302cb5 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.h index 0e91fb5e40..9f17dbda5e 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorDitherGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp index dffce040c7..12407bdc7c 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientComponentBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp index 4bc8fb62ec..dd9079d118 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.h index fea22d4c47..8b4363ae24 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientSurfaceDataComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp index d07321f260..fb8cbde476 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.h index bb932f7e74..ccea8df71e 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorGradientTransformComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp index 4b3cd96285..f2bae481f8 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.h index 1831ea980e..5c0079458e 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp index 699a6792e4..4c7901223f 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.h index b82b77ca0f..25e589346c 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp index eb091f638a..907fc3fcb4 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.h index bf9fd65df6..1597b593ba 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorImageProcessingSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp index 709a864be5..1fdfcdfc69 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.h index 1132e9788a..80503a1685 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorInvertGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp index 70c1629a4a..eb3652ff08 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.h index 4c7e54540d..6b132c0dc6 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorLevelsGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp index 2b36ca129f..e78b6f1706 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.h index ed34b105ea..7d4cfa32dd 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorMixedGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp index 2d76811335..58c814bfc7 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.h index c37840262a..57574efcb4 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorPerlinGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp index 6a1ae35feb..1ab1f5e480 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.h index dc521b9073..679ca5a554 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorPosterizeGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp index 1529757e3b..310b188f43 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.h index 76c9e0bf5f..42f4860536 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorRandomGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp index 0039dbe4da..40b62c78e2 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.h index 38293ee5f3..31184fa9f2 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorReferenceGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp index d39506c2b6..2d8d471d2d 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.h index 4f519dceed..2c097ee5e6 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorShapeAreaFalloffGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp index 3d96986b5c..98fd56c0b1 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.h index 4b74b1878f..db9c1c7b94 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSmoothStepGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp index 30c9407e18..290eda59c5 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.h index e5e0bd9325..e52a0d0bed 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceAltitudeGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp index 57524e5771..7d5d30c5ea 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.h index 2cf135c711..9c24ca4bc4 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceMaskGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp index ac551c6677..5d36d79b19 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.h index 3b620834ed..c246908f75 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorSurfaceSlopeGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp b/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp index f23e78c6e2..00bbf97a1e 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp +++ b/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.h b/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.h index 41109e82cb..4a947ea12c 100644 --- a/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.h +++ b/Gems/GradientSignal/Code/Source/Editor/EditorThresholdGradientComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp b/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp index 44426a25c4..fe3800feda 100644 --- a/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp +++ b/Gems/GradientSignal/Code/Source/GradientImageConversion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSampler.cpp b/Gems/GradientSignal/Code/Source/GradientSampler.cpp index d588d69fad..944eef2e42 100644 --- a/Gems/GradientSignal/Code/Source/GradientSampler.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSampler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp index 068b79ae28..c4fd0983d2 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h index 43057ea13c..c25a9c7e1c 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h +++ b/Gems/GradientSignal/Code/Source/GradientSignalEditorModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp b/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp index 679d5384ac..b49772656f 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSignalModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSignalModule.h b/Gems/GradientSignal/Code/Source/GradientSignalModule.h index 3eaddcabc2..a056a02fbd 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalModule.h +++ b/Gems/GradientSignal/Code/Source/GradientSignalModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp b/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp index 18ca123ae8..5c47944859 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp +++ b/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.h b/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.h index 0d7bdc5ca0..a270c969b9 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.h +++ b/Gems/GradientSignal/Code/Source/GradientSignalSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/GradientSignal_precompiled.h b/Gems/GradientSignal/Code/Source/GradientSignal_precompiled.h index 4899df5161..d424689241 100644 --- a/Gems/GradientSignal/Code/Source/GradientSignal_precompiled.h +++ b/Gems/GradientSignal/Code/Source/GradientSignal_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/ImageAsset.cpp b/Gems/GradientSignal/Code/Source/ImageAsset.cpp index 3d5ff3c8ab..caf76c62af 100644 --- a/Gems/GradientSignal/Code/Source/ImageAsset.cpp +++ b/Gems/GradientSignal/Code/Source/ImageAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/ImageSettings.cpp b/Gems/GradientSignal/Code/Source/ImageSettings.cpp index e289663a75..8f7d28dd35 100644 --- a/Gems/GradientSignal/Code/Source/ImageSettings.cpp +++ b/Gems/GradientSignal/Code/Source/ImageSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp b/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp index 430e0e1d50..fbdaa6a072 100644 --- a/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp +++ b/Gems/GradientSignal/Code/Source/PerlinImprovedNoise.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/SmoothStep.cpp b/Gems/GradientSignal/Code/Source/SmoothStep.cpp index 3cf5c35b59..1ce2f07739 100644 --- a/Gems/GradientSignal/Code/Source/SmoothStep.cpp +++ b/Gems/GradientSignal/Code/Source/SmoothStep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp b/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp index e3e0d286ce..d82638eda3 100644 --- a/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp +++ b/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.h b/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.h index d0a71c9714..954dba9721 100644 --- a/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.h +++ b/Gems/GradientSignal/Code/Source/UI/GradientPreviewDataWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp b/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp index a9614bb0a2..f4039e3807 100644 --- a/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp +++ b/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.h b/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.h index 58ab1e3314..fe9ca9f04c 100644 --- a/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.h +++ b/Gems/GradientSignal/Code/Source/UI/GradientPreviewWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Source/Util.cpp b/Gems/GradientSignal/Code/Source/Util.cpp index 6e352ea4fe..67ede4e4a3 100644 --- a/Gems/GradientSignal/Code/Source/Util.cpp +++ b/Gems/GradientSignal/Code/Source/Util.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp b/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp index f4471a0231..c2ec4e798f 100644 --- a/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp +++ b/Gems/GradientSignal/Code/Tests/EditorGradientSignalPreviewTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp index 417e3c08fb..8fc95f3a84 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalImageTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp index 044944bdcb..e9a9956bac 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalReferencesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp index 5a9a9b49be..170f978f64 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalServicesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp index d6778ad212..a0ec74d18b 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalSurfaceTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp b/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp index ed915e5833..d6457b5bb2 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp +++ b/Gems/GradientSignal/Code/Tests/GradientSignalTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/GradientSignalTestMocks.h b/Gems/GradientSignal/Code/Tests/GradientSignalTestMocks.h index dea3152fb0..6ce39e4047 100644 --- a/Gems/GradientSignal/Code/Tests/GradientSignalTestMocks.h +++ b/Gems/GradientSignal/Code/Tests/GradientSignalTestMocks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp b/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp index 98e8a838ad..344c2f5868 100644 --- a/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp +++ b/Gems/GradientSignal/Code/Tests/ImageAssetTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GradientSignal/Code/gradientsignal_editor_files.cmake b/Gems/GradientSignal/Code/gradientsignal_editor_files.cmake index 53fb841dfa..dbe7a39a21 100644 --- a/Gems/GradientSignal/Code/gradientsignal_editor_files.cmake +++ b/Gems/GradientSignal/Code/gradientsignal_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/Code/gradientsignal_editor_shared_files.cmake b/Gems/GradientSignal/Code/gradientsignal_editor_shared_files.cmake index 8e8a10aeec..2caee268b8 100644 --- a/Gems/GradientSignal/Code/gradientsignal_editor_shared_files.cmake +++ b/Gems/GradientSignal/Code/gradientsignal_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/Code/gradientsignal_editor_tests_files.cmake b/Gems/GradientSignal/Code/gradientsignal_editor_tests_files.cmake index 654da8220e..5c07d23589 100644 --- a/Gems/GradientSignal/Code/gradientsignal_editor_tests_files.cmake +++ b/Gems/GradientSignal/Code/gradientsignal_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/Code/gradientsignal_files.cmake b/Gems/GradientSignal/Code/gradientsignal_files.cmake index d61817fe99..cfd3bf60cc 100644 --- a/Gems/GradientSignal/Code/gradientsignal_files.cmake +++ b/Gems/GradientSignal/Code/gradientsignal_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/Code/gradientsignal_shared_files.cmake b/Gems/GradientSignal/Code/gradientsignal_shared_files.cmake index 4d86f7ac1c..14508ad10f 100644 --- a/Gems/GradientSignal/Code/gradientsignal_shared_files.cmake +++ b/Gems/GradientSignal/Code/gradientsignal_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GradientSignal/Code/gradientsignal_tests_files.cmake b/Gems/GradientSignal/Code/gradientsignal_tests_files.cmake index a8fbb313ff..8e1d31049e 100644 --- a/Gems/GradientSignal/Code/gradientsignal_tests_files.cmake +++ b/Gems/GradientSignal/Code/gradientsignal_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphCanvas/CMakeLists.txt b/Gems/GraphCanvas/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/GraphCanvas/CMakeLists.txt +++ b/Gems/GraphCanvas/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphCanvas/Code/CMakeLists.txt b/Gems/GraphCanvas/Code/CMakeLists.txt index 413cb39fc0..d0daa21733 100644 --- a/Gems/GraphCanvas/Code/CMakeLists.txt +++ b/Gems/GraphCanvas/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphCanvas/Code/GraphCanvas_game_files.cmake b/Gems/GraphCanvas/Code/GraphCanvas_game_files.cmake index 9c01a54e67..95c49190a2 100644 --- a/Gems/GraphCanvas/Code/GraphCanvas_game_files.cmake +++ b/Gems/GraphCanvas/Code/GraphCanvas_game_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilterBus.h b/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilterBus.h index bafc0b35e7..35f3b97b91 100644 --- a/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilterBus.h +++ b/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilterBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilters.h b/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilters.h index 8385a07eac..15934e9891 100644 --- a/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilters.h +++ b/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/ConnectionFilters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/DataConnectionFilters.h b/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/DataConnectionFilters.h index c451c6bc43..2c71d10ad8 100644 --- a/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/DataConnectionFilters.h +++ b/Gems/GraphCanvas/Code/Include/GraphCanvas/Components/Connections/ConnectionFilters/DataConnectionFilters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Include/GraphCanvas/Widgets/RootGraphicsItem.h b/Gems/GraphCanvas/Code/Include/GraphCanvas/Widgets/RootGraphicsItem.h index 12da5aec92..d54818f78a 100644 --- a/Gems/GraphCanvas/Code/Include/GraphCanvas/Widgets/RootGraphicsItem.h +++ b/Gems/GraphCanvas/Code/Include/GraphCanvas/Widgets/RootGraphicsItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Include/GraphCanvas/tools.h b/Gems/GraphCanvas/Code/Include/GraphCanvas/tools.h index 7ea0473b80..b02e845de2 100644 --- a/Gems/GraphCanvas/Code/Include/GraphCanvas/tools.h +++ b/Gems/GraphCanvas/Code/Include/GraphCanvas/tools.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp index f1ca9c0bb4..6ddb60e0c1 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.h b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.h index 881e739f90..73ed07153c 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorComponent.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorLayerControllerComponent.h b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorLayerControllerComponent.h index 4a9d3732a2..fc9cb2ee1e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorLayerControllerComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorLayerControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp index fe7d86f2c6..525654423d 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.h b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.h index 0b17db1f8b..e0fdfa3016 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkAnchor/BookmarkAnchorVisualComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp index 8d6116b58a..cfb180288d 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.h b/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.h index a3e75c7aa2..aa6270b4ec 100644 --- a/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/BookmarkManagerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp index 069ff37c2c..07cb535336 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h index 5d6702c577..7147128d03 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp index 2794cddf4e..a6cdae36d7 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.h b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.h index 02a264c372..e3c0076a58 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionLayerControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp index 6f06a2a837..da426b294f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h index 33394b5ebd..053b4544be 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/ConnectionVisualComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp index 4981f2d652..b570137780 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.h b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.h index 179f6a305d..fabecacde0 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp index 1f1777e919..eec2e7dbf7 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.h b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.h index 27f9aae33f..1905a471b0 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionGraphicsItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp index 4afe592475..2a7ba62f55 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.h b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.h index fc26a1a817..c545ec31d6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Connections/DataConnections/DataConnectionVisualComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp index 1ec5e44615..0deb608731 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.h b/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.h index 4765c4f3af..47e9fb94ab 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/GeometryComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp index 436e319d8e..c960c43118 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/GridComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/GridComponent.h b/Gems/GraphCanvas/Code/Source/Components/GridComponent.h index 92991a4572..9a5f93a048 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GridComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/GridComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp index 65acc78472..b6edd70547 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.h b/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.h index 97393f6e55..4f10634aec 100644 --- a/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/GridVisualComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp index c1811b63ca..ec4f7069ae 100644 --- a/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.h b/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.h index f0f02bdd14..d6cdba2b7f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/LayerControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp index b15115bbb1..73e44586ff 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h index abe5776b10..1c72c64387 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/AssetIdNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp index 788d0cfa88..8839b6516b 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.h index 2cf3fa4a03..a053b23b95 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/BooleanNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp index 44b7ed9e12..b1869d310f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h index 91c68538a2..82080e2c68 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ComboBoxNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp index 648391e41c..f835fb897f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h index 2ac0d745f1..b2a54ecaf6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/EntityIdNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp index 5a9265bee0..abd27849f4 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.h index d62c28ca84..5a2765f2e9 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/NumericNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp index aa3052886a..aacaea8892 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.h index ae3581d136..c291e40938 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/ReadOnlyNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp index c871570553..8f14f7d72e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.h index b07c20898b..e2cd359775 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/StringNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp index 0a3d2d15a7..e1081871f9 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.h index fd02355edf..83beb15b14 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VariableReferenceNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp index ccc496e385..9407e6b71e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.h b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.h index ffbb976d60..5df592e038 100644 --- a/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/Source/Components/NodePropertyDisplays/VectorNodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp index 72c2c66d7b..d0cc78a7fa 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.h index 386657060a..6a2d8c1434 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentLayerControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp index bd195d9eb9..7a6b1799c2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.h index 80e667bb5f..a9baeed324 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeFrameComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp index 1c9af9adb8..7e0e6adbe3 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.h index 4456244adb..d9e14e3fe3 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp index 654aed87aa..d41ca43a00 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.h index a5c280373b..f644d0371d 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentNodeTextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp index e4e401bca6..e1411101d5 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h index d8afb486ea..f298220d41 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Comment/CommentTextGraphicsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp index e78ae096b1..e291afe5e6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h index 40d1a94edb..b1c15457f2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeFrameComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp index 3e8fb6b21d..598ceea26f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.h index b5fbce4cbf..cb83a52b8b 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp index f2c00f140b..4f5b2b96f7 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h index 528a1cc9da..9426d8fe12 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralNodeTitleComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp index 186fa92e46..bb4d06bdc2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.h index 8295f60b57..b4e5b2b41f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/General/GeneralSlotLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp index cde074a24f..3b29a0c525 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.h index b6f1fb5d4e..0655188fde 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/CollapsedNodeGroupComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp index b0e4e04c0b..af52fae065 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.h index 3eac564006..70856e36f9 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupFrameComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayerControllerComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayerControllerComponent.h index 9797b5707a..73c77017e2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayerControllerComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayerControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp index fc17e5f349..1e8a130cb5 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.h index 104574755e..33a79e2cbe 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Group/NodeGroupLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp index 7237817a09..03af347555 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.h index e581c0cb8d..7864e53911 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp index 3896486e11..46917e41ca 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h index 52338d113c..07ae7b45b1 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeFrameGraphicsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayerControllerComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayerControllerComponent.h index 5e9a226d6f..fa8144bbb6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayerControllerComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayerControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayoutComponent.h index c85361fa29..124e55a452 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/NodeLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp index 4d404677a5..3ff15f891f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.h index 3a347f68f9..76a7bf1e54 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Nodes/Wrapper/WrapperNodeLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp index ccf497a0d7..af8b590ef5 100644 --- a/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.h b/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.h index 3c217b98f6..1a7fe2a358 100644 --- a/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/PersistentIdComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp index 8906443fe3..559d8a0b57 100644 --- a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.h b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.h index 5eef37118e..b04701235e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/SceneComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/SceneComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp index 2fc80b9d91..76630d503b 100644 --- a/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.h b/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.h index abc2407d27..1cf0a174c8 100644 --- a/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/SceneMemberComponent.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp index 02975a19a1..e05ed2c033 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.h index 17c7a1c0e1..3d3986b1ff 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp index 8c921c7abb..de7e4e7fa1 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.h index dd6cb5dee4..b908530b28 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotConnectionPin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp index 92f7c1d37c..415f51f9d2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.h index 7fe743c9a0..cfa64c20d6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Data/DataSlotLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp index f41fd63755..ac678b9303 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.h index 378c589b4b..86af584bec 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Default/DefaultSlotLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp index 0014b6568d..c1785790d4 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.h index 268f36a671..181bd7ac27 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp index 4b7592ddf8..14368662af 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.h index 3ddde1cd31..2a32eb21f7 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotConnectionPin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp index d887d3ab79..5fd11dacf0 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.h index 05ffa6fdfa..a4cb4b51cf 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Execution/ExecutionSlotLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp index e6a2027b49..6ed94c274e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.h index 0c849dca18..0870bb389c 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp index 001ac5aae2..374f4eb0aa 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.h index 8cefe35041..61b399040f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotConnectionPin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp index 7ba1bdc9e6..9664583e6f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.h index de309ee987..bd0430b1d2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Extender/ExtenderSlotLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp index 559fd13892..9e6827a358 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.h index 182266943f..b58d1e1428 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp index db241ccd4a..da08357bed 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.h index 25af7c69b8..e44a92a8aa 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/Property/PropertySlotLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp index a014bae585..df92ce4a0e 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.h index 428223af5c..b378d3bc40 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp index 1ed2d23049..85a015c8a6 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.h index c023052e69..0a601fd638 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp index 4ff2ebc595..cd903b09f1 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.h b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.h index a4ccf3f0a5..8eda774969 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotConnectionPin.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp index 712e32e871..aa19ec11e2 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.h b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.h index a418dd8f5d..76ae56d650 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutItem.h b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutItem.h index 7bd4006b86..577dae4c9f 100644 --- a/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutItem.h +++ b/Gems/GraphCanvas/Code/Source/Components/Slots/SlotLayoutItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp b/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp index 2424f6e5ec..cf5f89d4c5 100644 --- a/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp +++ b/Gems/GraphCanvas/Code/Source/Components/StylingComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Components/StylingComponent.h b/Gems/GraphCanvas/Code/Source/Components/StylingComponent.h index e69c69ac0e..295fb22dbe 100644 --- a/Gems/GraphCanvas/Code/Source/Components/StylingComponent.h +++ b/Gems/GraphCanvas/Code/Source/Components/StylingComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp b/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp index 724308c7e7..011548ce5a 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp +++ b/Gems/GraphCanvas/Code/Source/GraphCanvas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvas.h b/Gems/GraphCanvas/Code/Source/GraphCanvas.h index 65cef4c1f7..ddb29b18c0 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvas.h +++ b/Gems/GraphCanvas/Code/Source/GraphCanvas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp b/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp index 816d4830c2..17f61b2d7b 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp +++ b/Gems/GraphCanvas/Code/Source/GraphCanvasEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp b/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp index e65dc310cd..5cbf440762 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp +++ b/Gems/GraphCanvas/Code/Source/GraphCanvasGameModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/GraphCanvasModule.h b/Gems/GraphCanvas/Code/Source/GraphCanvasModule.h index d08a3cf6e1..a113ec4567 100644 --- a/Gems/GraphCanvas/Code/Source/GraphCanvasModule.h +++ b/Gems/GraphCanvas/Code/Source/GraphCanvasModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp b/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp index ab98368049..b1d034d033 100644 --- a/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp +++ b/Gems/GraphCanvas/Code/Source/Tests/GraphCanvasTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.cpp index ca07266fed..c9dae4d683 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h b/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h index de3c8faeeb..7759dc131c 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp index c9037a8fe2..3013187f73 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.h b/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.h index 94116c26e3..db3fc951a3 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.h +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationBus.h b/Gems/GraphCanvas/Code/Source/Translation/TranslationBus.h index 684de84763..267ac08f90 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationBus.h +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp index fc13fb425f..5296711790 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.h b/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.h index e84dcd3fe8..828e74a928 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.h +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp index eaa26fc10d..ffbcba828b 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h index a6182bc0ce..cb94c0cf5d 100644 --- a/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h +++ b/Gems/GraphCanvas/Code/Source/Translation/TranslationSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp index ed906aa4b6..524021464d 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.h b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.h index 21b9cde44e..c6dc3ccaea 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.h +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasCheckBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp index ad1c4c22b6..c5752aa6b4 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h index 6020dba0f2..07318d7535 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasComboBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp index 4d58f7c91e..e35d4720d9 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h index e0bd631d10..43128601ab 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h +++ b/Gems/GraphCanvas/Code/Source/Widgets/GraphCanvasLabel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp b/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp index 6384889dd4..9281a6709d 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp +++ b/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.h b/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.h index f898b70e0a..c9bd2ee160 100644 --- a/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.h +++ b/Gems/GraphCanvas/Code/Source/Widgets/NodePropertyDisplayWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/Source/tools.cpp b/Gems/GraphCanvas/Code/Source/tools.cpp index 5b681479cb..ee17d6fab0 100644 --- a/Gems/GraphCanvas/Code/Source/tools.cpp +++ b/Gems/GraphCanvas/Code/Source/tools.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Bookmarks/BookmarkBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Bookmarks/BookmarkBus.h index 6323067b9b..5955ccf777 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Bookmarks/BookmarkBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Bookmarks/BookmarkBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.cpp index efac598931..26a67e6b69 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.h index 5621cb003f..969b3942c0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ColorPaletteManager/ColorPaletteManagerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Connections/ConnectionBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Connections/ConnectionBus.h index 57d42c7b7d..3c7d339029 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Connections/ConnectionBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Connections/ConnectionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/EntitySaveDataBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/EntitySaveDataBus.h index 2d78b62fe4..255cdcd463 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/EntitySaveDataBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/EntitySaveDataBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GeometryBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GeometryBus.h index 663e3eb85d..bd432c3d75 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GeometryBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GeometryBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GraphCanvasPropertyBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GraphCanvasPropertyBus.h index 1c7d690a50..6ccfe2b486 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GraphCanvasPropertyBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GraphCanvasPropertyBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GridBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GridBus.h index 671807eadf..7402b2e9ce 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GridBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/GridBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/LayerBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/LayerBus.h index c379b6ac14..25ea429531 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/LayerBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/LayerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/MimeDataHandlerBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/MimeDataHandlerBus.h index 6ca25eab92..3daa3e89c4 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/MimeDataHandlerBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/MimeDataHandlerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/AssetIdDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/AssetIdDataInterface.h index 9683652cc8..889f8056f7 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/AssetIdDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/AssetIdDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/BooleanDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/BooleanDataInterface.h index 10d0a9451d..fb64320644 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/BooleanDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/BooleanDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ComboBoxDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ComboBoxDataInterface.h index f15ca7583a..6f67cc0237 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ComboBoxDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ComboBoxDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DataInterface.h index a87ae09aa2..9a2708598e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DoubleDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DoubleDataInterface.h index d8fe95c2e2..e53904b48b 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DoubleDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/DoubleDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/EntityIdDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/EntityIdDataInterface.h index 99a0363ca1..47081d4f2f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/EntityIdDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/EntityIdDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp index 8101d8c072..258e4a2c5c 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.h index fa2828f91e..c03433a72b 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NodePropertyDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NumericDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NumericDataInterface.h index 84bf7bacf4..067b848c57 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NumericDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/NumericDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ReadOnlyDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ReadOnlyDataInterface.h index ab6df7f552..342cb5eb79 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ReadOnlyDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/ReadOnlyDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/StringDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/StringDataInterface.h index e11c76596e..d4e6ed0782 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/StringDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/StringDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VariableDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VariableDataInterface.h index 90114d5fff..6609aa4d52 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VariableDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VariableDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VectorDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VectorDataInterface.h index 52ffcc3340..092570d31d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VectorDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/NodePropertyDisplay/VectorDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Comment/CommentBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Comment/CommentBus.h index 046125e6a1..6f97cde9c7 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Comment/CommentBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Comment/CommentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Group/NodeGroupBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Group/NodeGroupBus.h index 961e5c0b9c..c2818477a2 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Group/NodeGroupBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Group/NodeGroupBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h index 1f37c139fd..82f85ecef1 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeConfiguration.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeConfiguration.h index 2988f893ad..e445f2d9dc 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeConfiguration.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeLayoutBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeLayoutBus.h index 7b7bf71b5a..78273855a9 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeLayoutBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeLayoutBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h index 399cacb7a9..7a8c79fd04 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeTitleBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeUIBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeUIBus.h index 23c843c22e..ff88096909 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeUIBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/NodeUIBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Variable/VariableNodeBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Variable/VariableNodeBus.h index 1ea176255a..b5e36bd170 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Variable/VariableNodeBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Variable/VariableNodeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Wrapper/WrapperNodeBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Wrapper/WrapperNodeBus.h index 45fe59592c..b9043f7d1d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Wrapper/WrapperNodeBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Nodes/Wrapper/WrapperNodeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/PersistentIdBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/PersistentIdBus.h index 98f07fd541..e4c7364aed 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/PersistentIdBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/PersistentIdBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/SceneBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/SceneBus.h index 037e371b8b..b0f7e7b646 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/SceneBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/SceneBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h index 587e6e1fb1..060e3d7d3a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Data/DataSlotBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Extender/ExtenderSlotBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Extender/ExtenderSlotBus.h index eba04ee78f..bc6b92bdf6 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Extender/ExtenderSlotBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Extender/ExtenderSlotBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Property/PropertySlotBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Property/PropertySlotBus.h index 9ffb0a8bbb..989b712c04 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Property/PropertySlotBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/Property/PropertySlotBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h index ac7d8c1dbd..def5b08276 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/Slots/SlotBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/StyleBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/StyleBus.h index aac0d5885e..e735c1a040 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/StyleBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/StyleBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ToastBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ToastBus.h index 4020f1295a..593bdbab53 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ToastBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ToastBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ViewBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ViewBus.h index f7cfa5bb38..fbf7ac5218 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ViewBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/ViewBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/VisualBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/VisualBus.h index 7d22a8dfbc..0df78803e6 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/VisualBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Components/VisualBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/AssetEditorBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/AssetEditorBus.h index 603aa2ffc6..84c8892697 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/AssetEditorBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/AssetEditorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationIds.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationIds.h index 32dc9dcb04..efad23635e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationIds.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationUtils.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationUtils.h index 6a1e507df4..31337e88d5 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationUtils.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/Automation/AutomationUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorDockWidgetBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorDockWidgetBus.h index 6b273b4b0c..c87030b759 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorDockWidgetBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorDockWidgetBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorTypes.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorTypes.h index 4bcae26291..6a76dd0840 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorTypes.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/EditorTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphCanvasProfiler.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphCanvasProfiler.h index 00dab6ee64..16248e1a8e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphCanvasProfiler.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphCanvasProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphModelBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphModelBus.h index 0a548860d9..b59a4162d1 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphModelBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Editor/GraphModelBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphCanvasBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphCanvasBus.h index a3fe3329cf..4bc2ab8a70 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphCanvasBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.cpp index 71fc3c59e2..f8e2989f15 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.h index 00fa24edb1..632ade412f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/AnimatedPulse.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.cpp index 0f9ef09aa5..7b0b328bac 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.h index ff53414f6d..56b6fcd7f8 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GlowOutlineGraphicsItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphCanvasSceneEventFilter.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphCanvasSceneEventFilter.h index 96c9d8e06d..827a7b3159 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphCanvasSceneEventFilter.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphCanvasSceneEventFilter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffect.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffect.h index 5b6b3ea7d6..e89a0cca6e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffect.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffectBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffectBus.h index 8865ec05de..3e39671ee7 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffectBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/GraphicsEffectBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.cpp index 65de0dfeae..fc2c23a586 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.h index 2e786ce525..d0f371541d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/Occluder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp index d651651396..2878d10f7f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.h index 1d597a3b86..5f82f5b54a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/ParticleGraphicsItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/PulseBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/PulseBus.h index 7c6e70cc72..05cfb64e80 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/PulseBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/GraphicsItems/PulseBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp index cbcb0df437..2cab8aa870 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.h index d0b4e82a5a..45a957d6f0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Parser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.cpp index 5e7c91f636..ba0e4e45b6 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.h index 722d454487..e65a0c2808 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/PseudoElement.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.cpp index ef971c1420..82b4e951fa 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.h index 14b719921f..43cadb1be4 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Selector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.cpp index 272470dc1c..c20f8e2e82 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.h index 60867bd8a5..b100c7f453 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/SelectorImplementations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.cpp index 467d7dddaf..bfab89f931 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.h index 74a617726d..bfa06afed6 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/Style.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleHelper.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleHelper.h index 1d825f1af6..f6a2bcc16e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleHelper.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.cpp index 6907296191..f7a6af8519 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.h index 83372817fe..9eff22d7fd 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/StyleManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.cpp index b1c2271753..32accd69f5 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.h index 47931138f5..6669eb8fb0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Styling/definitions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ComponentSaveDataInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ComponentSaveDataInterface.h index 597d8d612d..98fd89f80e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ComponentSaveDataInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ComponentSaveDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.cpp index 0577726381..e8163d7549 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.h index 7088782d9a..894cdd4d03 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/ConstructPresets.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Endpoint.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Endpoint.h index 303a898d0c..4ce99c60c2 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Endpoint.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Endpoint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/EntitySaveData.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/EntitySaveData.h index 71ec1c8937..9d201327b3 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/EntitySaveData.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/EntitySaveData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.cpp index 6ceeadaea6..bb8fc3c525 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.h index dc42fc628c..d58c380c91 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.cpp index 3985411c7f..7781de7871 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.h index 0d6aec6e38..b2e7da2aab 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/GraphCanvasGraphSerialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/QtMetaTypes.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/QtMetaTypes.h index f4163fb05d..6dc241141d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/QtMetaTypes.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/QtMetaTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h index feec86d773..9ca47f578d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/SceneMemberComponentSaveData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/TranslationTypes.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/TranslationTypes.h index 1f06e3fd84..50fa7ada6c 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/TranslationTypes.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/TranslationTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Types.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Types.h index 73dc5262ce..ca00bec14d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Types.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Types/Types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ColorUtils.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ColorUtils.h index 68adff899b..4e9f50da2c 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ColorUtils.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ColorUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ConversionUtils.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ConversionUtils.h index 0b9f301771..907ec5a482 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ConversionUtils.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/ConversionUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp index c51da9aa05..258992e3d0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.h index aaf114d52d..fa6807739f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/GraphUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.cpp index dafea1ba67..6184df95aa 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.h index 1cac7cc563..7b726e2bca 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/NodeNudgingController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.cpp index 5e9de3f20f..09541bcc77 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.h index a8e7f8b7e0..758bc487cb 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtDrawingUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtMimeUtils.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtMimeUtils.h index e60d124f63..8d107c1f0d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtMimeUtils.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtMimeUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h index 0b00abf853..57b83a1b13 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/QtVectorMath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/PrioritizedStateController.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/PrioritizedStateController.h index 9f2db8ef07..786cb79500 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/PrioritizedStateController.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/PrioritizedStateController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StackStateController.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StackStateController.h index 5db3ab8db6..0f7ce57ed4 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StackStateController.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StackStateController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StateController.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StateController.h index 063c2a2d91..c9d2d3e993 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StateController.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Utils/StateControllers/StateController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.cpp index 1080d65e15..d3876d640a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.h index c9aeef6deb..b0ece46635 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/AssetEditorToolbar/AssetEditorToolbar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.cpp index b18677c62c..0e63bd0be7 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.h index a6e35c0988..a632dfce5d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.cpp index 3f21dc1490..b0c79d482e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.h index 319dc840c8..a6e6db9c57 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Bookmarks/BookmarkTableModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModelInterface.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModelInterface.h index b813e65312..00008b39ea 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModelInterface.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModelInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModels.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModels.h index 25740153d5..ddbc5ed09b 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModels.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ComboBox/ComboBoxItemModels.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp index 6270a670c3..ed78b14e4f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.h index b1e703bb65..162fc190ac 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ConstructPresetDialog/ConstructPresetDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.cpp index 26e4be8c1a..8a78cf53bf 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.h index 210452d080..faf304652d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentActionsMenuGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuAction.h index efd7cea72f..5f9b4afbcf 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.cpp index a9e57f70fc..cee4dddac0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.h index af4413f167..b4c811b9bb 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/AlignmentMenuActions/AlignmentContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.cpp index e7fcaa14ab..a2830af583 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.h index 30180f6d5d..e17eef2cca 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentActionsMenuGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuAction.h index 17b1f28c9f..a2e4ca8d8a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.cpp index 96211bd4aa..ad68fe62e1 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.h index 6470c1621e..c5b68730a3 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/CommentMenuActions/CommentContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.cpp index 29b66f6908..cd3bd773ea 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.h index b5243025b8..8074084558 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/BookmarkConstructMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.cpp index 392bc5e729..15655123ec 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.h index f65c61cced..f44f151008 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/CommentConstructMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructContextMenuAction.h index 966381cdf3..1c87ff0424 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.cpp index eb8fe9d93a..19011e8c34 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.h index ff5c4e10cb..d23b99fafc 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/ConstructPresetMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.cpp index 3683225604..76de574773 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.h index 14722b8325..be3d8f3b71 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ConstructMenuActions/GraphCanvasConstructActionsMenuGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.cpp index 62a9bc88a0..16bf434147 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.h index e91dfd54ab..574f84f54a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/ContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.cpp index 047f11a18c..f4bdf198c5 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.h index 125eaca0f3..6ab1238fb8 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableActionsMenuGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuAction.h index 0b79173847..de1a45cc1f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.cpp index 715bc53f1f..9bfb34815c 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.h index 594314ecc1..2045371dfb 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/DisableMenuActions/DisableMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.cpp index bfbb473579..4ea31bed3c 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.h index dbcdaacc62..6ea88bb61d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditActionsMenuGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuAction.h index 079601d134..5f7506307b 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.cpp index 3936723eeb..f1c48a1b13 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.h index dd2f2e21d3..76d1e56ded 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/EditMenuActions/EditContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.cpp index 958adf5c71..527500a97f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.h index 6c982d7cb8..f3e58760d8 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/GeneralMenuActions/GeneralMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.cpp index ed36c8760c..f971e89975 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.h index 1b4121b581..57effc487a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupActionsMenuGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuAction.h index 0055ceccca..f99abf230f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.cpp index 7810ef963c..e0dd4ee6fa 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.h index 3982e282b9..da743e274d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeGroupMenuActions/NodeGroupContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuAction.h index d8b1a424d8..58157d8094 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.cpp index 56438dc738..a26ace6323 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.h index 8c608439c5..e464ca5333 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/NodeMenuActions/NodeContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.cpp index e2d4d52078..74ad4bb9c8 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.h index f09d9e046a..42d8911e97 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneActionsMenuGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuAction.h index d5b1bf35a5..1366113d99 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.cpp index c55d2eb771..66b4e085c0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.h index 489efe89e3..d1f1d630b9 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SceneMenuActions/SceneContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuAction.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuAction.h index 79ce62cb5e..14b150c80f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuAction.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.cpp index bb50f5b6d9..8fdd070d3b 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.h index 9d1663389a..90c3a39ba1 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenuActions/SlotMenuActions/SlotContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.cpp index ef7fb89ec0..8149c38a31 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.h index 89c8b5f056..724ac889b1 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/BookmarkContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.cpp index d00ce12a59..9ae756f8f2 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.h index 95ceef9fbc..9544bc9616 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CollapsedNodeGroupContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.cpp index 35e7205226..f324d1bcf8 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.h index 38b577c680..ac6b228609 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/CommentContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.cpp index 42311d9252..5c1107beb5 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.h index faa87802d8..78f906c5da 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/ConnectionContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.cpp index f2f0bd0b47..7bde7da546 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.h index b51ccd10dd..1c576b1052 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.cpp index 652e3417a1..378c496631 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.h index 132ef47102..d13f5719f0 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/NodeGroupContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.cpp index f6ca377b84..923816da6f 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.h index aa1c72e5cc..c3df1602e5 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SceneContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.cpp index 1b23a35ea2..ccb6e86475 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.h index 70bc612500..053f9335cd 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/ContextMenus/SlotContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.cpp index bc75e4c7d8..ded23f6f88 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.h index b3d87ad110..188db03b70 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/EditorContextMenu/EditorContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.cpp index 21fdf3a0de..f98b42d93a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.h index bdd2e42584..c9820a80ad 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasAssetEditorMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.cpp index e674f45e59..3282bfd331 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.h index 1d659bbb68..868e426c33 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorCentralWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.cpp index 64f25841cb..498f0dacfb 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.h index 4a06bd2037..4479e7b98e 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasEditor/GraphCanvasEditorDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp index 22094883a4..a53e42fc5a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.h index 2cce7426e9..898a6c1286 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasGraphicsView/GraphCanvasGraphicsView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.cpp index 89eb3da9d5..9f9f3c5df9 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.h index 38de367bf2..2a82720550 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.cpp index ae7130f2b9..480b8566d8 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.h index 5fe7adffff..7353a20bb7 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasMimeEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.cpp index b243783c52..9b90419708 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.h index 59534ccbaa..4eba0d772a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeCategorizer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.cpp index 1533b36fcc..e57434d272 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.h index 5296e0bcf1..6251ec1ef4 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.cpp index 8d521dc878..0928d29661 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.h index 28af68d351..595b5ca422 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/GraphCanvasTreeModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.cpp index b5e95f45bf..c3e422ef62 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.h index e89f595cb0..ffad96e7d7 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MimeEvents/CreateSplicingNodeMimeEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.cpp index 2ebabebf2c..516a64ce4d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.h index 695b444517..7467e6714c 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/MiniMapGraphicsView/MiniMapGraphicsView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp index 72d8b1cb86..d5c06ff341 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.h index d45122e3dc..c4e4a4d52d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/Model/NodePaletteSortFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.cpp index 863fe14a04..8db267e0e2 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.h index e54befa852..0eaf5dc2c8 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.cpp index d215deb49b..f87e09906d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.h index 191c03212c..666f9ea920 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteTreeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.cpp index 795e645678..51f22435fd 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.h index e617fcde77..2d777c8e9d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/NodePaletteWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.cpp index cb2af3bab8..25ac4f5c52 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.h index ef7bb4c285..77fd597f8a 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/DraggableNodePaletteTreeItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.cpp index 877a8fbd16..c542156954 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.h index 48d81f2e01..a2154e11ae 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/IconDecoratedNodePaletteTreeItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.cpp index 464e8aa9e7..383ff51122 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.h index 4af70eacdf..0b301bb80c 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePalette/TreeItems/NodePaletteTreeItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePropertyBus.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePropertyBus.h index f9d98b68fb..aa4d7d3a19 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePropertyBus.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/NodePropertyBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Resources/Resources.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Resources/Resources.h index 15dbc479b2..12d81b7cb1 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Resources/Resources.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/Resources/Resources.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.cpp index 1825d8e09c..99468829a6 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.h index 02dcfa3bb9..9a2bb33864 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/GenericComboBoxDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.cpp index 194039a5da..e37a1099ae 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.h index 924e0912eb..24ba737341 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/StyledItemDelegates/IconDecoratedNameDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.cpp b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.cpp index 3d910dd067..044b17f19d 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.cpp +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.h b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.h index b9c52aac5c..4cc7de1648 100644 --- a/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.h +++ b/Gems/GraphCanvas/Code/StaticLib/GraphCanvas/Widgets/ToastNotification/ToastNotification.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphCanvas/Code/graphcanvas_files.cmake b/Gems/GraphCanvas/Code/graphcanvas_files.cmake index 2a0d0b9351..73efe3eaee 100644 --- a/Gems/GraphCanvas/Code/graphcanvas_files.cmake +++ b/Gems/GraphCanvas/Code/graphcanvas_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake b/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake index 58da6cffab..1fdadd4100 100644 --- a/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake +++ b/Gems/GraphCanvas/Code/graphcanvas_staticlib_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphCanvas/Code/precompiled.h b/Gems/GraphCanvas/Code/precompiled.h index db8cf83d4f..f1184278c9 100644 --- a/Gems/GraphCanvas/Code/precompiled.h +++ b/Gems/GraphCanvas/Code/precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/CMakeLists.txt b/Gems/GraphModel/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/GraphModel/CMakeLists.txt +++ b/Gems/GraphModel/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphModel/Code/CMakeLists.txt b/Gems/GraphModel/Code/CMakeLists.txt index 211e696d8a..4d4a31d502 100644 --- a/Gems/GraphModel/Code/CMakeLists.txt +++ b/Gems/GraphModel/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphModel/Code/Include/GraphModel/GraphModelBus.h b/Gems/GraphModel/Code/Include/GraphModel/GraphModelBus.h index f0219b9372..636f821427 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/GraphModelBus.h +++ b/Gems/GraphModel/Code/Include/GraphModel/GraphModelBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/BooleanDataInterface.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/BooleanDataInterface.h index de9749db5a..ac9c00cda8 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/BooleanDataInterface.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/BooleanDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/EditorMainWindow.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/EditorMainWindow.h index 2824890976..e46a6e9caa 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/EditorMainWindow.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/EditorMainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/FloatDataInterface.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/FloatDataInterface.h index e543adfba0..c640c704a8 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/FloatDataInterface.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/FloatDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphCanvasMetadata.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphCanvasMetadata.h index 465b26bfa9..fc104db598 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphCanvasMetadata.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphCanvasMetadata.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphController.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphController.h index 1019f06b07..84e54ea6bf 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphController.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphControllerManager.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphControllerManager.h index 4fe435cc0a..85c0423910 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphControllerManager.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/GraphControllerManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/Helpers.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/Helpers.h index a62249cfc8..dde6e28f26 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/Helpers.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/Helpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegerDataInterface.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegerDataInterface.h index da32107baa..e7b94662f1 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegerDataInterface.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegerDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegrationBus.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegrationBus.h index 562bbd81d2..6e0d48144e 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegrationBus.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/IntegrationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/GraphCanvasNodePaletteItems.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/GraphCanvasNodePaletteItems.h index bf7d6cf76f..d91e477d07 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/GraphCanvasNodePaletteItems.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/GraphCanvasNodePaletteItems.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/InputOutputNodePaletteItem.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/InputOutputNodePaletteItem.h index 88605cb078..88cec25f5d 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/InputOutputNodePaletteItem.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/InputOutputNodePaletteItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/ModuleNodePaletteItem.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/ModuleNodePaletteItem.h index 5d8d3085a1..20d81954c6 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/ModuleNodePaletteItem.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/ModuleNodePaletteItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/StandardNodePaletteItem.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/StandardNodePaletteItem.h index 585c93d723..f79a35b930 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/StandardNodePaletteItem.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/NodePalette/StandardNodePaletteItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/ReadOnlyDataInterface.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/ReadOnlyDataInterface.h index 09ff2dce74..8ae7d2428b 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/ReadOnlyDataInterface.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/ReadOnlyDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/StringDataInterface.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/StringDataInterface.h index 8ccca856d8..99a68aefdc 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/StringDataInterface.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/StringDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailImageItem.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailImageItem.h index 126a3c4029..079a9550f6 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailImageItem.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailImageItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailItem.h b/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailItem.h index 1a83236088..08d9112ca2 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailItem.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/ThumbnailItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Integration/VectorDataInterface.inl b/Gems/GraphModel/Code/Include/GraphModel/Integration/VectorDataInterface.inl index 9bd0584cd0..8208d0e504 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Integration/VectorDataInterface.inl +++ b/Gems/GraphModel/Code/Include/GraphModel/Integration/VectorDataInterface.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Common.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Common.h index 6d2c575843..b0196d6f5e 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Common.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Common.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Connection.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Connection.h index 83c672e28d..e81605903d 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Connection.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Connection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/DataType.h b/Gems/GraphModel/Code/Include/GraphModel/Model/DataType.h index 5fa8fcbfbb..25d0265776 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/DataType.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/DataType.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Graph.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Graph.h index bd29b7c725..b6f5868e9c 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Graph.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Graph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/GraphElement.h b/Gems/GraphModel/Code/Include/GraphModel/Model/GraphElement.h index 69c9118601..acf7d130c7 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/GraphElement.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/GraphElement.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/IGraphContext.h b/Gems/GraphModel/Code/Include/GraphModel/Model/IGraphContext.h index c43eb6e486..14a8d88c04 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/IGraphContext.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/IGraphContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Module/InputOutputNodes.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Module/InputOutputNodes.h index bd8b595af4..515b2e34aa 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Module/InputOutputNodes.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Module/InputOutputNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleGraphManager.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleGraphManager.h index 549c187e4d..b407795199 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleGraphManager.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleGraphManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleNode.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleNode.h index 40b8e0d662..b0dfbb71d7 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleNode.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Module/ModuleNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Node.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Node.h index f05e8d2cd0..261ffe1c4c 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Node.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Include/GraphModel/Model/Slot.h b/Gems/GraphModel/Code/Include/GraphModel/Model/Slot.h index 3422c47f29..552661f445 100644 --- a/Gems/GraphModel/Code/Include/GraphModel/Model/Slot.h +++ b/Gems/GraphModel/Code/Include/GraphModel/Model/Slot.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/GraphModelModule.cpp b/Gems/GraphModel/Code/Source/GraphModelModule.cpp index e6d1f093a0..4e456585de 100644 --- a/Gems/GraphModel/Code/Source/GraphModelModule.cpp +++ b/Gems/GraphModel/Code/Source/GraphModelModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/GraphModelSystemComponent.cpp b/Gems/GraphModel/Code/Source/GraphModelSystemComponent.cpp index 83c7cac8ac..bbdec4b9c5 100644 --- a/Gems/GraphModel/Code/Source/GraphModelSystemComponent.cpp +++ b/Gems/GraphModel/Code/Source/GraphModelSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/GraphModelSystemComponent.h b/Gems/GraphModel/Code/Source/GraphModelSystemComponent.h index 6d17bc4f20..f78690d4e4 100644 --- a/Gems/GraphModel/Code/Source/GraphModelSystemComponent.h +++ b/Gems/GraphModel/Code/Source/GraphModelSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/BooleanDataInterface.cpp b/Gems/GraphModel/Code/Source/Integration/BooleanDataInterface.cpp index cf7eeb66a8..5ac5914102 100644 --- a/Gems/GraphModel/Code/Source/Integration/BooleanDataInterface.cpp +++ b/Gems/GraphModel/Code/Source/Integration/BooleanDataInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/EditorMainWindow.cpp b/Gems/GraphModel/Code/Source/Integration/EditorMainWindow.cpp index 30d44d745b..31ac4c329e 100644 --- a/Gems/GraphModel/Code/Source/Integration/EditorMainWindow.cpp +++ b/Gems/GraphModel/Code/Source/Integration/EditorMainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/FloatDataInterface.cpp b/Gems/GraphModel/Code/Source/Integration/FloatDataInterface.cpp index 2ff9be0557..ae04c13845 100644 --- a/Gems/GraphModel/Code/Source/Integration/FloatDataInterface.cpp +++ b/Gems/GraphModel/Code/Source/Integration/FloatDataInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/GraphCanvasMetadata.cpp b/Gems/GraphModel/Code/Source/Integration/GraphCanvasMetadata.cpp index 965b7df10c..6e59e9c273 100644 --- a/Gems/GraphModel/Code/Source/Integration/GraphCanvasMetadata.cpp +++ b/Gems/GraphModel/Code/Source/Integration/GraphCanvasMetadata.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/GraphController.cpp b/Gems/GraphModel/Code/Source/Integration/GraphController.cpp index b375e86b7c..dff224b03d 100644 --- a/Gems/GraphModel/Code/Source/Integration/GraphController.cpp +++ b/Gems/GraphModel/Code/Source/Integration/GraphController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/GraphControllerManager.cpp b/Gems/GraphModel/Code/Source/Integration/GraphControllerManager.cpp index e9c2d0b41e..68f8ede512 100644 --- a/Gems/GraphModel/Code/Source/Integration/GraphControllerManager.cpp +++ b/Gems/GraphModel/Code/Source/Integration/GraphControllerManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/IntegerDataInterface.cpp b/Gems/GraphModel/Code/Source/Integration/IntegerDataInterface.cpp index a002393f99..942f8fc0ce 100644 --- a/Gems/GraphModel/Code/Source/Integration/IntegerDataInterface.cpp +++ b/Gems/GraphModel/Code/Source/Integration/IntegerDataInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/NodePalette/GraphCanvasNodePaletteItems.cpp b/Gems/GraphModel/Code/Source/Integration/NodePalette/GraphCanvasNodePaletteItems.cpp index 956fd4ecf3..d865d92ef6 100644 --- a/Gems/GraphModel/Code/Source/Integration/NodePalette/GraphCanvasNodePaletteItems.cpp +++ b/Gems/GraphModel/Code/Source/Integration/NodePalette/GraphCanvasNodePaletteItems.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/ReadOnlyDataInterface.cpp b/Gems/GraphModel/Code/Source/Integration/ReadOnlyDataInterface.cpp index 7aa78f0957..80793e655b 100644 --- a/Gems/GraphModel/Code/Source/Integration/ReadOnlyDataInterface.cpp +++ b/Gems/GraphModel/Code/Source/Integration/ReadOnlyDataInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/StringDataInterface.cpp b/Gems/GraphModel/Code/Source/Integration/StringDataInterface.cpp index f85babb767..fb98490491 100644 --- a/Gems/GraphModel/Code/Source/Integration/StringDataInterface.cpp +++ b/Gems/GraphModel/Code/Source/Integration/StringDataInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/ThumbnailImageItem.cpp b/Gems/GraphModel/Code/Source/Integration/ThumbnailImageItem.cpp index 830ed4ecba..b0d026bc23 100644 --- a/Gems/GraphModel/Code/Source/Integration/ThumbnailImageItem.cpp +++ b/Gems/GraphModel/Code/Source/Integration/ThumbnailImageItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Integration/ThumbnailItem.cpp b/Gems/GraphModel/Code/Source/Integration/ThumbnailItem.cpp index 5fb63b9064..c4803924f4 100644 --- a/Gems/GraphModel/Code/Source/Integration/ThumbnailItem.cpp +++ b/Gems/GraphModel/Code/Source/Integration/ThumbnailItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/Connection.cpp b/Gems/GraphModel/Code/Source/Model/Connection.cpp index 87b2d81ee8..cf73427fe9 100644 --- a/Gems/GraphModel/Code/Source/Model/Connection.cpp +++ b/Gems/GraphModel/Code/Source/Model/Connection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/DataType.cpp b/Gems/GraphModel/Code/Source/Model/DataType.cpp index 55b26eeb9b..e88a37b62b 100644 --- a/Gems/GraphModel/Code/Source/Model/DataType.cpp +++ b/Gems/GraphModel/Code/Source/Model/DataType.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/Graph.cpp b/Gems/GraphModel/Code/Source/Model/Graph.cpp index 097b6b30b9..f3b8537ca5 100644 --- a/Gems/GraphModel/Code/Source/Model/Graph.cpp +++ b/Gems/GraphModel/Code/Source/Model/Graph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/GraphElement.cpp b/Gems/GraphModel/Code/Source/Model/GraphElement.cpp index c3cc97c309..f2e62a37b0 100644 --- a/Gems/GraphModel/Code/Source/Model/GraphElement.cpp +++ b/Gems/GraphModel/Code/Source/Model/GraphElement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/Module/InputOutputNodes.cpp b/Gems/GraphModel/Code/Source/Model/Module/InputOutputNodes.cpp index e8aa8e5bf7..21e9385a9b 100644 --- a/Gems/GraphModel/Code/Source/Model/Module/InputOutputNodes.cpp +++ b/Gems/GraphModel/Code/Source/Model/Module/InputOutputNodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/Module/ModuleGraphManager.cpp b/Gems/GraphModel/Code/Source/Model/Module/ModuleGraphManager.cpp index a1bb8ba387..0eb9a38c18 100644 --- a/Gems/GraphModel/Code/Source/Model/Module/ModuleGraphManager.cpp +++ b/Gems/GraphModel/Code/Source/Model/Module/ModuleGraphManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/Module/ModuleNode.cpp b/Gems/GraphModel/Code/Source/Model/Module/ModuleNode.cpp index 2adc537cf5..2df4dc926a 100644 --- a/Gems/GraphModel/Code/Source/Model/Module/ModuleNode.cpp +++ b/Gems/GraphModel/Code/Source/Model/Module/ModuleNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/Node.cpp b/Gems/GraphModel/Code/Source/Model/Node.cpp index aeb1756cca..86d53107ae 100644 --- a/Gems/GraphModel/Code/Source/Model/Node.cpp +++ b/Gems/GraphModel/Code/Source/Model/Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Source/Model/Slot.cpp b/Gems/GraphModel/Code/Source/Model/Slot.cpp index a24814c68b..07c5ec0ef4 100644 --- a/Gems/GraphModel/Code/Source/Model/Slot.cpp +++ b/Gems/GraphModel/Code/Source/Model/Slot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Tests/GraphModelIntegrationTest.cpp b/Gems/GraphModel/Code/Tests/GraphModelIntegrationTest.cpp index 10f01b96b5..76925f60e8 100644 --- a/Gems/GraphModel/Code/Tests/GraphModelIntegrationTest.cpp +++ b/Gems/GraphModel/Code/Tests/GraphModelIntegrationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Tests/GraphModelPythonBindingsTest.cpp b/Gems/GraphModel/Code/Tests/GraphModelPythonBindingsTest.cpp index 7f1ee8aeee..9113487660 100644 --- a/Gems/GraphModel/Code/Tests/GraphModelPythonBindingsTest.cpp +++ b/Gems/GraphModel/Code/Tests/GraphModelPythonBindingsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Tests/MockGraphCanvas.cpp b/Gems/GraphModel/Code/Tests/MockGraphCanvas.cpp index 097aa4f8be..b709c057e0 100644 --- a/Gems/GraphModel/Code/Tests/MockGraphCanvas.cpp +++ b/Gems/GraphModel/Code/Tests/MockGraphCanvas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Tests/MockGraphCanvas.h b/Gems/GraphModel/Code/Tests/MockGraphCanvas.h index 9235b52d1b..c679792902 100644 --- a/Gems/GraphModel/Code/Tests/MockGraphCanvas.h +++ b/Gems/GraphModel/Code/Tests/MockGraphCanvas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Tests/TestEnvironment.cpp b/Gems/GraphModel/Code/Tests/TestEnvironment.cpp index a10b053f0b..33e8e1bec9 100644 --- a/Gems/GraphModel/Code/Tests/TestEnvironment.cpp +++ b/Gems/GraphModel/Code/Tests/TestEnvironment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/Tests/TestEnvironment.h b/Gems/GraphModel/Code/Tests/TestEnvironment.h index 97d8437415..d68dd34bb9 100644 --- a/Gems/GraphModel/Code/Tests/TestEnvironment.h +++ b/Gems/GraphModel/Code/Tests/TestEnvironment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/GraphModel/Code/graphmodel_editor_files.cmake b/Gems/GraphModel/Code/graphmodel_editor_files.cmake index a73a6bd619..15b62b777d 100644 --- a/Gems/GraphModel/Code/graphmodel_editor_files.cmake +++ b/Gems/GraphModel/Code/graphmodel_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphModel/Code/graphmodel_editor_static_files.cmake b/Gems/GraphModel/Code/graphmodel_editor_static_files.cmake index 101bfa0900..d383b69d38 100644 --- a/Gems/GraphModel/Code/graphmodel_editor_static_files.cmake +++ b/Gems/GraphModel/Code/graphmodel_editor_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/GraphModel/Code/graphmodel_tests_editor_files.cmake b/Gems/GraphModel/Code/graphmodel_tests_editor_files.cmake index 9d6d8d977b..cffba07c35 100644 --- a/Gems/GraphModel/Code/graphmodel_tests_editor_files.cmake +++ b/Gems/GraphModel/Code/graphmodel_tests_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/CMakeLists.txt b/Gems/HttpRequestor/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/HttpRequestor/CMakeLists.txt +++ b/Gems/HttpRequestor/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/CMakeLists.txt b/Gems/HttpRequestor/Code/CMakeLists.txt index 6f59db4fec..effe700762 100644 --- a/Gems/HttpRequestor/Code/CMakeLists.txt +++ b/Gems/HttpRequestor/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestParameters.h b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestParameters.h index c3a126a38b..24e9d48ec5 100644 --- a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestParameters.h +++ b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestorBus.h b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestorBus.h index b2bc03a204..4c39a2c190 100644 --- a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestorBus.h +++ b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpRequestorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTextRequestParameters.h b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTextRequestParameters.h index 859a47c532..f7e06d2f5f 100644 --- a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTextRequestParameters.h +++ b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTextRequestParameters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTypes.h b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTypes.h index 93ba989798..cacae74aa5 100644 --- a/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTypes.h +++ b/Gems/HttpRequestor/Code/Include/HttpRequestor/HttpTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/ComponentStub.cpp b/Gems/HttpRequestor/Code/Source/ComponentStub.cpp index fe5e99258c..f9c03ac233 100644 --- a/Gems/HttpRequestor/Code/Source/ComponentStub.cpp +++ b/Gems/HttpRequestor/Code/Source/ComponentStub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp b/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp index 7dfc20fb32..eed88e3dae 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp +++ b/Gems/HttpRequestor/Code/Source/HttpRequestManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestManager.h b/Gems/HttpRequestor/Code/Source/HttpRequestManager.h index 18175f9344..be8845d4ae 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestManager.h +++ b/Gems/HttpRequestor/Code/Source/HttpRequestManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp b/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp index f584ed2d05..c0321c6f3d 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp +++ b/Gems/HttpRequestor/Code/Source/HttpRequestorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp b/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp index a677d60e8d..6da1f28d9c 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp +++ b/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.h b/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.h index a4feef4990..bf62088c14 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.h +++ b/Gems/HttpRequestor/Code/Source/HttpRequestorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/HttpRequestor_precompiled.h b/Gems/HttpRequestor/Code/Source/HttpRequestor_precompiled.h index ae103e5cfa..2ff5546d1b 100644 --- a/Gems/HttpRequestor/Code/Source/HttpRequestor_precompiled.h +++ b/Gems/HttpRequestor/Code/Source/HttpRequestor_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/Source/Platform/Android/httprequestor_android.cmake b/Gems/HttpRequestor/Code/Source/Platform/Android/httprequestor_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/HttpRequestor/Code/Source/Platform/Android/httprequestor_android.cmake +++ b/Gems/HttpRequestor/Code/Source/Platform/Android/httprequestor_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/Source/Platform/Linux/httprequestor_linux.cmake b/Gems/HttpRequestor/Code/Source/Platform/Linux/httprequestor_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/HttpRequestor/Code/Source/Platform/Linux/httprequestor_linux.cmake +++ b/Gems/HttpRequestor/Code/Source/Platform/Linux/httprequestor_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/Source/Platform/Mac/httprequestor_mac.cmake b/Gems/HttpRequestor/Code/Source/Platform/Mac/httprequestor_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/HttpRequestor/Code/Source/Platform/Mac/httprequestor_mac.cmake +++ b/Gems/HttpRequestor/Code/Source/Platform/Mac/httprequestor_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/Source/Platform/Windows/httprequestor_windows.cmake b/Gems/HttpRequestor/Code/Source/Platform/Windows/httprequestor_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/HttpRequestor/Code/Source/Platform/Windows/httprequestor_windows.cmake +++ b/Gems/HttpRequestor/Code/Source/Platform/Windows/httprequestor_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/Source/Platform/iOS/httprequestor_ios.cmake b/Gems/HttpRequestor/Code/Source/Platform/iOS/httprequestor_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/HttpRequestor/Code/Source/Platform/iOS/httprequestor_ios.cmake +++ b/Gems/HttpRequestor/Code/Source/Platform/iOS/httprequestor_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp b/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp index 7c4f36da1f..3a4a9e7d71 100644 --- a/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp +++ b/Gems/HttpRequestor/Code/Tests/HttpRequestorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/HttpRequestor/Code/httprequestor_files.cmake b/Gems/HttpRequestor/Code/httprequestor_files.cmake index eb3fb93776..79bd51688d 100644 --- a/Gems/HttpRequestor/Code/httprequestor_files.cmake +++ b/Gems/HttpRequestor/Code/httprequestor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/httprequestor_shared_files.cmake b/Gems/HttpRequestor/Code/httprequestor_shared_files.cmake index 5b82664700..b7496460f1 100644 --- a/Gems/HttpRequestor/Code/httprequestor_shared_files.cmake +++ b/Gems/HttpRequestor/Code/httprequestor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/httprequestor_tests_files.cmake b/Gems/HttpRequestor/Code/httprequestor_tests_files.cmake index 8a7c8ced21..d40893bc5c 100644 --- a/Gems/HttpRequestor/Code/httprequestor_tests_files.cmake +++ b/Gems/HttpRequestor/Code/httprequestor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake b/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake index d3ac49e4f5..52599c307c 100644 --- a/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake +++ b/Gems/HttpRequestor/Code/lmbraws_unsupported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/CMakeLists.txt b/Gems/ImGui/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ImGui/CMakeLists.txt +++ b/Gems/ImGui/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/CMakeLists.txt b/Gems/ImGui/Code/CMakeLists.txt index df7647e6bb..4b22aab902 100644 --- a/Gems/ImGui/Code/CMakeLists.txt +++ b/Gems/ImGui/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp b/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp index 521058a556..d96c9b719d 100644 --- a/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp +++ b/Gems/ImGui/Code/Editor/ImGuiEditorWindowModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Include/ImGuiBus.h b/Gems/ImGui/Code/Include/ImGuiBus.h index 2185c75d1b..cee9f3882d 100644 --- a/Gems/ImGui/Code/Include/ImGuiBus.h +++ b/Gems/ImGui/Code/Include/ImGuiBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Include/ImGuiContextScope.h b/Gems/ImGui/Code/Include/ImGuiContextScope.h index 2588690883..478ef18d91 100644 --- a/Gems/ImGui/Code/Include/ImGuiContextScope.h +++ b/Gems/ImGui/Code/Include/ImGuiContextScope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Include/ImGuiLYCurveEditorBus.h b/Gems/ImGui/Code/Include/ImGuiLYCurveEditorBus.h index 1a46681518..25ee455d67 100644 --- a/Gems/ImGui/Code/Include/ImGuiLYCurveEditorBus.h +++ b/Gems/ImGui/Code/Include/ImGuiLYCurveEditorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Include/LYImGuiUtils/HistogramContainer.h b/Gems/ImGui/Code/Include/LYImGuiUtils/HistogramContainer.h index be2a68e7da..694cd9bbb6 100644 --- a/Gems/ImGui/Code/Include/LYImGuiUtils/HistogramContainer.h +++ b/Gems/ImGui/Code/Include/LYImGuiUtils/HistogramContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Include/LYImGuiUtils/ImGuiDrawHelpers.h b/Gems/ImGui/Code/Include/LYImGuiUtils/ImGuiDrawHelpers.h index 2e8a96598b..28ea884093 100644 --- a/Gems/ImGui/Code/Include/LYImGuiUtils/ImGuiDrawHelpers.h +++ b/Gems/ImGui/Code/Include/LYImGuiUtils/ImGuiDrawHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Include/OtherActiveImGuiBus.h b/Gems/ImGui/Code/Include/OtherActiveImGuiBus.h index a926f049a3..c972f4475d 100644 --- a/Gems/ImGui/Code/Include/OtherActiveImGuiBus.h +++ b/Gems/ImGui/Code/Include/OtherActiveImGuiBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/ImGuiColorDefines.h b/Gems/ImGui/Code/Source/ImGuiColorDefines.h index 27db142702..6faa5ad40d 100644 --- a/Gems/ImGui/Code/Source/ImGuiColorDefines.h +++ b/Gems/ImGui/Code/Source/ImGuiColorDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/ImGuiGem.cpp b/Gems/ImGui/Code/Source/ImGuiGem.cpp index d1ce492b85..6f0107cb1f 100644 --- a/Gems/ImGui/Code/Source/ImGuiGem.cpp +++ b/Gems/ImGui/Code/Source/ImGuiGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/ImGuiGem.h b/Gems/ImGui/Code/Source/ImGuiGem.h index e7ec732456..50d485c55f 100644 --- a/Gems/ImGui/Code/Source/ImGuiGem.h +++ b/Gems/ImGui/Code/Source/ImGuiGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/ImGuiManager.cpp b/Gems/ImGui/Code/Source/ImGuiManager.cpp index d8ff143d4d..7e936bb1f9 100644 --- a/Gems/ImGui/Code/Source/ImGuiManager.cpp +++ b/Gems/ImGui/Code/Source/ImGuiManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/ImGuiManager.h b/Gems/ImGui/Code/Source/ImGuiManager.h index f11bec7ec9..acd8d7cea4 100644 --- a/Gems/ImGui/Code/Source/ImGuiManager.h +++ b/Gems/ImGui/Code/Source/ImGuiManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp b/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp index 7a929d78ae..43a8800c83 100644 --- a/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp +++ b/Gems/ImGui/Code/Source/ImGuiNoOpStubModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/ImGui_precompiled.h b/Gems/ImGui/Code/Source/ImGui_precompiled.h index d08ba572f5..d47df93cfc 100644 --- a/Gems/ImGui/Code/Source/ImGui_precompiled.h +++ b/Gems/ImGui/Code/Source/ImGui_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp index 6b2a91ae21..2f996f5768 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.h b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.h index 2d1afa4fd8..784659b720 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.h +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYAssetExplorer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp index eea2b229fa..c83d9520a4 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.h b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.h index 4e317bdb13..22d00704be 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.h +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCameraMonitor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp index 749bbf3af3..9994851faa 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.h b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.h index eeaa92bf8b..ad56fb7f4f 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.h +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCommonMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp index db08b6fbcc..a9d2052f1a 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.h b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.h index 5a954cc27d..e23dc06a87 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.h +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYCurveEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp index 1aec49a01f..aca52af238 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.h b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.h index dd12ee8271..0e7924637f 100644 --- a/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.h +++ b/Gems/ImGui/Code/Source/LYCommonMenu/ImGuiLYEntityOutliner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp b/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp index 4602a36242..9295492f50 100644 --- a/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp +++ b/Gems/ImGui/Code/Source/LYImGuiUtils/HistogramContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp b/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp index 07ca8056d5..3ab1de7ca7 100644 --- a/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp +++ b/Gems/ImGui/Code/Source/LYImGuiUtils/ImGuiDrawHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/Code/Source/Platform/Android/imgui_android.cmake b/Gems/ImGui/Code/Source/Platform/Android/imgui_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/Android/imgui_android.cmake +++ b/Gems/ImGui/Code/Source/Platform/Android/imgui_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Android/platform_android.cmake b/Gems/ImGui/Code/Source/Platform/Android/platform_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/Android/platform_android.cmake +++ b/Gems/ImGui/Code/Source/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/ImGui/Code/Source/Platform/Android/platform_android_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/ImGui/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/ImGui/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Linux/imgui_linux.cmake b/Gems/ImGui/Code/Source/Platform/Linux/imgui_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/Linux/imgui_linux.cmake +++ b/Gems/ImGui/Code/Source/Platform/Linux/imgui_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/ImGui/Code/Source/Platform/Linux/platform_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/ImGui/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/ImGui/Code/Source/Platform/Linux/platform_linux_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/ImGui/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/ImGui/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Mac/imgui_mac.cmake b/Gems/ImGui/Code/Source/Platform/Mac/imgui_mac.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/Mac/imgui_mac.cmake +++ b/Gems/ImGui/Code/Source/Platform/Mac/imgui_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/ImGui/Code/Source/Platform/Mac/platform_mac.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/ImGui/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/ImGui/Code/Source/Platform/Mac/platform_mac_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/ImGui/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/ImGui/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Windows/imgui_windows.cmake b/Gems/ImGui/Code/Source/Platform/Windows/imgui_windows.cmake index 1d626c343c..342b873051 100644 --- a/Gems/ImGui/Code/Source/Platform/Windows/imgui_windows.cmake +++ b/Gems/ImGui/Code/Source/Platform/Windows/imgui_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/ImGui/Code/Source/Platform/Windows/platform_windows.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/ImGui/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/ImGui/Code/Source/Platform/Windows/platform_windows_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/ImGui/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/ImGui/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/iOS/imgui_ios.cmake b/Gems/ImGui/Code/Source/Platform/iOS/imgui_ios.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/iOS/imgui_ios.cmake +++ b/Gems/ImGui/Code/Source/Platform/iOS/imgui_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/ImGui/Code/Source/Platform/iOS/platform_ios.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/ImGui/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/ImGui/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/ImGui/Code/Source/Platform/iOS/platform_ios_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/ImGui/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/ImGui/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/imgui_common_files.cmake b/Gems/ImGui/Code/imgui_common_files.cmake index f40f4a0613..23f1374b98 100644 --- a/Gems/ImGui/Code/imgui_common_files.cmake +++ b/Gems/ImGui/Code/imgui_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/imgui_editor_files.cmake b/Gems/ImGui/Code/imgui_editor_files.cmake index 61ea0a288d..3f57c43325 100644 --- a/Gems/ImGui/Code/imgui_editor_files.cmake +++ b/Gems/ImGui/Code/imgui_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/imgui_game_files.cmake b/Gems/ImGui/Code/imgui_game_files.cmake index f77bf55568..d6deb85f7c 100644 --- a/Gems/ImGui/Code/imgui_game_files.cmake +++ b/Gems/ImGui/Code/imgui_game_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/imgui_game_no-op_files.cmake b/Gems/ImGui/Code/imgui_game_no-op_files.cmake index 4eab48a5af..571c0ffb0d 100644 --- a/Gems/ImGui/Code/imgui_game_no-op_files.cmake +++ b/Gems/ImGui/Code/imgui_game_no-op_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/imgui_lib_files.cmake b/Gems/ImGui/Code/imgui_lib_files.cmake index 8ad6b05a99..8234c9ed54 100644 --- a/Gems/ImGui/Code/imgui_lib_files.cmake +++ b/Gems/ImGui/Code/imgui_lib_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/imgui_lyutils_static_files.cmake b/Gems/ImGui/Code/imgui_lyutils_static_files.cmake index 2c258b7534..6915882f4c 100644 --- a/Gems/ImGui/Code/imgui_lyutils_static_files.cmake +++ b/Gems/ImGui/Code/imgui_lyutils_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/Code/imgui_shared_files.cmake b/Gems/ImGui/Code/imgui_shared_files.cmake index 6b04b9fa24..75a7c8dd0d 100644 --- a/Gems/ImGui/Code/imgui_shared_files.cmake +++ b/Gems/ImGui/Code/imgui_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.h b/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.h index 2a423b9b38..4c80b26820 100644 --- a/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.h +++ b/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.inl b/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.inl index be7dab0de6..3d849bc89c 100644 --- a/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.inl +++ b/Gems/ImGui/External/ImGui/v1.82/imgui/imgui_user.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/CMakeLists.txt b/Gems/InAppPurchases/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/InAppPurchases/CMakeLists.txt +++ b/Gems/InAppPurchases/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/CMakeLists.txt b/Gems/InAppPurchases/Code/CMakeLists.txt index 32af024ba0..7d24108328 100644 --- a/Gems/InAppPurchases/Code/CMakeLists.txt +++ b/Gems/InAppPurchases/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesBus.h b/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesBus.h index 01648a7acb..36fd196db7 100644 --- a/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesBus.h +++ b/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesInterface.h b/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesInterface.h index 7ad95ba50d..34439304e8 100644 --- a/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesInterface.h +++ b/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesResponseBus.h b/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesResponseBus.h index 3ad9fc1e35..e0072f94d7 100644 --- a/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesResponseBus.h +++ b/Gems/InAppPurchases/Code/Include/InAppPurchases/InAppPurchasesResponseBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp b/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp index 62848069ad..72220fc9e3 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp b/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp index f944e4dcb7..0feb9a38cf 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.h b/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.h index a67f7166c5..88fed33107 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.h +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp b/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp index 04c4da365d..e2704d7529 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.h b/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.h index bd655c857e..af3a2012c3 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.h +++ b/Gems/InAppPurchases/Code/Source/InAppPurchasesSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/InAppPurchases_precompiled.h b/Gems/InAppPurchases/Code/Source/InAppPurchases_precompiled.h index 835c80deaa..f620f712e2 100644 --- a/Gems/InAppPurchases/Code/Source/InAppPurchases_precompiled.h +++ b/Gems/InAppPurchases/Code/Source/InAppPurchases_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp b/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp index b95be266a7..6b26dd7534 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp +++ b/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.h b/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.h index 8b3f5d7451..261e796c1f 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.h +++ b/Gems/InAppPurchases/Code/Source/Platform/Android/InAppPurchasesAndroid.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Android/java/com/amazon/lumberyard/iap/LumberyardInAppBilling.java b/Gems/InAppPurchases/Code/Source/Platform/Android/java/com/amazon/lumberyard/iap/LumberyardInAppBilling.java index 54118849a8..f0678d65e9 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Android/java/com/amazon/lumberyard/iap/LumberyardInAppBilling.java +++ b/Gems/InAppPurchases/Code/Source/Platform/Android/java/com/amazon/lumberyard/iap/LumberyardInAppBilling.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android.cmake b/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android_files.cmake index 6c294d13be..2113b23dbc 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.h b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.h index 7a5bfbd3d9..3bc1962915 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.h +++ b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.mm b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.mm index f9d5bcc441..01807c9816 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.mm +++ b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesApple.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.h b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.h index f5d63edbd9..a8f99805e4 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.h +++ b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm index d276a00f10..9914f91206 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm +++ b/Gems/InAppPurchases/Code/Source/Platform/Common/Apple/InAppPurchasesDelegate.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp b/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp index 480bd05e05..b9665c08a8 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp +++ b/Gems/InAppPurchases/Code/Source/Platform/Common/Unimplemented/InAppPurchases_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux_files.cmake index 096ac8b862..c0011945f4 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac_files.cmake index 096ac8b862..c0011945f4 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows_files.cmake index 096ac8b862..c0011945f4 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios.cmake index 5dd6b05990..c146e72a74 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios_files.cmake index aa81a4bb89..ad1e1f3670 100644 --- a/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/InAppPurchases/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/inapppurchases_files.cmake b/Gems/InAppPurchases/Code/inapppurchases_files.cmake index 303e0be34f..4242317634 100644 --- a/Gems/InAppPurchases/Code/inapppurchases_files.cmake +++ b/Gems/InAppPurchases/Code/inapppurchases_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/InAppPurchases/Code/inapppurchases_shared_files.cmake b/Gems/InAppPurchases/Code/inapppurchases_shared_files.cmake index 2296878017..36f3b8ef8d 100644 --- a/Gems/InAppPurchases/Code/inapppurchases_shared_files.cmake +++ b/Gems/InAppPurchases/Code/inapppurchases_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LandscapeCanvas/CMakeLists.txt b/Gems/LandscapeCanvas/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/LandscapeCanvas/CMakeLists.txt +++ b/Gems/LandscapeCanvas/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LandscapeCanvas/Code/CMakeLists.txt b/Gems/LandscapeCanvas/Code/CMakeLists.txt index 5113d9a506..f7a915c18d 100644 --- a/Gems/LandscapeCanvas/Code/CMakeLists.txt +++ b/Gems/LandscapeCanvas/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LandscapeCanvas/Code/Include/LandscapeCanvas/LandscapeCanvasBus.h b/Gems/LandscapeCanvas/Code/Include/LandscapeCanvas/LandscapeCanvasBus.h index e315cda8c7..dc628ae971 100644 --- a/Gems/LandscapeCanvas/Code/Include/LandscapeCanvas/LandscapeCanvasBus.h +++ b/Gems/LandscapeCanvas/Code/Include/LandscapeCanvas/LandscapeCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Core/Core.h b/Gems/LandscapeCanvas/Code/Source/Editor/Core/Core.h index 28c042896b..63c1ab023a 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Core/Core.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Core/Core.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.cpp index 453888c151..12ac0c8b81 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.h b/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.h index c5ba09d968..2076a8f232 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Core/DataTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp index b4a02995f8..3364313118 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.h b/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.h index bd1dd6a230..4be41b7a6a 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Core/GraphContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp index f97d4e913e..60fe433354 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.h b/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.h index f9a745e21f..b7fd885786 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/MainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.cpp index a1369ed7a1..36cf465b2c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.h b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.h index f94a4d2b3b..91154cb071 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/LayerExtenderContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.cpp index 4cc3c16ff7..8712138547 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.h b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.h index 4c583cf364..9edf5fd182 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/NodeContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.cpp index 5ab4b0526c..ef75c39642 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.h b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.h index 12ce9a1e4d..96d0b1c855 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Menus/SceneContextMenuActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.cpp index 0ff12b3d34..f2a9ca565f 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.h index 4697cda9ce..c9c308d4d7 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/AltitudeFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.cpp index 1d803b06e0..5c3818e2cf 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.h index 84f00e3441..c452a8f418 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/BaseAreaFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.cpp index 309d926417..02724a985b 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.h index 9dc7ce1936..db697d5d3c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistanceBetweenFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.cpp index 3d9eb5fcd8..ad8be35c30 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.h index 64847c2bae..ce38656cae 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/DistributionFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.cpp index 4a5db301c2..43d24acd69 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.h index a5e3607759..32355e662d 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/ShapeIntersectionFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.cpp index 8bdf93743f..129044f10e 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.h index 9a4862b030..f9bbfd7ae2 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SlopeFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.cpp index 432e6b35ea..218b3bdffc 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.h index 06da925bb4..f1ea42d8d7 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskDepthFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.cpp index 334f8a43be..9e65d32b22 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.h index 96e272b1e0..62269acca3 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaFilters/SurfaceMaskFilterNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.cpp index 77cef34b64..e13da6398c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.h index 7813e8d241..4949445fcb 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/BaseAreaModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.cpp index 49e3e9ea5c..27586a777a 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.h index 18925ed02f..d498dba1c3 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/PositionModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.cpp index 6a0bc41ec3..bb7e116d40 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.h index 594e0d7190..7467d2b64e 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/RotationModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.cpp index 10b72c09c0..f770c968dd 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.h index 50e48bfa23..c7e91eae97 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/ScaleModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.cpp index c163b660eb..bc43e293f5 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.h index fd9066b928..67f66ba03a 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaModifiers/SlopeAlignmentModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.cpp index 35f9c67f9a..1ccc4f51e4 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.h index d7eaa5d186..59f3a1d596 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/AreaSelectors/AssetWeightSelectorNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.cpp index 038e076381..bb7fefde5c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.h index 0de70ca95f..9146d1b496 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/AreaBlenderNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.cpp index f59310ce7a..370ae9e50d 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.h index a6e58765b0..133235b207 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BaseAreaNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.cpp index ae6c0acb93..deafc047f9 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.h index 883849e3fb..d73c31019d 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/BlockerAreaNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.cpp index 182a7acbc4..9774fc59e8 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.h index 3adac7e376..60b5335621 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/MeshBlockerAreaNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.cpp index 775a0a042b..6e20ca5f2e 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.h index c2a3f4cc62..5386cc2215 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Areas/SpawnerAreaNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.cpp index 119b1dec2b..35f6dacb07 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.h index 232728e492..43ea81f980 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/BaseNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.cpp index 041f56889d..bafff8aeae 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.h index c8399c1efb..0637bdeaa1 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/BaseGradientModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.cpp index 5cf569294e..227bb9142c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.h index 1870362cd0..1afc024439 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/DitherGradientModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.cpp index 09456982da..f50220eab2 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.h index 6b4f74c376..776a6247f7 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/GradientMixerNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.cpp index 67e821b7ce..70e321e5a8 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.h index dd825c17eb..140b1c2a7d 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/InvertGradientModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.cpp index 6211ca44c9..01b42007fb 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.h index 10b69946df..80b5907d3c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/LevelsGradientModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.cpp index 53a5c4d8a3..cd2e352d94 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.h index 62ff1f91b6..9d11b4fcaf 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/PosterizeGradientModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.cpp index 226244e688..0c24655bde 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.h index 65fba31fe2..ce457cfbf9 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/SmoothStepGradientModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.cpp index 930adfe087..45332120ea 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.h index 0a536dc27f..7e2f956d8b 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/GradientModifiers/ThresholdGradientModifierNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.cpp index 84186f6d52..dbfe6b7e65 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.h index 956cc71d0c..091df2675d 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/AltitudeGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.cpp index 2a2ff2ad55..f6a4518cf0 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.h index 055dcc75c5..54d72b6b2a 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/BaseGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.cpp index 6922b284c8..234a6a52f9 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.h index b39f5e570f..4fe0db18c6 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ConstantGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.cpp index f5761036e3..355161faa7 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.h index cb885e0dbb..ff480b0b9c 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/FastNoiseGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.cpp index 172c5da7cb..5aedb634e6 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.h index 2e721a18e1..821d316a15 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ImageGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.cpp index 2aa7d9f0c2..9997b65da5 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.h index 3e435f0670..ce83b6d9d3 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/PerlinNoiseGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.cpp index a2ec16d379..33734763ae 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.h index e46ed545e2..3d487fb93b 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/RandomNoiseGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.cpp index 74efc55689..4a0bcab1fb 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.h index 14e7b8254d..23c427a48e 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/ShapeAreaFalloffGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.cpp index 05e8750de1..2b0d975e82 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.h index 3d8a1fd045..56bddce2b2 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SlopeGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.cpp index 7644e80314..997f2736b3 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.h index c28f13ccde..49c3a9484b 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Gradients/SurfaceMaskGradientNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.cpp index b112433def..c9e8917e15 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.h index 6502539461..507a6813de 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BaseShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.cpp index c0ed0f8ea3..942922c825 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.h index 019e032a20..162eeb2b62 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/BoxShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.cpp index 22e67c86e2..ca9aed17a4 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.h index 7de9722c26..8297fbbd25 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CapsuleShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.cpp index bd9fde04aa..43be0ea753 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.h index 8b6013f259..889f70fa72 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CompoundShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.cpp index c78a6d3766..9062091b5e 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.h index 9155d3c9f9..692c227304 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/CylinderShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.cpp index c88367d9a6..7cca2f95cd 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.h index 055d135e10..c031152479 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/DiskShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.cpp index f14b15dcf0..92420eaed5 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.h index 59d47d6399..fda49f9b52 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/PolygonPrismShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.cpp index e5e7b7e49d..45eb77690b 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.h index 35b9b1ede6..73a489cac5 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/SphereShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.cpp index 59b9914397..a4f8f9ac05 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.h index 7b538babb4..0c6bd8ea37 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/Shapes/TubeShapeNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.cpp b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.cpp index 6b9761f5c9..e6d31e2400 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.cpp +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.h b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.h index 3d00c3cb03..f6a1bb9e61 100644 --- a/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.h +++ b/Gems/LandscapeCanvas/Code/Source/Editor/Nodes/UI/GradientPreviewThumbnailItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.cpp b/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.cpp index e21bce3fe0..62b5efd929 100644 --- a/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.cpp +++ b/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.h b/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.h index 0f2215e69b..117578a497 100644 --- a/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.h +++ b/Gems/LandscapeCanvas/Code/Source/EditorLandscapeCanvasComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.cpp b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.cpp index 592911d2f3..57857e2377 100644 --- a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.cpp +++ b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.h b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.h index a88fc4147e..cad686c9c7 100644 --- a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.h +++ b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasEditorModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.cpp b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.cpp index 91e8b57e49..c04fcf3756 100644 --- a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.cpp +++ b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.h b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.h index 9b9aea126b..42a57b9735 100644 --- a/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.h +++ b/Gems/LandscapeCanvas/Code/Source/LandscapeCanvasSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasPythonBindingsTest.cpp b/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasPythonBindingsTest.cpp index 0a813af923..f5034a97ee 100644 --- a/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasPythonBindingsTest.cpp +++ b/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasPythonBindingsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasTest.cpp b/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasTest.cpp index b8fd6b4a8f..9e5da2daa6 100644 --- a/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasTest.cpp +++ b/Gems/LandscapeCanvas/Code/Tests/LandscapeCanvasTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LandscapeCanvas/Code/landscapecanvas_editor_files.cmake b/Gems/LandscapeCanvas/Code/landscapecanvas_editor_files.cmake index ddfb0a29d9..7987b16b7b 100644 --- a/Gems/LandscapeCanvas/Code/landscapecanvas_editor_files.cmake +++ b/Gems/LandscapeCanvas/Code/landscapecanvas_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LandscapeCanvas/Code/landscapecanvas_editor_static_files.cmake b/Gems/LandscapeCanvas/Code/landscapecanvas_editor_static_files.cmake index 3e33a60c24..1f3aefb232 100644 --- a/Gems/LandscapeCanvas/Code/landscapecanvas_editor_static_files.cmake +++ b/Gems/LandscapeCanvas/Code/landscapecanvas_editor_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LandscapeCanvas/Code/landscapecanvas_tests_editor_files.cmake b/Gems/LandscapeCanvas/Code/landscapecanvas_tests_editor_files.cmake index 3ca328fd8f..2ac46f265f 100644 --- a/Gems/LandscapeCanvas/Code/landscapecanvas_tests_editor_files.cmake +++ b/Gems/LandscapeCanvas/Code/landscapecanvas_tests_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/CMakeLists.txt b/Gems/LmbrCentral/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/LmbrCentral/CMakeLists.txt +++ b/Gems/LmbrCentral/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/CMakeLists.txt b/Gems/LmbrCentral/Code/CMakeLists.txt index 38e80fb03b..9e3e907c02 100644 --- a/Gems/LmbrCentral/Code/CMakeLists.txt +++ b/Gems/LmbrCentral/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Android.h b/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Android.h index 6b984a8b29..91538a6452 100644 --- a/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Android.h +++ b/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Platform.h b/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Platform.h index 07b62c9da1..0010c4ac50 100644 --- a/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Platform.h +++ b/Gems/LmbrCentral/Code/Platform/Android/LmbrCentral_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Android/platform_android_files.cmake b/Gems/LmbrCentral/Code/Platform/Android/platform_android_files.cmake index a68f9344ae..3f50b969f9 100644 --- a/Gems/LmbrCentral/Code/Platform/Android/platform_android_files.cmake +++ b/Gems/LmbrCentral/Code/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Linux.h b/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Linux.h index e3de13acf6..d7b2670bcf 100644 --- a/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Linux.h +++ b/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Platform.h b/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Platform.h index 88ae044314..56579370d8 100644 --- a/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Platform.h +++ b/Gems/LmbrCentral/Code/Platform/Linux/LmbrCentral_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Linux/lrelease_linux.cmake b/Gems/LmbrCentral/Code/Platform/Linux/lrelease_linux.cmake index 298836114c..24b0c562a2 100644 --- a/Gems/LmbrCentral/Code/Platform/Linux/lrelease_linux.cmake +++ b/Gems/LmbrCentral/Code/Platform/Linux/lrelease_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/Linux/platform_linux_files.cmake b/Gems/LmbrCentral/Code/Platform/Linux/platform_linux_files.cmake index 17ce19d611..15e5a21e0c 100644 --- a/Gems/LmbrCentral/Code/Platform/Linux/platform_linux_files.cmake +++ b/Gems/LmbrCentral/Code/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Mac.h b/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Mac.h index 1d65f60b75..8186055f78 100644 --- a/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Mac.h +++ b/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Platform.h b/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Platform.h index 35378684d9..c4ffad7688 100644 --- a/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Platform.h +++ b/Gems/LmbrCentral/Code/Platform/Mac/LmbrCentral_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Mac/lrelease_mac.cmake b/Gems/LmbrCentral/Code/Platform/Mac/lrelease_mac.cmake index 07205d6469..af355b0a51 100644 --- a/Gems/LmbrCentral/Code/Platform/Mac/lrelease_mac.cmake +++ b/Gems/LmbrCentral/Code/Platform/Mac/lrelease_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/Mac/platform_mac_files.cmake b/Gems/LmbrCentral/Code/Platform/Mac/platform_mac_files.cmake index 6a0fa4181d..07e8f9cef1 100644 --- a/Gems/LmbrCentral/Code/Platform/Mac/platform_mac_files.cmake +++ b/Gems/LmbrCentral/Code/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Platform.h b/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Platform.h index 62c659d87f..734d2a570a 100644 --- a/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Platform.h +++ b/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Windows.h b/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Windows.h index e1eddf2e69..e6e94d271f 100644 --- a/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Windows.h +++ b/Gems/LmbrCentral/Code/Platform/Windows/LmbrCentral_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/Windows/lrelease_windows.cmake b/Gems/LmbrCentral/Code/Platform/Windows/lrelease_windows.cmake index a8b4bc4cf5..1cd1c93e29 100644 --- a/Gems/LmbrCentral/Code/Platform/Windows/lrelease_windows.cmake +++ b/Gems/LmbrCentral/Code/Platform/Windows/lrelease_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/Windows/platform_windows_files.cmake b/Gems/LmbrCentral/Code/Platform/Windows/platform_windows_files.cmake index 477886e0d3..a9e31a94df 100644 --- a/Gems/LmbrCentral/Code/Platform/Windows/platform_windows_files.cmake +++ b/Gems/LmbrCentral/Code/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_Platform.h b/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_Platform.h index e941df25cd..afe0992bce 100644 --- a/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_Platform.h +++ b/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_iOS.h b/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_iOS.h index 6b984a8b29..91538a6452 100644 --- a/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_iOS.h +++ b/Gems/LmbrCentral/Code/Platform/iOS/LmbrCentral_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Platform/iOS/platform_ios_files.cmake b/Gems/LmbrCentral/Code/Platform/iOS/platform_ios_files.cmake index 9127026fd5..0d33a7a46b 100644 --- a/Gems/LmbrCentral/Code/Platform/iOS/platform_ios_files.cmake +++ b/Gems/LmbrCentral/Code/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp index 97a9a2f6e0..1e0d759082 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.h b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.h index e41ada34d8..3a0c0f49e1 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.h +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationAreaComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp index 3d8ff9b8f1..56d1f0b622 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.h b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.h index 427b1f9c21..f861893bf7 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.h +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp index ab68a967f6..d5c83e668b 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.h b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.h index 4df3f5a9cd..99f78ed2fd 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.h +++ b/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp index bd66cd9e94..26ddf17879 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.h b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.h index b3e095dacc..9285552c39 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.h +++ b/Gems/LmbrCentral/Code/Source/Ai/NavigationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp b/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp index d8c452078f..4491ce7498 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.h b/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.h index bbb601a5e5..368c69ea23 100644 --- a/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.h +++ b/Gems/LmbrCentral/Code/Source/Ai/NavigationSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.cpp b/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.cpp index c19322b36f..dcbaa713e5 100644 --- a/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.h b/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.h index 783b48b46a..5db9f1af4e 100644 --- a/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.h +++ b/Gems/LmbrCentral/Code/Source/Asset/AssetSystemDebugComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp index 24de638f2e..daa76292dc 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.h index 7520a216e0..7ceff96e89 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioAreaEnvironmentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp index a0aa6b3cc3..3623eda163 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.h index 919a238b2f..d174cb00cc 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioEnvironmentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp index 54baf25426..f5c7dcce62 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.h index 4b39536afb..e1765c77f6 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioListenerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp index 2ee5ae076d..1fb7276100 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.h index 96b09d0d8e..9a1c22635b 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioMultiPositionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp index b6de8d91b2..550233799c 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.h index fcbd2f7789..f00af25306 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioPreloadComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp index cfcff22e07..554be27fae 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.h index 62e307d452..fa48e064e0 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioProxyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp index ece6bc0ff2..b474b9811c 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.h index 019b519f7d..c32e70a59f 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioRtpcComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp index ac27b09539..2ea9f31927 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.h index e7f67fe5ca..49a736921e 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioSwitchComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp index 95162f00f3..9765e9dd0b 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.h index 1f22af9ea0..295c86c3f7 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.cpp index 6b16db7149..0e99cab31a 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.h b/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.h index e2906f50df..f76cb3c6cc 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/AudioTriggerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp index 3b8c3c9dad..3dc522e02f 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.h index 3083c4a66d..51a1c4eaa2 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioAreaEnvironmentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp index 18e67b449b..ecc1950c2b 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.h index 8d6538e777..9644aa1e60 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioEnvironmentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp index d6a5493b0b..4fe3874f24 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.h index 778dac108c..fe98c96a30 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioListenerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp index 3625da1d7b..895ff11273 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.h index 5a0dd17b48..0cecbc2242 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioMultiPositionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp index b41f6f5754..4512c3c6c2 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.h index ae2d336d91..2cbf5e0ec6 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioPreloadComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp index 0e8454d8a2..8aa6ba6f83 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.h index 1c7c0be38f..c8c7c6c4f1 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioRtpcComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp index 12d0b5c2cb..ac9baaee5b 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.h index 213135b324..3105a90a39 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioSwitchComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp index d8f335b439..70575e5fcd 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.h b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.h index 9c38ffd714..a9e2925d88 100644 --- a/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Audio/EditorAudioTriggerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.cpp index 78325e9525..04f41bcd31 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.h index 7f80535f0c..678894b9cb 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.cpp index 50b350667c..c2d952f1af 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.h index fa95d79393..4231f99825 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/BenchmarkAssetBuilder/BenchmarkAssetBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.cpp index 99addff8a7..c192f39903 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.h index 803a6bcbb7..fb1d7a0d87 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CfgBuilderWorker/CfgBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.cpp index bde5d8fa0d..2b4faeb63b 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.h index 858e2dbd58..d20875b63a 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.cpp index 7df1fea98b..f3cbd38168 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.h index e7e63a94c1..13df6440cb 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/CopyDependencyBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.cpp index de14725733..bf8c629859 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.h index 08f4a7a37c..35bbfee26e 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/EmfxWorkspaceBuilderWorker/EmfxWorkspaceBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.cpp index 05a0eac50f..9ebc1b8d5a 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.h index 948a2855bf..48c674fa66 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/FontBuilderWorker/FontBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.cpp index 3ca9ed8d53..69bc411d80 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.h index 844bc635b9..76925ecb94 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.cpp index d961534b46..9e36aad257 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.h index d2eb29b214..b441abef99 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/SchemaBuilderWorker/SchemaUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.cpp index 55906b67f3..b070784766 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.h index 916686e32a..a01d73f366 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlBuilderWorker/XmlBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.cpp index 6e6a0f8389..f0e359a0a5 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.h index e5ecb670d2..00e3380d29 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/CopyDependencyBuilder/XmlFormattedAssetBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.cpp index 881c12be87..3ab5e78ba7 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.h index 4baf4149a9..bd6eb68413 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp index b562ff0f1d..0ec0407d88 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h index e6a130d7b1..5b3343d0b4 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/DependencyBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.cpp index 5b90c29587..9c78fc59bf 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.h index 5615e1c020..90f3433519 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/DependencyBuilder/SeedBuilderWorker/SeedBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.cpp index aacbb09c32..02731645d7 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.h index 51cb35d375..e6ac992c37 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp index 76e241319b..8e2b3edaa0 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.h index adb3b2cc8a..cea82cdfa6 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/LevelBuilder/LevelBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.cpp index 17f7e8f62a..1ba0860894 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.h index 9efaba20e9..fdfe5c5029 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.cpp index 4745c56b01..9291742a33 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.h index 0249d52154..0b947913c2 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.cpp b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.cpp index 6d84393a26..63c7f4c14e 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.h b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.h index daf664bfb6..65053b2e31 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.h +++ b/Gems/LmbrCentral/Code/Source/Builders/LuaBuilder/LuaHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.cpp index 71bc3f9244..660c38f869 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.h index c27dbf79dd..f0b356c5ee 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/MaterialBuilder/MaterialBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.cpp index 30c61ae586..f0e270744b 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.h index 512f8c00a9..9c0990d377 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp index 6bf3ce85a6..762352e1ca 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.h b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.h index bb56272cc3..26c533aa66 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.h +++ b/Gems/LmbrCentral/Code/Source/Builders/SliceBuilder/SliceBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.cpp b/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.cpp index 4133b533fc..35a117a207 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.h b/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.h index 050f87d980..8584d02be0 100644 --- a/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.h +++ b/Gems/LmbrCentral/Code/Source/Builders/TranslationBuilder/TranslationBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.cpp b/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.cpp index d70babec3d..37e14a8a92 100644 --- a/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.h b/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.h index 52a953f31d..9905f17682 100644 --- a/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.h +++ b/Gems/LmbrCentral/Code/Source/Bundling/BundlingSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.cpp b/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.cpp index 2ee4bea421..b6fb5b2b16 100644 --- a/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.h b/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.h index e9aefa0f02..ff7b4def93 100644 --- a/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.h +++ b/Gems/LmbrCentral/Code/Source/Editor/EditorCommentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.cpp b/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.cpp index ebc1108a69..9083a5c652 100644 --- a/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.cpp +++ b/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.h b/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.h index 3cc1e9e7d5..75c878937e 100644 --- a/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.h +++ b/Gems/LmbrCentral/Code/Source/Events/ReflectScriptableEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.cpp b/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.cpp index d952d8f317..b6b4160736 100644 --- a/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.h b/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.h index a3d339ca45..c7dd1e8e5f 100644 --- a/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.h +++ b/Gems/LmbrCentral/Code/Source/Geometry/GeometrySystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/LmbrCentral.cpp b/Gems/LmbrCentral/Code/Source/LmbrCentral.cpp index db57ae360d..0b3ec13186 100644 --- a/Gems/LmbrCentral/Code/Source/LmbrCentral.cpp +++ b/Gems/LmbrCentral/Code/Source/LmbrCentral.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/LmbrCentral.h b/Gems/LmbrCentral/Code/Source/LmbrCentral.h index a24c74fe70..33405dd0b3 100644 --- a/Gems/LmbrCentral/Code/Source/LmbrCentral.h +++ b/Gems/LmbrCentral/Code/Source/LmbrCentral.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.cpp b/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.cpp index 2745166d50..a2c96cfd11 100644 --- a/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.cpp +++ b/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.h b/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.h index 37a0543359..3b827a5f0b 100644 --- a/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.h +++ b/Gems/LmbrCentral/Code/Source/LmbrCentralEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/LmbrCentral_precompiled.h b/Gems/LmbrCentral/Code/Source/LmbrCentral_precompiled.h index 1a45961dc1..60a9984367 100644 --- a/Gems/LmbrCentral/Code/Source/LmbrCentral_precompiled.h +++ b/Gems/LmbrCentral/Code/Source/LmbrCentral_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.cpp b/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.cpp index c2979a24d8..455799abaf 100644 --- a/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.h b/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.h index fc02426009..cbc5c85054 100644 --- a/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.h +++ b/Gems/LmbrCentral/Code/Source/Rendering/EntityDebugDisplayComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.cpp index 2aa4611b03..2500a0b30f 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.h index e178f2f8e4..de3c69b574 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorLookAtComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.cpp index 8a69ad4a99..73c7e1979f 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.h index f141e3865d..6c778d8692 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorRandomTimedSpawnerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.cpp index 398cd69527..59a4aeb9e7 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.h index 8ce3547581..3dd787ac2f 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorSpawnerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.cpp index da7f46f8c1..225ff9704b 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.h index e0352271a0..b6a142118b 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/EditorTagComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.cpp index 200416f769..f87a8726aa 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.h index 21f89a414c..1e798dbf42 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/LookAtComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.cpp index a6f60dfdcb..d53d1e02ae 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.h index bbc9d5f046..988934facb 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/RandomTimedSpawnerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.cpp index b914c69816..0ffcf1ac26 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.h index 1b6b72dc55..d3c23484ec 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/SimpleStateComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.cpp index acaf6ad2fd..a0ca3d2dde 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.h index 8f8def490e..c8f2d77885 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/SpawnerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.cpp b/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.cpp index 478ac3bdb0..f44ef2d16e 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.h b/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.h index 20342bf969..f100926f78 100644 --- a/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.h +++ b/Gems/LmbrCentral/Code/Source/Scripting/TagComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/BoxShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/BoxShape.cpp index 168edc0b27..b41ddf9a9c 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/BoxShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/BoxShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/BoxShape.h b/Gems/LmbrCentral/Code/Source/Shape/BoxShape.h index 0797660b8b..80fb83a5b6 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/BoxShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/BoxShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.cpp index c8236df531..02549c126b 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.h index f942de2ab7..055dd5293a 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/BoxShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp index 1ff85c9e90..175cda4c1a 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.h b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.h index 35812e2480..5ce02d118e 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.cpp index f3b4195a2b..6c5fa141e6 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.h index 58443bcb89..41f5ea5a24 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/CapsuleShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp index 0ecbc33074..febb3de7d9 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.h index 6d2a1215af..a2ccb28239 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/CompoundShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp index ad43204402..f03d2a757a 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.h b/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.h index 497a9e8caa..d981c726d9 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/CylinderShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.cpp index 8f0ae1a072..18901d2998 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.h index 2cdf004f12..f7db21d671 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/CylinderShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/DiskShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/DiskShape.cpp index 5774a9c7b1..d10455987b 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/DiskShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/DiskShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/DiskShape.h b/Gems/LmbrCentral/Code/Source/Shape/DiskShape.h index 7551e40266..270efa8953 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/DiskShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/DiskShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.cpp index 930996459b..20df01da86 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.h index 99e1b2fc6e..c45c6a9e3f 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/DiskShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.cpp index a8bcf6d355..0eb6c30fd5 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.h index 3ed086a03d..3eb358645e 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorBaseShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.cpp index 91baf58f02..2c0cda363a 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.h index 2f935f3e3d..3ba6a4436a 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorBoxShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.cpp index 4a198c4da4..823d51d576 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.h index ec0e3532dd..8d480319d4 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorCapsuleShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.cpp index 1548392d34..31c2239296 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.h index afc2641acb..a01e1fc33b 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorCompoundShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.cpp index 0c4a13f3b0..4fc942c27e 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.h index b527b69564..b86e662df2 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorCylinderShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.cpp index f94299e120..6fb1dbdd79 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.h index 01607aebbe..d8fcf42d79 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorDiskShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.cpp index b56f2ba4cf..8c81d67b3d 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.h index 932330c94b..e2903d1aa8 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.cpp index 6debed8407..c0fe3509bf 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.h b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.h index b47942993a..30c79dcec6 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorPolygonPrismShapeComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.cpp index 42db1b72fc..6602cd8827 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.h index 618ca79e43..6dfc77a802 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorQuadShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.cpp index 00212f5053..fe333a1898 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.h b/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.h index 8fe0eb6863..d5f5dedf71 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorShapeComponentConverters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.cpp index 07a0c0179a..e2ffbee516 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.h index 9c26ebb590..e3975b4a40 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorSphereShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.cpp index 50a25ea2c4..be186acd66 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.h index a04f564467..4ec5030583 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.cpp index b5c671c0a4..1096415e10 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.h b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.h index 94f170eaf4..41615b286f 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorSplineComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.cpp index cf72c21d4d..f609c77c63 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.h index 535b2e3a8b..370cd249f1 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.cpp b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.cpp index 81fa34d64f..a45967a16c 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.h b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.h index 387573f500..4d32c72f3a 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.h +++ b/Gems/LmbrCentral/Code/Source/Shape/EditorTubeShapeComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.cpp index d5b72c3462..9941772c13 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.h b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.h index df3a55fb4c..66b353a13d 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.cpp index 334fa3939d..22b0cbfb03 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.h index faeb17bcc4..91e4893c64 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/PolygonPrismShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/QuadShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/QuadShape.cpp index 2dae9f013c..8fbf24d896 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/QuadShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/QuadShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/QuadShape.h b/Gems/LmbrCentral/Code/Source/Shape/QuadShape.h index f55ddbc665..ce55507d56 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/QuadShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/QuadShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.cpp index 5d88bfb107..91797af793 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.h index 7110b5af88..33f4350e3c 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/QuadShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponent.cpp index 0bad007de1..c8fd0a4a7e 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.cpp b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.cpp index 47f92e7d46..3ed0fa6758 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.h b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.h index 45649046ac..53d1c44918 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.h +++ b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.inl b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.inl index d7766096c6..fa3369f93a 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.inl +++ b/Gems/LmbrCentral/Code/Source/Shape/ShapeComponentConverters.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/ShapeDisplay.h b/Gems/LmbrCentral/Code/Source/Shape/ShapeDisplay.h index 4d7293eced..8be1464533 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/ShapeDisplay.h +++ b/Gems/LmbrCentral/Code/Source/Shape/ShapeDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.cpp b/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.cpp index c823fc0ea7..9a52fa49f0 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.h b/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.h index 5f6f2407ea..f23326b833 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.h +++ b/Gems/LmbrCentral/Code/Source/Shape/ShapeGeometryUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/SphereShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/SphereShape.cpp index 120a49e30c..5c5c5d6d83 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/SphereShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/SphereShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/SphereShape.h b/Gems/LmbrCentral/Code/Source/Shape/SphereShape.h index fb4f4b25a6..6e27322a8e 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/SphereShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/SphereShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.cpp index 81e2a280d8..0accd40bbb 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.h index ade70a4888..45a02fff7d 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/SphereShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.cpp index 4741433b68..deeea68aeb 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.h b/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.h index b61954f892..a61a99b1d3 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/SplineComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/TubeShape.cpp b/Gems/LmbrCentral/Code/Source/Shape/TubeShape.cpp index 7061af1368..13762ad1ed 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/TubeShape.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/TubeShape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/TubeShape.h b/Gems/LmbrCentral/Code/Source/Shape/TubeShape.h index 98f0dd23d5..82160fd913 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/TubeShape.h +++ b/Gems/LmbrCentral/Code/Source/Shape/TubeShape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.cpp b/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.cpp index 01028c3952..0c6f31f6fe 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.cpp +++ b/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.h b/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.h index b5f9af8417..0fbf6729d4 100644 --- a/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.h +++ b/Gems/LmbrCentral/Code/Source/Shape/TubeShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.cpp index 551beb81e1..6093cc00a2 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.h index 4ec66b503b..e3ad4bfc4a 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Hidden/TextureMipmapAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.cpp index 5b66794cb7..0da2706eba 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.h index c9ca19d5c3..eca2312a10 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Material/MaterialAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.cpp index 1f8cf31640..6e4d15fc07 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.h index 994861c472..e075c1e879 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/AudioAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.cpp index e6efba3fa5..4632b903b0 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.h index 3b03abdded..30094fd0b2 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/CharacterPhysicsAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.cpp index 68a88759f0..f47264f80b 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.h index 3eb2b0bd56..ba656f0c37 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/EntityPrototypeLibraryAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.cpp index 97b78c4045..5acf90a887 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.h index cd59ae4c78..d66ca4d69b 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GameTokenAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.cpp index f5d88f3802..78e0e3a9d0 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.h index ccf5117dd4..0747fcbff1 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/GroupAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.cpp index 636757093a..07647ccc91 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.h index 8a37811478..fe2c8d5cfd 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Other/PrefabsLibraryAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.cpp index 723b7a442d..e0cfb42bce 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.h index 6f5998b7c3..bc4792f56f 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/SubstanceAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.cpp index 0e5ead9a42..a9f173893e 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.h index 9a5d502035..2012268fac 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/Texture/TextureAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.cpp index 8973325a16..b919023f12 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.h index f2f3d53800..5c5cb5ce08 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/UI/EntityIconAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.cpp index fe4ed51f08..5d94a69361 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.h index 2090a3e073..2e2906ae3f 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/UI/FontAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.cpp b/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.cpp index 8b523495aa..ada492544d 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.cpp +++ b/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.h b/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.h index 2a1f344bbf..15c8b045c9 100644 --- a/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.h +++ b/Gems/LmbrCentral/Code/Source/Unhandled/UI/UICanvasAssetTypeInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/AudioComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/AudioComponentTests.cpp index 9b305dda87..bf6f4cc8de 100644 --- a/Gems/LmbrCentral/Code/Tests/AudioComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/AudioComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/BoxShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/BoxShapeTest.cpp index 13d7b9a4f3..dcbd3b8b83 100644 --- a/Gems/LmbrCentral/Code/Tests/BoxShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/BoxShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/Builders/CopyDependencyBuilderTest.cpp b/Gems/LmbrCentral/Code/Tests/Builders/CopyDependencyBuilderTest.cpp index e78d99d38c..5dfc143e6b 100644 --- a/Gems/LmbrCentral/Code/Tests/Builders/CopyDependencyBuilderTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/Builders/CopyDependencyBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/Builders/LevelBuilderTest.cpp b/Gems/LmbrCentral/Code/Tests/Builders/LevelBuilderTest.cpp index a87c1b8b2c..1509525f6c 100644 --- a/Gems/LmbrCentral/Code/Tests/Builders/LevelBuilderTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/Builders/LevelBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/Builders/LuaBuilderTests.cpp b/Gems/LmbrCentral/Code/Tests/Builders/LuaBuilderTests.cpp index 3166b55693..9505233d30 100644 --- a/Gems/LmbrCentral/Code/Tests/Builders/LuaBuilderTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/Builders/LuaBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/Builders/MaterialBuilderTests.cpp b/Gems/LmbrCentral/Code/Tests/Builders/MaterialBuilderTests.cpp index 8e3d1f018e..ba89ca8c33 100644 --- a/Gems/LmbrCentral/Code/Tests/Builders/MaterialBuilderTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/Builders/MaterialBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/Builders/SeedBuilderTests.cpp b/Gems/LmbrCentral/Code/Tests/Builders/SeedBuilderTests.cpp index 9de8c68ce7..d3663a30c5 100644 --- a/Gems/LmbrCentral/Code/Tests/Builders/SeedBuilderTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/Builders/SeedBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp b/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp index b642851948..befdb95a44 100644 --- a/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/Builders/SliceBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp index e80c4683a5..fe8aa0b7bc 100644 --- a/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/BundlingSystemComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/CapsuleShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/CapsuleShapeTest.cpp index 30a20282ec..8f76cf409f 100644 --- a/Gems/LmbrCentral/Code/Tests/CapsuleShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/CapsuleShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/CylinderShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/CylinderShapeTest.cpp index 6b273186d4..e2643bfca1 100644 --- a/Gems/LmbrCentral/Code/Tests/CylinderShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/CylinderShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/DiskShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/DiskShapeTest.cpp index 1858cef9b2..ee1394540e 100644 --- a/Gems/LmbrCentral/Code/Tests/DiskShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/DiskShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/EditorBoxShapeComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/EditorBoxShapeComponentTests.cpp index fa6c4e910f..086b307873 100644 --- a/Gems/LmbrCentral/Code/Tests/EditorBoxShapeComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/EditorBoxShapeComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/EditorCapsuleShapeComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/EditorCapsuleShapeComponentTests.cpp index 544e53e6cb..a821c18c95 100644 --- a/Gems/LmbrCentral/Code/Tests/EditorCapsuleShapeComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/EditorCapsuleShapeComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/EditorCompoundShapeComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/EditorCompoundShapeComponentTests.cpp index 7a3e71f3e2..3f89cc2714 100644 --- a/Gems/LmbrCentral/Code/Tests/EditorCompoundShapeComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/EditorCompoundShapeComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/EditorCylinderShapeComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/EditorCylinderShapeComponentTests.cpp index 1855c9baca..2750c95a6a 100644 --- a/Gems/LmbrCentral/Code/Tests/EditorCylinderShapeComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/EditorCylinderShapeComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/EditorPolygonPrismShapeComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/EditorPolygonPrismShapeComponentTests.cpp index f8d97a3319..9cc25deb1b 100644 --- a/Gems/LmbrCentral/Code/Tests/EditorPolygonPrismShapeComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/EditorPolygonPrismShapeComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/EditorSphereShapeComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/EditorSphereShapeComponentTests.cpp index 0cb6d0e800..64e688c66f 100644 --- a/Gems/LmbrCentral/Code/Tests/EditorSphereShapeComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/EditorSphereShapeComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/LmbrCentralEditorTest.cpp b/Gems/LmbrCentral/Code/Tests/LmbrCentralEditorTest.cpp index 33527b39b1..9697ef1ee5 100644 --- a/Gems/LmbrCentral/Code/Tests/LmbrCentralEditorTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/LmbrCentralEditorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.cpp b/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.cpp index fdc7f23421..d157526daa 100644 --- a/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.h b/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.h index 2d05f680fe..b1da246944 100644 --- a/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.h +++ b/Gems/LmbrCentral/Code/Tests/LmbrCentralReflectionTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/LmbrCentralTest.cpp b/Gems/LmbrCentral/Code/Tests/LmbrCentralTest.cpp index 78091743cc..aa1e2fea28 100644 --- a/Gems/LmbrCentral/Code/Tests/LmbrCentralTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/LmbrCentralTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test1.lua b/Gems/LmbrCentral/Code/Tests/Lua/test1.lua index e65dde960d..98d20b566e 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test1.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test1.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test2.lua b/Gems/LmbrCentral/Code/Tests/Lua/test2.lua index 22fb2fce45..093938f95d 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test2.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test2.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test3_general_dependencies.lua b/Gems/LmbrCentral/Code/Tests/Lua/test3_general_dependencies.lua index 869532f7dd..bcac7fadaa 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test3_general_dependencies.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test3_general_dependencies.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test4_console_command.lua b/Gems/LmbrCentral/Code/Tests/Lua/test4_console_command.lua index f229c5ceee..f9ca0d40ba 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test4_console_command.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test4_console_command.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test5_whole_line_comment.lua b/Gems/LmbrCentral/Code/Tests/Lua/test5_whole_line_comment.lua index 413b01f387..2b4d1c0481 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test5_whole_line_comment.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test5_whole_line_comment.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test6_partial_line_comment.lua b/Gems/LmbrCentral/Code/Tests/Lua/test6_partial_line_comment.lua index 6d51698f6a..c0594ba18d 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test6_partial_line_comment.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test6_partial_line_comment.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test7_block_comment.lua b/Gems/LmbrCentral/Code/Tests/Lua/test7_block_comment.lua index f4035430c4..e857d7969b 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test7_block_comment.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test7_block_comment.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/Lua/test8_negated_block_comment.lua b/Gems/LmbrCentral/Code/Tests/Lua/test8_negated_block_comment.lua index df3402269b..e4a0cfcb34 100644 --- a/Gems/LmbrCentral/Code/Tests/Lua/test8_negated_block_comment.lua +++ b/Gems/LmbrCentral/Code/Tests/Lua/test8_negated_block_comment.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LmbrCentral/Code/Tests/PolygonPrismShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/PolygonPrismShapeTest.cpp index 4d44478e0f..cadecf588e 100644 --- a/Gems/LmbrCentral/Code/Tests/PolygonPrismShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/PolygonPrismShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/QuadShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/QuadShapeTest.cpp index b03c8e06d4..f89227ec20 100644 --- a/Gems/LmbrCentral/Code/Tests/QuadShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/QuadShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/ShapeGeometryUtilTest.cpp b/Gems/LmbrCentral/Code/Tests/ShapeGeometryUtilTest.cpp index bafb1126e8..b486645694 100644 --- a/Gems/LmbrCentral/Code/Tests/ShapeGeometryUtilTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/ShapeGeometryUtilTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/SpawnerComponentTest.cpp b/Gems/LmbrCentral/Code/Tests/SpawnerComponentTest.cpp index 071b424135..95d4d18df3 100644 --- a/Gems/LmbrCentral/Code/Tests/SpawnerComponentTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/SpawnerComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/SphereShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/SphereShapeTest.cpp index fb885187df..2d2e62944f 100644 --- a/Gems/LmbrCentral/Code/Tests/SphereShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/SphereShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/SplineComponentTests.cpp b/Gems/LmbrCentral/Code/Tests/SplineComponentTests.cpp index b20812d0b6..60e03ebadd 100644 --- a/Gems/LmbrCentral/Code/Tests/SplineComponentTests.cpp +++ b/Gems/LmbrCentral/Code/Tests/SplineComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/Tests/TubeShapeTest.cpp b/Gems/LmbrCentral/Code/Tests/TubeShapeTest.cpp index 7254477e31..c36289afd9 100644 --- a/Gems/LmbrCentral/Code/Tests/TubeShapeTest.cpp +++ b/Gems/LmbrCentral/Code/Tests/TubeShapeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationAreaBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationAreaBus.h index 7108b0384b..de4ded65e0 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationAreaBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationAreaBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationComponentBus.h index 4977c5ad11..3ac73a58db 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSeedBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSeedBus.h index 8d20a782f4..434416b024 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSeedBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSeedBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSystemBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSystemBus.h index ada72e925f..2e70fb10b8 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSystemBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Ai/NavigationSystemBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/AttachmentComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/AttachmentComponentBus.h index b2d8fe178c..160e93e06d 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/AttachmentComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/AttachmentComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/SkeletalHierarchyRequestBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/SkeletalHierarchyRequestBus.h index 0dcc3cbbc4..f34348f68c 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/SkeletalHierarchyRequestBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Animation/SkeletalHierarchyRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioEnvironmentComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioEnvironmentComponentBus.h index faa85d35a4..1eca552947 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioEnvironmentComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioEnvironmentComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioListenerComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioListenerComponentBus.h index d9ba92bbad..d39dc2ede2 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioListenerComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioListenerComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioMultiPositionComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioMultiPositionComponentBus.h index 8c5d060a51..750b939bb6 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioMultiPositionComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioMultiPositionComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioPreloadComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioPreloadComponentBus.h index 8406fd1ee1..86844b28fa 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioPreloadComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioPreloadComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioProxyComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioProxyComponentBus.h index 6fa214d756..c07d933d56 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioProxyComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioProxyComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioRtpcComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioRtpcComponentBus.h index b818375bfc..9f9718d8db 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioRtpcComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioRtpcComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSwitchComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSwitchComponentBus.h index 8200625d09..d03a9e0c7d 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSwitchComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSwitchComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSystemComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSystemComponentBus.h index ae7856883f..e062c2f3e5 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSystemComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioSystemComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioTriggerComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioTriggerComponentBus.h index b9a0ce2493..9cccd4d147 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioTriggerComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Audio/AudioTriggerComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Bundling/BundlingSystemComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Bundling/BundlingSystemComponentBus.h index 0ab8bdfd6a..9c3845f3f6 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Bundling/BundlingSystemComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Bundling/BundlingSystemComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.h index 8e74c42211..a4725ba4ab 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.inl b/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.inl index be6f592e8e..ab05f69fe4 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.inl +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Component/EditorWrappedComponentBase.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.h index 8f401591f7..916afb6cff 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.inl b/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.inl index d21f4a6aec..4fbba75965 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.inl +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyMonitor.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyNotificationBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyNotificationBus.h index b2945b578b..2ca9070825 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyNotificationBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Dependency/DependencyNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Geometry/GeometrySystemComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Geometry/GeometrySystemComponentBus.h index ce3a2ab1e4..f3765c3eb0 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Geometry/GeometrySystemComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Geometry/GeometrySystemComponentBus.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/ForceVolumeRequestBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/ForceVolumeRequestBus.h index d82e097f5b..5b69f8ad46 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/ForceVolumeRequestBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/ForceVolumeRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WaterNotificationBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WaterNotificationBus.h index 088beb505b..df6c447a3a 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WaterNotificationBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WaterNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WindVolumeRequestBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WindVolumeRequestBus.h index 24f38c0e4f..d9c99e9a39 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WindVolumeRequestBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Physics/WindVolumeRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/DecalComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/DecalComponentBus.h index a1fa70bdc8..1b10bf1e6b 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/DecalComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/DecalComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorCameraCorrectionBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorCameraCorrectionBus.h index 11feac79e4..1f0b3b92c7 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorCameraCorrectionBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorCameraCorrectionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorLightComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorLightComponentBus.h index e0a7cc96ea..76c530f398 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorLightComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/EditorLightComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/GiRegistrationBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/GiRegistrationBus.h index d7da31d43a..37a87f9144 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/GiRegistrationBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/GiRegistrationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LensFlareAsset.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LensFlareAsset.h index e543432e8a..ca1e86997a 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LensFlareAsset.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LensFlareAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LightComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LightComponentBus.h index f8032a0c5d..f9ce5e2f39 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LightComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/LightComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h index b912c3bfa7..22c41863a8 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialHandle.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialHandle.h index e2fc4778f4..03ab70077e 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialHandle.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialHandle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialOwnerBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialOwnerBus.h index fc7bbfbb5e..4d6fee10a9 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialOwnerBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialOwnerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshAsset.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshAsset.h index fae1c8fda5..d59305b4d8 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshAsset.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshModificationBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshModificationBus.h index 91f89e3ce5..143ced702c 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshModificationBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MeshModificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderBoundsBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderBoundsBus.h index 5662b2cebd..b266b1e310 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderBoundsBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderBoundsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderNodeBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderNodeBus.h index 307aad60af..c8700bafe5 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderNodeBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/RenderNodeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/EditorTagComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/EditorTagComponentBus.h index 272b1833cb..5d35756efb 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/EditorTagComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/EditorTagComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/GameplayNotificationBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/GameplayNotificationBus.h index c244b1e2f7..fdaa55abc7 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/GameplayNotificationBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/GameplayNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/RandomTimedSpawnerComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/RandomTimedSpawnerComponentBus.h index 60ef6fc2f8..c0f1bb217f 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/RandomTimedSpawnerComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/RandomTimedSpawnerComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SimpleStateComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SimpleStateComponentBus.h index 2c1e174120..5992be84ac 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SimpleStateComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SimpleStateComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SpawnerComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SpawnerComponentBus.h index 92196b5ffd..f86db75bc1 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SpawnerComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/SpawnerComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/TagComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/TagComponentBus.h index 5feeb2a2bf..733dafa009 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/TagComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Scripting/TagComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/BoxShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/BoxShapeComponentBus.h index 64afba6049..f9c493b49f 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/BoxShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/BoxShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CapsuleShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CapsuleShapeComponentBus.h index 4a3b045dd0..d9aa0acdda 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CapsuleShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CapsuleShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CompoundShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CompoundShapeComponentBus.h index 8e082f778d..2aa127686f 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CompoundShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CompoundShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CylinderShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CylinderShapeComponentBus.h index 76aa85cead..84dbe5b131 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CylinderShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/CylinderShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/DiskShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/DiskShapeComponentBus.h index 3c74de6965..f4665be1bf 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/DiskShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/DiskShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorPolygonPrismShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorPolygonPrismShapeComponentBus.h index b73f3c24e2..28a97ba213 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorPolygonPrismShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorPolygonPrismShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorShapeComponentBus.h index f92d4e96fe..705134adfa 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorSplineComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorSplineComponentBus.h index fc304f2cb4..8df60e2758 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorSplineComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorSplineComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorTubeShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorTubeShapeComponentBus.h index 017a3d227e..bca2049c28 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorTubeShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/EditorTubeShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/PolygonPrismShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/PolygonPrismShapeComponentBus.h index fcdd1d6be2..f1eb8e59b7 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/PolygonPrismShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/PolygonPrismShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/QuadShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/QuadShapeComponentBus.h index 860c43c84c..69ed5a8e24 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/QuadShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/QuadShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/ShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/ShapeComponentBus.h index 5f78abda5d..a6fd80712a 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/ShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/ShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SphereShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SphereShapeComponentBus.h index 26793408ee..9092b6fcf1 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SphereShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SphereShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.h index 55b5c330e4..f3dd828f00 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.inl b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.inl index 4b4cf08d0e..53b893b0e3 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.inl +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineAttribute.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineComponentBus.h index 0ea5493e66..081077b32d 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/SplineComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/TubeShapeComponentBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/TubeShapeComponentBus.h index 878f6fe0c3..cce34fd51c 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/TubeShapeComponentBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Shape/TubeShapeComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Terrain/TerrainSystemRequestBus.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Terrain/TerrainSystemRequestBus.h index bcbde7575a..c29ffeb48d 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Terrain/TerrainSystemRequestBus.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Terrain/TerrainSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LmbrCentral/Code/lmbrcentral_editor_files.cmake b/Gems/LmbrCentral/Code/lmbrcentral_editor_files.cmake index 0acce0dd93..f9b3d7769b 100644 --- a/Gems/LmbrCentral/Code/lmbrcentral_editor_files.cmake +++ b/Gems/LmbrCentral/Code/lmbrcentral_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/lmbrcentral_editor_shared_files.cmake b/Gems/LmbrCentral/Code/lmbrcentral_editor_shared_files.cmake index 06d5d1bcdf..d85cdf4b00 100644 --- a/Gems/LmbrCentral/Code/lmbrcentral_editor_shared_files.cmake +++ b/Gems/LmbrCentral/Code/lmbrcentral_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/lmbrcentral_editor_tests_files.cmake b/Gems/LmbrCentral/Code/lmbrcentral_editor_tests_files.cmake index f8b6429938..1490ceb1b3 100644 --- a/Gems/LmbrCentral/Code/lmbrcentral_editor_tests_files.cmake +++ b/Gems/LmbrCentral/Code/lmbrcentral_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/lmbrcentral_files.cmake b/Gems/LmbrCentral/Code/lmbrcentral_files.cmake index 74687b9a14..d68eacd442 100644 --- a/Gems/LmbrCentral/Code/lmbrcentral_files.cmake +++ b/Gems/LmbrCentral/Code/lmbrcentral_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/lmbrcentral_shared_files.cmake b/Gems/LmbrCentral/Code/lmbrcentral_shared_files.cmake index c8c4e5de75..d6603d6584 100644 --- a/Gems/LmbrCentral/Code/lmbrcentral_shared_files.cmake +++ b/Gems/LmbrCentral/Code/lmbrcentral_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LmbrCentral/Code/lmbrcentral_tests_files.cmake b/Gems/LmbrCentral/Code/lmbrcentral_tests_files.cmake index 67a1a96fde..6c66efae29 100644 --- a/Gems/LmbrCentral/Code/lmbrcentral_tests_files.cmake +++ b/Gems/LmbrCentral/Code/lmbrcentral_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/CMakeLists.txt b/Gems/LocalUser/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/LocalUser/CMakeLists.txt +++ b/Gems/LocalUser/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/CMakeLists.txt b/Gems/LocalUser/Code/CMakeLists.txt index 14ec2b56ce..a2a94d3b60 100644 --- a/Gems/LocalUser/Code/CMakeLists.txt +++ b/Gems/LocalUser/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/Include/LocalUser/LocalPlayerSlot.h b/Gems/LocalUser/Code/Include/LocalUser/LocalPlayerSlot.h index e50392ec9f..88fcb40937 100644 --- a/Gems/LocalUser/Code/Include/LocalUser/LocalPlayerSlot.h +++ b/Gems/LocalUser/Code/Include/LocalUser/LocalPlayerSlot.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Include/LocalUser/LocalUserNotificationBus.h b/Gems/LocalUser/Code/Include/LocalUser/LocalUserNotificationBus.h index d1d7bfd460..5e9b3ce648 100644 --- a/Gems/LocalUser/Code/Include/LocalUser/LocalUserNotificationBus.h +++ b/Gems/LocalUser/Code/Include/LocalUser/LocalUserNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Include/LocalUser/LocalUserProfile.h b/Gems/LocalUser/Code/Include/LocalUser/LocalUserProfile.h index 1ba644abad..e4cf51c6c2 100644 --- a/Gems/LocalUser/Code/Include/LocalUser/LocalUserProfile.h +++ b/Gems/LocalUser/Code/Include/LocalUser/LocalUserProfile.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Include/LocalUser/LocalUserRequestBus.h b/Gems/LocalUser/Code/Include/LocalUser/LocalUserRequestBus.h index b000467668..290d4be0b5 100644 --- a/Gems/LocalUser/Code/Include/LocalUser/LocalUserRequestBus.h +++ b/Gems/LocalUser/Code/Include/LocalUser/LocalUserRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Source/LocalUserModule.cpp b/Gems/LocalUser/Code/Source/LocalUserModule.cpp index de7ae5d318..65ef81a4b9 100644 --- a/Gems/LocalUser/Code/Source/LocalUserModule.cpp +++ b/Gems/LocalUser/Code/Source/LocalUserModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Source/LocalUserSystemComponent.cpp b/Gems/LocalUser/Code/Source/LocalUserSystemComponent.cpp index d83ca30458..752d09f9ec 100644 --- a/Gems/LocalUser/Code/Source/LocalUserSystemComponent.cpp +++ b/Gems/LocalUser/Code/Source/LocalUserSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Source/LocalUserSystemComponent.h b/Gems/LocalUser/Code/Source/LocalUserSystemComponent.h index 0dce89d67b..db10e2ef53 100644 --- a/Gems/LocalUser/Code/Source/LocalUserSystemComponent.h +++ b/Gems/LocalUser/Code/Source/LocalUserSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/LocalUser/Code/Source/Platform/Android/platform_android_files.cmake index 4124971bb5..c262d992bf 100644 --- a/Gems/LocalUser/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/LocalUser/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/Source/Platform/Common/Unimplemented/LocalUser_SystemComponent_Unimplemented.cpp b/Gems/LocalUser/Code/Source/Platform/Common/Unimplemented/LocalUser_SystemComponent_Unimplemented.cpp index c015c60132..1e2250c134 100644 --- a/Gems/LocalUser/Code/Source/Platform/Common/Unimplemented/LocalUser_SystemComponent_Unimplemented.cpp +++ b/Gems/LocalUser/Code/Source/Platform/Common/Unimplemented/LocalUser_SystemComponent_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/LocalUser/Code/Source/Platform/Linux/platform_linux_files.cmake index 4124971bb5..c262d992bf 100644 --- a/Gems/LocalUser/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/LocalUser/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/LocalUser/Code/Source/Platform/Mac/platform_mac_files.cmake index 4124971bb5..c262d992bf 100644 --- a/Gems/LocalUser/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/LocalUser/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/LocalUser/Code/Source/Platform/Windows/platform_windows_files.cmake index 4124971bb5..c262d992bf 100644 --- a/Gems/LocalUser/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/LocalUser/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/LocalUser/Code/Source/Platform/iOS/platform_ios_files.cmake index 4124971bb5..c262d992bf 100644 --- a/Gems/LocalUser/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/LocalUser/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/Tests/LocalUserTest.cpp b/Gems/LocalUser/Code/Tests/LocalUserTest.cpp index 9e5008de94..52ff02a31f 100644 --- a/Gems/LocalUser/Code/Tests/LocalUserTest.cpp +++ b/Gems/LocalUser/Code/Tests/LocalUserTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LocalUser/Code/localuser_files.cmake b/Gems/LocalUser/Code/localuser_files.cmake index 16197eaa55..00fa2ba988 100644 --- a/Gems/LocalUser/Code/localuser_files.cmake +++ b/Gems/LocalUser/Code/localuser_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/localuser_shared_files.cmake b/Gems/LocalUser/Code/localuser_shared_files.cmake index 9f08f40d5a..5d67d58fa3 100644 --- a/Gems/LocalUser/Code/localuser_shared_files.cmake +++ b/Gems/LocalUser/Code/localuser_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LocalUser/Code/localuser_tests_files.cmake b/Gems/LocalUser/Code/localuser_tests_files.cmake index 73be5a3bde..13ed9df068 100644 --- a/Gems/LocalUser/Code/localuser_tests_files.cmake +++ b/Gems/LocalUser/Code/localuser_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/CMakeLists.txt b/Gems/LyShine/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/LyShine/CMakeLists.txt +++ b/Gems/LyShine/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/CMakeLists.txt b/Gems/LyShine/Code/CMakeLists.txt index f807b4e3b5..fe5e2e77df 100644 --- a/Gems/LyShine/Code/CMakeLists.txt +++ b/Gems/LyShine/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Editor/AlignToolbarSection.cpp b/Gems/LyShine/Code/Editor/AlignToolbarSection.cpp index 5ff386a151..e179948961 100644 --- a/Gems/LyShine/Code/Editor/AlignToolbarSection.cpp +++ b/Gems/LyShine/Code/Editor/AlignToolbarSection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AlignToolbarSection.h b/Gems/LyShine/Code/Editor/AlignToolbarSection.h index 2e2385569d..347693e75e 100644 --- a/Gems/LyShine/Code/Editor/AlignToolbarSection.h +++ b/Gems/LyShine/Code/Editor/AlignToolbarSection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AnchorPresets.cpp b/Gems/LyShine/Code/Editor/AnchorPresets.cpp index c741c34cf8..edb5de41b2 100644 --- a/Gems/LyShine/Code/Editor/AnchorPresets.cpp +++ b/Gems/LyShine/Code/Editor/AnchorPresets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AnchorPresets.h b/Gems/LyShine/Code/Editor/AnchorPresets.h index 957d6adeb5..14c8dd1c8d 100644 --- a/Gems/LyShine/Code/Editor/AnchorPresets.h +++ b/Gems/LyShine/Code/Editor/AnchorPresets.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AnchorPresetsWidget.cpp b/Gems/LyShine/Code/Editor/AnchorPresetsWidget.cpp index 6288711bd2..1aa9ed7e55 100644 --- a/Gems/LyShine/Code/Editor/AnchorPresetsWidget.cpp +++ b/Gems/LyShine/Code/Editor/AnchorPresetsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AnchorPresetsWidget.h b/Gems/LyShine/Code/Editor/AnchorPresetsWidget.h index 7b02b24a36..6be0af2ef8 100644 --- a/Gems/LyShine/Code/Editor/AnchorPresetsWidget.h +++ b/Gems/LyShine/Code/Editor/AnchorPresetsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp b/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp index 7472d58f44..975b54e998 100644 --- a/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp +++ b/Gems/LyShine/Code/Editor/Animation/AnimationContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/AnimationContext.h b/Gems/LyShine/Code/Editor/Animation/AnimationContext.h index f2b07ef1be..939627da64 100644 --- a/Gems/LyShine/Code/Editor/Animation/AnimationContext.h +++ b/Gems/LyShine/Code/Editor/Animation/AnimationContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp b/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp index fc2579c991..6bf3b2b440 100644 --- a/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp +++ b/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.h b/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.h index 0f9b15ad7b..dfb1ea3ad7 100644 --- a/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.h +++ b/Gems/LyShine/Code/Editor/Animation/Controls/UiSplineCtrlEx.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.cpp b/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.cpp index 8687c62912..0e860940b9 100644 --- a/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.cpp +++ b/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h b/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h index aa6d50dcfd..7a893e4730 100644 --- a/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h +++ b/Gems/LyShine/Code/Editor/Animation/Controls/UiTimelineCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp b/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp index dc8f70b16c..b47e36dd5d 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.h b/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.h index 0ebfe5bba5..50cd3ff061 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAVCustomizeTrackColorsDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp b/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp index 58179f79bd..3b9f2b6264 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.h b/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.h index 3db03904d6..3cbfc330f0 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAVEventsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp b/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp index edb49860c9..5dd3c267a3 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.h b/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.h index 07155ba3a1..0ffc2854e0 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAVSequenceProps.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.cpp b/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.cpp index d426006139..32ae244eda 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.h b/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.h index d0d0da0bcb..3354937150 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAVTrackEventKeyUIControls.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.cpp index e4f72ffc5b..46bc7155d0 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.h b/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.h index a4b4651ef0..0fbdf12259 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimUndo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp index a1b2ef4910..a51f454fd3 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.h b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.h index 88c2724d4e..fbf058cea2 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoObject.h b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoObject.h index 36f9e9071a..8f749ea2f5 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimUndoObject.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimUndoObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp index e600fa05a9..65b3260784 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h index f822767d46..de46e42943 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewAnimNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp index 0892566b3c..c3acd176a0 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.h index bcd37b780b..6e86504e74 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewCurveEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp index 089bee5043..6c6aa93055 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.h index 4bd9983604..c3f60af285 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp index 8a1af3d98e..2dceb0416b 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.h index dfbfe38968..1c344e0c74 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewDopeSheetBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.cpp index 1b133bb7b9..72d99bd239 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.h index d55c4ee711..0414a7c4c4 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewEventNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp index 6339494c56..2f681fa14c 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.h index efea846adc..931e1a65d4 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewFindDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.cpp index 696de16eb0..d04f9b2be0 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.h index da89f6c526..ecdc2f5aa6 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewKeyPropertiesDlg.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp index db0b4014c2..7ecce21b13 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.h index 523f48bcc0..0881461142 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNewSequenceDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp index a76aa99064..f7146ccd2c 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h index 63ff4f127a..87fde85c48 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.cpp index 0172c1ec90..fc42af9450 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.h index ee3df1ea42..db3fcfef7e 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodeFactories.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp index f6fbc6724d..78ff4bee1f 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h index 0f7db6ba10..d7ff920841 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp index fd2d1f68a8..f6bbab8789 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h index 34bc9011cb..f44be9a643 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp index 489c7046ad..1cca7fed4e 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h index a777522482..859b774372 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSequenceManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp index cb4fe1223c..3f4b21a93c 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.h index 7f8f7a139c..87ce283699 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplineCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.cpp index 0559a2e9f0..f1f859a933 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.h index 7b5c77813c..82bc9c821c 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewSplitter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp index c6c60f9746..d9375c8cae 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h index cb82fd5c0d..55ea71d705 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.cpp b/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.cpp index 385be2a5f6..4448cd9fc4 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.cpp +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.h b/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.h index 7e533223d3..b86dafe1ef 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.h +++ b/Gems/LyShine/Code/Editor/Animation/UiAnimViewUndo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/UiEditorAnimationBus.h b/Gems/LyShine/Code/Editor/Animation/UiEditorAnimationBus.h index 8755ae839d..d45dce3c5d 100644 --- a/Gems/LyShine/Code/Editor/Animation/UiEditorAnimationBus.h +++ b/Gems/LyShine/Code/Editor/Animation/UiEditorAnimationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp b/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp index 1c5c94a911..f3c3746034 100644 --- a/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp +++ b/Gems/LyShine/Code/Editor/Animation/Util/UiEditorUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AssetDropHelpers.cpp b/Gems/LyShine/Code/Editor/AssetDropHelpers.cpp index 3d92e82a99..60bc816d35 100644 --- a/Gems/LyShine/Code/Editor/AssetDropHelpers.cpp +++ b/Gems/LyShine/Code/Editor/AssetDropHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AssetDropHelpers.h b/Gems/LyShine/Code/Editor/AssetDropHelpers.h index fbc5a53d1a..0b292cc3db 100644 --- a/Gems/LyShine/Code/Editor/AssetDropHelpers.h +++ b/Gems/LyShine/Code/Editor/AssetDropHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AssetTreeEntry.cpp b/Gems/LyShine/Code/Editor/AssetTreeEntry.cpp index ee2749abe9..63b9b81d6c 100644 --- a/Gems/LyShine/Code/Editor/AssetTreeEntry.cpp +++ b/Gems/LyShine/Code/Editor/AssetTreeEntry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/AssetTreeEntry.h b/Gems/LyShine/Code/Editor/AssetTreeEntry.h index 0fb1779a25..03e14fbba7 100644 --- a/Gems/LyShine/Code/Editor/AssetTreeEntry.h +++ b/Gems/LyShine/Code/Editor/AssetTreeEntry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CanvasHelpers.cpp b/Gems/LyShine/Code/Editor/CanvasHelpers.cpp index a656edef0c..445e587ce7 100644 --- a/Gems/LyShine/Code/Editor/CanvasHelpers.cpp +++ b/Gems/LyShine/Code/Editor/CanvasHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CanvasHelpers.h b/Gems/LyShine/Code/Editor/CanvasHelpers.h index cfcf98a32b..4a345a096c 100644 --- a/Gems/LyShine/Code/Editor/CanvasHelpers.h +++ b/Gems/LyShine/Code/Editor/CanvasHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.cpp b/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.cpp index a83885858e..70a77f9b57 100644 --- a/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.cpp +++ b/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.h b/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.h index bb0fb7423b..b09366fbf6 100644 --- a/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.h +++ b/Gems/LyShine/Code/Editor/CanvasSizeToolbarSection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.cpp b/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.cpp index c10442f5f4..9dc2b5efce 100644 --- a/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.cpp +++ b/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.h b/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.h index 32689bc74f..66cda13953 100644 --- a/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.h +++ b/Gems/LyShine/Code/Editor/CommandCanvasPropertiesChange.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandCanvasSize.cpp b/Gems/LyShine/Code/Editor/CommandCanvasSize.cpp index d9766dc164..27845095ee 100644 --- a/Gems/LyShine/Code/Editor/CommandCanvasSize.cpp +++ b/Gems/LyShine/Code/Editor/CommandCanvasSize.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandCanvasSize.h b/Gems/LyShine/Code/Editor/CommandCanvasSize.h index 517bd6e2d7..5468dcbbe6 100644 --- a/Gems/LyShine/Code/Editor/CommandCanvasSize.h +++ b/Gems/LyShine/Code/Editor/CommandCanvasSize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.cpp b/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.cpp index 279a007e71..4b70f14699 100644 --- a/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.cpp +++ b/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.h b/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.h index 8020b208a1..f382c51f16 100644 --- a/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.h +++ b/Gems/LyShine/Code/Editor/CommandCanvasSizeToolbarIndex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.cpp index 68f5011f05..56a85bc865 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.h index c688ea1e1e..e0088356c5 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.cpp index 9fe818d1b5..0ea9469704 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.h index ae7e622b01..c3c904c3fb 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemCreateFromData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.cpp index 03f42067c9..5ec18ca084 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.h index 49660888ea..e20fb51903 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemDelete.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.cpp index 2d54a3cefa..11552658b4 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.h index 678c8ecb8b..286aefd8b8 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemRename.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.cpp index e153beb291..8c1ddb7a52 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.h index 6a9ed9d870..3626f2716b 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemReparent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.cpp index 19e76dae41..c1efdc9c5f 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.h index 66d2c4dff3..4a01e00f58 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsExpanded.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.cpp index dd5cec3a14..988b2b0ded 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.h index 9d3a2ae4d8..360718bacf 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelectable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.cpp index 0ac48b05ea..36c722252e 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.h index aab530c64e..8db630541c 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsSelected.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.cpp b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.cpp index 756e563ca5..b8f3407959 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.cpp +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.h b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.h index a7138e9faf..debfbdd856 100644 --- a/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.h +++ b/Gems/LyShine/Code/Editor/CommandHierarchyItemToggleIsVisible.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandPropertiesChange.cpp b/Gems/LyShine/Code/Editor/CommandPropertiesChange.cpp index d1d5b7abb7..0a0b2d105c 100644 --- a/Gems/LyShine/Code/Editor/CommandPropertiesChange.cpp +++ b/Gems/LyShine/Code/Editor/CommandPropertiesChange.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandPropertiesChange.h b/Gems/LyShine/Code/Editor/CommandPropertiesChange.h index 253a5937d2..b0398aa295 100644 --- a/Gems/LyShine/Code/Editor/CommandPropertiesChange.h +++ b/Gems/LyShine/Code/Editor/CommandPropertiesChange.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.cpp b/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.cpp index b6c5d8df68..9d351a0405 100644 --- a/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.cpp +++ b/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.h b/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.h index 73ca60e914..3fd318199d 100644 --- a/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.h +++ b/Gems/LyShine/Code/Editor/CommandViewportInteractionMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ComponentAssetHelpers.h b/Gems/LyShine/Code/Editor/ComponentAssetHelpers.h index 992d256b0f..65b78995bc 100644 --- a/Gems/LyShine/Code/Editor/ComponentAssetHelpers.h +++ b/Gems/LyShine/Code/Editor/ComponentAssetHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ComponentButton.cpp b/Gems/LyShine/Code/Editor/ComponentButton.cpp index 4ab6373272..ff03200477 100644 --- a/Gems/LyShine/Code/Editor/ComponentButton.cpp +++ b/Gems/LyShine/Code/Editor/ComponentButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ComponentButton.h b/Gems/LyShine/Code/Editor/ComponentButton.h index e5290c6ec9..13762a5e56 100644 --- a/Gems/LyShine/Code/Editor/ComponentButton.h +++ b/Gems/LyShine/Code/Editor/ComponentButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ComponentHelpers.cpp b/Gems/LyShine/Code/Editor/ComponentHelpers.cpp index 10c2009ebe..12349dc908 100644 --- a/Gems/LyShine/Code/Editor/ComponentHelpers.cpp +++ b/Gems/LyShine/Code/Editor/ComponentHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ComponentHelpers.h b/Gems/LyShine/Code/Editor/ComponentHelpers.h index 9a112fd429..c5a8dc39d9 100644 --- a/Gems/LyShine/Code/Editor/ComponentHelpers.h +++ b/Gems/LyShine/Code/Editor/ComponentHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.cpp b/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.cpp index 63455a782f..3e3c027d02 100644 --- a/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.cpp +++ b/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.h b/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.h index 0a4f37a3c2..3f6732b04b 100644 --- a/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.h +++ b/Gems/LyShine/Code/Editor/CoordinateSystemToolbarSection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EditorCommon.cpp b/Gems/LyShine/Code/Editor/EditorCommon.cpp index ad7ff31319..d1b5736f77 100644 --- a/Gems/LyShine/Code/Editor/EditorCommon.cpp +++ b/Gems/LyShine/Code/Editor/EditorCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EditorCommon.h b/Gems/LyShine/Code/Editor/EditorCommon.h index 4327755400..04dc03f8a0 100644 --- a/Gems/LyShine/Code/Editor/EditorCommon.h +++ b/Gems/LyShine/Code/Editor/EditorCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EditorMenu.cpp b/Gems/LyShine/Code/Editor/EditorMenu.cpp index 0e7fe2a486..039ed7f3ca 100644 --- a/Gems/LyShine/Code/Editor/EditorMenu.cpp +++ b/Gems/LyShine/Code/Editor/EditorMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EditorWindow.cpp b/Gems/LyShine/Code/Editor/EditorWindow.cpp index 374032c092..0edc1e6151 100644 --- a/Gems/LyShine/Code/Editor/EditorWindow.cpp +++ b/Gems/LyShine/Code/Editor/EditorWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EditorWindow.h b/Gems/LyShine/Code/Editor/EditorWindow.h index 2025b07ec4..0f2dd39210 100644 --- a/Gems/LyShine/Code/Editor/EditorWindow.h +++ b/Gems/LyShine/Code/Editor/EditorWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EnterPreviewToolbar.cpp b/Gems/LyShine/Code/Editor/EnterPreviewToolbar.cpp index cab49a64e9..90d93859bd 100644 --- a/Gems/LyShine/Code/Editor/EnterPreviewToolbar.cpp +++ b/Gems/LyShine/Code/Editor/EnterPreviewToolbar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EnterPreviewToolbar.h b/Gems/LyShine/Code/Editor/EnterPreviewToolbar.h index 56608f8e8f..cbf664a01a 100644 --- a/Gems/LyShine/Code/Editor/EnterPreviewToolbar.h +++ b/Gems/LyShine/Code/Editor/EnterPreviewToolbar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EntityHelpers.cpp b/Gems/LyShine/Code/Editor/EntityHelpers.cpp index 4ea8b934af..dc79b55213 100644 --- a/Gems/LyShine/Code/Editor/EntityHelpers.cpp +++ b/Gems/LyShine/Code/Editor/EntityHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/EntityHelpers.h b/Gems/LyShine/Code/Editor/EntityHelpers.h index 595c3e8816..cc6131c994 100644 --- a/Gems/LyShine/Code/Editor/EntityHelpers.h +++ b/Gems/LyShine/Code/Editor/EntityHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FeedbackDialog.cpp b/Gems/LyShine/Code/Editor/FeedbackDialog.cpp index dad913c8d0..17aa437a14 100644 --- a/Gems/LyShine/Code/Editor/FeedbackDialog.cpp +++ b/Gems/LyShine/Code/Editor/FeedbackDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FeedbackDialog.h b/Gems/LyShine/Code/Editor/FeedbackDialog.h index 21b2150436..86d7a562b0 100644 --- a/Gems/LyShine/Code/Editor/FeedbackDialog.h +++ b/Gems/LyShine/Code/Editor/FeedbackDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FileHelpers.cpp b/Gems/LyShine/Code/Editor/FileHelpers.cpp index ff00d516b5..92298f1f0d 100644 --- a/Gems/LyShine/Code/Editor/FileHelpers.cpp +++ b/Gems/LyShine/Code/Editor/FileHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FileHelpers.h b/Gems/LyShine/Code/Editor/FileHelpers.h index 6cf5e20da4..d5b14f4ccb 100644 --- a/Gems/LyShine/Code/Editor/FileHelpers.h +++ b/Gems/LyShine/Code/Editor/FileHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FindEntityItemModel.cpp b/Gems/LyShine/Code/Editor/FindEntityItemModel.cpp index a5269c11ff..3b5332a448 100644 --- a/Gems/LyShine/Code/Editor/FindEntityItemModel.cpp +++ b/Gems/LyShine/Code/Editor/FindEntityItemModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FindEntityItemModel.h b/Gems/LyShine/Code/Editor/FindEntityItemModel.h index c38a40b9a5..630218c2e0 100644 --- a/Gems/LyShine/Code/Editor/FindEntityItemModel.h +++ b/Gems/LyShine/Code/Editor/FindEntityItemModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.cpp b/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.cpp index 3cdf37fd42..c0e7ba0489 100644 --- a/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.cpp +++ b/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.h b/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.h index 3524c79ea1..6c2518ba4a 100644 --- a/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.h +++ b/Gems/LyShine/Code/Editor/FindEntitySortFilterProxyModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FindEntityWidget.cpp b/Gems/LyShine/Code/Editor/FindEntityWidget.cpp index cd52071793..30b9424bd8 100644 --- a/Gems/LyShine/Code/Editor/FindEntityWidget.cpp +++ b/Gems/LyShine/Code/Editor/FindEntityWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/FindEntityWidget.h b/Gems/LyShine/Code/Editor/FindEntityWidget.h index a96c569cea..5913d688ea 100644 --- a/Gems/LyShine/Code/Editor/FindEntityWidget.h +++ b/Gems/LyShine/Code/Editor/FindEntityWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/GuideHelpers.cpp b/Gems/LyShine/Code/Editor/GuideHelpers.cpp index 7638aecc37..9f24fb3c1a 100644 --- a/Gems/LyShine/Code/Editor/GuideHelpers.cpp +++ b/Gems/LyShine/Code/Editor/GuideHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/GuideHelpers.h b/Gems/LyShine/Code/Editor/GuideHelpers.h index d3f02bb65a..d95c75cc14 100644 --- a/Gems/LyShine/Code/Editor/GuideHelpers.h +++ b/Gems/LyShine/Code/Editor/GuideHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyClipboard.cpp b/Gems/LyShine/Code/Editor/HierarchyClipboard.cpp index 7749c4c57c..6a5dece2f4 100644 --- a/Gems/LyShine/Code/Editor/HierarchyClipboard.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyClipboard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyClipboard.h b/Gems/LyShine/Code/Editor/HierarchyClipboard.h index a599a3d1e6..8665cadef7 100644 --- a/Gems/LyShine/Code/Editor/HierarchyClipboard.h +++ b/Gems/LyShine/Code/Editor/HierarchyClipboard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyHeader.cpp b/Gems/LyShine/Code/Editor/HierarchyHeader.cpp index 2f352c3e71..63eb04c50b 100644 --- a/Gems/LyShine/Code/Editor/HierarchyHeader.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyHeader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyHeader.h b/Gems/LyShine/Code/Editor/HierarchyHeader.h index 6a5cbc8539..29d8692b33 100644 --- a/Gems/LyShine/Code/Editor/HierarchyHeader.h +++ b/Gems/LyShine/Code/Editor/HierarchyHeader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp b/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp index c6ac931d2a..9a58a6f31b 100644 --- a/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyHelpers.h b/Gems/LyShine/Code/Editor/HierarchyHelpers.h index b4299e48b2..3a1c5ef97d 100644 --- a/Gems/LyShine/Code/Editor/HierarchyHelpers.h +++ b/Gems/LyShine/Code/Editor/HierarchyHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyItem.cpp b/Gems/LyShine/Code/Editor/HierarchyItem.cpp index 402656636f..0a41758516 100644 --- a/Gems/LyShine/Code/Editor/HierarchyItem.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyItem.h b/Gems/LyShine/Code/Editor/HierarchyItem.h index ea7ca0b77d..bde0263d97 100644 --- a/Gems/LyShine/Code/Editor/HierarchyItem.h +++ b/Gems/LyShine/Code/Editor/HierarchyItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyMenu.cpp b/Gems/LyShine/Code/Editor/HierarchyMenu.cpp index ff176f8eff..3758041f7a 100644 --- a/Gems/LyShine/Code/Editor/HierarchyMenu.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyMenu.h b/Gems/LyShine/Code/Editor/HierarchyMenu.h index 5d5bf8e651..69432a4d24 100644 --- a/Gems/LyShine/Code/Editor/HierarchyMenu.h +++ b/Gems/LyShine/Code/Editor/HierarchyMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyWidget.cpp b/Gems/LyShine/Code/Editor/HierarchyWidget.cpp index afbda03b76..9b72f2407f 100644 --- a/Gems/LyShine/Code/Editor/HierarchyWidget.cpp +++ b/Gems/LyShine/Code/Editor/HierarchyWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/HierarchyWidget.h b/Gems/LyShine/Code/Editor/HierarchyWidget.h index 90a2c5bf00..8e69a2196f 100644 --- a/Gems/LyShine/Code/Editor/HierarchyWidget.h +++ b/Gems/LyShine/Code/Editor/HierarchyWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.cpp b/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.cpp index 82ba7aa257..939e8e3d92 100644 --- a/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.cpp +++ b/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.h b/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.h index a708aa0919..b34cb35cd9 100644 --- a/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.h +++ b/Gems/LyShine/Code/Editor/LyShineEditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/MainToolbar.cpp b/Gems/LyShine/Code/Editor/MainToolbar.cpp index e8ecbec08e..dbd2c70508 100644 --- a/Gems/LyShine/Code/Editor/MainToolbar.cpp +++ b/Gems/LyShine/Code/Editor/MainToolbar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/MainToolbar.h b/Gems/LyShine/Code/Editor/MainToolbar.h index 1c02b3be30..b90f7f0cc6 100644 --- a/Gems/LyShine/Code/Editor/MainToolbar.h +++ b/Gems/LyShine/Code/Editor/MainToolbar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ModeToolbar.cpp b/Gems/LyShine/Code/Editor/ModeToolbar.cpp index 2615bf3fa2..751f010efc 100644 --- a/Gems/LyShine/Code/Editor/ModeToolbar.cpp +++ b/Gems/LyShine/Code/Editor/ModeToolbar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ModeToolbar.h b/Gems/LyShine/Code/Editor/ModeToolbar.h index b53667f576..d00cd16ddb 100644 --- a/Gems/LyShine/Code/Editor/ModeToolbar.h +++ b/Gems/LyShine/Code/Editor/ModeToolbar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/NewElementToolbarSection.cpp b/Gems/LyShine/Code/Editor/NewElementToolbarSection.cpp index f75bdd79a5..c8de5afb11 100644 --- a/Gems/LyShine/Code/Editor/NewElementToolbarSection.cpp +++ b/Gems/LyShine/Code/Editor/NewElementToolbarSection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/NewElementToolbarSection.h b/Gems/LyShine/Code/Editor/NewElementToolbarSection.h index 3911dd8ade..741fba3d9e 100644 --- a/Gems/LyShine/Code/Editor/NewElementToolbarSection.h +++ b/Gems/LyShine/Code/Editor/NewElementToolbarSection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PivotPresets.cpp b/Gems/LyShine/Code/Editor/PivotPresets.cpp index 2397a1fcf0..5fae65d058 100644 --- a/Gems/LyShine/Code/Editor/PivotPresets.cpp +++ b/Gems/LyShine/Code/Editor/PivotPresets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PivotPresets.h b/Gems/LyShine/Code/Editor/PivotPresets.h index 2e6a823f6e..2c036df2dd 100644 --- a/Gems/LyShine/Code/Editor/PivotPresets.h +++ b/Gems/LyShine/Code/Editor/PivotPresets.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PivotPresetsWidget.cpp b/Gems/LyShine/Code/Editor/PivotPresetsWidget.cpp index 09aef370fc..1c17f53663 100644 --- a/Gems/LyShine/Code/Editor/PivotPresetsWidget.cpp +++ b/Gems/LyShine/Code/Editor/PivotPresetsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PivotPresetsWidget.h b/Gems/LyShine/Code/Editor/PivotPresetsWidget.h index a75d1f115d..9741db8645 100644 --- a/Gems/LyShine/Code/Editor/PivotPresetsWidget.h +++ b/Gems/LyShine/Code/Editor/PivotPresetsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/Platform/Linux/PAL_linux.cmake b/Gems/LyShine/Code/Editor/Platform/Linux/PAL_linux.cmake index 58788dda42..67bd3849b9 100644 --- a/Gems/LyShine/Code/Editor/Platform/Linux/PAL_linux.cmake +++ b/Gems/LyShine/Code/Editor/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Editor/Platform/Mac/PAL_mac.cmake b/Gems/LyShine/Code/Editor/Platform/Mac/PAL_mac.cmake index fb09c30ffb..ad668eb6b3 100644 --- a/Gems/LyShine/Code/Editor/Platform/Mac/PAL_mac.cmake +++ b/Gems/LyShine/Code/Editor/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Editor/Platform/Windows/PAL_windows.cmake b/Gems/LyShine/Code/Editor/Platform/Windows/PAL_windows.cmake index fb09c30ffb..ad668eb6b3 100644 --- a/Gems/LyShine/Code/Editor/Platform/Windows/PAL_windows.cmake +++ b/Gems/LyShine/Code/Editor/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Editor/PrefabHelpers.cpp b/Gems/LyShine/Code/Editor/PrefabHelpers.cpp index ee019371a3..c6f81dd56e 100644 --- a/Gems/LyShine/Code/Editor/PrefabHelpers.cpp +++ b/Gems/LyShine/Code/Editor/PrefabHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PrefabHelpers.h b/Gems/LyShine/Code/Editor/PrefabHelpers.h index f200f6dd9d..5d39513715 100644 --- a/Gems/LyShine/Code/Editor/PrefabHelpers.h +++ b/Gems/LyShine/Code/Editor/PrefabHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PresetButton.cpp b/Gems/LyShine/Code/Editor/PresetButton.cpp index ad722a094b..360e1acc15 100644 --- a/Gems/LyShine/Code/Editor/PresetButton.cpp +++ b/Gems/LyShine/Code/Editor/PresetButton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PresetButton.h b/Gems/LyShine/Code/Editor/PresetButton.h index ce17a9dbc3..40441009d3 100644 --- a/Gems/LyShine/Code/Editor/PresetButton.h +++ b/Gems/LyShine/Code/Editor/PresetButton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PreviewActionLog.cpp b/Gems/LyShine/Code/Editor/PreviewActionLog.cpp index 4c9f2d3a92..afe4657dc8 100644 --- a/Gems/LyShine/Code/Editor/PreviewActionLog.cpp +++ b/Gems/LyShine/Code/Editor/PreviewActionLog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PreviewActionLog.h b/Gems/LyShine/Code/Editor/PreviewActionLog.h index e6cc5c72ca..789756bee5 100644 --- a/Gems/LyShine/Code/Editor/PreviewActionLog.h +++ b/Gems/LyShine/Code/Editor/PreviewActionLog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PreviewAnimationList.cpp b/Gems/LyShine/Code/Editor/PreviewAnimationList.cpp index db9e94c1a8..0bacf87a0d 100644 --- a/Gems/LyShine/Code/Editor/PreviewAnimationList.cpp +++ b/Gems/LyShine/Code/Editor/PreviewAnimationList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PreviewAnimationList.h b/Gems/LyShine/Code/Editor/PreviewAnimationList.h index 948519dd43..1e0b5d9d90 100644 --- a/Gems/LyShine/Code/Editor/PreviewAnimationList.h +++ b/Gems/LyShine/Code/Editor/PreviewAnimationList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PreviewToolbar.cpp b/Gems/LyShine/Code/Editor/PreviewToolbar.cpp index 028258520f..081582eda4 100644 --- a/Gems/LyShine/Code/Editor/PreviewToolbar.cpp +++ b/Gems/LyShine/Code/Editor/PreviewToolbar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PreviewToolbar.h b/Gems/LyShine/Code/Editor/PreviewToolbar.h index 9a56f8d182..2fe9451f7e 100644 --- a/Gems/LyShine/Code/Editor/PreviewToolbar.h +++ b/Gems/LyShine/Code/Editor/PreviewToolbar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertiesContainer.cpp b/Gems/LyShine/Code/Editor/PropertiesContainer.cpp index f80e590836..e6b9d0513a 100644 --- a/Gems/LyShine/Code/Editor/PropertiesContainer.cpp +++ b/Gems/LyShine/Code/Editor/PropertiesContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertiesContainer.h b/Gems/LyShine/Code/Editor/PropertiesContainer.h index 48cd2215e3..e9099ecac5 100644 --- a/Gems/LyShine/Code/Editor/PropertiesContainer.h +++ b/Gems/LyShine/Code/Editor/PropertiesContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertiesWidget.cpp b/Gems/LyShine/Code/Editor/PropertiesWidget.cpp index 45c769b702..cacd1c118a 100644 --- a/Gems/LyShine/Code/Editor/PropertiesWidget.cpp +++ b/Gems/LyShine/Code/Editor/PropertiesWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertiesWidget.h b/Gems/LyShine/Code/Editor/PropertiesWidget.h index 3b21fd485f..e2fb8e2eb2 100644 --- a/Gems/LyShine/Code/Editor/PropertiesWidget.h +++ b/Gems/LyShine/Code/Editor/PropertiesWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertiesWrapper.cpp b/Gems/LyShine/Code/Editor/PropertiesWrapper.cpp index 30c81f6cc9..8ddf8145f3 100644 --- a/Gems/LyShine/Code/Editor/PropertiesWrapper.cpp +++ b/Gems/LyShine/Code/Editor/PropertiesWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertiesWrapper.h b/Gems/LyShine/Code/Editor/PropertiesWrapper.h index 8eeab65e7d..31034ac67f 100644 --- a/Gems/LyShine/Code/Editor/PropertiesWrapper.h +++ b/Gems/LyShine/Code/Editor/PropertiesWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp index 0b007a0e40..927b474838 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.h b/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.h index cb9a17a4a1..58d8a8d9cb 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerAnchor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp index 1ebaa5785f..b016d1cebe 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerChar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerChar.h b/Gems/LyShine/Code/Editor/PropertyHandlerChar.h index 91d634133a..580afcdc5a 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerChar.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerChar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp index 857903c14e..34839cde5f 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.h b/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.h index f11a6b086c..70257f88e8 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerDirectory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.cpp index 8c5482c90d..d0b3e0bdc2 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.h b/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.h index 1c784d7aa7..a2a340b439 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerEntityIdComboBox.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.cpp index d0b1ae8aad..a068fc9e4a 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.h b/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.h index a9f8f21be5..6da26a7405 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerLayoutPadding.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp index 9d8e1d81ec..ebb4620034 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerOffset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerOffset.h b/Gems/LyShine/Code/Editor/PropertyHandlerOffset.h index 56e91e05a5..1151206271 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerOffset.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerOffset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp index 2dfbb66277..6be0e9ef74 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerPivot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerPivot.h b/Gems/LyShine/Code/Editor/PropertyHandlerPivot.h index 61f523a05b..e2916a1234 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerPivot.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerPivot.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerSprite.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerSprite.cpp index 46bd4891c5..93bede104f 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerSprite.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerSprite.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerSprite.h b/Gems/LyShine/Code/Editor/PropertyHandlerSprite.h index 9603b23b2a..a1b2ea1f2e 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerSprite.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerSprite.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.cpp index d0b8b61cc7..48088bca39 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.h b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.h index ca8e2aaf2b..6ab25195cb 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleColorKeyframe.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.cpp index 83ea71b5cc..8b968f3087 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.h b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.h index 6a04a5dfeb..8fcada8840 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerUiParticleFloatKeyframe.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerVec.cpp b/Gems/LyShine/Code/Editor/PropertyHandlerVec.cpp index 48fb1dc7ee..fe2cbdf49c 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerVec.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlerVec.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlerVec.h b/Gems/LyShine/Code/Editor/PropertyHandlerVec.h index 41238b95c6..fcb3024f25 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlerVec.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlerVec.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlers.cpp b/Gems/LyShine/Code/Editor/PropertyHandlers.cpp index 413daf352b..8a61bf19c0 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlers.cpp +++ b/Gems/LyShine/Code/Editor/PropertyHandlers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/PropertyHandlers.h b/Gems/LyShine/Code/Editor/PropertyHandlers.h index d489b15b2c..3d28c7962a 100644 --- a/Gems/LyShine/Code/Editor/PropertyHandlers.h +++ b/Gems/LyShine/Code/Editor/PropertyHandlers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/QtHelpers.cpp b/Gems/LyShine/Code/Editor/QtHelpers.cpp index 40f34e33bc..9897012358 100644 --- a/Gems/LyShine/Code/Editor/QtHelpers.cpp +++ b/Gems/LyShine/Code/Editor/QtHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/QtHelpers.h b/Gems/LyShine/Code/Editor/QtHelpers.h index e6651bfae1..99c59b8ca2 100644 --- a/Gems/LyShine/Code/Editor/QtHelpers.h +++ b/Gems/LyShine/Code/Editor/QtHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/RecentFiles.cpp b/Gems/LyShine/Code/Editor/RecentFiles.cpp index 503b795071..637a880bb9 100644 --- a/Gems/LyShine/Code/Editor/RecentFiles.cpp +++ b/Gems/LyShine/Code/Editor/RecentFiles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/RecentFiles.h b/Gems/LyShine/Code/Editor/RecentFiles.h index abc5c423a6..2a31fd4e24 100644 --- a/Gems/LyShine/Code/Editor/RecentFiles.h +++ b/Gems/LyShine/Code/Editor/RecentFiles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/RulerWidget.cpp b/Gems/LyShine/Code/Editor/RulerWidget.cpp index 455e06a57e..6baea22d3b 100644 --- a/Gems/LyShine/Code/Editor/RulerWidget.cpp +++ b/Gems/LyShine/Code/Editor/RulerWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/RulerWidget.h b/Gems/LyShine/Code/Editor/RulerWidget.h index 91fa532dca..7224119fa1 100644 --- a/Gems/LyShine/Code/Editor/RulerWidget.h +++ b/Gems/LyShine/Code/Editor/RulerWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SelectionHelpers.cpp b/Gems/LyShine/Code/Editor/SelectionHelpers.cpp index 2fd4bc7a7d..7d911dd475 100644 --- a/Gems/LyShine/Code/Editor/SelectionHelpers.cpp +++ b/Gems/LyShine/Code/Editor/SelectionHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SelectionHelpers.h b/Gems/LyShine/Code/Editor/SelectionHelpers.h index 68941fb1fb..4899e7927c 100644 --- a/Gems/LyShine/Code/Editor/SelectionHelpers.h +++ b/Gems/LyShine/Code/Editor/SelectionHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SerializeHelpers.cpp b/Gems/LyShine/Code/Editor/SerializeHelpers.cpp index d3f7712c7f..c834929472 100644 --- a/Gems/LyShine/Code/Editor/SerializeHelpers.cpp +++ b/Gems/LyShine/Code/Editor/SerializeHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SerializeHelpers.h b/Gems/LyShine/Code/Editor/SerializeHelpers.h index 746e8d95e3..a2189bcb20 100644 --- a/Gems/LyShine/Code/Editor/SerializeHelpers.h +++ b/Gems/LyShine/Code/Editor/SerializeHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SliceMenuHelpers.cpp b/Gems/LyShine/Code/Editor/SliceMenuHelpers.cpp index 5345a59a67..69ce21a275 100644 --- a/Gems/LyShine/Code/Editor/SliceMenuHelpers.cpp +++ b/Gems/LyShine/Code/Editor/SliceMenuHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SliceMenuHelpers.h b/Gems/LyShine/Code/Editor/SliceMenuHelpers.h index de81cccbdb..bbcd498d87 100644 --- a/Gems/LyShine/Code/Editor/SliceMenuHelpers.h +++ b/Gems/LyShine/Code/Editor/SliceMenuHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SlicerEdit.cpp b/Gems/LyShine/Code/Editor/SlicerEdit.cpp index b09bb6700c..fc6116833c 100644 --- a/Gems/LyShine/Code/Editor/SlicerEdit.cpp +++ b/Gems/LyShine/Code/Editor/SlicerEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SlicerEdit.h b/Gems/LyShine/Code/Editor/SlicerEdit.h index 23947ec8ba..7e169a19c1 100644 --- a/Gems/LyShine/Code/Editor/SlicerEdit.h +++ b/Gems/LyShine/Code/Editor/SlicerEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SlicerManipulator.cpp b/Gems/LyShine/Code/Editor/SlicerManipulator.cpp index 6943cf224b..cddc4b1a98 100644 --- a/Gems/LyShine/Code/Editor/SlicerManipulator.cpp +++ b/Gems/LyShine/Code/Editor/SlicerManipulator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SlicerManipulator.h b/Gems/LyShine/Code/Editor/SlicerManipulator.h index dba9037b50..f606dd0d8e 100644 --- a/Gems/LyShine/Code/Editor/SlicerManipulator.h +++ b/Gems/LyShine/Code/Editor/SlicerManipulator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SlicerView.cpp b/Gems/LyShine/Code/Editor/SlicerView.cpp index 6aeac0a089..f303852874 100644 --- a/Gems/LyShine/Code/Editor/SlicerView.cpp +++ b/Gems/LyShine/Code/Editor/SlicerView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SlicerView.h b/Gems/LyShine/Code/Editor/SlicerView.h index 498289b369..407e4bb18e 100644 --- a/Gems/LyShine/Code/Editor/SlicerView.h +++ b/Gems/LyShine/Code/Editor/SlicerView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp b/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp index a4af972e48..a37f401581 100644 --- a/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp +++ b/Gems/LyShine/Code/Editor/SpriteBorderEditor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SpriteBorderEditor.h b/Gems/LyShine/Code/Editor/SpriteBorderEditor.h index bad715722a..eb49abafae 100644 --- a/Gems/LyShine/Code/Editor/SpriteBorderEditor.h +++ b/Gems/LyShine/Code/Editor/SpriteBorderEditor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.cpp b/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.cpp index ef1a0734d9..9aaf017c9a 100644 --- a/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.cpp +++ b/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.h b/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.h index 0e15c7d923..84b3754aa6 100644 --- a/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.h +++ b/Gems/LyShine/Code/Editor/SpriteBorderEditorCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UIVectorPropertyHandlerBase.h b/Gems/LyShine/Code/Editor/UIVectorPropertyHandlerBase.h index 406e3f2d5a..58203fc561 100644 --- a/Gems/LyShine/Code/Editor/UIVectorPropertyHandlerBase.h +++ b/Gems/LyShine/Code/Editor/UIVectorPropertyHandlerBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UiCanvasEditor_precompiled.h b/Gems/LyShine/Code/Editor/UiCanvasEditor_precompiled.h index f53511e6a8..943e825905 100644 --- a/Gems/LyShine/Code/Editor/UiCanvasEditor_precompiled.h +++ b/Gems/LyShine/Code/Editor/UiCanvasEditor_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UiEditorEntityContext.cpp b/Gems/LyShine/Code/Editor/UiEditorEntityContext.cpp index 10f2f48250..f5715f0d87 100644 --- a/Gems/LyShine/Code/Editor/UiEditorEntityContext.cpp +++ b/Gems/LyShine/Code/Editor/UiEditorEntityContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UiEditorEntityContext.h b/Gems/LyShine/Code/Editor/UiEditorEntityContext.h index 0cba5bc78a..6eeb2a24e5 100644 --- a/Gems/LyShine/Code/Editor/UiEditorEntityContext.h +++ b/Gems/LyShine/Code/Editor/UiEditorEntityContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UiEditorEntityContextBus.h b/Gems/LyShine/Code/Editor/UiEditorEntityContextBus.h index 0ef8d12090..7755cc5c9d 100644 --- a/Gems/LyShine/Code/Editor/UiEditorEntityContextBus.h +++ b/Gems/LyShine/Code/Editor/UiEditorEntityContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UiEditorInternalBus.h b/Gems/LyShine/Code/Editor/UiEditorInternalBus.h index a48f3a856a..75b271cad8 100644 --- a/Gems/LyShine/Code/Editor/UiEditorInternalBus.h +++ b/Gems/LyShine/Code/Editor/UiEditorInternalBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UiSliceManager.cpp b/Gems/LyShine/Code/Editor/UiSliceManager.cpp index f10fc19564..baacc0b5f4 100644 --- a/Gems/LyShine/Code/Editor/UiSliceManager.cpp +++ b/Gems/LyShine/Code/Editor/UiSliceManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UiSliceManager.h b/Gems/LyShine/Code/Editor/UiSliceManager.h index 402f8f8e55..48a47c83ee 100644 --- a/Gems/LyShine/Code/Editor/UiSliceManager.h +++ b/Gems/LyShine/Code/Editor/UiSliceManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UndoStack.cpp b/Gems/LyShine/Code/Editor/UndoStack.cpp index 7ce28848f6..94279944b7 100644 --- a/Gems/LyShine/Code/Editor/UndoStack.cpp +++ b/Gems/LyShine/Code/Editor/UndoStack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UndoStack.h b/Gems/LyShine/Code/Editor/UndoStack.h index 7c2b19249e..c627842225 100644 --- a/Gems/LyShine/Code/Editor/UndoStack.h +++ b/Gems/LyShine/Code/Editor/UndoStack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UndoStackExecutionScope.cpp b/Gems/LyShine/Code/Editor/UndoStackExecutionScope.cpp index 0bc5271923..ed45890d5c 100644 --- a/Gems/LyShine/Code/Editor/UndoStackExecutionScope.cpp +++ b/Gems/LyShine/Code/Editor/UndoStackExecutionScope.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/UndoStackExecutionScope.h b/Gems/LyShine/Code/Editor/UndoStackExecutionScope.h index 7299842d17..a255e7d7d4 100644 --- a/Gems/LyShine/Code/Editor/UndoStackExecutionScope.h +++ b/Gems/LyShine/Code/Editor/UndoStackExecutionScope.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.cpp b/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.cpp index 392fcf98f7..052c8b9bea 100644 --- a/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.cpp +++ b/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.h b/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.h index 27b69ce5f5..5a9691e373 100644 --- a/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.h +++ b/Gems/LyShine/Code/Editor/ViewportAddGuideInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportAlign.cpp b/Gems/LyShine/Code/Editor/ViewportAlign.cpp index 530bd5211f..dc74afce86 100644 --- a/Gems/LyShine/Code/Editor/ViewportAlign.cpp +++ b/Gems/LyShine/Code/Editor/ViewportAlign.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportAlign.h b/Gems/LyShine/Code/Editor/ViewportAlign.h index c603ad8fc1..d24cf673de 100644 --- a/Gems/LyShine/Code/Editor/ViewportAlign.h +++ b/Gems/LyShine/Code/Editor/ViewportAlign.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportAnchor.cpp b/Gems/LyShine/Code/Editor/ViewportAnchor.cpp index 4243eafd30..ed5a584ab3 100644 --- a/Gems/LyShine/Code/Editor/ViewportAnchor.cpp +++ b/Gems/LyShine/Code/Editor/ViewportAnchor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportAnchor.h b/Gems/LyShine/Code/Editor/ViewportAnchor.h index 42892ffcd5..6a9961f984 100644 --- a/Gems/LyShine/Code/Editor/ViewportAnchor.h +++ b/Gems/LyShine/Code/Editor/ViewportAnchor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp b/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp index c6dc0e0ed8..00d4aa38ad 100644 --- a/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp +++ b/Gems/LyShine/Code/Editor/ViewportCanvasBackground.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportCanvasBackground.h b/Gems/LyShine/Code/Editor/ViewportCanvasBackground.h index 20744b5427..ba5fbcd05a 100644 --- a/Gems/LyShine/Code/Editor/ViewportCanvasBackground.h +++ b/Gems/LyShine/Code/Editor/ViewportCanvasBackground.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportDragInteraction.cpp b/Gems/LyShine/Code/Editor/ViewportDragInteraction.cpp index f255784973..c8c3f42f05 100644 --- a/Gems/LyShine/Code/Editor/ViewportDragInteraction.cpp +++ b/Gems/LyShine/Code/Editor/ViewportDragInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportDragInteraction.h b/Gems/LyShine/Code/Editor/ViewportDragInteraction.h index 0fe83cb4f2..a2a5c1301a 100644 --- a/Gems/LyShine/Code/Editor/ViewportDragInteraction.h +++ b/Gems/LyShine/Code/Editor/ViewportDragInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportElement.cpp b/Gems/LyShine/Code/Editor/ViewportElement.cpp index dad5eb4113..7eb1a54309 100644 --- a/Gems/LyShine/Code/Editor/ViewportElement.cpp +++ b/Gems/LyShine/Code/Editor/ViewportElement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportElement.h b/Gems/LyShine/Code/Editor/ViewportElement.h index 5d8e48862f..656ab1a893 100644 --- a/Gems/LyShine/Code/Editor/ViewportElement.h +++ b/Gems/LyShine/Code/Editor/ViewportElement.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportHelpers.cpp b/Gems/LyShine/Code/Editor/ViewportHelpers.cpp index 1e8606e873..a5a470ecee 100644 --- a/Gems/LyShine/Code/Editor/ViewportHelpers.cpp +++ b/Gems/LyShine/Code/Editor/ViewportHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportHelpers.h b/Gems/LyShine/Code/Editor/ViewportHelpers.h index 50ae303894..69aaf1c63b 100644 --- a/Gems/LyShine/Code/Editor/ViewportHelpers.h +++ b/Gems/LyShine/Code/Editor/ViewportHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportHighlight.cpp b/Gems/LyShine/Code/Editor/ViewportHighlight.cpp index c345113cff..274105e1d7 100644 --- a/Gems/LyShine/Code/Editor/ViewportHighlight.cpp +++ b/Gems/LyShine/Code/Editor/ViewportHighlight.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportHighlight.h b/Gems/LyShine/Code/Editor/ViewportHighlight.h index 2a74cae014..1b884e94b7 100644 --- a/Gems/LyShine/Code/Editor/ViewportHighlight.h +++ b/Gems/LyShine/Code/Editor/ViewportHighlight.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportIcon.cpp b/Gems/LyShine/Code/Editor/ViewportIcon.cpp index df524995c8..71fa8673ec 100644 --- a/Gems/LyShine/Code/Editor/ViewportIcon.cpp +++ b/Gems/LyShine/Code/Editor/ViewportIcon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportIcon.h b/Gems/LyShine/Code/Editor/ViewportIcon.h index a79c9ca31d..03b3c27938 100644 --- a/Gems/LyShine/Code/Editor/ViewportIcon.h +++ b/Gems/LyShine/Code/Editor/ViewportIcon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportInteraction.cpp b/Gems/LyShine/Code/Editor/ViewportInteraction.cpp index c38147ad55..58e324eef3 100644 --- a/Gems/LyShine/Code/Editor/ViewportInteraction.cpp +++ b/Gems/LyShine/Code/Editor/ViewportInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportInteraction.h b/Gems/LyShine/Code/Editor/ViewportInteraction.h index e7603c7427..0971e13029 100644 --- a/Gems/LyShine/Code/Editor/ViewportInteraction.h +++ b/Gems/LyShine/Code/Editor/ViewportInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.cpp b/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.cpp index 4900c58572..bb99c33e8b 100644 --- a/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.cpp +++ b/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.h b/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.h index 9799b169f5..9d00e31b3f 100644 --- a/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.h +++ b/Gems/LyShine/Code/Editor/ViewportMoveGuideInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportMoveInteraction.cpp b/Gems/LyShine/Code/Editor/ViewportMoveInteraction.cpp index 5637b572f0..bcfa4c9fc8 100644 --- a/Gems/LyShine/Code/Editor/ViewportMoveInteraction.cpp +++ b/Gems/LyShine/Code/Editor/ViewportMoveInteraction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportMoveInteraction.h b/Gems/LyShine/Code/Editor/ViewportMoveInteraction.h index f3317d8f96..d008999e91 100644 --- a/Gems/LyShine/Code/Editor/ViewportMoveInteraction.h +++ b/Gems/LyShine/Code/Editor/ViewportMoveInteraction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportNudge.cpp b/Gems/LyShine/Code/Editor/ViewportNudge.cpp index 487d3de00d..6ae0d9b50e 100644 --- a/Gems/LyShine/Code/Editor/ViewportNudge.cpp +++ b/Gems/LyShine/Code/Editor/ViewportNudge.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportNudge.h b/Gems/LyShine/Code/Editor/ViewportNudge.h index 5a8e8c2424..cbd7b945ed 100644 --- a/Gems/LyShine/Code/Editor/ViewportNudge.h +++ b/Gems/LyShine/Code/Editor/ViewportNudge.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportPivot.cpp b/Gems/LyShine/Code/Editor/ViewportPivot.cpp index 2008b77536..92c22d3db4 100644 --- a/Gems/LyShine/Code/Editor/ViewportPivot.cpp +++ b/Gems/LyShine/Code/Editor/ViewportPivot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportPivot.h b/Gems/LyShine/Code/Editor/ViewportPivot.h index 4115096e9d..741ea1e96a 100644 --- a/Gems/LyShine/Code/Editor/ViewportPivot.h +++ b/Gems/LyShine/Code/Editor/ViewportPivot.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportSnap.cpp b/Gems/LyShine/Code/Editor/ViewportSnap.cpp index 66e1d65a89..d6040cdb36 100644 --- a/Gems/LyShine/Code/Editor/ViewportSnap.cpp +++ b/Gems/LyShine/Code/Editor/ViewportSnap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportSnap.h b/Gems/LyShine/Code/Editor/ViewportSnap.h index 446a9a82cd..272b991490 100644 --- a/Gems/LyShine/Code/Editor/ViewportSnap.h +++ b/Gems/LyShine/Code/Editor/ViewportSnap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportWidget.cpp b/Gems/LyShine/Code/Editor/ViewportWidget.cpp index ae874d14fe..fd1374f31a 100644 --- a/Gems/LyShine/Code/Editor/ViewportWidget.cpp +++ b/Gems/LyShine/Code/Editor/ViewportWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Editor/ViewportWidget.h b/Gems/LyShine/Code/Editor/ViewportWidget.h index f9ec72bafc..9c2927ad96 100644 --- a/Gems/LyShine/Code/Editor/ViewportWidget.h +++ b/Gems/LyShine/Code/Editor/ViewportWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Include/LyShine/Draw2d.h b/Gems/LyShine/Code/Include/LyShine/Draw2d.h index a250f1a7a2..6ec56842bd 100644 --- a/Gems/LyShine/Code/Include/LyShine/Draw2d.h +++ b/Gems/LyShine/Code/Include/LyShine/Draw2d.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Include/LyShine/LyShineBus.h b/Gems/LyShine/Code/Include/LyShine/LyShineBus.h index 2645bb86df..2631589968 100644 --- a/Gems/LyShine/Code/Include/LyShine/LyShineBus.h +++ b/Gems/LyShine/Code/Include/LyShine/LyShineBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.cpp b/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.cpp index 916a30a9df..0258f2b423 100644 --- a/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.cpp +++ b/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.h b/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.h index c7ee86f945..35944f5982 100644 --- a/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.h +++ b/Gems/LyShine/Code/Pipeline/LyShineBuilder/LyShineBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.cpp b/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.cpp index b782f1eb3d..f98ae0b489 100644 --- a/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.cpp +++ b/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.h b/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.h index c257be20e7..506ad3ce88 100644 --- a/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.h +++ b/Gems/LyShine/Code/Pipeline/LyShineBuilder/UiCanvasBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/2DSpline.h b/Gems/LyShine/Code/Source/Animation/2DSpline.h index 1c943aab70..b722a31886 100644 --- a/Gems/LyShine/Code/Source/Animation/2DSpline.h +++ b/Gems/LyShine/Code/Source/Animation/2DSpline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimNode.cpp b/Gems/LyShine/Code/Source/Animation/AnimNode.cpp index 363206c0cd..b2c1142ef7 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimNode.cpp +++ b/Gems/LyShine/Code/Source/Animation/AnimNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimNode.h b/Gems/LyShine/Code/Source/Animation/AnimNode.h index d087df6b9e..75da2b21ea 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimNode.h +++ b/Gems/LyShine/Code/Source/Animation/AnimNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimSequence.cpp b/Gems/LyShine/Code/Source/Animation/AnimSequence.cpp index 85fe848a31..9732e1729f 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimSequence.cpp +++ b/Gems/LyShine/Code/Source/Animation/AnimSequence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimSequence.h b/Gems/LyShine/Code/Source/Animation/AnimSequence.h index 465a3a9886..9ab2313944 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimSequence.h +++ b/Gems/LyShine/Code/Source/Animation/AnimSequence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.cpp b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.cpp index 845a8fac71..b187198022 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.cpp +++ b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h index 58fe3dab4e..1b3bcc7122 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h +++ b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack_Vec2Specialization.h b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack_Vec2Specialization.h index 328cd85b80..4e44126710 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimSplineTrack_Vec2Specialization.h +++ b/Gems/LyShine/Code/Source/Animation/AnimSplineTrack_Vec2Specialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimTrack.cpp b/Gems/LyShine/Code/Source/Animation/AnimTrack.cpp index ecf9573390..e9e2e77524 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimTrack.cpp +++ b/Gems/LyShine/Code/Source/Animation/AnimTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AnimTrack.h b/Gems/LyShine/Code/Source/Animation/AnimTrack.h index ae761595f0..356b724102 100644 --- a/Gems/LyShine/Code/Source/Animation/AnimTrack.h +++ b/Gems/LyShine/Code/Source/Animation/AnimTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp b/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp index 98bb0671b9..7e544545bc 100644 --- a/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp +++ b/Gems/LyShine/Code/Source/Animation/AzEntityNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/AzEntityNode.h b/Gems/LyShine/Code/Source/Animation/AzEntityNode.h index ac85433823..e00d757b27 100644 --- a/Gems/LyShine/Code/Source/Animation/AzEntityNode.h +++ b/Gems/LyShine/Code/Source/Animation/AzEntityNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/BoolTrack.cpp b/Gems/LyShine/Code/Source/Animation/BoolTrack.cpp index 8a9d17cffd..cb748c5e7e 100644 --- a/Gems/LyShine/Code/Source/Animation/BoolTrack.cpp +++ b/Gems/LyShine/Code/Source/Animation/BoolTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/BoolTrack.h b/Gems/LyShine/Code/Source/Animation/BoolTrack.h index c27f2fd6dc..fdfc679ee0 100644 --- a/Gems/LyShine/Code/Source/Animation/BoolTrack.h +++ b/Gems/LyShine/Code/Source/Animation/BoolTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp index e7667bcfcb..1beb1170d0 100644 --- a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp +++ b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h index bd071ffa04..74f36addd6 100644 --- a/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h +++ b/Gems/LyShine/Code/Source/Animation/CompoundSplineTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/EventNode.cpp b/Gems/LyShine/Code/Source/Animation/EventNode.cpp index bf3ff57e96..d0e49bceea 100644 --- a/Gems/LyShine/Code/Source/Animation/EventNode.cpp +++ b/Gems/LyShine/Code/Source/Animation/EventNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/EventNode.h b/Gems/LyShine/Code/Source/Animation/EventNode.h index 59ef467c47..0128f078b5 100644 --- a/Gems/LyShine/Code/Source/Animation/EventNode.h +++ b/Gems/LyShine/Code/Source/Animation/EventNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/LyShine_precompiled.h b/Gems/LyShine/Code/Source/Animation/LyShine_precompiled.h index 440cc7b0ab..afd07aab98 100644 --- a/Gems/LyShine/Code/Source/Animation/LyShine_precompiled.h +++ b/Gems/LyShine/Code/Source/Animation/LyShine_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/TrackEventTrack.cpp b/Gems/LyShine/Code/Source/Animation/TrackEventTrack.cpp index 94871a68a5..154532868e 100644 --- a/Gems/LyShine/Code/Source/Animation/TrackEventTrack.cpp +++ b/Gems/LyShine/Code/Source/Animation/TrackEventTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h b/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h index 988c413816..912344d5e0 100644 --- a/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h +++ b/Gems/LyShine/Code/Source/Animation/TrackEventTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.cpp b/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.cpp index eef39778c0..8148ff9f3a 100644 --- a/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.cpp +++ b/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.h b/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.h index 71e62fde0f..eb604a441b 100644 --- a/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.h +++ b/Gems/LyShine/Code/Source/Animation/UiAnimSerialize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp index e14cf34011..527977ea44 100644 --- a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp +++ b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h index 4b93715c71..acf4fd10a1 100644 --- a/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h +++ b/Gems/LyShine/Code/Source/Animation/UiAnimationSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Draw2d.cpp b/Gems/LyShine/Code/Source/Draw2d.cpp index cf603c5584..c18dd6a4c4 100644 --- a/Gems/LyShine/Code/Source/Draw2d.cpp +++ b/Gems/LyShine/Code/Source/Draw2d.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/EditorPropertyTypes.cpp b/Gems/LyShine/Code/Source/EditorPropertyTypes.cpp index 31e7fe8027..967e048947 100644 --- a/Gems/LyShine/Code/Source/EditorPropertyTypes.cpp +++ b/Gems/LyShine/Code/Source/EditorPropertyTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/EditorPropertyTypes.h b/Gems/LyShine/Code/Source/EditorPropertyTypes.h index ca26a7fa11..c93475431d 100644 --- a/Gems/LyShine/Code/Source/EditorPropertyTypes.h +++ b/Gems/LyShine/Code/Source/EditorPropertyTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShine.cpp b/Gems/LyShine/Code/Source/LyShine.cpp index d5454cef01..9d22b75c86 100644 --- a/Gems/LyShine/Code/Source/LyShine.cpp +++ b/Gems/LyShine/Code/Source/LyShine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShine.h b/Gems/LyShine/Code/Source/LyShine.h index e74358717a..a5d1597e53 100644 --- a/Gems/LyShine/Code/Source/LyShine.h +++ b/Gems/LyShine/Code/Source/LyShine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineDebug.cpp b/Gems/LyShine/Code/Source/LyShineDebug.cpp index d4b675232b..f28ea89fea 100644 --- a/Gems/LyShine/Code/Source/LyShineDebug.cpp +++ b/Gems/LyShine/Code/Source/LyShineDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineDebug.h b/Gems/LyShine/Code/Source/LyShineDebug.h index b7e4eb38f3..b0ee910ae0 100644 --- a/Gems/LyShine/Code/Source/LyShineDebug.h +++ b/Gems/LyShine/Code/Source/LyShineDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp b/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp index a2d832afa0..82002fd131 100644 --- a/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp +++ b/Gems/LyShine/Code/Source/LyShineLoadScreen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineLoadScreen.h b/Gems/LyShine/Code/Source/LyShineLoadScreen.h index d32617e401..d9fe5a350e 100644 --- a/Gems/LyShine/Code/Source/LyShineLoadScreen.h +++ b/Gems/LyShine/Code/Source/LyShineLoadScreen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineModule.cpp b/Gems/LyShine/Code/Source/LyShineModule.cpp index 3aaf3ad078..011bb9f203 100644 --- a/Gems/LyShine/Code/Source/LyShineModule.cpp +++ b/Gems/LyShine/Code/Source/LyShineModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineModule.h b/Gems/LyShine/Code/Source/LyShineModule.h index 54a974afef..67c1a6f749 100644 --- a/Gems/LyShine/Code/Source/LyShineModule.h +++ b/Gems/LyShine/Code/Source/LyShineModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp b/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp index ff23f21945..26e2adf0b3 100644 --- a/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp +++ b/Gems/LyShine/Code/Source/LyShineSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShineSystemComponent.h b/Gems/LyShine/Code/Source/LyShineSystemComponent.h index 50a8ee5aba..5b455715ee 100644 --- a/Gems/LyShine/Code/Source/LyShineSystemComponent.h +++ b/Gems/LyShine/Code/Source/LyShineSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/LyShine_precompiled.h b/Gems/LyShine/Code/Source/LyShine_precompiled.h index ed4e75a0f9..9b46d2024b 100644 --- a/Gems/LyShine/Code/Source/LyShine_precompiled.h +++ b/Gems/LyShine/Code/Source/LyShine_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Particle/UiParticle.cpp b/Gems/LyShine/Code/Source/Particle/UiParticle.cpp index 18458cf1fc..ca28e60484 100644 --- a/Gems/LyShine/Code/Source/Particle/UiParticle.cpp +++ b/Gems/LyShine/Code/Source/Particle/UiParticle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Particle/UiParticle.h b/Gems/LyShine/Code/Source/Particle/UiParticle.h index 8c1e8cc99f..2fd189a1e7 100644 --- a/Gems/LyShine/Code/Source/Particle/UiParticle.h +++ b/Gems/LyShine/Code/Source/Particle/UiParticle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/LyShine/Code/Source/Platform/Android/platform_android_files.cmake index b815165c3f..35e174ed09 100644 --- a/Gems/LyShine/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/LyShine/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Source/Platform/Common/Unimplemented/UiClipboard_Unimplemented.cpp b/Gems/LyShine/Code/Source/Platform/Common/Unimplemented/UiClipboard_Unimplemented.cpp index 2f239bf87c..1493f1c1fe 100644 --- a/Gems/LyShine/Code/Source/Platform/Common/Unimplemented/UiClipboard_Unimplemented.cpp +++ b/Gems/LyShine/Code/Source/Platform/Common/Unimplemented/UiClipboard_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/LyShine/Code/Source/Platform/Linux/platform_linux_files.cmake index b815165c3f..35e174ed09 100644 --- a/Gems/LyShine/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/LyShine/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/LyShine/Code/Source/Platform/Mac/platform_mac_files.cmake index b815165c3f..35e174ed09 100644 --- a/Gems/LyShine/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/LyShine/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Source/Platform/Windows/UiClipboard_Windows.cpp b/Gems/LyShine/Code/Source/Platform/Windows/UiClipboard_Windows.cpp index 312d69ca55..dee73abc6d 100644 --- a/Gems/LyShine/Code/Source/Platform/Windows/UiClipboard_Windows.cpp +++ b/Gems/LyShine/Code/Source/Platform/Windows/UiClipboard_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/LyShine/Code/Source/Platform/Windows/platform_windows_files.cmake index 25d08ace77..6119a6d7c8 100644 --- a/Gems/LyShine/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/LyShine/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/LyShine/Code/Source/Platform/iOS/platform_ios_files.cmake index b815165c3f..35e174ed09 100644 --- a/Gems/LyShine/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/LyShine/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/Source/RenderGraph.cpp b/Gems/LyShine/Code/Source/RenderGraph.cpp index da7392efc3..5b33e59fdf 100644 --- a/Gems/LyShine/Code/Source/RenderGraph.cpp +++ b/Gems/LyShine/Code/Source/RenderGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/RenderGraph.h b/Gems/LyShine/Code/Source/RenderGraph.h index 2b3243964a..d29473168e 100644 --- a/Gems/LyShine/Code/Source/RenderGraph.h +++ b/Gems/LyShine/Code/Source/RenderGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.cpp b/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.cpp index c3b10ff883..a4f6348f9e 100644 --- a/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.cpp +++ b/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.h b/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.h index 25344043c0..17cd201a85 100644 --- a/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.h +++ b/Gems/LyShine/Code/Source/Script/UiCanvasLuaBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.cpp b/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.cpp index 86d2011082..6ff67725eb 100644 --- a/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.cpp +++ b/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.h b/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.h index fafae5ae7e..cf38c83424 100644 --- a/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.h +++ b/Gems/LyShine/Code/Source/Script/UiCanvasNotificationLuaBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Script/UiElementLuaBus.cpp b/Gems/LyShine/Code/Source/Script/UiElementLuaBus.cpp index d731a6e019..ece750b5bf 100644 --- a/Gems/LyShine/Code/Source/Script/UiElementLuaBus.cpp +++ b/Gems/LyShine/Code/Source/Script/UiElementLuaBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Script/UiElementLuaBus.h b/Gems/LyShine/Code/Source/Script/UiElementLuaBus.h index ac646ff45f..2b3848b855 100644 --- a/Gems/LyShine/Code/Source/Script/UiElementLuaBus.h +++ b/Gems/LyShine/Code/Source/Script/UiElementLuaBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Sprite.cpp b/Gems/LyShine/Code/Source/Sprite.cpp index 5cb2675ae9..e2a20b00e3 100644 --- a/Gems/LyShine/Code/Source/Sprite.cpp +++ b/Gems/LyShine/Code/Source/Sprite.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Sprite.h b/Gems/LyShine/Code/Source/Sprite.h index f87109899b..cac7582961 100644 --- a/Gems/LyShine/Code/Source/Sprite.h +++ b/Gems/LyShine/Code/Source/Sprite.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/StringUtfUtils.h b/Gems/LyShine/Code/Source/StringUtfUtils.h index a4030585b5..90aff0d42b 100644 --- a/Gems/LyShine/Code/Source/StringUtfUtils.h +++ b/Gems/LyShine/Code/Source/StringUtfUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Tests/internal/test_TextMarkup.cpp b/Gems/LyShine/Code/Source/Tests/internal/test_TextMarkup.cpp index e195624228..c4c9b2b196 100644 --- a/Gems/LyShine/Code/Source/Tests/internal/test_TextMarkup.cpp +++ b/Gems/LyShine/Code/Source/Tests/internal/test_TextMarkup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Tests/internal/test_UiMarkupButtonComponent.cpp b/Gems/LyShine/Code/Source/Tests/internal/test_UiMarkupButtonComponent.cpp index c403f645fa..6a71657499 100644 --- a/Gems/LyShine/Code/Source/Tests/internal/test_UiMarkupButtonComponent.cpp +++ b/Gems/LyShine/Code/Source/Tests/internal/test_UiMarkupButtonComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Tests/internal/test_UiTextComponent.cpp b/Gems/LyShine/Code/Source/Tests/internal/test_UiTextComponent.cpp index bee8fb8f56..4ca68812d1 100644 --- a/Gems/LyShine/Code/Source/Tests/internal/test_UiTextComponent.cpp +++ b/Gems/LyShine/Code/Source/Tests/internal/test_UiTextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp b/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp index 37e4fc4be1..6e8cb09a18 100644 --- a/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp +++ b/Gems/LyShine/Code/Source/Tests/internal/test_UiTransform2dComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/Tests/test_Main.cpp b/Gems/LyShine/Code/Source/Tests/test_Main.cpp index ce4394eec1..48f0065ba9 100644 --- a/Gems/LyShine/Code/Source/Tests/test_Main.cpp +++ b/Gems/LyShine/Code/Source/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/TextMarkup.cpp b/Gems/LyShine/Code/Source/TextMarkup.cpp index d026aed8b7..d2409a5f4e 100644 --- a/Gems/LyShine/Code/Source/TextMarkup.cpp +++ b/Gems/LyShine/Code/Source/TextMarkup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/TextMarkup.h b/Gems/LyShine/Code/Source/TextMarkup.h index 01bf85f2d9..1119a6ba34 100644 --- a/Gems/LyShine/Code/Source/TextMarkup.h +++ b/Gems/LyShine/Code/Source/TextMarkup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiButtonComponent.cpp b/Gems/LyShine/Code/Source/UiButtonComponent.cpp index 3b0ea099ec..75726da57f 100644 --- a/Gems/LyShine/Code/Source/UiButtonComponent.cpp +++ b/Gems/LyShine/Code/Source/UiButtonComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiButtonComponent.h b/Gems/LyShine/Code/Source/UiButtonComponent.h index dfdcce2d2e..a585cb344e 100644 --- a/Gems/LyShine/Code/Source/UiButtonComponent.h +++ b/Gems/LyShine/Code/Source/UiButtonComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCanvasComponent.cpp b/Gems/LyShine/Code/Source/UiCanvasComponent.cpp index 0b3078ae56..b678089cb4 100644 --- a/Gems/LyShine/Code/Source/UiCanvasComponent.cpp +++ b/Gems/LyShine/Code/Source/UiCanvasComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCanvasComponent.h b/Gems/LyShine/Code/Source/UiCanvasComponent.h index 2c754b8dfe..df904684ec 100644 --- a/Gems/LyShine/Code/Source/UiCanvasComponent.h +++ b/Gems/LyShine/Code/Source/UiCanvasComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCanvasFileObject.cpp b/Gems/LyShine/Code/Source/UiCanvasFileObject.cpp index 61dfec0cfb..993d29c1ae 100644 --- a/Gems/LyShine/Code/Source/UiCanvasFileObject.cpp +++ b/Gems/LyShine/Code/Source/UiCanvasFileObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCanvasFileObject.h b/Gems/LyShine/Code/Source/UiCanvasFileObject.h index 4403529c22..626d5029ec 100644 --- a/Gems/LyShine/Code/Source/UiCanvasFileObject.h +++ b/Gems/LyShine/Code/Source/UiCanvasFileObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCanvasManager.cpp b/Gems/LyShine/Code/Source/UiCanvasManager.cpp index 9c71120178..1b5cf2ebe7 100644 --- a/Gems/LyShine/Code/Source/UiCanvasManager.cpp +++ b/Gems/LyShine/Code/Source/UiCanvasManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCanvasManager.h b/Gems/LyShine/Code/Source/UiCanvasManager.h index bf800097a2..80a715474e 100644 --- a/Gems/LyShine/Code/Source/UiCanvasManager.h +++ b/Gems/LyShine/Code/Source/UiCanvasManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCheckboxComponent.cpp b/Gems/LyShine/Code/Source/UiCheckboxComponent.cpp index 4ed786f0cf..cf0ed939ed 100644 --- a/Gems/LyShine/Code/Source/UiCheckboxComponent.cpp +++ b/Gems/LyShine/Code/Source/UiCheckboxComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiCheckboxComponent.h b/Gems/LyShine/Code/Source/UiCheckboxComponent.h index 39a2cfdc2a..7ba10cc2bc 100644 --- a/Gems/LyShine/Code/Source/UiCheckboxComponent.h +++ b/Gems/LyShine/Code/Source/UiCheckboxComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiClipboard.h b/Gems/LyShine/Code/Source/UiClipboard.h index 4d02409aef..91de4e8555 100644 --- a/Gems/LyShine/Code/Source/UiClipboard.h +++ b/Gems/LyShine/Code/Source/UiClipboard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDraggableComponent.cpp b/Gems/LyShine/Code/Source/UiDraggableComponent.cpp index 72e058eb5d..55ddcf93e4 100644 --- a/Gems/LyShine/Code/Source/UiDraggableComponent.cpp +++ b/Gems/LyShine/Code/Source/UiDraggableComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDraggableComponent.h b/Gems/LyShine/Code/Source/UiDraggableComponent.h index e5ee5d3482..67995553d7 100644 --- a/Gems/LyShine/Code/Source/UiDraggableComponent.h +++ b/Gems/LyShine/Code/Source/UiDraggableComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDropTargetComponent.cpp b/Gems/LyShine/Code/Source/UiDropTargetComponent.cpp index 033e43c246..4110bb8aee 100644 --- a/Gems/LyShine/Code/Source/UiDropTargetComponent.cpp +++ b/Gems/LyShine/Code/Source/UiDropTargetComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDropTargetComponent.h b/Gems/LyShine/Code/Source/UiDropTargetComponent.h index c4c8d744c1..f8a9b51b45 100644 --- a/Gems/LyShine/Code/Source/UiDropTargetComponent.h +++ b/Gems/LyShine/Code/Source/UiDropTargetComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDropdownComponent.cpp b/Gems/LyShine/Code/Source/UiDropdownComponent.cpp index 767c7dbf05..fb7885fd52 100644 --- a/Gems/LyShine/Code/Source/UiDropdownComponent.cpp +++ b/Gems/LyShine/Code/Source/UiDropdownComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDropdownComponent.h b/Gems/LyShine/Code/Source/UiDropdownComponent.h index 28d087a11a..7b15b724b5 100644 --- a/Gems/LyShine/Code/Source/UiDropdownComponent.h +++ b/Gems/LyShine/Code/Source/UiDropdownComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDropdownOptionComponent.cpp b/Gems/LyShine/Code/Source/UiDropdownOptionComponent.cpp index 5be36cf5f2..76ef210b4d 100644 --- a/Gems/LyShine/Code/Source/UiDropdownOptionComponent.cpp +++ b/Gems/LyShine/Code/Source/UiDropdownOptionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDropdownOptionComponent.h b/Gems/LyShine/Code/Source/UiDropdownOptionComponent.h index 5633dbc0d3..27528da090 100644 --- a/Gems/LyShine/Code/Source/UiDropdownOptionComponent.h +++ b/Gems/LyShine/Code/Source/UiDropdownOptionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.cpp b/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.cpp index f8bec2b642..d03842f9f0 100644 --- a/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.cpp +++ b/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.h b/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.h index b56a126606..0841571b88 100644 --- a/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.h +++ b/Gems/LyShine/Code/Source/UiDynamicLayoutComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.cpp b/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.cpp index 76301050b0..9e2f749aa2 100644 --- a/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.cpp +++ b/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.h b/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.h index 3354871994..50b7f7e87f 100644 --- a/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.h +++ b/Gems/LyShine/Code/Source/UiDynamicScrollBoxComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiElementComponent.cpp b/Gems/LyShine/Code/Source/UiElementComponent.cpp index 9101da0198..d335da2340 100644 --- a/Gems/LyShine/Code/Source/UiElementComponent.cpp +++ b/Gems/LyShine/Code/Source/UiElementComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiElementComponent.h b/Gems/LyShine/Code/Source/UiElementComponent.h index 96eb471bba..367fca7049 100644 --- a/Gems/LyShine/Code/Source/UiElementComponent.h +++ b/Gems/LyShine/Code/Source/UiElementComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiEntityContext.cpp b/Gems/LyShine/Code/Source/UiEntityContext.cpp index c69b3bf248..257ea21692 100644 --- a/Gems/LyShine/Code/Source/UiEntityContext.cpp +++ b/Gems/LyShine/Code/Source/UiEntityContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiFaderComponent.cpp b/Gems/LyShine/Code/Source/UiFaderComponent.cpp index 6fbfce9ffc..9f5ca82a9c 100644 --- a/Gems/LyShine/Code/Source/UiFaderComponent.cpp +++ b/Gems/LyShine/Code/Source/UiFaderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiFaderComponent.h b/Gems/LyShine/Code/Source/UiFaderComponent.h index b248cec8a7..6b74b3ce39 100644 --- a/Gems/LyShine/Code/Source/UiFaderComponent.h +++ b/Gems/LyShine/Code/Source/UiFaderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.cpp b/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.cpp index 72b4219752..0444595c90 100644 --- a/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.cpp +++ b/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.h b/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.h index 064760f791..939d59a672 100644 --- a/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.h +++ b/Gems/LyShine/Code/Source/UiFlipbookAnimationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiGameEntityContext.cpp b/Gems/LyShine/Code/Source/UiGameEntityContext.cpp index f90601276a..82fcf31c4c 100644 --- a/Gems/LyShine/Code/Source/UiGameEntityContext.cpp +++ b/Gems/LyShine/Code/Source/UiGameEntityContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiGameEntityContext.h b/Gems/LyShine/Code/Source/UiGameEntityContext.h index d7d1f149e3..9c99516ba8 100644 --- a/Gems/LyShine/Code/Source/UiGameEntityContext.h +++ b/Gems/LyShine/Code/Source/UiGameEntityContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiImageComponent.cpp b/Gems/LyShine/Code/Source/UiImageComponent.cpp index 133e0d3ae0..90a57e1108 100644 --- a/Gems/LyShine/Code/Source/UiImageComponent.cpp +++ b/Gems/LyShine/Code/Source/UiImageComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiImageComponent.h b/Gems/LyShine/Code/Source/UiImageComponent.h index cd547541c4..0fb371e6c2 100644 --- a/Gems/LyShine/Code/Source/UiImageComponent.h +++ b/Gems/LyShine/Code/Source/UiImageComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp b/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp index 294c403167..87859ae4c9 100644 --- a/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp +++ b/Gems/LyShine/Code/Source/UiImageSequenceComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiImageSequenceComponent.h b/Gems/LyShine/Code/Source/UiImageSequenceComponent.h index b32c964e7b..b7d4c16673 100644 --- a/Gems/LyShine/Code/Source/UiImageSequenceComponent.h +++ b/Gems/LyShine/Code/Source/UiImageSequenceComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiInteractableComponent.cpp b/Gems/LyShine/Code/Source/UiInteractableComponent.cpp index 057654e868..0be1e5966c 100644 --- a/Gems/LyShine/Code/Source/UiInteractableComponent.cpp +++ b/Gems/LyShine/Code/Source/UiInteractableComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiInteractableComponent.h b/Gems/LyShine/Code/Source/UiInteractableComponent.h index e659bb431c..dfe5c2c8f2 100644 --- a/Gems/LyShine/Code/Source/UiInteractableComponent.h +++ b/Gems/LyShine/Code/Source/UiInteractableComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiInteractableState.cpp b/Gems/LyShine/Code/Source/UiInteractableState.cpp index 28486deb48..0d6334c108 100644 --- a/Gems/LyShine/Code/Source/UiInteractableState.cpp +++ b/Gems/LyShine/Code/Source/UiInteractableState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiInteractableState.h b/Gems/LyShine/Code/Source/UiInteractableState.h index ddf74f4ee1..6e39cc2ef1 100644 --- a/Gems/LyShine/Code/Source/UiInteractableState.h +++ b/Gems/LyShine/Code/Source/UiInteractableState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutCellComponent.cpp b/Gems/LyShine/Code/Source/UiLayoutCellComponent.cpp index 2ffcedc321..38636abdb2 100644 --- a/Gems/LyShine/Code/Source/UiLayoutCellComponent.cpp +++ b/Gems/LyShine/Code/Source/UiLayoutCellComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutCellComponent.h b/Gems/LyShine/Code/Source/UiLayoutCellComponent.h index ee64c77d87..560991035a 100644 --- a/Gems/LyShine/Code/Source/UiLayoutCellComponent.h +++ b/Gems/LyShine/Code/Source/UiLayoutCellComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutColumnComponent.cpp b/Gems/LyShine/Code/Source/UiLayoutColumnComponent.cpp index 1f240410fc..b999adb3c1 100644 --- a/Gems/LyShine/Code/Source/UiLayoutColumnComponent.cpp +++ b/Gems/LyShine/Code/Source/UiLayoutColumnComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutColumnComponent.h b/Gems/LyShine/Code/Source/UiLayoutColumnComponent.h index 77570b89f0..eb3a45eec1 100644 --- a/Gems/LyShine/Code/Source/UiLayoutColumnComponent.h +++ b/Gems/LyShine/Code/Source/UiLayoutColumnComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutFitterComponent.cpp b/Gems/LyShine/Code/Source/UiLayoutFitterComponent.cpp index 229124dbd4..bf05d172c0 100644 --- a/Gems/LyShine/Code/Source/UiLayoutFitterComponent.cpp +++ b/Gems/LyShine/Code/Source/UiLayoutFitterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutFitterComponent.h b/Gems/LyShine/Code/Source/UiLayoutFitterComponent.h index 32028467b1..767805ac6a 100644 --- a/Gems/LyShine/Code/Source/UiLayoutFitterComponent.h +++ b/Gems/LyShine/Code/Source/UiLayoutFitterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutGridComponent.cpp b/Gems/LyShine/Code/Source/UiLayoutGridComponent.cpp index 5335a9d5b1..155c78b417 100644 --- a/Gems/LyShine/Code/Source/UiLayoutGridComponent.cpp +++ b/Gems/LyShine/Code/Source/UiLayoutGridComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutGridComponent.h b/Gems/LyShine/Code/Source/UiLayoutGridComponent.h index 7e97ae4be2..fe8bb18ed0 100644 --- a/Gems/LyShine/Code/Source/UiLayoutGridComponent.h +++ b/Gems/LyShine/Code/Source/UiLayoutGridComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutHelpers.cpp b/Gems/LyShine/Code/Source/UiLayoutHelpers.cpp index e6cb0a2131..cbe94674bb 100644 --- a/Gems/LyShine/Code/Source/UiLayoutHelpers.cpp +++ b/Gems/LyShine/Code/Source/UiLayoutHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutHelpers.h b/Gems/LyShine/Code/Source/UiLayoutHelpers.h index a4fb471f82..de6afab132 100644 --- a/Gems/LyShine/Code/Source/UiLayoutHelpers.h +++ b/Gems/LyShine/Code/Source/UiLayoutHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutManager.cpp b/Gems/LyShine/Code/Source/UiLayoutManager.cpp index 3814150743..d7f31b3b4f 100644 --- a/Gems/LyShine/Code/Source/UiLayoutManager.cpp +++ b/Gems/LyShine/Code/Source/UiLayoutManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutManager.h b/Gems/LyShine/Code/Source/UiLayoutManager.h index 9a04671e9d..a72a7ea865 100644 --- a/Gems/LyShine/Code/Source/UiLayoutManager.h +++ b/Gems/LyShine/Code/Source/UiLayoutManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutRowComponent.cpp b/Gems/LyShine/Code/Source/UiLayoutRowComponent.cpp index 9fde3538a9..01deeff75f 100644 --- a/Gems/LyShine/Code/Source/UiLayoutRowComponent.cpp +++ b/Gems/LyShine/Code/Source/UiLayoutRowComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiLayoutRowComponent.h b/Gems/LyShine/Code/Source/UiLayoutRowComponent.h index af44f1bc17..908b6d6360 100644 --- a/Gems/LyShine/Code/Source/UiLayoutRowComponent.h +++ b/Gems/LyShine/Code/Source/UiLayoutRowComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiMarkupButtonComponent.cpp b/Gems/LyShine/Code/Source/UiMarkupButtonComponent.cpp index d8d6230485..2df04e2fec 100644 --- a/Gems/LyShine/Code/Source/UiMarkupButtonComponent.cpp +++ b/Gems/LyShine/Code/Source/UiMarkupButtonComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiMarkupButtonComponent.h b/Gems/LyShine/Code/Source/UiMarkupButtonComponent.h index 0d4325ea86..23fc8fcc8e 100644 --- a/Gems/LyShine/Code/Source/UiMarkupButtonComponent.h +++ b/Gems/LyShine/Code/Source/UiMarkupButtonComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiMaskComponent.cpp b/Gems/LyShine/Code/Source/UiMaskComponent.cpp index afcfdaa695..80a8054e89 100644 --- a/Gems/LyShine/Code/Source/UiMaskComponent.cpp +++ b/Gems/LyShine/Code/Source/UiMaskComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiMaskComponent.h b/Gems/LyShine/Code/Source/UiMaskComponent.h index 59402db5fe..bfa2d7b92f 100644 --- a/Gems/LyShine/Code/Source/UiMaskComponent.h +++ b/Gems/LyShine/Code/Source/UiMaskComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiNavigationHelpers.cpp b/Gems/LyShine/Code/Source/UiNavigationHelpers.cpp index 2c4327c354..d25b5a2fb1 100644 --- a/Gems/LyShine/Code/Source/UiNavigationHelpers.cpp +++ b/Gems/LyShine/Code/Source/UiNavigationHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiNavigationHelpers.h b/Gems/LyShine/Code/Source/UiNavigationHelpers.h index 991be8e601..231ead6fd1 100644 --- a/Gems/LyShine/Code/Source/UiNavigationHelpers.h +++ b/Gems/LyShine/Code/Source/UiNavigationHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiNavigationSettings.cpp b/Gems/LyShine/Code/Source/UiNavigationSettings.cpp index 76f8584718..ff50a70c9d 100644 --- a/Gems/LyShine/Code/Source/UiNavigationSettings.cpp +++ b/Gems/LyShine/Code/Source/UiNavigationSettings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiNavigationSettings.h b/Gems/LyShine/Code/Source/UiNavigationSettings.h index ecd008b7a3..a9ce84a53b 100644 --- a/Gems/LyShine/Code/Source/UiNavigationSettings.h +++ b/Gems/LyShine/Code/Source/UiNavigationSettings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp index d8c9c81bf9..391b110314 100644 --- a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp +++ b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h index 4e07049821..a6018f7dc5 100644 --- a/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h +++ b/Gems/LyShine/Code/Source/UiParticleEmitterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiRadioButtonComponent.cpp b/Gems/LyShine/Code/Source/UiRadioButtonComponent.cpp index 0558150dc0..c0bb3557f9 100644 --- a/Gems/LyShine/Code/Source/UiRadioButtonComponent.cpp +++ b/Gems/LyShine/Code/Source/UiRadioButtonComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiRadioButtonComponent.h b/Gems/LyShine/Code/Source/UiRadioButtonComponent.h index 4f2fd74ba9..e0f64b6173 100644 --- a/Gems/LyShine/Code/Source/UiRadioButtonComponent.h +++ b/Gems/LyShine/Code/Source/UiRadioButtonComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.cpp b/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.cpp index dc1db0b24b..e65f67eb93 100644 --- a/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.cpp +++ b/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.h b/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.h index 1a3988a249..8bfe86a364 100644 --- a/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.h +++ b/Gems/LyShine/Code/Source/UiRadioButtonGroupComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiRenderer.cpp b/Gems/LyShine/Code/Source/UiRenderer.cpp index 71093f0ac1..f1aa72c258 100644 --- a/Gems/LyShine/Code/Source/UiRenderer.cpp +++ b/Gems/LyShine/Code/Source/UiRenderer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiRenderer.h b/Gems/LyShine/Code/Source/UiRenderer.h index 4a9af643cb..018e60350e 100644 --- a/Gems/LyShine/Code/Source/UiRenderer.h +++ b/Gems/LyShine/Code/Source/UiRenderer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiScrollBarComponent.cpp b/Gems/LyShine/Code/Source/UiScrollBarComponent.cpp index 8ef9258dc0..f8b73a2647 100644 --- a/Gems/LyShine/Code/Source/UiScrollBarComponent.cpp +++ b/Gems/LyShine/Code/Source/UiScrollBarComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiScrollBarComponent.h b/Gems/LyShine/Code/Source/UiScrollBarComponent.h index fb7abcb4ad..0e81fa2bfb 100644 --- a/Gems/LyShine/Code/Source/UiScrollBarComponent.h +++ b/Gems/LyShine/Code/Source/UiScrollBarComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp b/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp index 57e6e213c8..1530d2f7a3 100644 --- a/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp +++ b/Gems/LyShine/Code/Source/UiScrollBoxComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiScrollBoxComponent.h b/Gems/LyShine/Code/Source/UiScrollBoxComponent.h index 51b90f2888..2d0d91d384 100644 --- a/Gems/LyShine/Code/Source/UiScrollBoxComponent.h +++ b/Gems/LyShine/Code/Source/UiScrollBoxComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiSerialize.cpp b/Gems/LyShine/Code/Source/UiSerialize.cpp index 2a2869ff8c..80ff9113f2 100644 --- a/Gems/LyShine/Code/Source/UiSerialize.cpp +++ b/Gems/LyShine/Code/Source/UiSerialize.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiSerialize.h b/Gems/LyShine/Code/Source/UiSerialize.h index f32ee1549b..9bdddceba2 100644 --- a/Gems/LyShine/Code/Source/UiSerialize.h +++ b/Gems/LyShine/Code/Source/UiSerialize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiSliderComponent.cpp b/Gems/LyShine/Code/Source/UiSliderComponent.cpp index fb8010c15f..b20505460e 100644 --- a/Gems/LyShine/Code/Source/UiSliderComponent.cpp +++ b/Gems/LyShine/Code/Source/UiSliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiSliderComponent.h b/Gems/LyShine/Code/Source/UiSliderComponent.h index 70c144e41d..d686941fb6 100644 --- a/Gems/LyShine/Code/Source/UiSliderComponent.h +++ b/Gems/LyShine/Code/Source/UiSliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiSpawnerComponent.cpp b/Gems/LyShine/Code/Source/UiSpawnerComponent.cpp index 522071aa84..e8387e2392 100644 --- a/Gems/LyShine/Code/Source/UiSpawnerComponent.cpp +++ b/Gems/LyShine/Code/Source/UiSpawnerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiSpawnerComponent.h b/Gems/LyShine/Code/Source/UiSpawnerComponent.h index bd9b222f4c..e60e2b0212 100644 --- a/Gems/LyShine/Code/Source/UiSpawnerComponent.h +++ b/Gems/LyShine/Code/Source/UiSpawnerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiStateActionManager.cpp b/Gems/LyShine/Code/Source/UiStateActionManager.cpp index 6c82076d64..0960e92f50 100644 --- a/Gems/LyShine/Code/Source/UiStateActionManager.cpp +++ b/Gems/LyShine/Code/Source/UiStateActionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiStateActionManager.h b/Gems/LyShine/Code/Source/UiStateActionManager.h index ce9a3ac34f..d2c78d1ddb 100644 --- a/Gems/LyShine/Code/Source/UiStateActionManager.h +++ b/Gems/LyShine/Code/Source/UiStateActionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTextComponent.cpp b/Gems/LyShine/Code/Source/UiTextComponent.cpp index f0c753c311..b219856a8b 100644 --- a/Gems/LyShine/Code/Source/UiTextComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTextComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTextComponent.h b/Gems/LyShine/Code/Source/UiTextComponent.h index 3b7ff19bcc..11ab288cab 100644 --- a/Gems/LyShine/Code/Source/UiTextComponent.h +++ b/Gems/LyShine/Code/Source/UiTextComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.cpp b/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.cpp index f15793ae53..60f9453290 100644 --- a/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.cpp +++ b/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.h b/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.h index c87e058665..ba3effcedd 100644 --- a/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.h +++ b/Gems/LyShine/Code/Source/UiTextComponentOffsetsSelector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTextInputComponent.cpp b/Gems/LyShine/Code/Source/UiTextInputComponent.cpp index 7a8cc3e9c5..095fe205d2 100644 --- a/Gems/LyShine/Code/Source/UiTextInputComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTextInputComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTextInputComponent.h b/Gems/LyShine/Code/Source/UiTextInputComponent.h index e4841cc3a7..17d2cb02cd 100644 --- a/Gems/LyShine/Code/Source/UiTextInputComponent.h +++ b/Gems/LyShine/Code/Source/UiTextInputComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTooltipComponent.cpp b/Gems/LyShine/Code/Source/UiTooltipComponent.cpp index db145a5836..967f26edc1 100644 --- a/Gems/LyShine/Code/Source/UiTooltipComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTooltipComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTooltipComponent.h b/Gems/LyShine/Code/Source/UiTooltipComponent.h index 46f34e581c..77da86039f 100644 --- a/Gems/LyShine/Code/Source/UiTooltipComponent.h +++ b/Gems/LyShine/Code/Source/UiTooltipComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.cpp b/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.cpp index aa5d4affba..41a6888190 100644 --- a/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.h b/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.h index 67de3195a7..361a969c65 100644 --- a/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.h +++ b/Gems/LyShine/Code/Source/UiTooltipDisplayComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp b/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp index c60730344b..9912791930 100644 --- a/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp +++ b/Gems/LyShine/Code/Source/UiTransform2dComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/UiTransform2dComponent.h b/Gems/LyShine/Code/Source/UiTransform2dComponent.h index bcfeef8dbb..1250ec64e1 100644 --- a/Gems/LyShine/Code/Source/UiTransform2dComponent.h +++ b/Gems/LyShine/Code/Source/UiTransform2dComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.cpp b/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.cpp index e17a579ea5..2db56b174a 100644 --- a/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.cpp +++ b/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.h b/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.h index 3f641ea588..2944eaed26 100644 --- a/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.h +++ b/Gems/LyShine/Code/Source/World/UiCanvasAssetRefComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp b/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp index fae134dafc..320fe47745 100644 --- a/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp +++ b/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.h b/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.h index 8377bfc5c4..b861d04784 100644 --- a/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.h +++ b/Gems/LyShine/Code/Source/World/UiCanvasOnMeshComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.cpp b/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.cpp index 04a526eea2..4fe2ccd42e 100644 --- a/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.cpp +++ b/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.h b/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.h index 0936f59e54..c59a809304 100644 --- a/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.h +++ b/Gems/LyShine/Code/Source/World/UiCanvasProxyRefComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Source/resource.h b/Gems/LyShine/Code/Source/resource.h index f7d2d15d34..961bff2960 100644 --- a/Gems/LyShine/Code/Source/resource.h +++ b/Gems/LyShine/Code/Source/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/AnimationTest.cpp b/Gems/LyShine/Code/Tests/AnimationTest.cpp index 7f4e9dc42b..dab298f112 100644 --- a/Gems/LyShine/Code/Tests/AnimationTest.cpp +++ b/Gems/LyShine/Code/Tests/AnimationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp b/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp index 49d095e09c..88a201231c 100644 --- a/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp +++ b/Gems/LyShine/Code/Tests/LyShineEditorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/LyShineTest.h b/Gems/LyShine/Code/Tests/LyShineTest.h index 3143fff487..fb4465e9d0 100644 --- a/Gems/LyShine/Code/Tests/LyShineTest.h +++ b/Gems/LyShine/Code/Tests/LyShineTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/Mocks/UiDynamicScrollBoxDataBusHandlerMock.h b/Gems/LyShine/Code/Tests/Mocks/UiDynamicScrollBoxDataBusHandlerMock.h index 178f64ea5c..009bb67999 100644 --- a/Gems/LyShine/Code/Tests/Mocks/UiDynamicScrollBoxDataBusHandlerMock.h +++ b/Gems/LyShine/Code/Tests/Mocks/UiDynamicScrollBoxDataBusHandlerMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/SerializationTest.cpp b/Gems/LyShine/Code/Tests/SerializationTest.cpp index e4f3016593..1d8b1094d2 100644 --- a/Gems/LyShine/Code/Tests/SerializationTest.cpp +++ b/Gems/LyShine/Code/Tests/SerializationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/SpriteTest.cpp b/Gems/LyShine/Code/Tests/SpriteTest.cpp index 58e1c2f1d8..4a97851d21 100644 --- a/Gems/LyShine/Code/Tests/SpriteTest.cpp +++ b/Gems/LyShine/Code/Tests/SpriteTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp b/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp index f8914fa548..1b46576195 100644 --- a/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp +++ b/Gems/LyShine/Code/Tests/TextInputComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp b/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp index 9bcc2b9832..c4d0177f2a 100644 --- a/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp +++ b/Gems/LyShine/Code/Tests/UiDynamicScrollBoxComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/UiScrollBarComponentTest.cpp b/Gems/LyShine/Code/Tests/UiScrollBarComponentTest.cpp index 6b425ca5cf..601906ecdb 100644 --- a/Gems/LyShine/Code/Tests/UiScrollBarComponentTest.cpp +++ b/Gems/LyShine/Code/Tests/UiScrollBarComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/Tests/UiTooltipComponentTest.cpp b/Gems/LyShine/Code/Tests/UiTooltipComponentTest.cpp index bc189e7221..76962fd318 100644 --- a/Gems/LyShine/Code/Tests/UiTooltipComponentTest.cpp +++ b/Gems/LyShine/Code/Tests/UiTooltipComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShine/Code/lyshine_common_module_files.cmake b/Gems/LyShine/Code/lyshine_common_module_files.cmake index 5b7edf44ed..e725112e53 100644 --- a/Gems/LyShine/Code/lyshine_common_module_files.cmake +++ b/Gems/LyShine/Code/lyshine_common_module_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/lyshine_editor_builder_files.cmake b/Gems/LyShine/Code/lyshine_editor_builder_files.cmake index 43204beaf8..29f31fbfb0 100644 --- a/Gems/LyShine/Code/lyshine_editor_builder_files.cmake +++ b/Gems/LyShine/Code/lyshine_editor_builder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/lyshine_editor_tests_files.cmake b/Gems/LyShine/Code/lyshine_editor_tests_files.cmake index aaf4478cdb..7d13daeff8 100644 --- a/Gems/LyShine/Code/lyshine_editor_tests_files.cmake +++ b/Gems/LyShine/Code/lyshine_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/lyshine_static_files.cmake b/Gems/LyShine/Code/lyshine_static_files.cmake index 54edd9dc43..8c2275ab92 100644 --- a/Gems/LyShine/Code/lyshine_static_files.cmake +++ b/Gems/LyShine/Code/lyshine_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/lyshine_tests_files.cmake b/Gems/LyShine/Code/lyshine_tests_files.cmake index 21c9f2e9d0..4e416934eb 100644 --- a/Gems/LyShine/Code/lyshine_tests_files.cmake +++ b/Gems/LyShine/Code/lyshine_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShine/Code/lyshine_uicanvaseditor_files.cmake b/Gems/LyShine/Code/lyshine_uicanvaseditor_files.cmake index e40e1a849e..84a5f560c7 100644 --- a/Gems/LyShine/Code/lyshine_uicanvaseditor_files.cmake +++ b/Gems/LyShine/Code/lyshine_uicanvaseditor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/ButtonAnimation.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/ButtonAnimation.lua index 09faaa0910..42222d6060 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/ButtonAnimation.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/ButtonAnimation.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/MultipleSequences.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/MultipleSequences.lua index 19e056b6cc..b92b37a4ce 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/MultipleSequences.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/MultipleSequences.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/SequenceStates.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/SequenceStates.lua index 0b22592ad9..a1f9fb2c65 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/SequenceStates.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Animation/SequenceStates.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/CppExample/LoadCppCanvas.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/CppExample/LoadCppCanvas.lua index a5d7adaa58..9fa428981c 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/CppExample/LoadCppCanvas.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/CppExample/LoadCppCanvas.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DisplayMouseCursor.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DisplayMouseCursor.lua index 4fa41dd5f3..db6f980fc4 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DisplayMouseCursor.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DisplayMouseCursor.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_ChildDropTarget.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_ChildDropTarget.lua index 0a2d392282..5610230a0d 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_ChildDropTarget.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_ChildDropTarget.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_Draggable.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_Draggable.lua index 4e896308ac..54ac41b884 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_Draggable.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_Draggable.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_EndDropTarget.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_EndDropTarget.lua index 9f2f67e921..ec187a5975 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_EndDropTarget.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_EndDropTarget.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_LayoutDropTarget.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_LayoutDropTarget.lua index 74731968fc..1b91308e9a 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_LayoutDropTarget.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/ChildDropTargets/ChildDropTargets_LayoutDropTarget.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableCrossCanvasElement.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableCrossCanvasElement.lua index db124afe87..27fc824d81 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableCrossCanvasElement.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableCrossCanvasElement.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableElement.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableElement.lua index b74aabfc28..0b38088f6a 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableElement.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableElement.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableStackingElement.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableStackingElement.lua index 3d4d5d9eae..5567d7b058 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableStackingElement.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DraggableStackingElement.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTarget.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTarget.lua index 56d0fc84df..9eafbbd624 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTarget.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTarget.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetCrossCanvas.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetCrossCanvas.lua index 2d3d14611a..bb5e0a9f43 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetCrossCanvas.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetCrossCanvas.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetStacking.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetStacking.lua index 9219cb0ff9..22a770b1f6 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetStacking.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/DragAndDrop/DropTargetStacking.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ColorBall.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ColorBall.lua index 21f82123e9..7323f2bb2c 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ColorBall.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ColorBall.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/CreateBall.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/CreateBall.lua index d4f897d9cf..05f9bdf2ab 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/CreateBall.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/CreateBall.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/DestroyBall.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/DestroyBall.lua index 4972e656fc..0d2478e613 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/DestroyBall.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/DestroyBall.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallDown.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallDown.lua index a78f411032..15070a54da 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallDown.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallDown.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallUp.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallUp.lua index dcbcbda576..ab62dce038 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallUp.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/MoveBallUp.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ResetBall.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ResetBall.lua index a20ee093b9..7d8fa8c423 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ResetBall.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/FunctionalityDropdown/ResetBall.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/MultiSelectionDropdown.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/MultiSelectionDropdown.lua index 8df639ac29..91309597f6 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/MultiSelectionDropdown.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/MultiSelectionDropdown.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownOption.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownOption.lua index 9aa10c2270..0d5521f373 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownOption.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownOption.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownSelectedOption.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownSelectedOption.lua index 6027346012..b10f3c7e98 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownSelectedOption.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dropdown/SelectionDropdownSelectedOption.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutColumn.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutColumn.lua index 24849a226a..5e5d3dcdef 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutColumn.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutColumn.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutGrid.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutGrid.lua index 8e14129931..a6674e6a15 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutGrid.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicLayoutGrid.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSize.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSize.lua index 38c6e356ce..ad180c9a40 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSize.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSize.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSizeWithSections.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSizeWithSections.lua index 096230980e..a4c46f36d0 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSizeWithSections.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicSBVariableSizeWithSections.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicScrollBox.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicScrollBox.lua index 8fddaecf3b..7be5c7c5e8 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicScrollBox.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Dynamic/DynamicScrollBox.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeButton.lua index 9d47755182..61c95cdc1a 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeSlider.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeSlider.lua index bb49c6945d..3874114eba 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeSlider.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Fader/FadeSlider.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Flipbook/Flipbook.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Flipbook/Flipbook.lua index 554e031e77..e01825578a 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Flipbook/Flipbook.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Flipbook/Flipbook.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/HideThisElementButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/HideThisElementButton.lua index be19f715ed..ed7a03a1a5 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/HideThisElementButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/HideThisElementButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageFillTypes.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageFillTypes.lua index 949ddfe2ae..96c0aba450 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageFillTypes.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageFillTypes.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageTypes.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageTypes.lua index ab0284cd68..5454d04f27 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageTypes.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/ImageTypes.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/Spritesheet.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/Spritesheet.lua index 3ad6109134..0ae4d5c0ce 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/Spritesheet.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Image/Spritesheet.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ResetSizes.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ResetSizes.lua index 7e720c50e8..cbef0afb33 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ResetSizes.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ResetSizes.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ScaleToTarget.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ScaleToTarget.lua index 9ca971f41f..8fe02a3a7a 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ScaleToTarget.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ScaleToTarget.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleHorizontalFitRecursive.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleHorizontalFitRecursive.lua index 9bf59b4bde..56b5d07885 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleHorizontalFitRecursive.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleHorizontalFitRecursive.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleVerticalFitRecursive.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleVerticalFitRecursive.lua index a469c57075..ed350e1392 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleVerticalFitRecursive.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Layout/ToggleVerticalFitRecursive.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadCanvasButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadCanvasButton.lua index 08099d4875..ced20308c1 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadCanvasButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadCanvasButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadUnloadCanvasButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadUnloadCanvasButton.lua index 38bea445c3..8403d10984 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadUnloadCanvasButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/LoadUnloadCanvasButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Localization/ScrollingScrollBox.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Localization/ScrollingScrollBox.lua index 1fc9d7c754..172c70fb9f 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Localization/ScrollingScrollBox.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Localization/ScrollingScrollBox.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/ChildMaskElement.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/ChildMaskElement.lua index b1ac8b4371..9df4e50fe1 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/ChildMaskElement.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/ChildMaskElement.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetElementEnabledCheckbox.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetElementEnabledCheckbox.lua index 969ab4b072..294e72e779 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetElementEnabledCheckbox.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetElementEnabledCheckbox.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetUseAlphaGradientCheckbox.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetUseAlphaGradientCheckbox.lua index 91c16d102a..d51d8f0686 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetUseAlphaGradientCheckbox.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Mask/SetUseAlphaGradientCheckbox.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/NextCanvasButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/NextCanvasButton.lua index 63b2ad8848..09df36dcbf 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/NextCanvasButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/NextCanvasButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ParticleEmitter/ParticleTrailButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ParticleEmitter/ParticleTrailButton.lua index 595fe1731f..7173aa7796 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ParticleEmitter/ParticleTrailButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ParticleEmitter/ParticleTrailButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Performance/DrawCalls.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Performance/DrawCalls.lua index 31a76297f9..bf8092c42d 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Performance/DrawCalls.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Performance/DrawCalls.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/RadioButton/SwitchGroup.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/RadioButton/SwitchGroup.lua index dc09873303..edfae5c9c8 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/RadioButton/SwitchGroup.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/RadioButton/SwitchGroup.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ChangeValues.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ChangeValues.lua index 1859dbe145..451ebdc6e7 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ChangeValues.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ChangeValues.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ZoomSlider.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ZoomSlider.lua index 6c41143d77..bb0a88fffb 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ZoomSlider.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ScrollBar/ZoomSlider.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SetTextFromInput.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SetTextFromInput.lua index 68642bc346..d238399155 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SetTextFromInput.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SetTextFromInput.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ShowAndInputEnableElementButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ShowAndInputEnableElementButton.lua index 2abc2a808b..bfde53c831 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ShowAndInputEnableElementButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ShowAndInputEnableElementButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SliderWithButtons.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SliderWithButtons.lua index b3ce831cfd..d50ede33d0 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SliderWithButtons.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/SliderWithButtons.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/DeleteElements.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/DeleteElements.lua index 13f5ac5a2e..9e47a0e2cc 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/DeleteElements.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/DeleteElements.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/RadioButtonSpawner.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/RadioButtonSpawner.lua index b258c8db74..cde1211cf6 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/RadioButtonSpawner.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/RadioButtonSpawner.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/Spawn3Elements.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/Spawn3Elements.lua index d423610855..3cfc779586 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/Spawn3Elements.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/Spawn3Elements.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/SpawnElements.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/SpawnElements.lua index 8ff7172506..7fcd4fddfb 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/SpawnElements.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Spawner/SpawnElements.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/FontSizeSlider.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/FontSizeSlider.lua index 3ba34c753d..98a8346f05 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/FontSizeSlider.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/FontSizeSlider.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ImageMarkup.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ImageMarkup.lua index 1a976d3fd9..258af35bb6 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ImageMarkup.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ImageMarkup.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/MarkupCheckBox.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/MarkupCheckBox.lua index 858e4dc6d9..5d79b007b9 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/MarkupCheckBox.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/MarkupCheckBox.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowModeDropdown.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowModeDropdown.lua index ecacc7035e..a37fcda884 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowModeDropdown.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowModeDropdown.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowTextAnimate.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowTextAnimate.lua index 21c8f0ff3f..e232a18d98 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowTextAnimate.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/OverflowTextAnimate.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/PlayAnimationOnStart.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/PlayAnimationOnStart.lua index f04b105387..1258b86ea6 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/PlayAnimationOnStart.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/PlayAnimationOnStart.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ShrinkToFitDropdown.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ShrinkToFitDropdown.lua index 452a5198c6..3f6b2da738 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ShrinkToFitDropdown.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/ShrinkToFitDropdown.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/StylingMarkupLinkText.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/StylingMarkupLinkText.lua index 27cf2b66df..23aaf5034e 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/StylingMarkupLinkText.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/StylingMarkupLinkText.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/WrapTextDropdown.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/WrapTextDropdown.lua index b3c8db91f5..6b546942bf 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/WrapTextDropdown.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Text/WrapTextDropdown.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInputEnabledOnElementChildren.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInputEnabledOnElementChildren.lua index bdcd546149..1d3259720c 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInputEnabledOnElementChildren.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInputEnabledOnElementChildren.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInteractionMaskingOnElementChildren.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInteractionMaskingOnElementChildren.lua index 6c31740800..fbe8c301a4 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInteractionMaskingOnElementChildren.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleInteractionMaskingOnElementChildren.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleMaskingOnElementChildren.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleMaskingOnElementChildren.lua index 0cde084cba..310a1d5388 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleMaskingOnElementChildren.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/ToggleMaskingOnElementChildren.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/Styles.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/Styles.lua index b30187ff40..a6cda10309 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/Styles.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/Styles.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/TextOptions.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/TextOptions.lua index 447343df57..43cc804cdd 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/TextOptions.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/Tooltips/TextOptions.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/UnloadThisCanvasButton.lua b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/UnloadThisCanvasButton.lua index 29d6156bfb..64fcfbc5fc 100644 --- a/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/UnloadThisCanvasButton.lua +++ b/Gems/LyShineExamples/Assets/UI/Scripts/LyShineExamples/UnloadThisCanvasButton.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/LyShineExamples/CMakeLists.txt b/Gems/LyShineExamples/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/LyShineExamples/CMakeLists.txt +++ b/Gems/LyShineExamples/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShineExamples/Code/CMakeLists.txt b/Gems/LyShineExamples/Code/CMakeLists.txt index 5e8c03cb42..9bd203f186 100644 --- a/Gems/LyShineExamples/Code/CMakeLists.txt +++ b/Gems/LyShineExamples/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesBus.h b/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesBus.h index 17031878ae..9db1904d7c 100644 --- a/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesBus.h +++ b/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesCppExampleBus.h b/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesCppExampleBus.h index 189603b76c..1036ca23fc 100644 --- a/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesCppExampleBus.h +++ b/Gems/LyShineExamples/Code/Include/LyShineExamples/LyShineExamplesCppExampleBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Include/LyShineExamples/UiCustomImageBus.h b/Gems/LyShineExamples/Code/Include/LyShineExamples/UiCustomImageBus.h index 693f586003..7a1eda3991 100644 --- a/Gems/LyShineExamples/Code/Include/LyShineExamples/UiCustomImageBus.h +++ b/Gems/LyShineExamples/Code/Include/LyShineExamples/UiCustomImageBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Include/LyShineExamples/UiDynamicContentDatabaseBus.h b/Gems/LyShineExamples/Code/Include/LyShineExamples/UiDynamicContentDatabaseBus.h index 53f326e76e..4c50963d91 100644 --- a/Gems/LyShineExamples/Code/Include/LyShineExamples/UiDynamicContentDatabaseBus.h +++ b/Gems/LyShineExamples/Code/Include/LyShineExamples/UiDynamicContentDatabaseBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.cpp b/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.cpp index 2808eb3e52..e3abc6efa6 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.cpp +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.h b/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.h index b1aee565d4..068aa39a4c 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.h +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesCppExample.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesInternalBus.h b/Gems/LyShineExamples/Code/Source/LyShineExamplesInternalBus.h index 74cd7f0432..e2f712bee5 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesInternalBus.h +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesInternalBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesModule.cpp b/Gems/LyShineExamples/Code/Source/LyShineExamplesModule.cpp index df78ce99ac..8cc9f22c96 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesModule.cpp +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.cpp b/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.cpp index 8d4e59d9d5..314b013a16 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.cpp +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.h b/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.h index f036d0ad6e..6dd76d4b94 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.h +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesSerialize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.cpp b/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.cpp index 51e4c1c759..bbcef6fb12 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.cpp +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.h b/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.h index b3fd4fe39d..3838a8f299 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.h +++ b/Gems/LyShineExamples/Code/Source/LyShineExamplesSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/LyShineExamples_precompiled.h b/Gems/LyShineExamples/Code/Source/LyShineExamples_precompiled.h index 8d99a0243c..eefa26c318 100644 --- a/Gems/LyShineExamples/Code/Source/LyShineExamples_precompiled.h +++ b/Gems/LyShineExamples/Code/Source/LyShineExamples_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.cpp b/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.cpp index c2ea277540..40166951a3 100644 --- a/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.cpp +++ b/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h b/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h index be8418a60c..0dd72180c2 100644 --- a/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h +++ b/Gems/LyShineExamples/Code/Source/UiCustomImageComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.cpp b/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.cpp index 14131faf23..9eb5163945 100644 --- a/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.cpp +++ b/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.h b/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.h index addc7bd7d2..9e6ece3072 100644 --- a/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.h +++ b/Gems/LyShineExamples/Code/Source/UiDynamicContentDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.cpp b/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.cpp index 2410e30b16..cd370957fc 100644 --- a/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.cpp +++ b/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.h b/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.h index c67b9dfe32..9e7333b7b0 100644 --- a/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.h +++ b/Gems/LyShineExamples/Code/Source/UiTestScrollBoxDataProviderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/LyShineExamples/Code/lyshineexamples_files.cmake b/Gems/LyShineExamples/Code/lyshineexamples_files.cmake index ee71718159..39cd168256 100644 --- a/Gems/LyShineExamples/Code/lyshineexamples_files.cmake +++ b/Gems/LyShineExamples/Code/lyshineexamples_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/LyShineExamples/Code/lyshineexamples_shared_files.cmake b/Gems/LyShineExamples/Code/lyshineexamples_shared_files.cmake index f176d3428a..00768127ee 100644 --- a/Gems/LyShineExamples/Code/lyshineexamples_shared_files.cmake +++ b/Gems/LyShineExamples/Code/lyshineexamples_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Maestro/CMakeLists.txt b/Gems/Maestro/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Maestro/CMakeLists.txt +++ b/Gems/Maestro/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Maestro/Code/CMakeLists.txt b/Gems/Maestro/Code/CMakeLists.txt index 2f5a3c079b..f9de0c6a4b 100644 --- a/Gems/Maestro/Code/CMakeLists.txt +++ b/Gems/Maestro/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Maestro/Code/Include/Maestro/MaestroBus.h b/Gems/Maestro/Code/Include/Maestro/MaestroBus.h index 0dc2e61e37..738cc20554 100644 --- a/Gems/Maestro/Code/Include/Maestro/MaestroBus.h +++ b/Gems/Maestro/Code/Include/Maestro/MaestroBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/2DSpline.h b/Gems/Maestro/Code/Source/Cinematics/2DSpline.h index eeaa65814b..7bec08dffd 100644 --- a/Gems/Maestro/Code/Source/Cinematics/2DSpline.h +++ b/Gems/Maestro/Code/Source/Cinematics/2DSpline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.cpp index 4aa2bf5727..e68aa05591 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.h b/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.h index 98050c7da5..e1126ab862 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimAZEntityNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.cpp index 7051ea8495..473c8bd1c0 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h b/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h index a0bb75d72b..ab742025cb 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimComponentNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp index 4ab0fc7eb8..a66f495d91 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimNode.h b/Gems/Maestro/Code/Source/Cinematics/AnimNode.h index 90f9a0164b..4b5c465ed9 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.cpp index 810ae3c9a7..b0a2219a23 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.h b/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.h index 83ca8ba145..fd3838828c 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimNodeGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp index 6684d1994f..bd330b7151 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.h b/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.h index 18fa159b86..6f6be5da0c 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimPostFXNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp index dec9a47fd8..6169f62b46 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.h b/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.h index 51e79be318..ac12a76ff9 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimScreenFaderNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSequence.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimSequence.cpp index 83b6c533ba..a9bd0d2657 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSequence.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSequence.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h b/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h index c6bbf592f1..234ea760a0 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSequence.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.cpp index e5ec12626e..85e21ef930 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.h b/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.h index 93e39403a7..514c680ecc 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.cpp index f1c11e94b9..9f0ff079a1 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h index b60f5d0045..1d0ecd5f5d 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_FloatSpecialization.h b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_FloatSpecialization.h index 5b929cfa70..5240094a58 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_FloatSpecialization.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_FloatSpecialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_QuatSpecialization.h b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_QuatSpecialization.h index 58791b38f5..8e7e9d19de 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_QuatSpecialization.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_QuatSpecialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec2Specialization.h b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec2Specialization.h index 99a6c7eae5..6d3b70d0ef 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec2Specialization.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec2Specialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec3Specialization.h b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec3Specialization.h index 2c1c850cb2..0f7d4cffe2 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec3Specialization.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimSplineTrack_Vec3Specialization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/AnimTrack.cpp index 39fcfa7db7..e476b319b6 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AnimTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h b/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h index 3c99099aa2..707a95ff3d 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/AnimTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.cpp index 3f5fce86a9..af2fd89671 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.h b/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.h index 57236823b2..55a446f3a8 100644 --- a/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/AssetBlendTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/BoolTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/BoolTrack.cpp index d78ae28765..353438fd54 100644 --- a/Gems/Maestro/Code/Source/Cinematics/BoolTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/BoolTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/BoolTrack.h b/Gems/Maestro/Code/Source/Cinematics/BoolTrack.h index 4fac733e3b..1dae265309 100644 --- a/Gems/Maestro/Code/Source/Cinematics/BoolTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/BoolTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CVarNode.cpp b/Gems/Maestro/Code/Source/Cinematics/CVarNode.cpp index 800a600edc..92576b86a4 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CVarNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CVarNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CVarNode.h b/Gems/Maestro/Code/Source/Cinematics/CVarNode.h index d1607ac7d5..7aa9d0f1a0 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CVarNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/CVarNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.cpp index 757b4f2e3e..d7c259edee 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.h b/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.h index f931682be5..a6e6edc35b 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/CaptureTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.cpp index e1530d05f3..423d86cde6 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.h b/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.h index 9f32b8d908..72df0f1cea 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/CharacterTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.cpp b/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.cpp index 965a46d43f..362ae57d16 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.h b/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.h index 390ebd5d4b..05b1c358b0 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.h +++ b/Gems/Maestro/Code/Source/Cinematics/CharacterTrackAnimator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp b/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp index 0d12c7d75b..67a6f506e0 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CommentNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CommentNode.h b/Gems/Maestro/Code/Source/Cinematics/CommentNode.h index c401bb1cb3..0fda85ca13 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CommentNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/CommentNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CommentTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/CommentTrack.cpp index 477bbd6192..4dabf9659d 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CommentTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CommentTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CommentTrack.h b/Gems/Maestro/Code/Source/Cinematics/CommentTrack.h index 6c7197bf82..0a58cca9b7 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CommentTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/CommentTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp index 863d137079..45f5b29a5c 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h index d52c79e895..0714b9e904 100644 --- a/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/CompoundSplineTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.cpp index 7f78e938b5..fbcdce2a21 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.h b/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.h index 7474d7d6dc..434b9e110f 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/ConsoleTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/EventNode.cpp b/Gems/Maestro/Code/Source/Cinematics/EventNode.cpp index bad4de89a9..5545ecc2be 100644 --- a/Gems/Maestro/Code/Source/Cinematics/EventNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/EventNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/EventNode.h b/Gems/Maestro/Code/Source/Cinematics/EventNode.h index 671df5ec68..615e16e463 100644 --- a/Gems/Maestro/Code/Source/Cinematics/EventNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/EventNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/EventTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/EventTrack.cpp index 5110929a18..fa2add2b86 100644 --- a/Gems/Maestro/Code/Source/Cinematics/EventTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/EventTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/EventTrack.h b/Gems/Maestro/Code/Source/Cinematics/EventTrack.h index b4c7fa7b1c..a1e3bc7fb6 100644 --- a/Gems/Maestro/Code/Source/Cinematics/EventTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/EventTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/GotoTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/GotoTrack.cpp index a96098bffa..eed780c6c3 100644 --- a/Gems/Maestro/Code/Source/Cinematics/GotoTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/GotoTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/GotoTrack.h b/Gems/Maestro/Code/Source/Cinematics/GotoTrack.h index 6c380509df..bfdd9e9ebb 100644 --- a/Gems/Maestro/Code/Source/Cinematics/GotoTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/GotoTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp b/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp index c326c067db..4116794752 100644 --- a/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/LayerNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/LayerNode.h b/Gems/Maestro/Code/Source/Cinematics/LayerNode.h index 4cd18e068d..ec27295011 100644 --- a/Gems/Maestro/Code/Source/Cinematics/LayerNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/LayerNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.cpp index db77c8ec3f..7786e70c9e 100644 --- a/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.h b/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.h index ecca881cf6..ab393b7842 100644 --- a/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/LookAtTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/Maestro_precompiled.h b/Gems/Maestro/Code/Source/Cinematics/Maestro_precompiled.h index 3ee47e0684..0a03bbda40 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Maestro_precompiled.h +++ b/Gems/Maestro/Code/Source/Cinematics/Maestro_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp index 11897c135f..fe6cfe9243 100644 --- a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h index 83b0fd502c..6568e61888 100644 --- a/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/MaterialNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/Movie.cpp b/Gems/Maestro/Code/Source/Cinematics/Movie.cpp index d3a5fa83f5..9430e7f769 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Movie.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/Movie.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/Movie.h b/Gems/Maestro/Code/Source/Cinematics/Movie.h index 22da087766..c544bc3d19 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Movie.h +++ b/Gems/Maestro/Code/Source/Cinematics/Movie.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp b/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp index 6bc5655c3a..4c615b052e 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/SceneNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SceneNode.h b/Gems/Maestro/Code/Source/Cinematics/SceneNode.h index 3e23322d7f..7a3994a9c3 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SceneNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/SceneNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp index 18f998c288..2da693ff56 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.h b/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.h index 7f9a953375..ac2149b9c4 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/ScreenFaderTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.cpp b/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.cpp index 04c96d04b7..cef12ab1c8 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.h b/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.h index 51c80187bd..db454c2d27 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/ScriptVarNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SelectTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/SelectTrack.cpp index ca6f9fec84..ea42e17ac2 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SelectTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/SelectTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SelectTrack.h b/Gems/Maestro/Code/Source/Cinematics/SelectTrack.h index 17f542940e..b3f10d19d8 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SelectTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/SelectTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.cpp index 33a6145953..2409426bb4 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.h b/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.h index 9f8f31f3d3..2b1670c932 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/SequenceTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp b/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp index 8ac69117e2..28c6cbc083 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.h b/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.h index 201c6e59de..56af3e5e6e 100644 --- a/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.h +++ b/Gems/Maestro/Code/Source/Cinematics/ShadowsSetupNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SoundTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/SoundTrack.cpp index ea6746a987..0e8027be2b 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SoundTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/SoundTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h b/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h index ea61081112..8b062ae14b 100644 --- a/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/SoundTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/TCBSpline.h b/Gems/Maestro/Code/Source/Cinematics/TCBSpline.h index 1f57ff006f..dbbc9fdc47 100644 --- a/Gems/Maestro/Code/Source/Cinematics/TCBSpline.h +++ b/Gems/Maestro/Code/Source/Cinematics/TCBSpline.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp b/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp index 34f22f55a6..de227a6435 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/Tests/AssetBlendTrackTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp b/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp index d926eacc0c..2f089a4316 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/Tests/EntityNodeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/Tests/test_Main.cpp b/Gems/Maestro/Code/Source/Cinematics/Tests/test_Main.cpp index 291afcbdf6..de8f7a004b 100644 --- a/Gems/Maestro/Code/Source/Cinematics/Tests/test_Main.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.cpp index 6dd70bc042..9f73efb436 100644 --- a/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.h b/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.h index 8f2bd218e7..1e3fe3340f 100644 --- a/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/TimeRangesTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.cpp b/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.cpp index 30517eb6fb..3cf01f9781 100644 --- a/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.cpp +++ b/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h b/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h index 2037e60912..78a68882e7 100644 --- a/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h +++ b/Gems/Maestro/Code/Source/Cinematics/TrackEventTrack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Cinematics/resource.h b/Gems/Maestro/Code/Source/Cinematics/resource.h index 23a9212b5f..bcc8d1d6b0 100644 --- a/Gems/Maestro/Code/Source/Cinematics/resource.h +++ b/Gems/Maestro/Code/Source/Cinematics/resource.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp index 1e78fbc511..dceeac3238 100644 --- a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.h b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.h index 01469f929a..0e55065707 100644 --- a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.h +++ b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp b/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp index b60391eddd..e62d801cf6 100644 --- a/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.h b/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.h index d1613248ff..8940363076 100644 --- a/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.h +++ b/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/SequenceAgent.cpp b/Gems/Maestro/Code/Source/Components/SequenceAgent.cpp index 840cc3fb85..282b064ba1 100644 --- a/Gems/Maestro/Code/Source/Components/SequenceAgent.cpp +++ b/Gems/Maestro/Code/Source/Components/SequenceAgent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/SequenceAgent.h b/Gems/Maestro/Code/Source/Components/SequenceAgent.h index f6bdefa47a..32a3c99dd4 100644 --- a/Gems/Maestro/Code/Source/Components/SequenceAgent.h +++ b/Gems/Maestro/Code/Source/Components/SequenceAgent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp b/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp index 363d23906c..350b33e35b 100644 --- a/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.h b/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.h index a737f04a00..b5f0e26b7b 100644 --- a/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.h +++ b/Gems/Maestro/Code/Source/Components/SequenceAgentComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/SequenceComponent.cpp b/Gems/Maestro/Code/Source/Components/SequenceComponent.cpp index 79be7daea1..595eab9ede 100644 --- a/Gems/Maestro/Code/Source/Components/SequenceComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/SequenceComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Components/SequenceComponent.h b/Gems/Maestro/Code/Source/Components/SequenceComponent.h index 93c539d8df..b90af71761 100644 --- a/Gems/Maestro/Code/Source/Components/SequenceComponent.h +++ b/Gems/Maestro/Code/Source/Components/SequenceComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/MaestroModule.cpp b/Gems/Maestro/Code/Source/MaestroModule.cpp index 224f500909..42cabf06ad 100644 --- a/Gems/Maestro/Code/Source/MaestroModule.cpp +++ b/Gems/Maestro/Code/Source/MaestroModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/MaestroSystemComponent.cpp b/Gems/Maestro/Code/Source/MaestroSystemComponent.cpp index 358c7d6a2c..ec74dec358 100644 --- a/Gems/Maestro/Code/Source/MaestroSystemComponent.cpp +++ b/Gems/Maestro/Code/Source/MaestroSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/MaestroSystemComponent.h b/Gems/Maestro/Code/Source/MaestroSystemComponent.h index 3e7ec0c294..4c09dab483 100644 --- a/Gems/Maestro/Code/Source/MaestroSystemComponent.h +++ b/Gems/Maestro/Code/Source/MaestroSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Source/Maestro_precompiled.h b/Gems/Maestro/Code/Source/Maestro_precompiled.h index 3e377e10c6..342c8015e9 100644 --- a/Gems/Maestro/Code/Source/Maestro_precompiled.h +++ b/Gems/Maestro/Code/Source/Maestro_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Tests/MaestroTest.cpp b/Gems/Maestro/Code/Tests/MaestroTest.cpp index 78291a916b..bbdb9b0d06 100644 --- a/Gems/Maestro/Code/Tests/MaestroTest.cpp +++ b/Gems/Maestro/Code/Tests/MaestroTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Tests/Tracks/AnimTrackTest.cpp b/Gems/Maestro/Code/Tests/Tracks/AnimTrackTest.cpp index ca44a8af81..6275eb3358 100644 --- a/Gems/Maestro/Code/Tests/Tracks/AnimTrackTest.cpp +++ b/Gems/Maestro/Code/Tests/Tracks/AnimTrackTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/Tests/Tracks/BoolTrackTest.cpp b/Gems/Maestro/Code/Tests/Tracks/BoolTrackTest.cpp index 6279e113ec..d44da5752b 100644 --- a/Gems/Maestro/Code/Tests/Tracks/BoolTrackTest.cpp +++ b/Gems/Maestro/Code/Tests/Tracks/BoolTrackTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Maestro/Code/maestro_editor_files.cmake b/Gems/Maestro/Code/maestro_editor_files.cmake index ca10122668..21e3ebe1e0 100644 --- a/Gems/Maestro/Code/maestro_editor_files.cmake +++ b/Gems/Maestro/Code/maestro_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Maestro/Code/maestro_files.cmake b/Gems/Maestro/Code/maestro_files.cmake index 989197f2ee..0c101a0301 100644 --- a/Gems/Maestro/Code/maestro_files.cmake +++ b/Gems/Maestro/Code/maestro_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Maestro/Code/maestro_static_files.cmake b/Gems/Maestro/Code/maestro_static_files.cmake index 918917364a..a83a703421 100644 --- a/Gems/Maestro/Code/maestro_static_files.cmake +++ b/Gems/Maestro/Code/maestro_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Maestro/Code/maestro_tests_files.cmake b/Gems/Maestro/Code/maestro_tests_files.cmake index 43b8a79b05..c73d218c8d 100644 --- a/Gems/Maestro/Code/maestro_tests_files.cmake +++ b/Gems/Maestro/Code/maestro_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MessagePopup/CMakeLists.txt b/Gems/MessagePopup/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/MessagePopup/CMakeLists.txt +++ b/Gems/MessagePopup/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MessagePopup/Code/CMakeLists.txt b/Gems/MessagePopup/Code/CMakeLists.txt index cece6ef084..05314dc746 100644 --- a/Gems/MessagePopup/Code/CMakeLists.txt +++ b/Gems/MessagePopup/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MessagePopup/Code/Include/MessagePopup/MessagePopupBus.h b/Gems/MessagePopup/Code/Include/MessagePopup/MessagePopupBus.h index 7950dc9534..97c99849b7 100644 --- a/Gems/MessagePopup/Code/Include/MessagePopup/MessagePopupBus.h +++ b/Gems/MessagePopup/Code/Include/MessagePopup/MessagePopupBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/LyShineMessagePopup.cpp b/Gems/MessagePopup/Code/Source/LyShineMessagePopup.cpp index cdb682d13e..1a8f570905 100644 --- a/Gems/MessagePopup/Code/Source/LyShineMessagePopup.cpp +++ b/Gems/MessagePopup/Code/Source/LyShineMessagePopup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/LyShineMessagePopup.h b/Gems/MessagePopup/Code/Source/LyShineMessagePopup.h index ac1e63cd45..add094346d 100644 --- a/Gems/MessagePopup/Code/Source/LyShineMessagePopup.h +++ b/Gems/MessagePopup/Code/Source/LyShineMessagePopup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/MessagePopupManager.cpp b/Gems/MessagePopup/Code/Source/MessagePopupManager.cpp index 82c7cb31f8..1144815ecc 100644 --- a/Gems/MessagePopup/Code/Source/MessagePopupManager.cpp +++ b/Gems/MessagePopup/Code/Source/MessagePopupManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/MessagePopupManager.h b/Gems/MessagePopup/Code/Source/MessagePopupManager.h index 8a79bfedbe..8a3609be8f 100644 --- a/Gems/MessagePopup/Code/Source/MessagePopupManager.h +++ b/Gems/MessagePopup/Code/Source/MessagePopupManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/MessagePopupModule.cpp b/Gems/MessagePopup/Code/Source/MessagePopupModule.cpp index 66073ffbae..c98e2ba7b1 100644 --- a/Gems/MessagePopup/Code/Source/MessagePopupModule.cpp +++ b/Gems/MessagePopup/Code/Source/MessagePopupModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.cpp b/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.cpp index a0d7ecb187..5723db90d7 100644 --- a/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.cpp +++ b/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.h b/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.h index b1cb38b5ae..a5411a124d 100644 --- a/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.h +++ b/Gems/MessagePopup/Code/Source/MessagePopupSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/Source/MessagePopup_precompiled.h b/Gems/MessagePopup/Code/Source/MessagePopup_precompiled.h index 8d99a0243c..eefa26c318 100644 --- a/Gems/MessagePopup/Code/Source/MessagePopup_precompiled.h +++ b/Gems/MessagePopup/Code/Source/MessagePopup_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MessagePopup/Code/messagepopup_files.cmake b/Gems/MessagePopup/Code/messagepopup_files.cmake index ee5748771c..7d0bb37f7e 100644 --- a/Gems/MessagePopup/Code/messagepopup_files.cmake +++ b/Gems/MessagePopup/Code/messagepopup_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MessagePopup/Code/messagepopup_shared_files.cmake b/Gems/MessagePopup/Code/messagepopup_shared_files.cmake index eb06b419dd..583a5c2e51 100644 --- a/Gems/MessagePopup/Code/messagepopup_shared_files.cmake +++ b/Gems/MessagePopup/Code/messagepopup_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/CMakeLists.txt b/Gems/Metastream/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Metastream/CMakeLists.txt +++ b/Gems/Metastream/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/CMakeLists.txt b/Gems/Metastream/Code/CMakeLists.txt index 78c7599871..1d97582fdf 100644 --- a/Gems/Metastream/Code/CMakeLists.txt +++ b/Gems/Metastream/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Include/Metastream/MetastreamBus.h b/Gems/Metastream/Code/Include/Metastream/MetastreamBus.h index ce5874bb6b..cc030738ce 100644 --- a/Gems/Metastream/Code/Include/Metastream/MetastreamBus.h +++ b/Gems/Metastream/Code/Include/Metastream/MetastreamBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/BaseHttpServer.cpp b/Gems/Metastream/Code/Source/BaseHttpServer.cpp index 6ed385be25..8d61da64a8 100644 --- a/Gems/Metastream/Code/Source/BaseHttpServer.cpp +++ b/Gems/Metastream/Code/Source/BaseHttpServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/BaseHttpServer.h b/Gems/Metastream/Code/Source/BaseHttpServer.h index 032baff861..a92e33f63a 100644 --- a/Gems/Metastream/Code/Source/BaseHttpServer.h +++ b/Gems/Metastream/Code/Source/BaseHttpServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/CivetHttpServer.cpp b/Gems/Metastream/Code/Source/CivetHttpServer.cpp index ff3c8a64d7..904a0c57e7 100644 --- a/Gems/Metastream/Code/Source/CivetHttpServer.cpp +++ b/Gems/Metastream/Code/Source/CivetHttpServer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/CivetHttpServer.h b/Gems/Metastream/Code/Source/CivetHttpServer.h index f8b2a215d0..cba7569e7c 100644 --- a/Gems/Metastream/Code/Source/CivetHttpServer.h +++ b/Gems/Metastream/Code/Source/CivetHttpServer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/DataCache.cpp b/Gems/Metastream/Code/Source/DataCache.cpp index d75216550c..c5c80f32bd 100644 --- a/Gems/Metastream/Code/Source/DataCache.cpp +++ b/Gems/Metastream/Code/Source/DataCache.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/DataCache.h b/Gems/Metastream/Code/Source/DataCache.h index 10feaee2e3..1c57fc66c6 100644 --- a/Gems/Metastream/Code/Source/DataCache.h +++ b/Gems/Metastream/Code/Source/DataCache.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/MetastreamGem.cpp b/Gems/Metastream/Code/Source/MetastreamGem.cpp index d4f6c46c61..72541e508c 100644 --- a/Gems/Metastream/Code/Source/MetastreamGem.cpp +++ b/Gems/Metastream/Code/Source/MetastreamGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/MetastreamGem.h b/Gems/Metastream/Code/Source/MetastreamGem.h index a8729b7f56..7cd246b804 100644 --- a/Gems/Metastream/Code/Source/MetastreamGem.h +++ b/Gems/Metastream/Code/Source/MetastreamGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Metastream_precompiled.h b/Gems/Metastream/Code/Source/Metastream_precompiled.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Metastream/Code/Source/Metastream_precompiled.h +++ b/Gems/Metastream/Code/Source/Metastream_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Android.h b/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Android.h index 3e5aeaf178..92459b6d2c 100644 --- a/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Android.h +++ b/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Platform.h b/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Platform.h index fb8577c8c8..0b7cf564a1 100644 --- a/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Platform.h +++ b/Gems/Metastream/Code/Source/Platform/Android/Metastream_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Android/metastream_android.cmake b/Gems/Metastream/Code/Source/Platform/Android/metastream_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Metastream/Code/Source/Platform/Android/metastream_android.cmake +++ b/Gems/Metastream/Code/Source/Platform/Android/metastream_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Metastream/Code/Source/Platform/Android/platform_android_files.cmake index f85cb2ba1b..876dfc2de7 100644 --- a/Gems/Metastream/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Metastream/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Common/Clang/metastream_clang.cmake b/Gems/Metastream/Code/Source/Platform/Common/Clang/metastream_clang.cmake index d218d0e687..389f9fcf16 100644 --- a/Gems/Metastream/Code/Source/Platform/Common/Clang/metastream_clang.cmake +++ b/Gems/Metastream/Code/Source/Platform/Common/Clang/metastream_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Common/MSVC/metastream_msvc.cmake b/Gems/Metastream/Code/Source/Platform/Common/MSVC/metastream_msvc.cmake index 7140547e45..749ffb12bc 100644 --- a/Gems/Metastream/Code/Source/Platform/Common/MSVC/metastream_msvc.cmake +++ b/Gems/Metastream/Code/Source/Platform/Common/MSVC/metastream_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Linux.h b/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Linux.h index 3e5aeaf178..92459b6d2c 100644 --- a/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Linux.h +++ b/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Platform.h b/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Platform.h index d490420231..836940eda9 100644 --- a/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Platform.h +++ b/Gems/Metastream/Code/Source/Platform/Linux/Metastream_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Linux/metastream_linux.cmake b/Gems/Metastream/Code/Source/Platform/Linux/metastream_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Metastream/Code/Source/Platform/Linux/metastream_linux.cmake +++ b/Gems/Metastream/Code/Source/Platform/Linux/metastream_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Metastream/Code/Source/Platform/Linux/platform_linux_files.cmake index 80cf2105d5..ae2b767dbe 100644 --- a/Gems/Metastream/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Metastream/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Mac.h b/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Mac.h index 3e5aeaf178..92459b6d2c 100644 --- a/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Mac.h +++ b/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Platform.h b/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Platform.h index 88e78869c2..caf2c397ad 100644 --- a/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Platform.h +++ b/Gems/Metastream/Code/Source/Platform/Mac/Metastream_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Mac/metastream_mac.cmake b/Gems/Metastream/Code/Source/Platform/Mac/metastream_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Metastream/Code/Source/Platform/Mac/metastream_mac.cmake +++ b/Gems/Metastream/Code/Source/Platform/Mac/metastream_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Metastream/Code/Source/Platform/Mac/platform_mac_files.cmake index 10bfa7af99..75d85294e5 100644 --- a/Gems/Metastream/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Metastream/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Platform.h b/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Platform.h index 76e9f8eb26..6436c38c90 100644 --- a/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Platform.h +++ b/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Windows.h b/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Windows.h index a32aa977d1..39e1cb7a3a 100644 --- a/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Windows.h +++ b/Gems/Metastream/Code/Source/Platform/Windows/Metastream_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/Windows/metastream_windows.cmake b/Gems/Metastream/Code/Source/Platform/Windows/metastream_windows.cmake index 521f51d687..c2cb0a1575 100644 --- a/Gems/Metastream/Code/Source/Platform/Windows/metastream_windows.cmake +++ b/Gems/Metastream/Code/Source/Platform/Windows/metastream_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Metastream/Code/Source/Platform/Windows/platform_windows_files.cmake index ee8693c0b0..049f31fa71 100644 --- a/Gems/Metastream/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Metastream/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_Platform.h b/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_Platform.h index 9129d30e1f..01c09e8f3b 100644 --- a/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_Platform.h +++ b/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_iOS.h b/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_iOS.h index 3e5aeaf178..92459b6d2c 100644 --- a/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_iOS.h +++ b/Gems/Metastream/Code/Source/Platform/iOS/Metastream_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/Source/Platform/iOS/metastream_ios.cmake b/Gems/Metastream/Code/Source/Platform/iOS/metastream_ios.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Metastream/Code/Source/Platform/iOS/metastream_ios.cmake +++ b/Gems/Metastream/Code/Source/Platform/iOS/metastream_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Metastream/Code/Source/Platform/iOS/platform_ios_files.cmake index fead40f917..075069500a 100644 --- a/Gems/Metastream/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Metastream/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/Tests/MetastreamTest.cpp b/Gems/Metastream/Code/Tests/MetastreamTest.cpp index f3ec43eeba..6df70a7faf 100644 --- a/Gems/Metastream/Code/Tests/MetastreamTest.cpp +++ b/Gems/Metastream/Code/Tests/MetastreamTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Metastream/Code/metastream_files.cmake b/Gems/Metastream/Code/metastream_files.cmake index 898359559e..3a0dca5c48 100644 --- a/Gems/Metastream/Code/metastream_files.cmake +++ b/Gems/Metastream/Code/metastream_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/metastream_shared_files.cmake b/Gems/Metastream/Code/metastream_shared_files.cmake index f68101ec1f..ae55e96766 100644 --- a/Gems/Metastream/Code/metastream_shared_files.cmake +++ b/Gems/Metastream/Code/metastream_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Metastream/Code/metastream_tests_files.cmake b/Gems/Metastream/Code/metastream_tests_files.cmake index 62d217f039..7d394d70d9 100644 --- a/Gems/Metastream/Code/metastream_tests_files.cmake +++ b/Gems/Metastream/Code/metastream_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/CMakeLists.txt b/Gems/Microphone/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Microphone/CMakeLists.txt +++ b/Gems/Microphone/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/CMakeLists.txt b/Gems/Microphone/Code/CMakeLists.txt index 41775780e9..be71d65e33 100644 --- a/Gems/Microphone/Code/CMakeLists.txt +++ b/Gems/Microphone/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Include/Microphone/WAVUtil.h b/Gems/Microphone/Code/Include/Microphone/WAVUtil.h index d61dd7f1bc..bd672d187a 100644 --- a/Gems/Microphone/Code/Include/Microphone/WAVUtil.h +++ b/Gems/Microphone/Code/Include/Microphone/WAVUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/MicrophoneModule.cpp b/Gems/Microphone/Code/Source/MicrophoneModule.cpp index d5910b154d..6830ce7fc2 100644 --- a/Gems/Microphone/Code/Source/MicrophoneModule.cpp +++ b/Gems/Microphone/Code/Source/MicrophoneModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/MicrophoneSystemComponent.cpp b/Gems/Microphone/Code/Source/MicrophoneSystemComponent.cpp index 2f9ec2c785..1dee506d97 100644 --- a/Gems/Microphone/Code/Source/MicrophoneSystemComponent.cpp +++ b/Gems/Microphone/Code/Source/MicrophoneSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/MicrophoneSystemComponent.h b/Gems/Microphone/Code/Source/MicrophoneSystemComponent.h index e693d3089c..deb60473ab 100644 --- a/Gems/Microphone/Code/Source/MicrophoneSystemComponent.h +++ b/Gems/Microphone/Code/Source/MicrophoneSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Microphone_precompiled.h b/Gems/Microphone/Code/Source/Microphone_precompiled.h index 8d99a0243c..eefa26c318 100644 --- a/Gems/Microphone/Code/Source/Microphone_precompiled.h +++ b/Gems/Microphone/Code/Source/Microphone_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp b/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp index febb209a07..3bf4fb7410 100644 --- a/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp +++ b/Gems/Microphone/Code/Source/Platform/Android/MicrophoneSystemComponent_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Platform/Android/java/com/amazon/lumberyard/Microphone/MicrophoneSystemComponent.java b/Gems/Microphone/Code/Source/Platform/Android/java/com/amazon/lumberyard/Microphone/MicrophoneSystemComponent.java index 39565e74ce..e4e06362c3 100644 --- a/Gems/Microphone/Code/Source/Platform/Android/java/com/amazon/lumberyard/Microphone/MicrophoneSystemComponent.java +++ b/Gems/Microphone/Code/Source/Platform/Android/java/com/amazon/lumberyard/Microphone/MicrophoneSystemComponent.java @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Platform/Android/platform_android.cmake b/Gems/Microphone/Code/Source/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Microphone/Code/Source/Platform/Android/platform_android.cmake +++ b/Gems/Microphone/Code/Source/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Microphone/Code/Source/Platform/Android/platform_android_files.cmake index 114519c39d..72afd1be83 100644 --- a/Gems/Microphone/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Microphone/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/Microphone/Code/Source/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Microphone/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/Microphone/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Microphone/Code/Source/Platform/Linux/platform_linux_files.cmake index 076ef0e157..6609ad87d8 100644 --- a/Gems/Microphone/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Microphone/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm b/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm index 02b2ec5851..a853c39ec1 100644 --- a/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm +++ b/Gems/Microphone/Code/Source/Platform/Mac/MicrophoneSystemComponent_Mac.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/Microphone/Code/Source/Platform/Mac/platform_mac.cmake index 66b3ace679..390f0f54d8 100644 --- a/Gems/Microphone/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/Microphone/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Microphone/Code/Source/Platform/Mac/platform_mac_files.cmake index d6abf44deb..f587546fd7 100644 --- a/Gems/Microphone/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Microphone/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/None/MicrophoneSystemComponent_None.cpp b/Gems/Microphone/Code/Source/Platform/None/MicrophoneSystemComponent_None.cpp index 70a0769489..ac64680b31 100644 --- a/Gems/Microphone/Code/Source/Platform/None/MicrophoneSystemComponent_None.cpp +++ b/Gems/Microphone/Code/Source/Platform/None/MicrophoneSystemComponent_None.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Platform/Windows/MicrophoneSystemComponent_Windows.cpp b/Gems/Microphone/Code/Source/Platform/Windows/MicrophoneSystemComponent_Windows.cpp index 2d5e706c39..2b72c58b76 100644 --- a/Gems/Microphone/Code/Source/Platform/Windows/MicrophoneSystemComponent_Windows.cpp +++ b/Gems/Microphone/Code/Source/Platform/Windows/MicrophoneSystemComponent_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/Microphone/Code/Source/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Microphone/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/Microphone/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Microphone/Code/Source/Platform/Windows/platform_windows_files.cmake index 1170cb88b4..97c4acedd1 100644 --- a/Gems/Microphone/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Microphone/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm b/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm index 965798e9c7..3601ff3c4b 100644 --- a/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm +++ b/Gems/Microphone/Code/Source/Platform/iOS/MicrophoneSystemComponent_iOS.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/Microphone/Code/Source/Platform/iOS/platform_ios.cmake index 66b3ace679..390f0f54d8 100644 --- a/Gems/Microphone/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/Microphone/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Microphone/Code/Source/Platform/iOS/platform_ios_files.cmake index 294ddad84b..b0d01a7956 100644 --- a/Gems/Microphone/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Microphone/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/Source/SimpleDownsample.cpp b/Gems/Microphone/Code/Source/SimpleDownsample.cpp index f23559b57c..854451b830 100644 --- a/Gems/Microphone/Code/Source/SimpleDownsample.cpp +++ b/Gems/Microphone/Code/Source/SimpleDownsample.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/Source/SimpleDownsample.h b/Gems/Microphone/Code/Source/SimpleDownsample.h index a850b7eda3..abc87f191a 100644 --- a/Gems/Microphone/Code/Source/SimpleDownsample.h +++ b/Gems/Microphone/Code/Source/SimpleDownsample.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Microphone/Code/microphone_files.cmake b/Gems/Microphone/Code/microphone_files.cmake index cb77197c9f..233ce8eb91 100644 --- a/Gems/Microphone/Code/microphone_files.cmake +++ b/Gems/Microphone/Code/microphone_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Microphone/Code/microphone_shared_files.cmake b/Gems/Microphone/Code/microphone_shared_files.cmake index 39d2ff87f8..90f5787728 100644 --- a/Gems/Microphone/Code/microphone_shared_files.cmake +++ b/Gems/Microphone/Code/microphone_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/CMakeLists.txt b/Gems/Multiplayer/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Multiplayer/CMakeLists.txt +++ b/Gems/Multiplayer/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/CMakeLists.txt b/Gems/Multiplayer/Code/CMakeLists.txt index 42de715cd2..89372025e3 100644 --- a/Gems/Multiplayer/Code/CMakeLists.txt +++ b/Gems/Multiplayer/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h index d3fb3aaf06..b6d2508412 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/LocalPredictionPlayerInputComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h index ced46f7fed..be55ac1d16 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponentRegistry.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponentRegistry.h index 30e2047164..f9abdb31fc 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponentRegistry.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerComponentRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerController.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerController.h index 7a3c0a8bc7..cdd83a653b 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerController.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/MultiplayerController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetBindComponent.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetBindComponent.h index fdf38b37d9..e3871068fc 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetBindComponent.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetBindComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetworkTransformComponent.h b/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetworkTransformComponent.h index 2ea174ba60..5575de9b0d 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetworkTransformComponent.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Components/NetworkTransformComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/ConnectionData/IConnectionData.h b/Gems/Multiplayer/Code/Include/Multiplayer/ConnectionData/IConnectionData.h index a21cbf7e1e..c43453450b 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/ConnectionData/IConnectionData.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/ConnectionData/IConnectionData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/EntityDomains/IEntityDomain.h b/Gems/Multiplayer/Code/Include/Multiplayer/EntityDomains/IEntityDomain.h index 53d2ccea2c..30d1576515 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/EntityDomains/IEntityDomain.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/EntityDomains/IEntityDomain.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayer.h b/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayer.h index fc24cefe4e..4b2badccdf 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayer.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayerTools.h b/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayerTools.h index ed89b22a50..6f9994806b 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayerTools.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/IMultiplayerTools.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/INetworkSpawnableLibrary.h b/Gems/Multiplayer/Code/Include/Multiplayer/INetworkSpawnableLibrary.h index 1de7d703f9..fc56685c80 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/INetworkSpawnableLibrary.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/INetworkSpawnableLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h index 131f145d34..c336527dfa 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerStats.h b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerStats.h index 8b06442ec8..b31c91c6a5 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerStats.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerStats.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h index 51fc1bf7bd..9f81ca97a9 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/MultiplayerTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/EntityReplication/ReplicationRecord.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/EntityReplication/ReplicationRecord.h index 83e63d4991..81cfbe43d0 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/EntityReplication/ReplicationRecord.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/EntityReplication/ReplicationRecord.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/INetworkEntityManager.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/INetworkEntityManager.h index b231b53378..4241970369 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/INetworkEntityManager.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/INetworkEntityManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.h index b4f5703d41..3f67d96ab2 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.inl b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.inl index 1b6057dfda..837176fdfa 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.inl +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityHandle.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityRpcMessage.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityRpcMessage.h index 207fb397be..7a0c1b23bf 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityRpcMessage.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityRpcMessage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityUpdateMessage.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityUpdateMessage.h index 598e912d40..bd8ebbce3d 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityUpdateMessage.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkEntity/NetworkEntityUpdateMessage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/IMultiplayerComponentInput.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/IMultiplayerComponentInput.h index 79386552e4..e7a07073ad 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/IMultiplayerComponentInput.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/IMultiplayerComponentInput.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/NetworkInput.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/NetworkInput.h index df5daa585d..5d57ea6343 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/NetworkInput.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkInput/NetworkInput.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/INetworkTime.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/INetworkTime.h index 02a732799a..c88c971636 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/INetworkTime.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/INetworkTime.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.h index 43dfdc319a..524c70c671 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.inl b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.inl index 9ff89a237a..73a9d08fcd 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.inl +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableArray.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.h index 1f20a6f136..12315c2bff 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.inl b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.inl index 12149c362a..32fd0a51fc 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.inl +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableFixedVector.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.h b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.h index 0d94ca6180..796eec5412 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.inl b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.inl index 5f785e60d7..dc8d98fb45 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.inl +++ b/Gems/Multiplayer/Code/Include/Multiplayer/NetworkTime/RewindableObject.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/Physics/PhysicsUtils.h b/Gems/Multiplayer/Code/Include/Multiplayer/Physics/PhysicsUtils.h index 4687af1b69..7d9e858b52 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/Physics/PhysicsUtils.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/Physics/PhysicsUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Include/Multiplayer/ReplicationWindows/IReplicationWindow.h b/Gems/Multiplayer/Code/Include/Multiplayer/ReplicationWindows/IReplicationWindow.h index ff030132e7..e7ceb5c827 100644 --- a/Gems/Multiplayer/Code/Include/Multiplayer/ReplicationWindows/IReplicationWindow.h +++ b/Gems/Multiplayer/Code/Include/Multiplayer/ReplicationWindows/IReplicationWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp b/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp index cb62632668..0b4fa99111 100644 --- a/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Components/LocalPredictionPlayerInputComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Components/MultiplayerComponent.cpp b/Gems/Multiplayer/Code/Source/Components/MultiplayerComponent.cpp index dc8272c27e..b0132120fc 100644 --- a/Gems/Multiplayer/Code/Source/Components/MultiplayerComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Components/MultiplayerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Components/MultiplayerComponentRegistry.cpp b/Gems/Multiplayer/Code/Source/Components/MultiplayerComponentRegistry.cpp index 73a868a7b5..eb290a8599 100644 --- a/Gems/Multiplayer/Code/Source/Components/MultiplayerComponentRegistry.cpp +++ b/Gems/Multiplayer/Code/Source/Components/MultiplayerComponentRegistry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Components/MultiplayerController.cpp b/Gems/Multiplayer/Code/Source/Components/MultiplayerController.cpp index 40e4c2b7a3..bda4ba77bd 100644 --- a/Gems/Multiplayer/Code/Source/Components/MultiplayerController.cpp +++ b/Gems/Multiplayer/Code/Source/Components/MultiplayerController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Components/NetBindComponent.cpp b/Gems/Multiplayer/Code/Source/Components/NetBindComponent.cpp index 4a6455d3ac..d35c701ccb 100644 --- a/Gems/Multiplayer/Code/Source/Components/NetBindComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Components/NetBindComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Components/NetworkTransformComponent.cpp b/Gems/Multiplayer/Code/Source/Components/NetworkTransformComponent.cpp index e0a5c43d61..e956245724 100644 --- a/Gems/Multiplayer/Code/Source/Components/NetworkTransformComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Components/NetworkTransformComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.cpp b/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.cpp index a7a6056372..6aa5493b5a 100644 --- a/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.cpp +++ b/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.h b/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.h index 2ea74e23aa..d37115b36f 100644 --- a/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.h +++ b/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.inl b/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.inl index c3f1f70a7b..05d35db4a3 100644 --- a/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.inl +++ b/Gems/Multiplayer/Code/Source/ConnectionData/ClientToServerConnectionData.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.cpp b/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.cpp index 18370c0f09..c0f29f4bda 100644 --- a/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.cpp +++ b/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.h b/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.h index 6f89fc0ce3..9ce55dbf89 100644 --- a/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.h +++ b/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.inl b/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.inl index e2c63c75d0..822c65c2e2 100644 --- a/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.inl +++ b/Gems/Multiplayer/Code/Source/ConnectionData/ServerToClientConnectionData.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.cpp b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.cpp index bff80676b2..0bcc1f29df 100644 --- a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.cpp +++ b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.h b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.h index ab1c9317f6..2289333b30 100644 --- a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.h +++ b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp index 18e299c83d..390a981164 100644 --- a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.h b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.h index ecc04ee076..8f7f53c476 100644 --- a/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.h +++ b/Gems/Multiplayer/Code/Source/Debug/MultiplayerDebugSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp index 6cbe24927d..980327efa9 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h index 481df11d67..321b9aee51 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.cpp b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.cpp index c487d52878..6bb79b16be 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.cpp +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.h b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.h index c0c29ed36d..44f0d67355 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.h +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp index a0a3cbd651..69121cf0ba 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.h b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.h index f1abd216e2..7f1966df15 100644 --- a/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.h +++ b/Gems/Multiplayer/Code/Source/Editor/MultiplayerEditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.cpp b/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.cpp index b2bb039f58..c4e3fac886 100644 --- a/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.cpp +++ b/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.h b/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.h index 878154ae12..e1ba723801 100644 --- a/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.h +++ b/Gems/Multiplayer/Code/Source/EntityDomains/FullOwnershipEntityDomain.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerGem.cpp b/Gems/Multiplayer/Code/Source/MultiplayerGem.cpp index 7d9cd3bbb9..1aab09543f 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerGem.cpp +++ b/Gems/Multiplayer/Code/Source/MultiplayerGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerGem.h b/Gems/Multiplayer/Code/Source/MultiplayerGem.h index fa7d239312..d9fc9eefa4 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerGem.h +++ b/Gems/Multiplayer/Code/Source/MultiplayerGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerStats.cpp b/Gems/Multiplayer/Code/Source/MultiplayerStats.cpp index 9e3130504f..6a66065a8c 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerStats.cpp +++ b/Gems/Multiplayer/Code/Source/MultiplayerStats.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp index 020508ada1..841c22aa8b 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp +++ b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h index 4ac5a80ee3..4c579c73f3 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h +++ b/Gems/Multiplayer/Code/Source/MultiplayerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.cpp b/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.cpp index eb52a63275..59cc78f697 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.cpp +++ b/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.h b/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.h index 9223af3307..7e6ef9512f 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.h +++ b/Gems/Multiplayer/Code/Source/MultiplayerToolsModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/MultiplayerTypes.h b/Gems/Multiplayer/Code/Source/MultiplayerTypes.h index 25bf922e38..b65094ca98 100644 --- a/Gems/Multiplayer/Code/Source/MultiplayerTypes.h +++ b/Gems/Multiplayer/Code/Source/MultiplayerTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Multiplayer_precompiled.h b/Gems/Multiplayer/Code/Source/Multiplayer_precompiled.h index 7bc2a24378..e2f396d226 100644 --- a/Gems/Multiplayer/Code/Source/Multiplayer_precompiled.h +++ b/Gems/Multiplayer/Code/Source/Multiplayer_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.cpp index 40cf7f0ea1..993cb23df7 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.h b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.h index 2565b81eb4..0020b7b71a 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicationManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.cpp index 5769c099d7..a8918a6332 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.h b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.h index 8e6a87d369..2adb0ac99f 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.inl b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.inl index f3997d8c6d..46fb148e8a 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.inl +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/EntityReplicator.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.cpp index 404232cb39..2272f43a08 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.h b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.h index 3cd0e45768..db4b783a19 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertyPublisher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.cpp index 82f059d988..f3427afbca 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h index 0ccbf59a7c..ba93c68bb4 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/PropertySubscriber.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/ReplicationRecord.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/ReplicationRecord.cpp index 1bc970d9bf..eecd4915e7 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/ReplicationRecord.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/EntityReplication/ReplicationRecord.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.cpp index 09f3a31b96..5058658d42 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.h b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.h index 38db991d3f..c3ab82e526 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityAuthorityTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityHandle.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityHandle.cpp index 26d7556d78..489a7db16f 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityHandle.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityHandle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.cpp index 1468e034c0..af914047af 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.h b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.h index 325ab1a570..a5bcabc0df 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityRpcMessage.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityRpcMessage.cpp index 5cdf5c29cf..3304f8dc16 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityRpcMessage.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityRpcMessage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.cpp index 5462d5e420..b2ba87b06e 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.h b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.h index 2b683eb4ac..e504d737dd 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.inl b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.inl index 6dba57e27a..7883b11921 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.inl +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityTracker.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityUpdateMessage.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityUpdateMessage.cpp index 307619bb94..3d9a36b624 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityUpdateMessage.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkEntityUpdateMessage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.cpp b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.cpp index 93bccd5c81..854dd835dd 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.h b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.h index 021fa84226..c6a034b534 100644 --- a/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.h +++ b/Gems/Multiplayer/Code/Source/NetworkEntity/NetworkSpawnableLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInput.cpp b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInput.cpp index 9387c9f49c..75889d9f83 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInput.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInput.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.cpp b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.cpp index 1b796c2781..32786d438e 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.h b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.h index e357d7eb13..9128dac106 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.h +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.cpp b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.cpp index cf188595f8..e44f660cf0 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.h b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.h index 3239262bd1..f9715f264e 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.h +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputChild.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.cpp b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.cpp index d75d2a8d09..867bae6151 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.h b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.h index b734b184f7..f8fb947be2 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.h +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputHistory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.cpp b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.cpp index b271c3f46c..a4d4c6848c 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.h b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.h index 6e02b57902..4ed20d65a1 100644 --- a/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.h +++ b/Gems/Multiplayer/Code/Source/NetworkInput/NetworkInputMigrationVector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp b/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp index 25455808af..88ffa0b5d7 100644 --- a/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp +++ b/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.h b/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.h index ae5cddd470..53c9540843 100644 --- a/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.h +++ b/Gems/Multiplayer/Code/Source/NetworkTime/NetworkTime.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Physics/PhysicsUtils.cpp b/Gems/Multiplayer/Code/Source/Physics/PhysicsUtils.cpp index 53dc789482..d17615c098 100644 --- a/Gems/Multiplayer/Code/Source/Physics/PhysicsUtils.cpp +++ b/Gems/Multiplayer/Code/Source/Physics/PhysicsUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.cpp b/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.cpp index 78852d9bf3..9a5c356c2c 100644 --- a/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.h b/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.h index 22d3b2cc86..99c91513f3 100644 --- a/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.h +++ b/Gems/Multiplayer/Code/Source/Pipeline/NetBindMarkerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.cpp b/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.cpp index 3452a79e25..0c6235eefe 100644 --- a/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.cpp +++ b/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.h b/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.h index 91177d1788..f503aea640 100644 --- a/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.h +++ b/Gems/Multiplayer/Code/Source/Pipeline/NetworkPrefabProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.cpp b/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.cpp index 6fdcd7a356..48b6db189e 100644 --- a/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.cpp +++ b/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.h b/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.h index 9cf0d429cc..ffbc551562 100644 --- a/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.h +++ b/Gems/Multiplayer/Code/Source/Pipeline/NetworkSpawnableHolderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.cpp b/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.cpp index 9a8de2a149..cc94ae3523 100644 --- a/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.cpp +++ b/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.h b/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.h index 90408dbd81..0871ac490e 100644 --- a/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.h +++ b/Gems/Multiplayer/Code/Source/ReplicationWindows/NullReplicationWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp index 088a36cced..7752e16fbf 100644 --- a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp +++ b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h index 31b100523a..887b915670 100644 --- a/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h +++ b/Gems/Multiplayer/Code/Source/ReplicationWindows/ServerToClientReplicationWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Tests/IMultiplayerConnectionMock.h b/Gems/Multiplayer/Code/Tests/IMultiplayerConnectionMock.h index 9507874eb8..76a752d087 100644 --- a/Gems/Multiplayer/Code/Tests/IMultiplayerConnectionMock.h +++ b/Gems/Multiplayer/Code/Tests/IMultiplayerConnectionMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Tests/Main.cpp b/Gems/Multiplayer/Code/Tests/Main.cpp index 35a6d84e78..141f9473b8 100644 --- a/Gems/Multiplayer/Code/Tests/Main.cpp +++ b/Gems/Multiplayer/Code/Tests/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Tests/MainTools.cpp b/Gems/Multiplayer/Code/Tests/MainTools.cpp index a914955153..bd85bdbbcd 100644 --- a/Gems/Multiplayer/Code/Tests/MainTools.cpp +++ b/Gems/Multiplayer/Code/Tests/MainTools.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Tests/MultiplayerSystemTests.cpp b/Gems/Multiplayer/Code/Tests/MultiplayerSystemTests.cpp index 97dcb7dc66..bffe3a2b34 100644 --- a/Gems/Multiplayer/Code/Tests/MultiplayerSystemTests.cpp +++ b/Gems/Multiplayer/Code/Tests/MultiplayerSystemTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Tests/PrefabProcessingTests.cpp b/Gems/Multiplayer/Code/Tests/PrefabProcessingTests.cpp index 55bf2af20e..4ac254a23c 100644 --- a/Gems/Multiplayer/Code/Tests/PrefabProcessingTests.cpp +++ b/Gems/Multiplayer/Code/Tests/PrefabProcessingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Tests/RewindableContainerTests.cpp b/Gems/Multiplayer/Code/Tests/RewindableContainerTests.cpp index 2b765594e3..2e3a65a5e5 100644 --- a/Gems/Multiplayer/Code/Tests/RewindableContainerTests.cpp +++ b/Gems/Multiplayer/Code/Tests/RewindableContainerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/Tests/RewindableObjectTests.cpp b/Gems/Multiplayer/Code/Tests/RewindableObjectTests.cpp index 2423ae4335..472a1ce148 100644 --- a/Gems/Multiplayer/Code/Tests/RewindableObjectTests.cpp +++ b/Gems/Multiplayer/Code/Tests/RewindableObjectTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Multiplayer/Code/multiplayer_autogen_files.cmake b/Gems/Multiplayer/Code/multiplayer_autogen_files.cmake index 267526234f..d18c8c7b2b 100644 --- a/Gems/Multiplayer/Code/multiplayer_autogen_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_autogen_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/multiplayer_debug_files.cmake b/Gems/Multiplayer/Code/multiplayer_debug_files.cmake index abaaa19364..d0a5a4f0b9 100644 --- a/Gems/Multiplayer/Code/multiplayer_debug_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_debug_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/multiplayer_editor_shared_files.cmake b/Gems/Multiplayer/Code/multiplayer_editor_shared_files.cmake index c0c638388a..d5720647fa 100644 --- a/Gems/Multiplayer/Code/multiplayer_editor_shared_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/multiplayer_files.cmake b/Gems/Multiplayer/Code/multiplayer_files.cmake index 8521ccbaf4..91f0a5fdc6 100644 --- a/Gems/Multiplayer/Code/multiplayer_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/multiplayer_shared_files.cmake b/Gems/Multiplayer/Code/multiplayer_shared_files.cmake index 537e7b465f..8c6bf623e5 100644 --- a/Gems/Multiplayer/Code/multiplayer_shared_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/multiplayer_tests_files.cmake b/Gems/Multiplayer/Code/multiplayer_tests_files.cmake index 909f9d2800..2b858f66ef 100644 --- a/Gems/Multiplayer/Code/multiplayer_tests_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/multiplayer_tools_files.cmake b/Gems/Multiplayer/Code/multiplayer_tools_files.cmake index 8ad7ea2b03..2567fb2e5a 100644 --- a/Gems/Multiplayer/Code/multiplayer_tools_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_tools_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Multiplayer/Code/multiplayer_tools_tests_files.cmake b/Gems/Multiplayer/Code/multiplayer_tools_tests_files.cmake index 46605a27cb..4e09dd9ad5 100644 --- a/Gems/Multiplayer/Code/multiplayer_tools_tests_files.cmake +++ b/Gems/Multiplayer/Code/multiplayer_tools_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MultiplayerCompression/CMakeLists.txt b/Gems/MultiplayerCompression/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/MultiplayerCompression/CMakeLists.txt +++ b/Gems/MultiplayerCompression/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MultiplayerCompression/Code/CMakeLists.txt b/Gems/MultiplayerCompression/Code/CMakeLists.txt index c9201acbb3..aaab97333e 100644 --- a/Gems/MultiplayerCompression/Code/CMakeLists.txt +++ b/Gems/MultiplayerCompression/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.cpp b/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.cpp index 254d7c0b6f..2cf0542bd1 100644 --- a/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.cpp +++ b/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.h b/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.h index f71d456e2a..c7db51c188 100644 --- a/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.h +++ b/Gems/MultiplayerCompression/Code/Source/LZ4Compressor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.cpp b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.cpp index 082101b2a6..d1792cff66 100644 --- a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.cpp +++ b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.h b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.h index 9c68e38a15..69549d2219 100644 --- a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.h +++ b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionModule.cpp b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionModule.cpp index 01aa033c51..bc4c71e17e 100644 --- a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionModule.cpp +++ b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.cpp b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.cpp index 6c4b215998..6106d2a0ae 100644 --- a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.cpp +++ b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.h b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.h index 6e67f5b135..34863d5bba 100644 --- a/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.h +++ b/Gems/MultiplayerCompression/Code/Source/MultiplayerCompressionSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp b/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp index 6ae3d4a653..05f2649ff9 100644 --- a/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp +++ b/Gems/MultiplayerCompression/Code/Tests/MultiplayerCompressionTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/MultiplayerCompression/Code/multiplayercompression_files.cmake b/Gems/MultiplayerCompression/Code/multiplayercompression_files.cmake index d1a8330db6..6355cec3f8 100644 --- a/Gems/MultiplayerCompression/Code/multiplayercompression_files.cmake +++ b/Gems/MultiplayerCompression/Code/multiplayercompression_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MultiplayerCompression/Code/multiplayercompression_shared_files.cmake b/Gems/MultiplayerCompression/Code/multiplayercompression_shared_files.cmake index a98137e599..652d3716ab 100644 --- a/Gems/MultiplayerCompression/Code/multiplayercompression_shared_files.cmake +++ b/Gems/MultiplayerCompression/Code/multiplayercompression_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/MultiplayerCompression/Code/multiplayercompression_tests_files.cmake b/Gems/MultiplayerCompression/Code/multiplayercompression_tests_files.cmake index cf23f7fa25..b353a5a2f5 100644 --- a/Gems/MultiplayerCompression/Code/multiplayercompression_tests_files.cmake +++ b/Gems/MultiplayerCompression/Code/multiplayercompression_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/CMakeLists.txt b/Gems/NvCloth/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/NvCloth/CMakeLists.txt +++ b/Gems/NvCloth/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/CMakeLists.txt b/Gems/NvCloth/Code/CMakeLists.txt index f145fd71c0..de77453d9b 100644 --- a/Gems/NvCloth/Code/CMakeLists.txt +++ b/Gems/NvCloth/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/Include/NvCloth/ICloth.h b/Gems/NvCloth/Code/Include/NvCloth/ICloth.h index 5c2a972257..177b78986c 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/ICloth.h +++ b/Gems/NvCloth/Code/Include/NvCloth/ICloth.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Include/NvCloth/IClothConfigurator.h b/Gems/NvCloth/Code/Include/NvCloth/IClothConfigurator.h index b9ea8c711c..19ee76eca1 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/IClothConfigurator.h +++ b/Gems/NvCloth/Code/Include/NvCloth/IClothConfigurator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Include/NvCloth/IClothSystem.h b/Gems/NvCloth/Code/Include/NvCloth/IClothSystem.h index cf52981dd8..07ca6b53d8 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/IClothSystem.h +++ b/Gems/NvCloth/Code/Include/NvCloth/IClothSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h b/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h index 4275a53eaf..fdb3cf5142 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h +++ b/Gems/NvCloth/Code/Include/NvCloth/IFabricCooker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Include/NvCloth/ISolver.h b/Gems/NvCloth/Code/Include/NvCloth/ISolver.h index 81df55aee0..ce9f402598 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/ISolver.h +++ b/Gems/NvCloth/Code/Include/NvCloth/ISolver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h b/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h index 9ee50d4b9f..43a482a824 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h +++ b/Gems/NvCloth/Code/Include/NvCloth/ITangentSpaceHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Include/NvCloth/Types.h b/Gems/NvCloth/Code/Include/NvCloth/Types.h index 7fc0d5a113..46f79ac44c 100644 --- a/Gems/NvCloth/Code/Include/NvCloth/Types.h +++ b/Gems/NvCloth/Code/Include/NvCloth/Types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Platform/Android/PAL_android.cmake b/Gems/NvCloth/Code/Platform/Android/PAL_android.cmake index 40b55d3251..77e8a42871 100644 --- a/Gems/NvCloth/Code/Platform/Android/PAL_android.cmake +++ b/Gems/NvCloth/Code/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/Platform/Linux/PAL_linux.cmake b/Gems/NvCloth/Code/Platform/Linux/PAL_linux.cmake index 40b55d3251..77e8a42871 100644 --- a/Gems/NvCloth/Code/Platform/Linux/PAL_linux.cmake +++ b/Gems/NvCloth/Code/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/Platform/Mac/PAL_mac.cmake b/Gems/NvCloth/Code/Platform/Mac/PAL_mac.cmake index 40b55d3251..77e8a42871 100644 --- a/Gems/NvCloth/Code/Platform/Mac/PAL_mac.cmake +++ b/Gems/NvCloth/Code/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/Platform/Windows/PAL_windows.cmake b/Gems/NvCloth/Code/Platform/Windows/PAL_windows.cmake index e6ba7f735f..afedeb2df8 100644 --- a/Gems/NvCloth/Code/Platform/Windows/PAL_windows.cmake +++ b/Gems/NvCloth/Code/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/Platform/iOS/PAL_ios.cmake b/Gems/NvCloth/Code/Platform/iOS/PAL_ios.cmake index 40b55d3251..77e8a42871 100644 --- a/Gems/NvCloth/Code/Platform/iOS/PAL_ios.cmake +++ b/Gems/NvCloth/Code/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponent.cpp b/Gems/NvCloth/Code/Source/Components/ClothComponent.cpp index 9bc3535ef9..79ff06dac2 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponent.cpp +++ b/Gems/NvCloth/Code/Source/Components/ClothComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponent.h b/Gems/NvCloth/Code/Source/Components/ClothComponent.h index 1fc360ec9f..e58c279adf 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponent.h +++ b/Gems/NvCloth/Code/Source/Components/ClothComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.cpp b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.cpp index c4bc6ad43b..8b07d0ce22 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.cpp +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.h b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.h index b3d0186be4..cb0c0ee21e 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.h +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothColliders.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.cpp b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.cpp index 62566d4b61..f60f5dbf27 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.cpp +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.h b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.h index f533af7be4..22aa5d13ec 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.h +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ActorClothSkinning.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.cpp b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.cpp index 5b8576fbb3..b791e8a543 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.cpp +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.h b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.h index 88fcb3302b..87b08e7250 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.h +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothComponentMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.cpp b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.cpp index 89ed09c223..e4d9d897bf 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.cpp +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.h b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.h index f2722339b0..de517de2fc 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.h +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothConstraints.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.cpp b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.cpp index 2eba9a1485..80cc8ca0d1 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.cpp +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.h b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.h index 8d8b7d818d..ff6f50a201 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.h +++ b/Gems/NvCloth/Code/Source/Components/ClothComponentMesh/ClothDebugDisplay.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothConfiguration.cpp b/Gems/NvCloth/Code/Source/Components/ClothConfiguration.cpp index 93f4d79325..8950edb5e7 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothConfiguration.cpp +++ b/Gems/NvCloth/Code/Source/Components/ClothConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/ClothConfiguration.h b/Gems/NvCloth/Code/Source/Components/ClothConfiguration.h index f2de17f471..37cd5093e2 100644 --- a/Gems/NvCloth/Code/Source/Components/ClothConfiguration.h +++ b/Gems/NvCloth/Code/Source/Components/ClothConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp b/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp index 11343575fe..f2730b0bac 100644 --- a/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp +++ b/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Components/EditorClothComponent.h b/Gems/NvCloth/Code/Source/Components/EditorClothComponent.h index b04f2d0f99..b075ae9114 100644 --- a/Gems/NvCloth/Code/Source/Components/EditorClothComponent.h +++ b/Gems/NvCloth/Code/Source/Components/EditorClothComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.cpp b/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.cpp index 64348792d8..ac539a4e61 100644 --- a/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.cpp +++ b/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.h b/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.h index b3d8648f89..0b185b1736 100644 --- a/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.h +++ b/Gems/NvCloth/Code/Source/Editor/ComboBoxEditButtonPair.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.cpp b/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.cpp index 5ebd1934e3..695e543bdd 100644 --- a/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.cpp +++ b/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.h b/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.h index d9e687d08e..929dd368d0 100644 --- a/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.h +++ b/Gems/NvCloth/Code/Source/Editor/EditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp b/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp index 85b89e0bb9..168a5348c1 100644 --- a/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp +++ b/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.h b/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.h index a47758cb13..fec346f0bc 100644 --- a/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.h +++ b/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/PropertyTypes.cpp b/Gems/NvCloth/Code/Source/Editor/PropertyTypes.cpp index d54fbd8f24..d29e52af83 100644 --- a/Gems/NvCloth/Code/Source/Editor/PropertyTypes.cpp +++ b/Gems/NvCloth/Code/Source/Editor/PropertyTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Editor/PropertyTypes.h b/Gems/NvCloth/Code/Source/Editor/PropertyTypes.h index fa7cee032a..db74d3666f 100644 --- a/Gems/NvCloth/Code/Source/Editor/PropertyTypes.h +++ b/Gems/NvCloth/Code/Source/Editor/PropertyTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Module.cpp b/Gems/NvCloth/Code/Source/Module.cpp index c1da4d590b..421a437629 100644 --- a/Gems/NvCloth/Code/Source/Module.cpp +++ b/Gems/NvCloth/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/ModuleUnsupported.cpp b/Gems/NvCloth/Code/Source/ModuleUnsupported.cpp index e5537140e6..4d14f21f72 100644 --- a/Gems/NvCloth/Code/Source/ModuleUnsupported.cpp +++ b/Gems/NvCloth/Code/Source/ModuleUnsupported.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp index c635c5e7da..d99797751e 100644 --- a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp +++ b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.h b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.h index dc6057933c..859f976c2a 100644 --- a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.h +++ b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp index 00a9f84ccf..15e3e34df0 100644 --- a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp +++ b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h index 089dea9c2e..04dbc34eb1 100644 --- a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h +++ b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/Cloth.cpp b/Gems/NvCloth/Code/Source/System/Cloth.cpp index e736a8996c..640a60bb31 100644 --- a/Gems/NvCloth/Code/Source/System/Cloth.cpp +++ b/Gems/NvCloth/Code/Source/System/Cloth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/Cloth.h b/Gems/NvCloth/Code/Source/System/Cloth.h index c650d803bd..79af33eac5 100644 --- a/Gems/NvCloth/Code/Source/System/Cloth.h +++ b/Gems/NvCloth/Code/Source/System/Cloth.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/Fabric.h b/Gems/NvCloth/Code/Source/System/Fabric.h index d6cead7edb..6e1f59fa77 100644 --- a/Gems/NvCloth/Code/Source/System/Fabric.h +++ b/Gems/NvCloth/Code/Source/System/Fabric.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/FabricCooker.cpp b/Gems/NvCloth/Code/Source/System/FabricCooker.cpp index 4961eeb5bd..cc0b88b6fe 100644 --- a/Gems/NvCloth/Code/Source/System/FabricCooker.cpp +++ b/Gems/NvCloth/Code/Source/System/FabricCooker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/FabricCooker.h b/Gems/NvCloth/Code/Source/System/FabricCooker.h index e11408dce3..e66e289f8a 100644 --- a/Gems/NvCloth/Code/Source/System/FabricCooker.h +++ b/Gems/NvCloth/Code/Source/System/FabricCooker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/Factory.cpp b/Gems/NvCloth/Code/Source/System/Factory.cpp index 9f3515453d..6ddda48ce8 100644 --- a/Gems/NvCloth/Code/Source/System/Factory.cpp +++ b/Gems/NvCloth/Code/Source/System/Factory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/Factory.h b/Gems/NvCloth/Code/Source/System/Factory.h index 762e0b5660..262611af7c 100644 --- a/Gems/NvCloth/Code/Source/System/Factory.h +++ b/Gems/NvCloth/Code/Source/System/Factory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/NvTypes.cpp b/Gems/NvCloth/Code/Source/System/NvTypes.cpp index ce4a3fb9fc..689c1bdbdb 100644 --- a/Gems/NvCloth/Code/Source/System/NvTypes.cpp +++ b/Gems/NvCloth/Code/Source/System/NvTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/NvTypes.h b/Gems/NvCloth/Code/Source/System/NvTypes.h index 4ce8c83fe9..4799843ad9 100644 --- a/Gems/NvCloth/Code/Source/System/NvTypes.h +++ b/Gems/NvCloth/Code/Source/System/NvTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/Solver.cpp b/Gems/NvCloth/Code/Source/System/Solver.cpp index acceceff8b..2afd5170db 100644 --- a/Gems/NvCloth/Code/Source/System/Solver.cpp +++ b/Gems/NvCloth/Code/Source/System/Solver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/Solver.h b/Gems/NvCloth/Code/Source/System/Solver.h index a231158b2e..a0b1dd212b 100644 --- a/Gems/NvCloth/Code/Source/System/Solver.h +++ b/Gems/NvCloth/Code/Source/System/Solver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/SystemComponent.cpp b/Gems/NvCloth/Code/Source/System/SystemComponent.cpp index 75c9e2b15f..6046c1aa9c 100644 --- a/Gems/NvCloth/Code/Source/System/SystemComponent.cpp +++ b/Gems/NvCloth/Code/Source/System/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/SystemComponent.h b/Gems/NvCloth/Code/Source/System/SystemComponent.h index 43cf4afb77..728799a54b 100644 --- a/Gems/NvCloth/Code/Source/System/SystemComponent.h +++ b/Gems/NvCloth/Code/Source/System/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.cpp b/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.cpp index a4e831bf26..b43ad1923b 100644 --- a/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.cpp +++ b/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.h b/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.h index c04ea6519e..4227cca029 100644 --- a/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.h +++ b/Gems/NvCloth/Code/Source/System/TangentSpaceHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Utils/Allocators.h b/Gems/NvCloth/Code/Source/Utils/Allocators.h index c64571b97f..1931ddeaa9 100644 --- a/Gems/NvCloth/Code/Source/Utils/Allocators.h +++ b/Gems/NvCloth/Code/Source/Utils/Allocators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Utils/AssetHelper.cpp b/Gems/NvCloth/Code/Source/Utils/AssetHelper.cpp index 12a9f975b4..7c11595a0d 100644 --- a/Gems/NvCloth/Code/Source/Utils/AssetHelper.cpp +++ b/Gems/NvCloth/Code/Source/Utils/AssetHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Utils/AssetHelper.h b/Gems/NvCloth/Code/Source/Utils/AssetHelper.h index cac10869ac..bec45fe6a1 100644 --- a/Gems/NvCloth/Code/Source/Utils/AssetHelper.h +++ b/Gems/NvCloth/Code/Source/Utils/AssetHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.cpp b/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.cpp index ad12930c15..da13afc5fa 100644 --- a/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.cpp +++ b/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.h b/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.h index 1ea020f5c2..4a3ca9bc40 100644 --- a/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.h +++ b/Gems/NvCloth/Code/Source/Utils/MeshAssetHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/ActorHelper.cpp b/Gems/NvCloth/Code/Tests/ActorHelper.cpp index 98cdcb45d6..4182125fbe 100644 --- a/Gems/NvCloth/Code/Tests/ActorHelper.cpp +++ b/Gems/NvCloth/Code/Tests/ActorHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/ActorHelper.h b/Gems/NvCloth/Code/Tests/ActorHelper.h index 5c473fc2b3..8d9f34a193 100644 --- a/Gems/NvCloth/Code/Tests/ActorHelper.h +++ b/Gems/NvCloth/Code/Tests/ActorHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothCollidersTest.cpp b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothCollidersTest.cpp index 2d70353669..55159d3a5c 100644 --- a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothCollidersTest.cpp +++ b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothCollidersTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothSkinningTest.cpp b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothSkinningTest.cpp index cc6ce9756d..b0aa538db5 100644 --- a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothSkinningTest.cpp +++ b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ActorClothSkinningTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothComponentMeshTest.cpp b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothComponentMeshTest.cpp index f959a51f61..2a3be26fff 100644 --- a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothComponentMeshTest.cpp +++ b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothComponentMeshTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothConstraintsTest.cpp b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothConstraintsTest.cpp index a0a09eac91..5f390ed45d 100644 --- a/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothConstraintsTest.cpp +++ b/Gems/NvCloth/Code/Tests/Components/ClothComponentMesh/ClothConstraintsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Components/ClothComponentTest.cpp b/Gems/NvCloth/Code/Tests/Components/ClothComponentTest.cpp index 66bc0d941a..1490c9a529 100644 --- a/Gems/NvCloth/Code/Tests/Components/ClothComponentTest.cpp +++ b/Gems/NvCloth/Code/Tests/Components/ClothComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Components/EditorClothComponentTest.cpp b/Gems/NvCloth/Code/Tests/Components/EditorClothComponentTest.cpp index 3faf4443a9..b7190ff53d 100644 --- a/Gems/NvCloth/Code/Tests/Components/EditorClothComponentTest.cpp +++ b/Gems/NvCloth/Code/Tests/Components/EditorClothComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/MeshVertexColorDataStub.h b/Gems/NvCloth/Code/Tests/MeshVertexColorDataStub.h index 330beec341..4597acc7e5 100644 --- a/Gems/NvCloth/Code/Tests/MeshVertexColorDataStub.h +++ b/Gems/NvCloth/Code/Tests/MeshVertexColorDataStub.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/NvClothEditorTestEnvironment.cpp b/Gems/NvCloth/Code/Tests/NvClothEditorTestEnvironment.cpp index 748c079cbf..ed73ecb1c3 100644 --- a/Gems/NvCloth/Code/Tests/NvClothEditorTestEnvironment.cpp +++ b/Gems/NvCloth/Code/Tests/NvClothEditorTestEnvironment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/NvClothTest.cpp b/Gems/NvCloth/Code/Tests/NvClothTest.cpp index f39c7d67d0..31083edec9 100644 --- a/Gems/NvCloth/Code/Tests/NvClothTest.cpp +++ b/Gems/NvCloth/Code/Tests/NvClothTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/NvClothTestEnvironment.cpp b/Gems/NvCloth/Code/Tests/NvClothTestEnvironment.cpp index 194b430ca4..167b2d2533 100644 --- a/Gems/NvCloth/Code/Tests/NvClothTestEnvironment.cpp +++ b/Gems/NvCloth/Code/Tests/NvClothTestEnvironment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Pipeline/SceneAPIExt/ClothRuleTest.cpp b/Gems/NvCloth/Code/Tests/Pipeline/SceneAPIExt/ClothRuleTest.cpp index 4adb13a0f0..1b70157258 100644 --- a/Gems/NvCloth/Code/Tests/Pipeline/SceneAPIExt/ClothRuleTest.cpp +++ b/Gems/NvCloth/Code/Tests/Pipeline/SceneAPIExt/ClothRuleTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/System/ClothSystemTest.cpp b/Gems/NvCloth/Code/Tests/System/ClothSystemTest.cpp index 698c98ba14..4bd8171aa2 100644 --- a/Gems/NvCloth/Code/Tests/System/ClothSystemTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/ClothSystemTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/System/ClothTest.cpp b/Gems/NvCloth/Code/Tests/System/ClothTest.cpp index 8eae8e8078..44cff03308 100644 --- a/Gems/NvCloth/Code/Tests/System/ClothTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/ClothTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp b/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp index d726757a88..25e658b95a 100644 --- a/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/FabricCookerTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/System/FactoryTest.cpp b/Gems/NvCloth/Code/Tests/System/FactoryTest.cpp index 38ea0928f5..c2b25cd78d 100644 --- a/Gems/NvCloth/Code/Tests/System/FactoryTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/FactoryTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/System/NvTypesTest.cpp b/Gems/NvCloth/Code/Tests/System/NvTypesTest.cpp index 1503ef899d..5b944d0d6a 100644 --- a/Gems/NvCloth/Code/Tests/System/NvTypesTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/NvTypesTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/System/SolverTest.cpp b/Gems/NvCloth/Code/Tests/System/SolverTest.cpp index be668a6e80..622bac123e 100644 --- a/Gems/NvCloth/Code/Tests/System/SolverTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/SolverTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/System/TangentSpaceHelperTest.cpp b/Gems/NvCloth/Code/Tests/System/TangentSpaceHelperTest.cpp index 32c11b288e..df43a20b86 100644 --- a/Gems/NvCloth/Code/Tests/System/TangentSpaceHelperTest.cpp +++ b/Gems/NvCloth/Code/Tests/System/TangentSpaceHelperTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/TriangleInputHelper.cpp b/Gems/NvCloth/Code/Tests/TriangleInputHelper.cpp index 874fff2b6a..2cb2b4d735 100644 --- a/Gems/NvCloth/Code/Tests/TriangleInputHelper.cpp +++ b/Gems/NvCloth/Code/Tests/TriangleInputHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/TriangleInputHelper.h b/Gems/NvCloth/Code/Tests/TriangleInputHelper.h index 9122be9ceb..95ae4f0620 100644 --- a/Gems/NvCloth/Code/Tests/TriangleInputHelper.h +++ b/Gems/NvCloth/Code/Tests/TriangleInputHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/UnitTestHelper.cpp b/Gems/NvCloth/Code/Tests/UnitTestHelper.cpp index 3559578615..e697d91985 100644 --- a/Gems/NvCloth/Code/Tests/UnitTestHelper.cpp +++ b/Gems/NvCloth/Code/Tests/UnitTestHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/UnitTestHelper.h b/Gems/NvCloth/Code/Tests/UnitTestHelper.h index e20c687075..14658bb429 100644 --- a/Gems/NvCloth/Code/Tests/UnitTestHelper.h +++ b/Gems/NvCloth/Code/Tests/UnitTestHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/Tests/Utils/ActorAssetHelperTest.cpp b/Gems/NvCloth/Code/Tests/Utils/ActorAssetHelperTest.cpp index b1d45aac7f..a33e931443 100644 --- a/Gems/NvCloth/Code/Tests/Utils/ActorAssetHelperTest.cpp +++ b/Gems/NvCloth/Code/Tests/Utils/ActorAssetHelperTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/NvCloth/Code/nvcloth_editor_files.cmake b/Gems/NvCloth/Code/nvcloth_editor_files.cmake index 5ac109d53f..baa307ccc9 100644 --- a/Gems/NvCloth/Code/nvcloth_editor_files.cmake +++ b/Gems/NvCloth/Code/nvcloth_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/nvcloth_editor_shared_files.cmake b/Gems/NvCloth/Code/nvcloth_editor_shared_files.cmake index a93f67afd8..c686bffbe2 100644 --- a/Gems/NvCloth/Code/nvcloth_editor_shared_files.cmake +++ b/Gems/NvCloth/Code/nvcloth_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/nvcloth_editor_tests_files.cmake b/Gems/NvCloth/Code/nvcloth_editor_tests_files.cmake index d78b0e119d..619cdac48e 100644 --- a/Gems/NvCloth/Code/nvcloth_editor_tests_files.cmake +++ b/Gems/NvCloth/Code/nvcloth_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/nvcloth_files.cmake b/Gems/NvCloth/Code/nvcloth_files.cmake index 0181bbf37b..59dee0a894 100644 --- a/Gems/NvCloth/Code/nvcloth_files.cmake +++ b/Gems/NvCloth/Code/nvcloth_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/nvcloth_shared_files.cmake b/Gems/NvCloth/Code/nvcloth_shared_files.cmake index a93f67afd8..c686bffbe2 100644 --- a/Gems/NvCloth/Code/nvcloth_shared_files.cmake +++ b/Gems/NvCloth/Code/nvcloth_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/nvcloth_stub.cmake b/Gems/NvCloth/Code/nvcloth_stub.cmake index 02c45d025d..4b2488a3cb 100644 --- a/Gems/NvCloth/Code/nvcloth_stub.cmake +++ b/Gems/NvCloth/Code/nvcloth_stub.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/nvcloth_stub_files.cmake b/Gems/NvCloth/Code/nvcloth_stub_files.cmake index b1e8d60342..30622457d1 100644 --- a/Gems/NvCloth/Code/nvcloth_stub_files.cmake +++ b/Gems/NvCloth/Code/nvcloth_stub_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/NvCloth/Code/nvcloth_tests_files.cmake b/Gems/NvCloth/Code/nvcloth_tests_files.cmake index 46178e2786..e73c53194f 100644 --- a/Gems/NvCloth/Code/nvcloth_tests_files.cmake +++ b/Gems/NvCloth/Code/nvcloth_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PBSreferenceMaterials/CMakeLists.txt b/Gems/PBSreferenceMaterials/CMakeLists.txt index 25280cd664..cf6e4cda97 100644 --- a/Gems/PBSreferenceMaterials/CMakeLists.txt +++ b/Gems/PBSreferenceMaterials/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/CMakeLists.txt b/Gems/PhysX/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/PhysX/CMakeLists.txt +++ b/Gems/PhysX/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/CMakeLists.txt b/Gems/PhysX/Code/CMakeLists.txt index 0b58bb8422..21f9172055 100644 --- a/Gems/PhysX/Code/CMakeLists.txt +++ b/Gems/PhysX/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.cpp b/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.cpp index e147e10e8d..ed3d8b793f 100644 --- a/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.h b/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.h index 6198ad3d8c..7f3bb2e110 100644 --- a/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.h +++ b/Gems/PhysX/Code/Editor/ColliderAssetScaleMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderBoxMode.cpp b/Gems/PhysX/Code/Editor/ColliderBoxMode.cpp index e42dfce93f..3c8cfa5ee2 100644 --- a/Gems/PhysX/Code/Editor/ColliderBoxMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderBoxMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderBoxMode.h b/Gems/PhysX/Code/Editor/ColliderBoxMode.h index 545bc91402..37fe60a918 100644 --- a/Gems/PhysX/Code/Editor/ColliderBoxMode.h +++ b/Gems/PhysX/Code/Editor/ColliderBoxMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderCapsuleMode.cpp b/Gems/PhysX/Code/Editor/ColliderCapsuleMode.cpp index aa52ec4c67..d1240900b0 100644 --- a/Gems/PhysX/Code/Editor/ColliderCapsuleMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderCapsuleMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderCapsuleMode.h b/Gems/PhysX/Code/Editor/ColliderCapsuleMode.h index 513a575b39..f05d9e6e84 100644 --- a/Gems/PhysX/Code/Editor/ColliderCapsuleMode.h +++ b/Gems/PhysX/Code/Editor/ColliderCapsuleMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp b/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp index 5067a3deaa..5013beb679 100644 --- a/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderComponentMode.h b/Gems/PhysX/Code/Editor/ColliderComponentMode.h index 0c25678127..c1be83e11a 100644 --- a/Gems/PhysX/Code/Editor/ColliderComponentMode.h +++ b/Gems/PhysX/Code/Editor/ColliderComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h b/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h index 1e64b8ecc0..6235c60be8 100644 --- a/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h +++ b/Gems/PhysX/Code/Editor/ColliderComponentModeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderOffsetMode.cpp b/Gems/PhysX/Code/Editor/ColliderOffsetMode.cpp index 217085b68e..cf194028ea 100644 --- a/Gems/PhysX/Code/Editor/ColliderOffsetMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderOffsetMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderOffsetMode.h b/Gems/PhysX/Code/Editor/ColliderOffsetMode.h index d19f5e3f12..6b74b99ba4 100644 --- a/Gems/PhysX/Code/Editor/ColliderOffsetMode.h +++ b/Gems/PhysX/Code/Editor/ColliderOffsetMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderRotationMode.cpp b/Gems/PhysX/Code/Editor/ColliderRotationMode.cpp index c474625344..6d86c0ad6c 100644 --- a/Gems/PhysX/Code/Editor/ColliderRotationMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderRotationMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderRotationMode.h b/Gems/PhysX/Code/Editor/ColliderRotationMode.h index ada3786487..22d870df25 100644 --- a/Gems/PhysX/Code/Editor/ColliderRotationMode.h +++ b/Gems/PhysX/Code/Editor/ColliderRotationMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderSphereMode.cpp b/Gems/PhysX/Code/Editor/ColliderSphereMode.cpp index d23e57ca9b..cc8427c973 100644 --- a/Gems/PhysX/Code/Editor/ColliderSphereMode.cpp +++ b/Gems/PhysX/Code/Editor/ColliderSphereMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderSphereMode.h b/Gems/PhysX/Code/Editor/ColliderSphereMode.h index 317e87246b..afb397c4ad 100644 --- a/Gems/PhysX/Code/Editor/ColliderSphereMode.h +++ b/Gems/PhysX/Code/Editor/ColliderSphereMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ColliderSubComponentMode.h b/Gems/PhysX/Code/Editor/ColliderSubComponentMode.h index d064e4f42b..360bf5724d 100644 --- a/Gems/PhysX/Code/Editor/ColliderSubComponentMode.h +++ b/Gems/PhysX/Code/Editor/ColliderSubComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionFilteringWidget.cpp b/Gems/PhysX/Code/Editor/CollisionFilteringWidget.cpp index bb466c6b02..c449e9d903 100644 --- a/Gems/PhysX/Code/Editor/CollisionFilteringWidget.cpp +++ b/Gems/PhysX/Code/Editor/CollisionFilteringWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionFilteringWidget.h b/Gems/PhysX/Code/Editor/CollisionFilteringWidget.h index 26cf2effb8..f38a9b2f1a 100644 --- a/Gems/PhysX/Code/Editor/CollisionFilteringWidget.h +++ b/Gems/PhysX/Code/Editor/CollisionFilteringWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionGroupWidget.cpp b/Gems/PhysX/Code/Editor/CollisionGroupWidget.cpp index 5362684b6d..9278e8ecee 100644 --- a/Gems/PhysX/Code/Editor/CollisionGroupWidget.cpp +++ b/Gems/PhysX/Code/Editor/CollisionGroupWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionGroupWidget.h b/Gems/PhysX/Code/Editor/CollisionGroupWidget.h index d407507d42..76c595dd26 100644 --- a/Gems/PhysX/Code/Editor/CollisionGroupWidget.h +++ b/Gems/PhysX/Code/Editor/CollisionGroupWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionGroupsWidget.cpp b/Gems/PhysX/Code/Editor/CollisionGroupsWidget.cpp index 8cff25ad3b..ab5280c97a 100644 --- a/Gems/PhysX/Code/Editor/CollisionGroupsWidget.cpp +++ b/Gems/PhysX/Code/Editor/CollisionGroupsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionGroupsWidget.h b/Gems/PhysX/Code/Editor/CollisionGroupsWidget.h index 7d1b6ce694..b562a47d2b 100644 --- a/Gems/PhysX/Code/Editor/CollisionGroupsWidget.h +++ b/Gems/PhysX/Code/Editor/CollisionGroupsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionLayerWidget.cpp b/Gems/PhysX/Code/Editor/CollisionLayerWidget.cpp index d2efd1ecb1..cb90ddcce6 100644 --- a/Gems/PhysX/Code/Editor/CollisionLayerWidget.cpp +++ b/Gems/PhysX/Code/Editor/CollisionLayerWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionLayerWidget.h b/Gems/PhysX/Code/Editor/CollisionLayerWidget.h index ad2f9f7d03..f30e627f15 100644 --- a/Gems/PhysX/Code/Editor/CollisionLayerWidget.h +++ b/Gems/PhysX/Code/Editor/CollisionLayerWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp b/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp index d2a8edb238..c7b6234e1f 100644 --- a/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp +++ b/Gems/PhysX/Code/Editor/CollisionLayersWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/CollisionLayersWidget.h b/Gems/PhysX/Code/Editor/CollisionLayersWidget.h index 92d85acc6e..861b41e2fd 100644 --- a/Gems/PhysX/Code/Editor/CollisionLayersWidget.h +++ b/Gems/PhysX/Code/Editor/CollisionLayersWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.cpp b/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.cpp index 82bd40a946..278ebbf4d2 100644 --- a/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.cpp +++ b/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.h b/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.h index ee90adcb14..71a3b8723b 100644 --- a/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.h +++ b/Gems/PhysX/Code/Editor/ComboBoxEditButtonPair.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp b/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp index 39fff8b29b..d99089b697 100644 --- a/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp +++ b/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.h b/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.h index 3bf555b4f9..3de235e1b7 100644 --- a/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.h +++ b/Gems/PhysX/Code/Editor/ConfigStringLineEditCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ConfigurationWidget.cpp b/Gems/PhysX/Code/Editor/ConfigurationWidget.cpp index a0f0263140..edf475020e 100644 --- a/Gems/PhysX/Code/Editor/ConfigurationWidget.cpp +++ b/Gems/PhysX/Code/Editor/ConfigurationWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ConfigurationWidget.h b/Gems/PhysX/Code/Editor/ConfigurationWidget.h index 57b8f0fa46..64697c6e82 100644 --- a/Gems/PhysX/Code/Editor/ConfigurationWidget.h +++ b/Gems/PhysX/Code/Editor/ConfigurationWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/ConfigurationWindowBus.h b/Gems/PhysX/Code/Editor/ConfigurationWindowBus.h index a0bd5a045a..39cbdf840a 100644 --- a/Gems/PhysX/Code/Editor/ConfigurationWindowBus.h +++ b/Gems/PhysX/Code/Editor/ConfigurationWindowBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/DebugDraw.cpp b/Gems/PhysX/Code/Editor/DebugDraw.cpp index 09b2cac5b0..8e187a0ab3 100644 --- a/Gems/PhysX/Code/Editor/DebugDraw.cpp +++ b/Gems/PhysX/Code/Editor/DebugDraw.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/DebugDraw.h b/Gems/PhysX/Code/Editor/DebugDraw.h index a1d460ca32..219cd2deff 100644 --- a/Gems/PhysX/Code/Editor/DebugDraw.h +++ b/Gems/PhysX/Code/Editor/DebugDraw.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp b/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp index 71630939db..7bafb08675 100644 --- a/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp +++ b/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/DocumentationLinkWidget.h b/Gems/PhysX/Code/Editor/DocumentationLinkWidget.h index c7e663fb1c..fe0550dcc8 100644 --- a/Gems/PhysX/Code/Editor/DocumentationLinkWidget.h +++ b/Gems/PhysX/Code/Editor/DocumentationLinkWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorClassConverters.cpp b/Gems/PhysX/Code/Editor/EditorClassConverters.cpp index b095ff4a3e..237bf3104b 100644 --- a/Gems/PhysX/Code/Editor/EditorClassConverters.cpp +++ b/Gems/PhysX/Code/Editor/EditorClassConverters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorClassConverters.h b/Gems/PhysX/Code/Editor/EditorClassConverters.h index a2723cb4e0..9c02790b99 100644 --- a/Gems/PhysX/Code/Editor/EditorClassConverters.h +++ b/Gems/PhysX/Code/Editor/EditorClassConverters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorJointComponentMode.cpp b/Gems/PhysX/Code/Editor/EditorJointComponentMode.cpp index d285163100..4da6e8b892 100644 --- a/Gems/PhysX/Code/Editor/EditorJointComponentMode.cpp +++ b/Gems/PhysX/Code/Editor/EditorJointComponentMode.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorJointComponentMode.h b/Gems/PhysX/Code/Editor/EditorJointComponentMode.h index b7a33b2950..1557af9a77 100644 --- a/Gems/PhysX/Code/Editor/EditorJointComponentMode.h +++ b/Gems/PhysX/Code/Editor/EditorJointComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorJointConfiguration.cpp b/Gems/PhysX/Code/Editor/EditorJointConfiguration.cpp index 3f4ef77c76..0087c55748 100644 --- a/Gems/PhysX/Code/Editor/EditorJointConfiguration.cpp +++ b/Gems/PhysX/Code/Editor/EditorJointConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorJointConfiguration.h b/Gems/PhysX/Code/Editor/EditorJointConfiguration.h index e63dd3717d..bae4d12dee 100644 --- a/Gems/PhysX/Code/Editor/EditorJointConfiguration.h +++ b/Gems/PhysX/Code/Editor/EditorJointConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.cpp b/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.cpp index 898ba6a93f..403dc6465c 100644 --- a/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.cpp +++ b/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.h b/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.h index e360ca6870..885a031f1e 100644 --- a/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.h +++ b/Gems/PhysX/Code/Editor/EditorJointTypeDrawer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorJointTypeDrawerBus.h b/Gems/PhysX/Code/Editor/EditorJointTypeDrawerBus.h index f421c617ce..46f351ab37 100644 --- a/Gems/PhysX/Code/Editor/EditorJointTypeDrawerBus.h +++ b/Gems/PhysX/Code/Editor/EditorJointTypeDrawerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp index 05fc01ef1f..69c416865c 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.h index efbe8da6cb..39e4f4f6a5 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeAngleCone.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.cpp index 5eba37faa5..4867afde34 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.h index 57d9e29853..47f9c95ca6 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeAnglePair.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.cpp index 9910a4676d..f89ffccb03 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.h index 129b782de0..3194b9fdff 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeBase.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.cpp index 281397b31f..f4e17a0a16 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.h index a35d67b591..1e2d488bc8 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeLinear.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.cpp index 2e9a54e7d4..ee0625cf92 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.h index b96a9ca53e..727a3a0d0a 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeRotation.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp index 97556c524f..6f8c136736 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.h index e8479999ed..3948f654b7 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnap.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.cpp index b493842212..a1791aeaf2 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.h index 6fe33fa0cc..702a4c8071 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapPosition.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.cpp index 35d687d18f..88cef90591 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.h index 0b4fa88541..46ac3d51fa 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeSnapRotation.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.cpp b/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.cpp index 9cd5b040bd..44e0d51aad 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.cpp +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.h b/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.h index 6e038e8e84..541271b425 100644 --- a/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.h +++ b/Gems/PhysX/Code/Editor/EditorSubComponentModeVec3.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.cpp b/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.cpp index 41417b3e2b..85599e04e8 100644 --- a/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.cpp +++ b/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.h b/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.h index de436e9fe8..81e1a2be44 100644 --- a/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.h +++ b/Gems/PhysX/Code/Editor/EditorViewportEntityPicker.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorWindow.cpp b/Gems/PhysX/Code/Editor/EditorWindow.cpp index 0691b3c77c..8d142ca0c4 100644 --- a/Gems/PhysX/Code/Editor/EditorWindow.cpp +++ b/Gems/PhysX/Code/Editor/EditorWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/EditorWindow.h b/Gems/PhysX/Code/Editor/EditorWindow.h index a51714f7ea..714e1c5bdf 100644 --- a/Gems/PhysX/Code/Editor/EditorWindow.h +++ b/Gems/PhysX/Code/Editor/EditorWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/InertiaPropertyHandler.cpp b/Gems/PhysX/Code/Editor/InertiaPropertyHandler.cpp index 0282b4d607..d12b61ee1b 100644 --- a/Gems/PhysX/Code/Editor/InertiaPropertyHandler.cpp +++ b/Gems/PhysX/Code/Editor/InertiaPropertyHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/InertiaPropertyHandler.h b/Gems/PhysX/Code/Editor/InertiaPropertyHandler.h index e1f0298893..fbd5d98018 100644 --- a/Gems/PhysX/Code/Editor/InertiaPropertyHandler.h +++ b/Gems/PhysX/Code/Editor/InertiaPropertyHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/MaterialIdWidget.cpp b/Gems/PhysX/Code/Editor/MaterialIdWidget.cpp index 6a7a15ac7a..6e00c8d632 100644 --- a/Gems/PhysX/Code/Editor/MaterialIdWidget.cpp +++ b/Gems/PhysX/Code/Editor/MaterialIdWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/MaterialIdWidget.h b/Gems/PhysX/Code/Editor/MaterialIdWidget.h index 624fd86972..46f293e848 100644 --- a/Gems/PhysX/Code/Editor/MaterialIdWidget.h +++ b/Gems/PhysX/Code/Editor/MaterialIdWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.cpp b/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.cpp index e24785b628..fe0a0973ba 100644 --- a/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.cpp +++ b/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.h b/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.h index 6266ca7cda..4a1816d8e6 100644 --- a/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.h +++ b/Gems/PhysX/Code/Editor/PolygonPrismMeshUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/PropertyTypes.cpp b/Gems/PhysX/Code/Editor/PropertyTypes.cpp index ea245a74a0..0a476c508c 100644 --- a/Gems/PhysX/Code/Editor/PropertyTypes.cpp +++ b/Gems/PhysX/Code/Editor/PropertyTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/PropertyTypes.h b/Gems/PhysX/Code/Editor/PropertyTypes.h index e2acb50500..e41d50d18b 100644 --- a/Gems/PhysX/Code/Editor/PropertyTypes.h +++ b/Gems/PhysX/Code/Editor/PropertyTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/PvdWidget.cpp b/Gems/PhysX/Code/Editor/PvdWidget.cpp index 6629d13c14..133dc59ce1 100644 --- a/Gems/PhysX/Code/Editor/PvdWidget.cpp +++ b/Gems/PhysX/Code/Editor/PvdWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/PvdWidget.h b/Gems/PhysX/Code/Editor/PvdWidget.h index 7cabf4695b..57600da685 100644 --- a/Gems/PhysX/Code/Editor/PvdWidget.h +++ b/Gems/PhysX/Code/Editor/PvdWidget.h @@ -1,6 +1,6 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/SettingsWidget.cpp b/Gems/PhysX/Code/Editor/SettingsWidget.cpp index 2a7e368896..69e380ef41 100644 --- a/Gems/PhysX/Code/Editor/SettingsWidget.cpp +++ b/Gems/PhysX/Code/Editor/SettingsWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/SettingsWidget.h b/Gems/PhysX/Code/Editor/SettingsWidget.h index 9102fe7809..0d8c9ef627 100644 --- a/Gems/PhysX/Code/Editor/SettingsWidget.h +++ b/Gems/PhysX/Code/Editor/SettingsWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.cpp b/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.cpp index 9d90c0b7f7..9b0fed8326 100644 --- a/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.cpp +++ b/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.h b/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.h index e0c4e55956..b45d2f03d8 100644 --- a/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.h +++ b/Gems/PhysX/Code/Editor/Source/Components/EditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.cpp b/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.cpp index 6b74151004..dbdb7947c9 100644 --- a/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.cpp +++ b/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.h b/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.h index bf296bb92e..df68595141 100644 --- a/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.h +++ b/Gems/PhysX/Code/Editor/Source/Configuration/PhysXEditorSettingsRegistryManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/UniqueStringContainer.cpp b/Gems/PhysX/Code/Editor/UniqueStringContainer.cpp index f5e3004b89..ad8d0c79c8 100644 --- a/Gems/PhysX/Code/Editor/UniqueStringContainer.cpp +++ b/Gems/PhysX/Code/Editor/UniqueStringContainer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Editor/UniqueStringContainer.h b/Gems/PhysX/Code/Editor/UniqueStringContainer.h index cf8384b7e0..4cc1d1115e 100644 --- a/Gems/PhysX/Code/Editor/UniqueStringContainer.h +++ b/Gems/PhysX/Code/Editor/UniqueStringContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/CharacterControllerBus.h b/Gems/PhysX/Code/Include/PhysX/CharacterControllerBus.h index 195b2ec289..0a9bc801f8 100644 --- a/Gems/PhysX/Code/Include/PhysX/CharacterControllerBus.h +++ b/Gems/PhysX/Code/Include/PhysX/CharacterControllerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/CharacterGameplayBus.h b/Gems/PhysX/Code/Include/PhysX/CharacterGameplayBus.h index f34e655c52..ec10ade9dc 100644 --- a/Gems/PhysX/Code/Include/PhysX/CharacterGameplayBus.h +++ b/Gems/PhysX/Code/Include/PhysX/CharacterGameplayBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/ColliderComponentBus.h b/Gems/PhysX/Code/Include/PhysX/ColliderComponentBus.h index d2797317f6..6a08499bd0 100644 --- a/Gems/PhysX/Code/Include/PhysX/ColliderComponentBus.h +++ b/Gems/PhysX/Code/Include/PhysX/ColliderComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/ColliderShapeBus.h b/Gems/PhysX/Code/Include/PhysX/ColliderShapeBus.h index 58247adadf..d344e33532 100644 --- a/Gems/PhysX/Code/Include/PhysX/ColliderShapeBus.h +++ b/Gems/PhysX/Code/Include/PhysX/ColliderShapeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/ComponentTypeIds.h b/Gems/PhysX/Code/Include/PhysX/ComponentTypeIds.h index 5f943db6ce..73442a033e 100644 --- a/Gems/PhysX/Code/Include/PhysX/ComponentTypeIds.h +++ b/Gems/PhysX/Code/Include/PhysX/ComponentTypeIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/Configuration/PhysXConfiguration.h b/Gems/PhysX/Code/Include/PhysX/Configuration/PhysXConfiguration.h index d39752d7a4..c24fd745b1 100644 --- a/Gems/PhysX/Code/Include/PhysX/Configuration/PhysXConfiguration.h +++ b/Gems/PhysX/Code/Include/PhysX/Configuration/PhysXConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugConfiguration.h b/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugConfiguration.h index aded63941c..6a795783c8 100644 --- a/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugConfiguration.h +++ b/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugInterface.h b/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugInterface.h index f813dc5a25..376fd85c9c 100644 --- a/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugInterface.h +++ b/Gems/PhysX/Code/Include/PhysX/Debug/PhysXDebugInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/EditorColliderComponentRequestBus.h b/Gems/PhysX/Code/Include/PhysX/EditorColliderComponentRequestBus.h index e8e14c058a..f9d4777423 100644 --- a/Gems/PhysX/Code/Include/PhysX/EditorColliderComponentRequestBus.h +++ b/Gems/PhysX/Code/Include/PhysX/EditorColliderComponentRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/EditorJointBus.h b/Gems/PhysX/Code/Include/PhysX/EditorJointBus.h index 6713b8c187..5e6450885f 100644 --- a/Gems/PhysX/Code/Include/PhysX/EditorJointBus.h +++ b/Gems/PhysX/Code/Include/PhysX/EditorJointBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/ForceRegionComponentBus.h b/Gems/PhysX/Code/Include/PhysX/ForceRegionComponentBus.h index e53fa33bf3..1e067dcd2f 100644 --- a/Gems/PhysX/Code/Include/PhysX/ForceRegionComponentBus.h +++ b/Gems/PhysX/Code/Include/PhysX/ForceRegionComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.cpp b/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.cpp index 0bd3d95d50..2d03007151 100644 --- a/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.cpp +++ b/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.h b/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.h index e4d80926d9..73a4191ccb 100644 --- a/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.h +++ b/Gems/PhysX/Code/Include/PhysX/HeightFieldAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/MathConversion.h b/Gems/PhysX/Code/Include/PhysX/MathConversion.h index bec9035830..739f543e8f 100644 --- a/Gems/PhysX/Code/Include/PhysX/MathConversion.h +++ b/Gems/PhysX/Code/Include/PhysX/MathConversion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/MeshAsset.h b/Gems/PhysX/Code/Include/PhysX/MeshAsset.h index 696996a885..6d4c5853a5 100644 --- a/Gems/PhysX/Code/Include/PhysX/MeshAsset.h +++ b/Gems/PhysX/Code/Include/PhysX/MeshAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/MeshColliderComponentBus.h b/Gems/PhysX/Code/Include/PhysX/MeshColliderComponentBus.h index a2c754f432..553d5b1646 100644 --- a/Gems/PhysX/Code/Include/PhysX/MeshColliderComponentBus.h +++ b/Gems/PhysX/Code/Include/PhysX/MeshColliderComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/NativeTypeIdentifiers.h b/Gems/PhysX/Code/Include/PhysX/NativeTypeIdentifiers.h index b56aea5606..5cd066a51e 100644 --- a/Gems/PhysX/Code/Include/PhysX/NativeTypeIdentifiers.h +++ b/Gems/PhysX/Code/Include/PhysX/NativeTypeIdentifiers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/PhysXLocks.h b/Gems/PhysX/Code/Include/PhysX/PhysXLocks.h index 08ff3a8024..ccf1f590fd 100644 --- a/Gems/PhysX/Code/Include/PhysX/PhysXLocks.h +++ b/Gems/PhysX/Code/Include/PhysX/PhysXLocks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/SystemComponentBus.h b/Gems/PhysX/Code/Include/PhysX/SystemComponentBus.h index afb92f153d..41a1eb4558 100644 --- a/Gems/PhysX/Code/Include/PhysX/SystemComponentBus.h +++ b/Gems/PhysX/Code/Include/PhysX/SystemComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h index 77c7936e4c..21c07374e7 100644 --- a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h +++ b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl index 2e426c4336..d6e0d2d256 100644 --- a/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl +++ b/Gems/PhysX/Code/Include/PhysX/UserDataTypes.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/Utils.h b/Gems/PhysX/Code/Include/PhysX/Utils.h index 28326af52a..a024920e01 100644 --- a/Gems/PhysX/Code/Include/PhysX/Utils.h +++ b/Gems/PhysX/Code/Include/PhysX/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Include/PhysX/Utils.inl b/Gems/PhysX/Code/Include/PhysX/Utils.inl index 468025b291..353664cb05 100644 --- a/Gems/PhysX/Code/Include/PhysX/Utils.inl +++ b/Gems/PhysX/Code/Include/PhysX/Utils.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/CMakeLists.txt b/Gems/PhysX/Code/NumericalMethods/CMakeLists.txt index 8826af3d96..abfbb958a6 100644 --- a/Gems/PhysX/Code/NumericalMethods/CMakeLists.txt +++ b/Gems/PhysX/Code/NumericalMethods/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Eigenanalysis.h b/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Eigenanalysis.h index 5024fcb4cd..97953f80a9 100644 --- a/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Eigenanalysis.h +++ b/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Eigenanalysis.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Optimization.h b/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Optimization.h index 4f72aa877f..2ad143f5d3 100644 --- a/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Optimization.h +++ b/Gems/PhysX/Code/NumericalMethods/Include/NumericalMethods/Optimization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/EigenanalysisUtilities.cpp b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/EigenanalysisUtilities.cpp index 84a9f40e67..5460917737 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/EigenanalysisUtilities.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/EigenanalysisUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.cpp b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.cpp index 731bd6ff22..e0751cb725 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.h b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.h index 6f304517ed..a330b732ac 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Solver3x3.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Utilities.h b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Utilities.h index 1fc27a9030..0b74b0300b 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Utilities.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/Eigenanalysis/Utilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.cpp b/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.cpp index ca5b4ce3e6..a88f2bf324 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.h b/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.h index f4279d529f..2a2513b21b 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/LinearAlgebra.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods.cpp b/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods.cpp index 21f3c16904..8f46af84d1 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods_precompiled.h b/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods_precompiled.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/NumericalMethods_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Constants.h b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Constants.h index fc406b9449..e248c8e592 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Constants.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Constants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.cpp b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.cpp index ea54d4d19b..5d737328a7 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.h b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.h index 42a4d9a727..baa8974912 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/LineSearch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.cpp b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.cpp index a9453a9631..c9de544801 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.h b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.h index b0a143c7c6..9e0afb9004 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/SolverBFGS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.cpp b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.cpp index 1b70581c98..ad3df6e567 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.h b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.h index 09810dc47f..fc97787080 100644 --- a/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.h +++ b/Gems/PhysX/Code/NumericalMethods/Source/Optimization/Utilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Tests/CommonTest.cpp b/Gems/PhysX/Code/NumericalMethods/Tests/CommonTest.cpp index b53d174563..20db25bc0f 100644 --- a/Gems/PhysX/Code/NumericalMethods/Tests/CommonTest.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Tests/CommonTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Tests/EigenanalysisTest.cpp b/Gems/PhysX/Code/NumericalMethods/Tests/EigenanalysisTest.cpp index 4c95c27876..00272fd78e 100644 --- a/Gems/PhysX/Code/NumericalMethods/Tests/EigenanalysisTest.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Tests/EigenanalysisTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Tests/Environment.cpp b/Gems/PhysX/Code/NumericalMethods/Tests/Environment.cpp index 43a3c1fdec..fc286d3f1e 100644 --- a/Gems/PhysX/Code/NumericalMethods/Tests/Environment.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Tests/Environment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Tests/Environment.h b/Gems/PhysX/Code/NumericalMethods/Tests/Environment.h index b6cabb9f0c..caad86b553 100644 --- a/Gems/PhysX/Code/NumericalMethods/Tests/Environment.h +++ b/Gems/PhysX/Code/NumericalMethods/Tests/Environment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/Tests/OptimizationTest.cpp b/Gems/PhysX/Code/NumericalMethods/Tests/OptimizationTest.cpp index 5c3434ab5f..b5e9278a6e 100644 --- a/Gems/PhysX/Code/NumericalMethods/Tests/OptimizationTest.cpp +++ b/Gems/PhysX/Code/NumericalMethods/Tests/OptimizationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/NumericalMethods/numericalmethods_files.cmake b/Gems/PhysX/Code/NumericalMethods/numericalmethods_files.cmake index db13937304..c0750c640b 100644 --- a/Gems/PhysX/Code/NumericalMethods/numericalmethods_files.cmake +++ b/Gems/PhysX/Code/NumericalMethods/numericalmethods_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/NumericalMethods/numericalmethods_tests_files.cmake b/Gems/PhysX/Code/NumericalMethods/numericalmethods_tests_files.cmake index f0cf97c5a1..218d56a37c 100644 --- a/Gems/PhysX/Code/NumericalMethods/numericalmethods_tests_files.cmake +++ b/Gems/PhysX/Code/NumericalMethods/numericalmethods_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/BallJointComponent.cpp b/Gems/PhysX/Code/Source/BallJointComponent.cpp index 6dfbb39227..a93fab5053 100644 --- a/Gems/PhysX/Code/Source/BallJointComponent.cpp +++ b/Gems/PhysX/Code/Source/BallJointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/BallJointComponent.h b/Gems/PhysX/Code/Source/BallJointComponent.h index 5de8edd946..2f4de60d76 100644 --- a/Gems/PhysX/Code/Source/BallJointComponent.h +++ b/Gems/PhysX/Code/Source/BallJointComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/BaseColliderComponent.cpp b/Gems/PhysX/Code/Source/BaseColliderComponent.cpp index 84c36c2e3f..1b2e5a52db 100644 --- a/Gems/PhysX/Code/Source/BaseColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/BaseColliderComponent.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/BaseColliderComponent.h b/Gems/PhysX/Code/Source/BaseColliderComponent.h index 5d070f1329..2ead3de2fb 100644 --- a/Gems/PhysX/Code/Source/BaseColliderComponent.h +++ b/Gems/PhysX/Code/Source/BaseColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/BoxColliderComponent.cpp b/Gems/PhysX/Code/Source/BoxColliderComponent.cpp index 19c78ccc5c..6c8de25e39 100644 --- a/Gems/PhysX/Code/Source/BoxColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/BoxColliderComponent.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/BoxColliderComponent.h b/Gems/PhysX/Code/Source/BoxColliderComponent.h index 0dbdf8e3f4..3c4ed30b9a 100644 --- a/Gems/PhysX/Code/Source/BoxColliderComponent.h +++ b/Gems/PhysX/Code/Source/BoxColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/CapsuleColliderComponent.cpp b/Gems/PhysX/Code/Source/CapsuleColliderComponent.cpp index 6b7a0bcba8..befb6d1e96 100644 --- a/Gems/PhysX/Code/Source/CapsuleColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/CapsuleColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/CapsuleColliderComponent.h b/Gems/PhysX/Code/Source/CapsuleColliderComponent.h index d17cc62380..685b55f86b 100644 --- a/Gems/PhysX/Code/Source/CapsuleColliderComponent.h +++ b/Gems/PhysX/Code/Source/CapsuleColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Collision.cpp b/Gems/PhysX/Code/Source/Collision.cpp index f0c0174d55..954445c379 100644 --- a/Gems/PhysX/Code/Source/Collision.cpp +++ b/Gems/PhysX/Code/Source/Collision.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Collision.h b/Gems/PhysX/Code/Source/Collision.h index 751b1c946f..12782d52ac 100644 --- a/Gems/PhysX/Code/Source/Collision.h +++ b/Gems/PhysX/Code/Source/Collision.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.cpp b/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.cpp index dfd65895fd..37e37d07e3 100644 --- a/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.cpp +++ b/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.h b/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.h index 2a7135dd52..9de24770a6 100644 --- a/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.h +++ b/Gems/PhysX/Code/Source/Common/PhysXSceneQueryHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ComponentDescriptors.cpp b/Gems/PhysX/Code/Source/ComponentDescriptors.cpp index 0387f1050a..69ab3de985 100644 --- a/Gems/PhysX/Code/Source/ComponentDescriptors.cpp +++ b/Gems/PhysX/Code/Source/ComponentDescriptors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ComponentDescriptors.h b/Gems/PhysX/Code/Source/ComponentDescriptors.h index 1380388119..ebc1112b82 100644 --- a/Gems/PhysX/Code/Source/ComponentDescriptors.h +++ b/Gems/PhysX/Code/Source/ComponentDescriptors.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp b/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp index 3f28da93d6..a77e38638f 100644 --- a/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp +++ b/Gems/PhysX/Code/Source/Configuration/PhysXConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.cpp b/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.cpp index a9809e2290..b4ae54ad71 100644 --- a/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.cpp +++ b/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.h b/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.h index 8f69417ded..569b3e1ade 100644 --- a/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.h +++ b/Gems/PhysX/Code/Source/Configuration/PhysXSettingsRegistryManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Debug/Configuration/PhysXDebugConfiguration.cpp b/Gems/PhysX/Code/Source/Debug/Configuration/PhysXDebugConfiguration.cpp index a5525e520e..33efc73037 100644 --- a/Gems/PhysX/Code/Source/Debug/Configuration/PhysXDebugConfiguration.cpp +++ b/Gems/PhysX/Code/Source/Debug/Configuration/PhysXDebugConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Debug/PhysXDebug.cpp b/Gems/PhysX/Code/Source/Debug/PhysXDebug.cpp index 04470d2339..f7be2549ba 100644 --- a/Gems/PhysX/Code/Source/Debug/PhysXDebug.cpp +++ b/Gems/PhysX/Code/Source/Debug/PhysXDebug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Debug/PhysXDebug.h b/Gems/PhysX/Code/Source/Debug/PhysXDebug.h index f3e58513bd..aab974cde6 100644 --- a/Gems/PhysX/Code/Source/Debug/PhysXDebug.h +++ b/Gems/PhysX/Code/Source/Debug/PhysXDebug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/DefaultWorldComponent.cpp b/Gems/PhysX/Code/Source/DefaultWorldComponent.cpp index 4406011016..6973dcca44 100644 --- a/Gems/PhysX/Code/Source/DefaultWorldComponent.cpp +++ b/Gems/PhysX/Code/Source/DefaultWorldComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/DefaultWorldComponent.h b/Gems/PhysX/Code/Source/DefaultWorldComponent.h index 2b4afe1662..2bab99086a 100644 --- a/Gems/PhysX/Code/Source/DefaultWorldComponent.h +++ b/Gems/PhysX/Code/Source/DefaultWorldComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp b/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp index 71d0d298e0..425c61a40a 100644 --- a/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorBallJointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorBallJointComponent.h b/Gems/PhysX/Code/Source/EditorBallJointComponent.h index 806ef83f15..c206820225 100644 --- a/Gems/PhysX/Code/Source/EditorBallJointComponent.h +++ b/Gems/PhysX/Code/Source/EditorBallJointComponent.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp index 1c96c7f966..0e476546ee 100644 --- a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorColliderComponent.h b/Gems/PhysX/Code/Source/EditorColliderComponent.h index 99f80e68b6..5fd94f97c9 100644 --- a/Gems/PhysX/Code/Source/EditorColliderComponent.h +++ b/Gems/PhysX/Code/Source/EditorColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorComponentDescriptors.cpp b/Gems/PhysX/Code/Source/EditorComponentDescriptors.cpp index 109dbf269a..927879bc40 100644 --- a/Gems/PhysX/Code/Source/EditorComponentDescriptors.cpp +++ b/Gems/PhysX/Code/Source/EditorComponentDescriptors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorComponentDescriptors.h b/Gems/PhysX/Code/Source/EditorComponentDescriptors.h index e8535e39e6..4357eb709f 100644 --- a/Gems/PhysX/Code/Source/EditorComponentDescriptors.h +++ b/Gems/PhysX/Code/Source/EditorComponentDescriptors.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorFixedJointComponent.cpp b/Gems/PhysX/Code/Source/EditorFixedJointComponent.cpp index a37da38aef..8ceed712b5 100644 --- a/Gems/PhysX/Code/Source/EditorFixedJointComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorFixedJointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorFixedJointComponent.h b/Gems/PhysX/Code/Source/EditorFixedJointComponent.h index a6059fca88..a1dd023281 100644 --- a/Gems/PhysX/Code/Source/EditorFixedJointComponent.h +++ b/Gems/PhysX/Code/Source/EditorFixedJointComponent.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorForceRegionComponent.cpp b/Gems/PhysX/Code/Source/EditorForceRegionComponent.cpp index 3dc99a5427..9a4c8a9df1 100644 --- a/Gems/PhysX/Code/Source/EditorForceRegionComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorForceRegionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorForceRegionComponent.h b/Gems/PhysX/Code/Source/EditorForceRegionComponent.h index 8627d41e26..ccd19ffdc6 100644 --- a/Gems/PhysX/Code/Source/EditorForceRegionComponent.h +++ b/Gems/PhysX/Code/Source/EditorForceRegionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorHingeJointComponent.cpp b/Gems/PhysX/Code/Source/EditorHingeJointComponent.cpp index 0237669add..d1b54383e1 100644 --- a/Gems/PhysX/Code/Source/EditorHingeJointComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorHingeJointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorHingeJointComponent.h b/Gems/PhysX/Code/Source/EditorHingeJointComponent.h index e8b53d4d55..68e15f77d7 100644 --- a/Gems/PhysX/Code/Source/EditorHingeJointComponent.h +++ b/Gems/PhysX/Code/Source/EditorHingeJointComponent.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorJointComponent.cpp b/Gems/PhysX/Code/Source/EditorJointComponent.cpp index 9de3549fad..026f2252be 100644 --- a/Gems/PhysX/Code/Source/EditorJointComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorJointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorJointComponent.h b/Gems/PhysX/Code/Source/EditorJointComponent.h index ebb8b74d13..f34aa87293 100644 --- a/Gems/PhysX/Code/Source/EditorJointComponent.h +++ b/Gems/PhysX/Code/Source/EditorJointComponent.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorRigidBodyComponent.cpp b/Gems/PhysX/Code/Source/EditorRigidBodyComponent.cpp index 69d0b48988..303c34d66b 100644 --- a/Gems/PhysX/Code/Source/EditorRigidBodyComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorRigidBodyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorRigidBodyComponent.h b/Gems/PhysX/Code/Source/EditorRigidBodyComponent.h index 706c1918bb..101509041e 100644 --- a/Gems/PhysX/Code/Source/EditorRigidBodyComponent.h +++ b/Gems/PhysX/Code/Source/EditorRigidBodyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp b/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp index fa0baee314..491c6f712b 100644 --- a/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorShapeColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/EditorShapeColliderComponent.h b/Gems/PhysX/Code/Source/EditorShapeColliderComponent.h index 5306d0d831..49381c1dfd 100644 --- a/Gems/PhysX/Code/Source/EditorShapeColliderComponent.h +++ b/Gems/PhysX/Code/Source/EditorShapeColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/FixedJointComponent.cpp b/Gems/PhysX/Code/Source/FixedJointComponent.cpp index 4bbfcac91b..dc317cbb5a 100644 --- a/Gems/PhysX/Code/Source/FixedJointComponent.cpp +++ b/Gems/PhysX/Code/Source/FixedJointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/FixedJointComponent.h b/Gems/PhysX/Code/Source/FixedJointComponent.h index bfe6a483f1..90f3f2cf8e 100644 --- a/Gems/PhysX/Code/Source/FixedJointComponent.h +++ b/Gems/PhysX/Code/Source/FixedJointComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ForceRegion.cpp b/Gems/PhysX/Code/Source/ForceRegion.cpp index 505806bba2..74bf194481 100644 --- a/Gems/PhysX/Code/Source/ForceRegion.cpp +++ b/Gems/PhysX/Code/Source/ForceRegion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ForceRegion.h b/Gems/PhysX/Code/Source/ForceRegion.h index 759adb4eb9..d63db80e44 100644 --- a/Gems/PhysX/Code/Source/ForceRegion.h +++ b/Gems/PhysX/Code/Source/ForceRegion.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ForceRegionComponent.cpp b/Gems/PhysX/Code/Source/ForceRegionComponent.cpp index 50f750bdc5..7d3935b307 100644 --- a/Gems/PhysX/Code/Source/ForceRegionComponent.cpp +++ b/Gems/PhysX/Code/Source/ForceRegionComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ForceRegionComponent.h b/Gems/PhysX/Code/Source/ForceRegionComponent.h index 701cb349ec..27aac625c6 100644 --- a/Gems/PhysX/Code/Source/ForceRegionComponent.h +++ b/Gems/PhysX/Code/Source/ForceRegionComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ForceRegionForces.cpp b/Gems/PhysX/Code/Source/ForceRegionForces.cpp index d3a7d00b52..9aae06429e 100644 --- a/Gems/PhysX/Code/Source/ForceRegionForces.cpp +++ b/Gems/PhysX/Code/Source/ForceRegionForces.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ForceRegionForces.h b/Gems/PhysX/Code/Source/ForceRegionForces.h index 8f37814076..b1db67340a 100644 --- a/Gems/PhysX/Code/Source/ForceRegionForces.h +++ b/Gems/PhysX/Code/Source/ForceRegionForces.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/HingeJointComponent.cpp b/Gems/PhysX/Code/Source/HingeJointComponent.cpp index a7722be9c2..64975cc50b 100644 --- a/Gems/PhysX/Code/Source/HingeJointComponent.cpp +++ b/Gems/PhysX/Code/Source/HingeJointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/HingeJointComponent.h b/Gems/PhysX/Code/Source/HingeJointComponent.h index 799b79a114..cd97ba6e35 100644 --- a/Gems/PhysX/Code/Source/HingeJointComponent.h +++ b/Gems/PhysX/Code/Source/HingeJointComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Joint.cpp b/Gems/PhysX/Code/Source/Joint.cpp index 8be9e0d9d3..240a7c822f 100644 --- a/Gems/PhysX/Code/Source/Joint.cpp +++ b/Gems/PhysX/Code/Source/Joint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Joint.h b/Gems/PhysX/Code/Source/Joint.h index 7b3e47b1ef..0ca546d098 100644 --- a/Gems/PhysX/Code/Source/Joint.h +++ b/Gems/PhysX/Code/Source/Joint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/JointComponent.cpp b/Gems/PhysX/Code/Source/JointComponent.cpp index 5d7f2ea5ce..13eadac3d3 100644 --- a/Gems/PhysX/Code/Source/JointComponent.cpp +++ b/Gems/PhysX/Code/Source/JointComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/JointComponent.h b/Gems/PhysX/Code/Source/JointComponent.h index 0a70664297..4b2725a9dd 100644 --- a/Gems/PhysX/Code/Source/JointComponent.h +++ b/Gems/PhysX/Code/Source/JointComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Material.cpp b/Gems/PhysX/Code/Source/Material.cpp index 8074df99bf..0f55dd4e20 100644 --- a/Gems/PhysX/Code/Source/Material.cpp +++ b/Gems/PhysX/Code/Source/Material.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Material.h b/Gems/PhysX/Code/Source/Material.h index 823b59f564..5c1f40397b 100644 --- a/Gems/PhysX/Code/Source/Material.h +++ b/Gems/PhysX/Code/Source/Material.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/MeshColliderComponent.cpp b/Gems/PhysX/Code/Source/MeshColliderComponent.cpp index 32579891ac..16d051a2e5 100644 --- a/Gems/PhysX/Code/Source/MeshColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/MeshColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/MeshColliderComponent.h b/Gems/PhysX/Code/Source/MeshColliderComponent.h index 1378bc4411..8ad1f7235a 100644 --- a/Gems/PhysX/Code/Source/MeshColliderComponent.h +++ b/Gems/PhysX/Code/Source/MeshColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Module.cpp b/Gems/PhysX/Code/Source/Module.cpp index ff0062b0ad..e36ce0ecd9 100644 --- a/Gems/PhysX/Code/Source/Module.cpp +++ b/Gems/PhysX/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ModuleUnsupported.cpp b/Gems/PhysX/Code/Source/ModuleUnsupported.cpp index 424709dcb7..434ea7a9ec 100644 --- a/Gems/PhysX/Code/Source/ModuleUnsupported.cpp +++ b/Gems/PhysX/Code/Source/ModuleUnsupported.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/NameConstants.cpp b/Gems/PhysX/Code/Source/NameConstants.cpp index feb10e0681..c44c5d5974 100644 --- a/Gems/PhysX/Code/Source/NameConstants.cpp +++ b/Gems/PhysX/Code/Source/NameConstants.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/NameConstants.h b/Gems/PhysX/Code/Source/NameConstants.h index b7b39c3db4..a1d745cffa 100644 --- a/Gems/PhysX/Code/Source/NameConstants.h +++ b/Gems/PhysX/Code/Source/NameConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.cpp index c43e750d65..54328dd0c2 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.h b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.h index b3f7db20c8..f2cc08c625 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterController.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.cpp index 42c9100481..3f336d1e0f 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.h b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.h index 6f9e589c0c..4907329746 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/CharacterUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.cpp index bb66ff0b1f..22c6b55650 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.h b/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.h index 71092a2189..512149db92 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/Ragdoll.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.cpp index d77c623b38..cf9274751d 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.h b/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.h index e131edb093..8acd27f4a6 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/API/RagdollNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.cpp index 90f54430e4..b2b09306f1 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.h b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.h index 2ec9e7c657..82e28d6a95 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.cpp index 219b6b7940..4bc2720b07 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.h b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.h index 385f1bd432..cf4788d1fa 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/CharacterGameplayComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.cpp index c7f5dc8186..94a7db5627 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.h b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.h index dddc53329f..5f603c29b6 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterControllerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.cpp index d033e8253e..154958463a 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.h b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.h index 8c6444bfae..1515c7973e 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/EditorCharacterGameplayComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.cpp b/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.cpp index 4f9ff9da49..9e2cc0f328 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.cpp +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.h b/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.h index b9d05b62a4..cb5e339171 100644 --- a/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.h +++ b/Gems/PhysX/Code/Source/PhysXCharacters/Components/RagdollComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysXUnsupported_precompiled.h b/Gems/PhysX/Code/Source/PhysXUnsupported_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/PhysX/Code/Source/PhysXUnsupported_precompiled.h +++ b/Gems/PhysX/Code/Source/PhysXUnsupported_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/PhysX_precompiled.h b/Gems/PhysX/Code/Source/PhysX_precompiled.h index 3eca2440f0..27096b4e66 100644 --- a/Gems/PhysX/Code/Source/PhysX_precompiled.h +++ b/Gems/PhysX/Code/Source/PhysX_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.cpp b/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.cpp index 8d1445a00f..51cf461f26 100644 --- a/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.h b/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.h index 8810bee83b..ef6c29d564 100644 --- a/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.h +++ b/Gems/PhysX/Code/Source/Pipeline/HeightFieldAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp index 1357ee1419..fcc07e2eed 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.h b/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.h index df5273090e..4415d0e5ac 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.h +++ b/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.cpp index f8e52f5dae..299e5cdd23 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.h b/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.h index 1fa9c463bb..adf02cba00 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.h +++ b/Gems/PhysX/Code/Source/Pipeline/MeshBehavior.h @@ -1,7 +1,7 @@ #pragma once /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp index 32bc9e0a0a..f92b2d30e6 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h index 44c651cf3d..8307e8289b 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h +++ b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp index d12e66d0a1..9fe9256019 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshGroup.h b/Gems/PhysX/Code/Source/Pipeline/MeshGroup.h index 3a633ae9f4..865ca01c50 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshGroup.h +++ b/Gems/PhysX/Code/Source/Pipeline/MeshGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.cpp b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.cpp index ef35daddd4..7c667e1afa 100644 --- a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.h b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.h index 495bcfa744..00ba04c9f7 100644 --- a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.h +++ b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/AbstractShapeParameterization.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.cpp b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.cpp index 94b4bc4fbf..baa550b06e 100644 --- a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.h b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.h index febd279519..7b311f8002 100644 --- a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.h +++ b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/PrimitiveShapeFitter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.cpp b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.cpp index 462a6facb7..953c7e6d51 100644 --- a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.h b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.h index 9520ce8690..10a48469c4 100644 --- a/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.h +++ b/Gems/PhysX/Code/Source/Pipeline/PrimitiveShapeFitter/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.cpp b/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.cpp index 805bb13ede..15d644b812 100644 --- a/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.h b/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.h index 1ad3423882..8ce768a107 100644 --- a/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.h +++ b/Gems/PhysX/Code/Source/Pipeline/StreamWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake b/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake index 031f56eb19..9033ea99c2 100644 --- a/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/PhysX/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Android.h b/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Android.h index afd77a839b..616b1dddf9 100644 --- a/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Android.h +++ b/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Platform.h b/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Platform.h index 629add040e..cae6448c80 100644 --- a/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Platform.h +++ b/Gems/PhysX/Code/Source/Platform/Android/PhysX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/PhysX/Code/Source/Platform/Android/platform_android_files.cmake index 21cfcb07c5..1347ff4cf9 100644 --- a/Gems/PhysX/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/PhysX/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake index 031f56eb19..9033ea99c2 100644 --- a/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/PhysX/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Linux.h b/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Linux.h index afd77a839b..616b1dddf9 100644 --- a/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Linux.h +++ b/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Platform.h b/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Platform.h index 045de5c228..3037706f2d 100644 --- a/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Platform.h +++ b/Gems/PhysX/Code/Source/Platform/Linux/PhysX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/PhysX/Code/Source/Platform/Linux/platform_linux_files.cmake index f6bbe7ce15..e4b85ba3bc 100644 --- a/Gems/PhysX/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/PhysX/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake index 031f56eb19..9033ea99c2 100644 --- a/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/PhysX/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Mac.h b/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Mac.h index afd77a839b..616b1dddf9 100644 --- a/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Mac.h +++ b/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Platform.h b/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Platform.h index c6280a726b..11dc79f782 100644 --- a/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Platform.h +++ b/Gems/PhysX/Code/Source/Platform/Mac/PhysX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/PhysX/Code/Source/Platform/Mac/platform_mac_files.cmake index f6510b730d..da09019139 100644 --- a/Gems/PhysX/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/PhysX/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake index 031f56eb19..9033ea99c2 100644 --- a/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/PhysX/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Platform.h b/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Platform.h index 69475055b8..8282b1504b 100644 --- a/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Platform.h +++ b/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Windows.h b/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Windows.h index afd77a839b..616b1dddf9 100644 --- a/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Windows.h +++ b/Gems/PhysX/Code/Source/Platform/Windows/PhysX_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/PhysX/Code/Source/Platform/Windows/platform_windows_files.cmake index 006670a575..891395010a 100644 --- a/Gems/PhysX/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/PhysX/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake index 031f56eb19..9033ea99c2 100644 --- a/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/PhysX/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_Platform.h b/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_Platform.h index 5a55018f67..de1dcd9322 100644 --- a/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_Platform.h +++ b/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_iOS.h b/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_iOS.h index afd77a839b..616b1dddf9 100644 --- a/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_iOS.h +++ b/Gems/PhysX/Code/Source/Platform/iOS/PhysX_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/PhysX/Code/Source/Platform/iOS/platform_ios_files.cmake index e7af5d41b6..4b977989d1 100644 --- a/Gems/PhysX/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/PhysX/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/Source/RigidBody.cpp b/Gems/PhysX/Code/Source/RigidBody.cpp index b0bace4ce2..5ffcba7aa8 100644 --- a/Gems/PhysX/Code/Source/RigidBody.cpp +++ b/Gems/PhysX/Code/Source/RigidBody.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/RigidBody.h b/Gems/PhysX/Code/Source/RigidBody.h index 7177f07dce..825193762a 100644 --- a/Gems/PhysX/Code/Source/RigidBody.h +++ b/Gems/PhysX/Code/Source/RigidBody.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/RigidBodyComponent.cpp b/Gems/PhysX/Code/Source/RigidBodyComponent.cpp index 4cd7d3b143..1ffb4b9a49 100644 --- a/Gems/PhysX/Code/Source/RigidBodyComponent.cpp +++ b/Gems/PhysX/Code/Source/RigidBodyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/RigidBodyComponent.h b/Gems/PhysX/Code/Source/RigidBodyComponent.h index 3de155d334..523f4ccb14 100644 --- a/Gems/PhysX/Code/Source/RigidBodyComponent.h +++ b/Gems/PhysX/Code/Source/RigidBodyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/RigidBodyStatic.cpp b/Gems/PhysX/Code/Source/RigidBodyStatic.cpp index 956c542b97..26125fd317 100644 --- a/Gems/PhysX/Code/Source/RigidBodyStatic.cpp +++ b/Gems/PhysX/Code/Source/RigidBodyStatic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/RigidBodyStatic.h b/Gems/PhysX/Code/Source/RigidBodyStatic.h index fc8563590b..52950a8f84 100644 --- a/Gems/PhysX/Code/Source/RigidBodyStatic.h +++ b/Gems/PhysX/Code/Source/RigidBodyStatic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp b/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp index a7ba93da3b..6d3d7a2607 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp +++ b/Gems/PhysX/Code/Source/Scene/PhysXScene.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXScene.h b/Gems/PhysX/Code/Source/Scene/PhysXScene.h index c4294aa2a7..48a8052c1f 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXScene.h +++ b/Gems/PhysX/Code/Source/Scene/PhysXScene.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.cpp b/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.cpp index 5b03c47fc0..0784407169 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.cpp +++ b/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.h b/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.h index d6b19a39c5..8bafcd99b6 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.h +++ b/Gems/PhysX/Code/Source/Scene/PhysXSceneInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.cpp b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.cpp index 4597ebbe97..a9b0bfb8ac 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.cpp +++ b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.h b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.h index 0c2301f97d..ff7864b0ab 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.h +++ b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationEventCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.cpp b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.cpp index 7c5242263b..f4bedf383f 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.cpp +++ b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.h b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.h index d96c937bf1..f8ef7a208a 100644 --- a/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.h +++ b/Gems/PhysX/Code/Source/Scene/PhysXSceneSimulationFilterCallback.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Shape.cpp b/Gems/PhysX/Code/Source/Shape.cpp index b29e407e0c..cf143b3482 100644 --- a/Gems/PhysX/Code/Source/Shape.cpp +++ b/Gems/PhysX/Code/Source/Shape.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Shape.h b/Gems/PhysX/Code/Source/Shape.h index 9c1d235b74..ef9364ff9e 100644 --- a/Gems/PhysX/Code/Source/Shape.h +++ b/Gems/PhysX/Code/Source/Shape.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ShapeColliderComponent.cpp b/Gems/PhysX/Code/Source/ShapeColliderComponent.cpp index 4134174d49..9491b05e49 100644 --- a/Gems/PhysX/Code/Source/ShapeColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/ShapeColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/ShapeColliderComponent.h b/Gems/PhysX/Code/Source/ShapeColliderComponent.h index 60012768d6..ca8fe940a3 100644 --- a/Gems/PhysX/Code/Source/ShapeColliderComponent.h +++ b/Gems/PhysX/Code/Source/ShapeColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/SphereColliderComponent.cpp b/Gems/PhysX/Code/Source/SphereColliderComponent.cpp index 0f90bed7df..91bff6d660 100644 --- a/Gems/PhysX/Code/Source/SphereColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/SphereColliderComponent.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/SphereColliderComponent.h b/Gems/PhysX/Code/Source/SphereColliderComponent.h index 368786764b..f783f33dc5 100644 --- a/Gems/PhysX/Code/Source/SphereColliderComponent.h +++ b/Gems/PhysX/Code/Source/SphereColliderComponent.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/StaticRigidBodyComponent.cpp b/Gems/PhysX/Code/Source/StaticRigidBodyComponent.cpp index f787e5ff30..5742dba87d 100644 --- a/Gems/PhysX/Code/Source/StaticRigidBodyComponent.cpp +++ b/Gems/PhysX/Code/Source/StaticRigidBodyComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/StaticRigidBodyComponent.h b/Gems/PhysX/Code/Source/StaticRigidBodyComponent.h index ca80da1e62..9002d7525b 100644 --- a/Gems/PhysX/Code/Source/StaticRigidBodyComponent.h +++ b/Gems/PhysX/Code/Source/StaticRigidBodyComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXAllocator.cpp b/Gems/PhysX/Code/Source/System/PhysXAllocator.cpp index 5c0752daaa..5b05c72ae0 100644 --- a/Gems/PhysX/Code/Source/System/PhysXAllocator.cpp +++ b/Gems/PhysX/Code/Source/System/PhysXAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXAllocator.h b/Gems/PhysX/Code/Source/System/PhysXAllocator.h index 3e70a55ea3..2fb3fd9e61 100644 --- a/Gems/PhysX/Code/Source/System/PhysXAllocator.h +++ b/Gems/PhysX/Code/Source/System/PhysXAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXCookingParams.cpp b/Gems/PhysX/Code/Source/System/PhysXCookingParams.cpp index 3a2f076d82..a3a4483604 100644 --- a/Gems/PhysX/Code/Source/System/PhysXCookingParams.cpp +++ b/Gems/PhysX/Code/Source/System/PhysXCookingParams.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXCookingParams.h b/Gems/PhysX/Code/Source/System/PhysXCookingParams.h index 0f0fb04884..6df8791dda 100644 --- a/Gems/PhysX/Code/Source/System/PhysXCookingParams.h +++ b/Gems/PhysX/Code/Source/System/PhysXCookingParams.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.cpp b/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.cpp index 5891eb5461..6e8fcdd3bd 100644 --- a/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.cpp +++ b/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.h b/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.h index 2b408e86ab..bfc764f948 100644 --- a/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.h +++ b/Gems/PhysX/Code/Source/System/PhysXCpuDispatcher.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXJob.cpp b/Gems/PhysX/Code/Source/System/PhysXJob.cpp index 4d5605d1d5..d8f1a2da08 100644 --- a/Gems/PhysX/Code/Source/System/PhysXJob.cpp +++ b/Gems/PhysX/Code/Source/System/PhysXJob.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXJob.h b/Gems/PhysX/Code/Source/System/PhysXJob.h index 6a2f88b7ff..eeb355ddc0 100644 --- a/Gems/PhysX/Code/Source/System/PhysXJob.h +++ b/Gems/PhysX/Code/Source/System/PhysXJob.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp b/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp index 159e021ee7..55b53ceae8 100644 --- a/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp +++ b/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.h b/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.h index a588699054..622af3a5fc 100644 --- a/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.h +++ b/Gems/PhysX/Code/Source/System/PhysXSdkCallbacks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXSystem.cpp b/Gems/PhysX/Code/Source/System/PhysXSystem.cpp index 6f18280d6a..24f0895eb8 100644 --- a/Gems/PhysX/Code/Source/System/PhysXSystem.cpp +++ b/Gems/PhysX/Code/Source/System/PhysXSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/System/PhysXSystem.h b/Gems/PhysX/Code/Source/System/PhysXSystem.h index 59c87c2a85..2a2f82ef45 100644 --- a/Gems/PhysX/Code/Source/System/PhysXSystem.h +++ b/Gems/PhysX/Code/Source/System/PhysXSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/SystemComponent.cpp b/Gems/PhysX/Code/Source/SystemComponent.cpp index ab84e1392d..92aada758e 100644 --- a/Gems/PhysX/Code/Source/SystemComponent.cpp +++ b/Gems/PhysX/Code/Source/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/SystemComponent.h b/Gems/PhysX/Code/Source/SystemComponent.h index 2722d6cc6a..53293c514d 100644 --- a/Gems/PhysX/Code/Source/SystemComponent.h +++ b/Gems/PhysX/Code/Source/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Utils.cpp b/Gems/PhysX/Code/Source/Utils.cpp index d471943e10..aae3a47a79 100644 --- a/Gems/PhysX/Code/Source/Utils.cpp +++ b/Gems/PhysX/Code/Source/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/Utils.h b/Gems/PhysX/Code/Source/Utils.h index f609737bb5..7982c6e2a8 100644 --- a/Gems/PhysX/Code/Source/Utils.h +++ b/Gems/PhysX/Code/Source/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/WindProvider.cpp b/Gems/PhysX/Code/Source/WindProvider.cpp index 81db391919..4187ec9d1e 100644 --- a/Gems/PhysX/Code/Source/WindProvider.cpp +++ b/Gems/PhysX/Code/Source/WindProvider.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Source/WindProvider.h b/Gems/PhysX/Code/Source/WindProvider.h index 9b8ff28a49..ca8ea3e0a3 100644 --- a/Gems/PhysX/Code/Source/WindProvider.h +++ b/Gems/PhysX/Code/Source/WindProvider.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.cpp index dbd6d2d93b..d01e570d4c 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.h b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.h index 2f00dae907..14bcbfe9b8 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.h +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarkWashingMachine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.cpp index 78f5a95290..5a09202e47 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.h b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.h index 4d8bfc6491..a0d520a874 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.h +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.cpp index 74dfb973f6..b7c3106391 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.h b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.h index bfa8259036..25ea84eb60 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.h +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXBenchmarksUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersBenchmarks.cpp index d4fb7106a1..1e0157f079 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp index 6421bf75d4..920de2713f 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXCharactersRagdollBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXGenericBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXGenericBenchmarks.cpp index 343b6d4669..6b8d965bd0 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXGenericBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXGenericBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp index 2dbf8a6aef..e704b7450f 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXJointBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp index 8e8eb77a7a..03c881787c 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXRigidBodyBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/Benchmarks/PhysXSceneQueryBenchmarks.cpp b/Gems/PhysX/Code/Tests/Benchmarks/PhysXSceneQueryBenchmarks.cpp index 2de7691b0a..d67708d770 100644 --- a/Gems/PhysX/Code/Tests/Benchmarks/PhysXSceneQueryBenchmarks.cpp +++ b/Gems/PhysX/Code/Tests/Benchmarks/PhysXSceneQueryBenchmarks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp b/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp index 9f27716548..b7c1f639a3 100644 --- a/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp +++ b/Gems/PhysX/Code/Tests/CharacterControllerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/ColliderScalingTests.cpp b/Gems/PhysX/Code/Tests/ColliderScalingTests.cpp index cb98b305b0..686dd4f92d 100644 --- a/Gems/PhysX/Code/Tests/ColliderScalingTests.cpp +++ b/Gems/PhysX/Code/Tests/ColliderScalingTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/DebugDrawTests.cpp b/Gems/PhysX/Code/Tests/DebugDrawTests.cpp index 7324c4b5eb..6a606ad191 100644 --- a/Gems/PhysX/Code/Tests/DebugDrawTests.cpp +++ b/Gems/PhysX/Code/Tests/DebugDrawTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/EditorCharacterControllerTests.cpp b/Gems/PhysX/Code/Tests/EditorCharacterControllerTests.cpp index d9ae707a5b..a9cce846d4 100644 --- a/Gems/PhysX/Code/Tests/EditorCharacterControllerTests.cpp +++ b/Gems/PhysX/Code/Tests/EditorCharacterControllerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/EditorTestUtilities.cpp b/Gems/PhysX/Code/Tests/EditorTestUtilities.cpp index 5494db679c..f789ae15d2 100644 --- a/Gems/PhysX/Code/Tests/EditorTestUtilities.cpp +++ b/Gems/PhysX/Code/Tests/EditorTestUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/EditorTestUtilities.h b/Gems/PhysX/Code/Tests/EditorTestUtilities.h index 0f68b42bc3..940a191181 100644 --- a/Gems/PhysX/Code/Tests/EditorTestUtilities.h +++ b/Gems/PhysX/Code/Tests/EditorTestUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp b/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp index fcb641a979..8564905394 100644 --- a/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXColliderComponentModeTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp b/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp index 6fbd73e1f6..d871770e6e 100644 --- a/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXCollisionFilteringTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXComponentBusTests.cpp b/Gems/PhysX/Code/Tests/PhysXComponentBusTests.cpp index ce0706414f..0d24fc84a0 100644 --- a/Gems/PhysX/Code/Tests/PhysXComponentBusTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXComponentBusTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXEditorTest.cpp b/Gems/PhysX/Code/Tests/PhysXEditorTest.cpp index 442f3c04f6..c798c8121e 100644 --- a/Gems/PhysX/Code/Tests/PhysXEditorTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXEditorTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXForceRegionTest.cpp b/Gems/PhysX/Code/Tests/PhysXForceRegionTest.cpp index afaea6140f..91ce359a54 100644 --- a/Gems/PhysX/Code/Tests/PhysXForceRegionTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXForceRegionTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXGenericTest.cpp b/Gems/PhysX/Code/Tests/PhysXGenericTest.cpp index 1b18f5b6db..7f9f25c7f4 100644 --- a/Gems/PhysX/Code/Tests/PhysXGenericTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXGenericTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.cpp b/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.cpp index cdcf4378ca..abe5d56939 100644 --- a/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.cpp +++ b/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.h b/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.h index 236434aef1..9648e11b9e 100644 --- a/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.h +++ b/Gems/PhysX/Code/Tests/PhysXGenericTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp b/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp index 33519195b2..b8120f8c34 100644 --- a/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXJointsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp b/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp index 76906113bb..fd97bdb3ee 100644 --- a/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXMultithreadingTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp b/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp index 73ce151d14..1ae9d280e4 100644 --- a/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXSceneQueryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp b/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp index 42a3181862..94c2d439c9 100644 --- a/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXSceneTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp b/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp index f6b75e1de0..5accc86499 100644 --- a/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXSpecificTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXSystemTests.cpp b/Gems/PhysX/Code/Tests/PhysXSystemTests.cpp index f3db14639e..dc5edd4a5a 100644 --- a/Gems/PhysX/Code/Tests/PhysXSystemTests.cpp +++ b/Gems/PhysX/Code/Tests/PhysXSystemTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestCommon.cpp b/Gems/PhysX/Code/Tests/PhysXTestCommon.cpp index 21bc43f821..e39fd321a2 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestCommon.cpp +++ b/Gems/PhysX/Code/Tests/PhysXTestCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestCommon.h b/Gems/PhysX/Code/Tests/PhysXTestCommon.h index 778ac7ce9e..7f90ddc248 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestCommon.h +++ b/Gems/PhysX/Code/Tests/PhysXTestCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestCommon.inl b/Gems/PhysX/Code/Tests/PhysXTestCommon.inl index 16c068ceff..7eee24d328 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestCommon.inl +++ b/Gems/PhysX/Code/Tests/PhysXTestCommon.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestEnvironment.cpp b/Gems/PhysX/Code/Tests/PhysXTestEnvironment.cpp index 5bdcd8b04e..35096f9b9c 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestEnvironment.cpp +++ b/Gems/PhysX/Code/Tests/PhysXTestEnvironment.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestEnvironment.h b/Gems/PhysX/Code/Tests/PhysXTestEnvironment.h index b1fd2ac9ec..35f3fb155e 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestEnvironment.h +++ b/Gems/PhysX/Code/Tests/PhysXTestEnvironment.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestFixtures.cpp b/Gems/PhysX/Code/Tests/PhysXTestFixtures.cpp index 216457e44d..1949e27f1d 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestFixtures.cpp +++ b/Gems/PhysX/Code/Tests/PhysXTestFixtures.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestFixtures.h b/Gems/PhysX/Code/Tests/PhysXTestFixtures.h index b842695213..dce827dcde 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestFixtures.h +++ b/Gems/PhysX/Code/Tests/PhysXTestFixtures.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestUtil.cpp b/Gems/PhysX/Code/Tests/PhysXTestUtil.cpp index 918b28a22a..1af923a753 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestUtil.cpp +++ b/Gems/PhysX/Code/Tests/PhysXTestUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXTestUtil.h b/Gems/PhysX/Code/Tests/PhysXTestUtil.h index 0ea53d82fe..f927b5b7d7 100644 --- a/Gems/PhysX/Code/Tests/PhysXTestUtil.h +++ b/Gems/PhysX/Code/Tests/PhysXTestUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PhysXWindTest.cpp b/Gems/PhysX/Code/Tests/PhysXWindTest.cpp index af1c9c55a9..47599a1129 100644 --- a/Gems/PhysX/Code/Tests/PhysXWindTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXWindTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PolygonPrismMeshUtilsTest.cpp b/Gems/PhysX/Code/Tests/PolygonPrismMeshUtilsTest.cpp index eb3f17d3ef..a24de1d1c2 100644 --- a/Gems/PhysX/Code/Tests/PolygonPrismMeshUtilsTest.cpp +++ b/Gems/PhysX/Code/Tests/PolygonPrismMeshUtilsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTestData.cpp b/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTestData.cpp index a6e2612999..0bfd979a99 100644 --- a/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTestData.cpp +++ b/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTestData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTests.cpp b/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTests.cpp index 628d66e8af..0d0fe52c0e 100644 --- a/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTests.cpp +++ b/Gems/PhysX/Code/Tests/PrimitiveShapeFitterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/RagdollTestData.h b/Gems/PhysX/Code/Tests/RagdollTestData.h index 207fe6ca27..dd0e8ddf94 100644 --- a/Gems/PhysX/Code/Tests/RagdollTestData.h +++ b/Gems/PhysX/Code/Tests/RagdollTestData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/RagdollTests.cpp b/Gems/PhysX/Code/Tests/RagdollTests.cpp index 27bd2afeb9..c5ee31bdb3 100644 --- a/Gems/PhysX/Code/Tests/RagdollTests.cpp +++ b/Gems/PhysX/Code/Tests/RagdollTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/RigidBodyComponentTests.cpp b/Gems/PhysX/Code/Tests/RigidBodyComponentTests.cpp index 240c6cb4af..941591ea32 100644 --- a/Gems/PhysX/Code/Tests/RigidBodyComponentTests.cpp +++ b/Gems/PhysX/Code/Tests/RigidBodyComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp b/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp index dedd9293cb..2c51071fac 100644 --- a/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp +++ b/Gems/PhysX/Code/Tests/ShapeColliderComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/ShapeGeometryTests.cpp b/Gems/PhysX/Code/Tests/ShapeGeometryTests.cpp index 413a87da34..833f5425bc 100644 --- a/Gems/PhysX/Code/Tests/ShapeGeometryTests.cpp +++ b/Gems/PhysX/Code/Tests/ShapeGeometryTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/StaticRigidBodyComponentTests.cpp b/Gems/PhysX/Code/Tests/StaticRigidBodyComponentTests.cpp index 29654edd7d..1d5e9b82d4 100644 --- a/Gems/PhysX/Code/Tests/StaticRigidBodyComponentTests.cpp +++ b/Gems/PhysX/Code/Tests/StaticRigidBodyComponentTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/SystemComponentTest.cpp b/Gems/PhysX/Code/Tests/SystemComponentTest.cpp index 669b23acda..48c11eba56 100644 --- a/Gems/PhysX/Code/Tests/SystemComponentTest.cpp +++ b/Gems/PhysX/Code/Tests/SystemComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/Tests/TestColliderComponent.h b/Gems/PhysX/Code/Tests/TestColliderComponent.h index 00f1db5609..96c9eb31cc 100644 --- a/Gems/PhysX/Code/Tests/TestColliderComponent.h +++ b/Gems/PhysX/Code/Tests/TestColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysX/Code/physx_editor_files.cmake b/Gems/PhysX/Code/physx_editor_files.cmake index cc549b143a..6a5e900732 100644 --- a/Gems/PhysX/Code/physx_editor_files.cmake +++ b/Gems/PhysX/Code/physx_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/physx_editor_shared_files.cmake b/Gems/PhysX/Code/physx_editor_shared_files.cmake index a93f67afd8..c686bffbe2 100644 --- a/Gems/PhysX/Code/physx_editor_shared_files.cmake +++ b/Gems/PhysX/Code/physx_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/physx_editor_tests_files.cmake b/Gems/PhysX/Code/physx_editor_tests_files.cmake index be4a4f4626..4229ad7f49 100644 --- a/Gems/PhysX/Code/physx_editor_tests_files.cmake +++ b/Gems/PhysX/Code/physx_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/physx_files.cmake b/Gems/PhysX/Code/physx_files.cmake index b6e8ffcd45..0c5b9fb90c 100644 --- a/Gems/PhysX/Code/physx_files.cmake +++ b/Gems/PhysX/Code/physx_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/physx_shared_files.cmake b/Gems/PhysX/Code/physx_shared_files.cmake index 7524b2529c..e5f0ae0a44 100644 --- a/Gems/PhysX/Code/physx_shared_files.cmake +++ b/Gems/PhysX/Code/physx_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/physx_tests_files.cmake b/Gems/PhysX/Code/physx_tests_files.cmake index 09ecf19de5..7fb18cbc6a 100644 --- a/Gems/PhysX/Code/physx_tests_files.cmake +++ b/Gems/PhysX/Code/physx_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/physx_unsupported_files.cmake b/Gems/PhysX/Code/physx_unsupported_files.cmake index be6086b9a5..f818bcf062 100644 --- a/Gems/PhysX/Code/physx_unsupported_files.cmake +++ b/Gems/PhysX/Code/physx_unsupported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysX/Code/physx_unsupported_shared_files.cmake b/Gems/PhysX/Code/physx_unsupported_shared_files.cmake index b1e8d60342..30622457d1 100644 --- a/Gems/PhysX/Code/physx_unsupported_shared_files.cmake +++ b/Gems/PhysX/Code/physx_unsupported_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysXDebug/CMakeLists.txt b/Gems/PhysXDebug/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/PhysXDebug/CMakeLists.txt +++ b/Gems/PhysXDebug/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysXDebug/Code/CMakeLists.txt b/Gems/PhysXDebug/Code/CMakeLists.txt index 296e0d5e45..09bbd2e8f3 100644 --- a/Gems/PhysXDebug/Code/CMakeLists.txt +++ b/Gems/PhysXDebug/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysXDebug/Code/Include/PhysXDebug/PhysXDebugBus.h b/Gems/PhysXDebug/Code/Include/PhysXDebug/PhysXDebugBus.h index 9315010c16..5967ac3dcf 100644 --- a/Gems/PhysXDebug/Code/Include/PhysXDebug/PhysXDebugBus.h +++ b/Gems/PhysXDebug/Code/Include/PhysXDebug/PhysXDebugBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/EditorSystemComponent.cpp b/Gems/PhysXDebug/Code/Source/EditorSystemComponent.cpp index 287444a9eb..6ae0bea82d 100644 --- a/Gems/PhysXDebug/Code/Source/EditorSystemComponent.cpp +++ b/Gems/PhysXDebug/Code/Source/EditorSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/EditorSystemComponent.h b/Gems/PhysXDebug/Code/Source/EditorSystemComponent.h index 156f8c64b9..68e25ede21 100644 --- a/Gems/PhysXDebug/Code/Source/EditorSystemComponent.h +++ b/Gems/PhysXDebug/Code/Source/EditorSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/Module.cpp b/Gems/PhysXDebug/Code/Source/Module.cpp index 982cc2bdce..49877ab329 100644 --- a/Gems/PhysXDebug/Code/Source/Module.cpp +++ b/Gems/PhysXDebug/Code/Source/Module.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/ModuleUnsupported.cpp b/Gems/PhysXDebug/Code/Source/ModuleUnsupported.cpp index aea39aad2f..561d062845 100644 --- a/Gems/PhysXDebug/Code/Source/ModuleUnsupported.cpp +++ b/Gems/PhysXDebug/Code/Source/ModuleUnsupported.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/PhysXDebugUnsupported_precompiled.h b/Gems/PhysXDebug/Code/Source/PhysXDebugUnsupported_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/PhysXDebug/Code/Source/PhysXDebugUnsupported_precompiled.h +++ b/Gems/PhysXDebug/Code/Source/PhysXDebugUnsupported_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/PhysXDebug_precompiled.h b/Gems/PhysXDebug/Code/Source/PhysXDebug_precompiled.h index 4395a4898f..ef72b98bc5 100644 --- a/Gems/PhysXDebug/Code/Source/PhysXDebug_precompiled.h +++ b/Gems/PhysXDebug/Code/Source/PhysXDebug_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/SystemComponent.cpp b/Gems/PhysXDebug/Code/Source/SystemComponent.cpp index 3e0be57013..7132384953 100644 --- a/Gems/PhysXDebug/Code/Source/SystemComponent.cpp +++ b/Gems/PhysXDebug/Code/Source/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/Source/SystemComponent.h b/Gems/PhysXDebug/Code/Source/SystemComponent.h index 076d77410f..d413fb126d 100644 --- a/Gems/PhysXDebug/Code/Source/SystemComponent.h +++ b/Gems/PhysXDebug/Code/Source/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PhysXDebug/Code/physxdebug_editor_files.cmake b/Gems/PhysXDebug/Code/physxdebug_editor_files.cmake index 794adf9279..b228cdc02b 100644 --- a/Gems/PhysXDebug/Code/physxdebug_editor_files.cmake +++ b/Gems/PhysXDebug/Code/physxdebug_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysXDebug/Code/physxdebug_files.cmake b/Gems/PhysXDebug/Code/physxdebug_files.cmake index 66ac233ca0..9d1d6a7892 100644 --- a/Gems/PhysXDebug/Code/physxdebug_files.cmake +++ b/Gems/PhysXDebug/Code/physxdebug_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysXDebug/Code/physxdebug_unsupported_files.cmake b/Gems/PhysXDebug/Code/physxdebug_unsupported_files.cmake index 87b93be7f6..f12a747f58 100644 --- a/Gems/PhysXDebug/Code/physxdebug_unsupported_files.cmake +++ b/Gems/PhysXDebug/Code/physxdebug_unsupported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PhysXSamples/CMakeLists.txt b/Gems/PhysXSamples/CMakeLists.txt index b80fd1ce34..631ca79c78 100644 --- a/Gems/PhysXSamples/CMakeLists.txt +++ b/Gems/PhysXSamples/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Prefab/CMakeLists.txt b/Gems/Prefab/CMakeLists.txt index 47497fe329..bdaa5e8596 100644 --- a/Gems/Prefab/CMakeLists.txt +++ b/Gems/Prefab/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Prefab/PrefabBuilder/CMakeLists.txt b/Gems/Prefab/PrefabBuilder/CMakeLists.txt index c7c56e92c1..1366184126 100644 --- a/Gems/Prefab/PrefabBuilder/CMakeLists.txt +++ b/Gems/Prefab/PrefabBuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp index 2235c22eae..024e6c35d2 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h index 8c9a14e312..8eebaa235d 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderModule.cpp b/Gems/Prefab/PrefabBuilder/PrefabBuilderModule.cpp index 2c0443d847..375bafd21a 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderModule.cpp +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp b/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp index 29d49a7ea0..e9fbd3e47a 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.h b/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.h index 702efd0c2f..a9a6847ae4 100644 --- a/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.h +++ b/Gems/Prefab/PrefabBuilder/PrefabBuilderTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Prefab/PrefabBuilder/prefabbuilder_files.cmake b/Gems/Prefab/PrefabBuilder/prefabbuilder_files.cmake index 4c1485096e..ebf492eee7 100644 --- a/Gems/Prefab/PrefabBuilder/prefabbuilder_files.cmake +++ b/Gems/Prefab/PrefabBuilder/prefabbuilder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Prefab/PrefabBuilder/prefabbuilder_module_files.cmake b/Gems/Prefab/PrefabBuilder/prefabbuilder_module_files.cmake index 320cd987b5..369bee5aa9 100644 --- a/Gems/Prefab/PrefabBuilder/prefabbuilder_module_files.cmake +++ b/Gems/Prefab/PrefabBuilder/prefabbuilder_module_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Prefab/PrefabBuilder/prefabbuilder_tests_files.cmake b/Gems/Prefab/PrefabBuilder/prefabbuilder_tests_files.cmake index 70bf17e7de..8a9fba5306 100644 --- a/Gems/Prefab/PrefabBuilder/prefabbuilder_tests_files.cmake +++ b/Gems/Prefab/PrefabBuilder/prefabbuilder_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/CMakeLists.txt b/Gems/Presence/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Presence/CMakeLists.txt +++ b/Gems/Presence/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/CMakeLists.txt b/Gems/Presence/Code/CMakeLists.txt index bc076e177c..31de515643 100644 --- a/Gems/Presence/Code/CMakeLists.txt +++ b/Gems/Presence/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Include/Presence/PresenceNotificationBus.h b/Gems/Presence/Code/Include/Presence/PresenceNotificationBus.h index e3c13277ec..182873a2c8 100644 --- a/Gems/Presence/Code/Include/Presence/PresenceNotificationBus.h +++ b/Gems/Presence/Code/Include/Presence/PresenceNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Presence/Code/Include/Presence/PresenceRequestBus.h b/Gems/Presence/Code/Include/Presence/PresenceRequestBus.h index cc2577369d..5f481118b9 100644 --- a/Gems/Presence/Code/Include/Presence/PresenceRequestBus.h +++ b/Gems/Presence/Code/Include/Presence/PresenceRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Presence/Code/Source/Platform/Android/platform_android.cmake b/Gems/Presence/Code/Source/Platform/Android/platform_android.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Presence/Code/Source/Platform/Android/platform_android.cmake +++ b/Gems/Presence/Code/Source/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Presence/Code/Source/Platform/Android/platform_android_files.cmake index 09bae1e9e9..25c7d5301d 100644 --- a/Gems/Presence/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Presence/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/AppleTV/platform_appletv.cmake b/Gems/Presence/Code/Source/Platform/AppleTV/platform_appletv.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Presence/Code/Source/Platform/AppleTV/platform_appletv.cmake +++ b/Gems/Presence/Code/Source/Platform/AppleTV/platform_appletv.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/Common/Unimplemented/PresenceSystemComponent_Unimplemented.cpp b/Gems/Presence/Code/Source/Platform/Common/Unimplemented/PresenceSystemComponent_Unimplemented.cpp index b2793f04da..568f3ef740 100644 --- a/Gems/Presence/Code/Source/Platform/Common/Unimplemented/PresenceSystemComponent_Unimplemented.cpp +++ b/Gems/Presence/Code/Source/Platform/Common/Unimplemented/PresenceSystemComponent_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Presence/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/Presence/Code/Source/Platform/Linux/platform_linux.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Presence/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/Presence/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Presence/Code/Source/Platform/Linux/platform_linux_files.cmake index 09bae1e9e9..25c7d5301d 100644 --- a/Gems/Presence/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Presence/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/Presence/Code/Source/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Presence/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/Presence/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Presence/Code/Source/Platform/Mac/platform_mac_files.cmake index 09bae1e9e9..25c7d5301d 100644 --- a/Gems/Presence/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Presence/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/Presence/Code/Source/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/Presence/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/Presence/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Presence/Code/Source/Platform/Windows/platform_windows_files.cmake index 09bae1e9e9..25c7d5301d 100644 --- a/Gems/Presence/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Presence/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/Presence/Code/Source/Platform/iOS/platform_ios.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/Presence/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/Presence/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Presence/Code/Source/Platform/iOS/platform_ios_files.cmake index 09bae1e9e9..25c7d5301d 100644 --- a/Gems/Presence/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Presence/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/Source/PresenceModule.cpp b/Gems/Presence/Code/Source/PresenceModule.cpp index 26eff52b8c..0922d1bc03 100644 --- a/Gems/Presence/Code/Source/PresenceModule.cpp +++ b/Gems/Presence/Code/Source/PresenceModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Presence/Code/Source/PresenceSystemComponent.cpp b/Gems/Presence/Code/Source/PresenceSystemComponent.cpp index d8435ae96c..84f9dac3d6 100644 --- a/Gems/Presence/Code/Source/PresenceSystemComponent.cpp +++ b/Gems/Presence/Code/Source/PresenceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Presence/Code/Source/PresenceSystemComponent.h b/Gems/Presence/Code/Source/PresenceSystemComponent.h index 6b62a24822..8e17dbb169 100644 --- a/Gems/Presence/Code/Source/PresenceSystemComponent.h +++ b/Gems/Presence/Code/Source/PresenceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Presence/Code/presence_files.cmake b/Gems/Presence/Code/presence_files.cmake index 1e4e7cde64..8d655d0807 100644 --- a/Gems/Presence/Code/presence_files.cmake +++ b/Gems/Presence/Code/presence_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Presence/Code/presence_shared_files.cmake b/Gems/Presence/Code/presence_shared_files.cmake index 483c42328e..9b5dcd6bfc 100644 --- a/Gems/Presence/Code/presence_shared_files.cmake +++ b/Gems/Presence/Code/presence_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PrimitiveAssets/CMakeLists.txt b/Gems/PrimitiveAssets/CMakeLists.txt index badff9e987..5eddeff4c5 100644 --- a/Gems/PrimitiveAssets/CMakeLists.txt +++ b/Gems/PrimitiveAssets/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/CMakeLists.txt b/Gems/PythonAssetBuilder/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/PythonAssetBuilder/CMakeLists.txt +++ b/Gems/PythonAssetBuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/CMakeLists.txt b/Gems/PythonAssetBuilder/Code/CMakeLists.txt index e0e90d12ec..946199e22e 100644 --- a/Gems/PythonAssetBuilder/Code/CMakeLists.txt +++ b/Gems/PythonAssetBuilder/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonAssetBuilderBus.h b/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonAssetBuilderBus.h index 3006f8b573..f235062f4f 100644 --- a/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonAssetBuilderBus.h +++ b/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonAssetBuilderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderNotificationBus.h b/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderNotificationBus.h index b6f1d31cef..65f8d31773 100644 --- a/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderNotificationBus.h +++ b/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderRequestBus.h b/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderRequestBus.h index d99898a268..df3b02b717 100644 --- a/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderRequestBus.h +++ b/Gems/PythonAssetBuilder/Code/Include/PythonAssetBuilder/PythonBuilderRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_static_clang.cmake b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_static_clang.cmake index e75bb7f45a..fb29e53c94 100644 --- a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_static_clang.cmake +++ b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_static_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_tests_clang.cmake b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_tests_clang.cmake index e75bb7f45a..fb29e53c94 100644 --- a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_tests_clang.cmake +++ b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/Clang/pythonassetbuilder_tests_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_static_msvc.cmake b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_static_msvc.cmake index 6786dfd811..e95772616a 100644 --- a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_static_msvc.cmake +++ b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_static_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_tests_msvc.cmake b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_tests_msvc.cmake index 74e58d9d53..8020690132 100644 --- a/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_tests_msvc.cmake +++ b/Gems/PythonAssetBuilder/Code/Source/Platform/Common/MSVC/pythonassetbuilder_tests_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/PythonAssetBuilder/Code/Source/Platform/Linux/PAL_linux.cmake index d4580be776..445b7b8838 100644 --- a/Gems/PythonAssetBuilder/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/PythonAssetBuilder/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/PythonAssetBuilder/Code/Source/Platform/Mac/PAL_mac.cmake index 29e4d63214..b5664ad910 100644 --- a/Gems/PythonAssetBuilder/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/PythonAssetBuilder/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/PythonAssetBuilder/Code/Source/Platform/Windows/PAL_windows.cmake index d4580be776..445b7b8838 100644 --- a/Gems/PythonAssetBuilder/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/PythonAssetBuilder/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderModule.cpp b/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderModule.cpp index 325f0f3fbf..ff0325715c 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderModule.cpp +++ b/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.cpp b/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.cpp index 9efaf6389f..8dd7d097fa 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.cpp +++ b/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.h b/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.h index b5928a977e..13bb10cd35 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.h +++ b/Gems/PythonAssetBuilder/Code/Source/PythonAssetBuilderSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.cpp b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.cpp index e531c7aa18..0cffac5e19 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.cpp +++ b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.h b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.h index 406ee9c562..e287c99733 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.h +++ b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderMessageSink.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.cpp b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.cpp index b734707fa3..f48b79109a 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.cpp +++ b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.h b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.h index 7136a2671d..8c84aa9e80 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.h +++ b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderNotificationHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.cpp b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.cpp index 363e25ff22..07a8836cad 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.cpp +++ b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.h b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.h index a5a54cbcbb..5e21351f2a 100644 --- a/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.h +++ b/Gems/PythonAssetBuilder/Code/Source/PythonBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Tests/PythonAssetBuilderTest.cpp b/Gems/PythonAssetBuilder/Code/Tests/PythonAssetBuilderTest.cpp index d4c351e88e..8859c10820 100644 --- a/Gems/PythonAssetBuilder/Code/Tests/PythonAssetBuilderTest.cpp +++ b/Gems/PythonAssetBuilder/Code/Tests/PythonAssetBuilderTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderCreateJobsTest.cpp b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderCreateJobsTest.cpp index 8f8e45c01b..056412fb9a 100644 --- a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderCreateJobsTest.cpp +++ b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderCreateJobsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderProcessJobTest.cpp b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderProcessJobTest.cpp index b176b6f762..3fd99ab30c 100644 --- a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderProcessJobTest.cpp +++ b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderProcessJobTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderRegisterTest.cpp b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderRegisterTest.cpp index 2238ba98ce..d18d900d1c 100644 --- a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderRegisterTest.cpp +++ b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderRegisterTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderTestShared.h b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderTestShared.h index b2c698a37d..ad4963e236 100644 --- a/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderTestShared.h +++ b/Gems/PythonAssetBuilder/Code/Tests/PythonBuilderTestShared.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/PythonAssetBuilder/Code/Tests/asset_builder_example.py b/Gems/PythonAssetBuilder/Code/Tests/asset_builder_example.py index 685bd8b6b0..14a95440ee 100755 --- a/Gems/PythonAssetBuilder/Code/Tests/asset_builder_example.py +++ b/Gems/PythonAssetBuilder/Code/Tests/asset_builder_example.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_common_files.cmake b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_common_files.cmake index fe5b5c5880..20914d6d4b 100644 --- a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_common_files.cmake +++ b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_files.cmake b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_files.cmake index fe5b5c5880..20914d6d4b 100644 --- a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_files.cmake +++ b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_tests_files.cmake b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_tests_files.cmake index 8548f5ba4d..3688141c7a 100644 --- a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_tests_files.cmake +++ b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_shared_files.cmake b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_shared_files.cmake index 40269fb8c6..d87106c4c4 100644 --- a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_shared_files.cmake +++ b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_tests_files.cmake b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_tests_files.cmake index 8548f5ba4d..3688141c7a 100644 --- a/Gems/PythonAssetBuilder/Code/pythonassetbuilder_tests_files.cmake +++ b/Gems/PythonAssetBuilder/Code/pythonassetbuilder_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/PythonAssetBuilder/Editor/Scripts/__init__.py b/Gems/PythonAssetBuilder/Editor/Scripts/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/PythonAssetBuilder/Editor/Scripts/__init__.py +++ b/Gems/PythonAssetBuilder/Editor/Scripts/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/PythonAssetBuilder/Editor/Scripts/bootstrap.py b/Gems/PythonAssetBuilder/Editor/Scripts/bootstrap.py index 3a3549d485..5482b53e84 100755 --- a/Gems/PythonAssetBuilder/Editor/Scripts/bootstrap.py +++ b/Gems/PythonAssetBuilder/Editor/Scripts/bootstrap.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/_init_.py b/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/_init_.py index a3a4055d50..e200fa77d0 100755 --- a/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/_init_.py +++ b/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/_init_.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/scene_data.py b/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/scene_data.py index 486c580ec5..1b1cfe0bbd 100755 --- a/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/scene_data.py +++ b/Gems/PythonAssetBuilder/Editor/Scripts/scene_api/scene_data.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/QtForPython/CMakeLists.txt b/Gems/QtForPython/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/QtForPython/CMakeLists.txt +++ b/Gems/QtForPython/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/CMakeLists.txt b/Gems/QtForPython/Code/CMakeLists.txt index 69cffb8ffa..437ff64d39 100644 --- a/Gems/QtForPython/Code/CMakeLists.txt +++ b/Gems/QtForPython/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/Include/QtForPython/QtForPythonBus.h b/Gems/QtForPython/Code/Include/QtForPython/QtForPythonBus.h index fffcdb87c1..0958ad848f 100644 --- a/Gems/QtForPython/Code/Include/QtForPython/QtForPythonBus.h +++ b/Gems/QtForPython/Code/Include/QtForPython/QtForPythonBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/QtForPython/Code/Source/Platform/Common/Clang/qtforpython_clang.cmake b/Gems/QtForPython/Code/Source/Platform/Common/Clang/qtforpython_clang.cmake index 28045e7fcc..9f9652e659 100644 --- a/Gems/QtForPython/Code/Source/Platform/Common/Clang/qtforpython_clang.cmake +++ b/Gems/QtForPython/Code/Source/Platform/Common/Clang/qtforpython_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/Source/Platform/Common/MSVC/qtforpython_msvc.cmake b/Gems/QtForPython/Code/Source/Platform/Common/MSVC/qtforpython_msvc.cmake index 510cd47474..f7d3a138dc 100644 --- a/Gems/QtForPython/Code/Source/Platform/Common/MSVC/qtforpython_msvc.cmake +++ b/Gems/QtForPython/Code/Source/Platform/Common/MSVC/qtforpython_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/QtForPython/Code/Source/Platform/Linux/PAL_linux.cmake index 1681a4126d..87fda81cad 100644 --- a/Gems/QtForPython/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/QtForPython/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/QtForPython/Code/Source/Platform/Mac/PAL_mac.cmake index 1681a4126d..87fda81cad 100644 --- a/Gems/QtForPython/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/QtForPython/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/QtForPython/Code/Source/Platform/Windows/PAL_windows.cmake index ac3a2f241f..a95a3d8786 100644 --- a/Gems/QtForPython/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/QtForPython/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/Source/QtForPythonModule.cpp b/Gems/QtForPython/Code/Source/QtForPythonModule.cpp index a820ac7346..093033d003 100644 --- a/Gems/QtForPython/Code/Source/QtForPythonModule.cpp +++ b/Gems/QtForPython/Code/Source/QtForPythonModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.cpp b/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.cpp index e48af47244..63028d6c35 100644 --- a/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.cpp +++ b/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.h b/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.h index e1607a4987..838ca41bba 100644 --- a/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.h +++ b/Gems/QtForPython/Code/Source/QtForPythonSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test.py b/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test.py index de6cfe18cd..436946f914 100755 --- a/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test.py +++ b/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test_case.py b/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test_case.py index 6de279a89c..aa7b367b8d 100755 --- a/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test_case.py +++ b/Gems/QtForPython/Code/Tests/pyside_auto_menubar_test_case.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/QtForPython/Code/qtforpython_editor_macos_files.cmake b/Gems/QtForPython/Code/qtforpython_editor_macos_files.cmake index 4832c730fd..c3f55ca3b4 100644 --- a/Gems/QtForPython/Code/qtforpython_editor_macos_files.cmake +++ b/Gems/QtForPython/Code/qtforpython_editor_macos_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/qtforpython_editor_windows_files.cmake b/Gems/QtForPython/Code/qtforpython_editor_windows_files.cmake index 4832c730fd..c3f55ca3b4 100644 --- a/Gems/QtForPython/Code/qtforpython_editor_windows_files.cmake +++ b/Gems/QtForPython/Code/qtforpython_editor_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Code/qtforpython_shared_files.cmake b/Gems/QtForPython/Code/qtforpython_shared_files.cmake index 593a97207a..91cc216493 100644 --- a/Gems/QtForPython/Code/qtforpython_shared_files.cmake +++ b/Gems/QtForPython/Code/qtforpython_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/QtForPython/Editor/Scripts/az_qt_helpers.py b/Gems/QtForPython/Editor/Scripts/az_qt_helpers.py index 5eb20fbdac..bd2165483e 100755 --- a/Gems/QtForPython/Editor/Scripts/az_qt_helpers.py +++ b/Gems/QtForPython/Editor/Scripts/az_qt_helpers.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/QtForPython/Editor/Scripts/bootstrap.py b/Gems/QtForPython/Editor/Scripts/bootstrap.py index 314292b756..f5ed02788a 100755 --- a/Gems/QtForPython/Editor/Scripts/bootstrap.py +++ b/Gems/QtForPython/Editor/Scripts/bootstrap.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/QtForPython/Editor/Scripts/show_object_tree.py b/Gems/QtForPython/Editor/Scripts/show_object_tree.py index 5af244d546..9dbbaf0d66 100755 --- a/Gems/QtForPython/Editor/Scripts/show_object_tree.py +++ b/Gems/QtForPython/Editor/Scripts/show_object_tree.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/QtForPython/Editor/Scripts/tests/hello_world.py b/Gems/QtForPython/Editor/Scripts/tests/hello_world.py index b2ccf7f95d..d338d215c7 100755 --- a/Gems/QtForPython/Editor/Scripts/tests/hello_world.py +++ b/Gems/QtForPython/Editor/Scripts/tests/hello_world.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/QtForPython/Editor/Scripts/tests/log_main_window.py b/Gems/QtForPython/Editor/Scripts/tests/log_main_window.py index 286a7a0890..5f6b66580e 100755 --- a/Gems/QtForPython/Editor/Scripts/tests/log_main_window.py +++ b/Gems/QtForPython/Editor/Scripts/tests/log_main_window.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/RADTelemetry/CMakeLists.txt b/Gems/RADTelemetry/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/RADTelemetry/CMakeLists.txt +++ b/Gems/RADTelemetry/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/CMakeLists.txt b/Gems/RADTelemetry/Code/CMakeLists.txt index be72dc1e55..ac46c61da9 100644 --- a/Gems/RADTelemetry/Code/CMakeLists.txt +++ b/Gems/RADTelemetry/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/Source/Platform/Android/RADTelemetry_Traits_Platform.h b/Gems/RADTelemetry/Code/Source/Platform/Android/RADTelemetry_Traits_Platform.h index 8cff74ace1..2e0ef9f53c 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Android/RADTelemetry_Traits_Platform.h +++ b/Gems/RADTelemetry/Code/Source/Platform/Android/RADTelemetry_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/RADTelemetry/Code/Source/Platform/Android/platform_android_files.cmake index 55322ebac7..06d4280389 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/RADTelemetry/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/Source/Platform/Linux/RADTelemetry_Traits_Platform.h b/Gems/RADTelemetry/Code/Source/Platform/Linux/RADTelemetry_Traits_Platform.h index 8cff74ace1..2e0ef9f53c 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Linux/RADTelemetry_Traits_Platform.h +++ b/Gems/RADTelemetry/Code/Source/Platform/Linux/RADTelemetry_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/RADTelemetry/Code/Source/Platform/Linux/platform_linux_files.cmake index 55322ebac7..06d4280389 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/RADTelemetry/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/Source/Platform/Mac/RADTelemetry_Traits_Platform.h b/Gems/RADTelemetry/Code/Source/Platform/Mac/RADTelemetry_Traits_Platform.h index 8cff74ace1..2e0ef9f53c 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Mac/RADTelemetry_Traits_Platform.h +++ b/Gems/RADTelemetry/Code/Source/Platform/Mac/RADTelemetry_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/RADTelemetry/Code/Source/Platform/Mac/platform_mac_files.cmake index 55322ebac7..06d4280389 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/RADTelemetry/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/Source/Platform/Windows/RADTelemetry_Traits_Platform.h b/Gems/RADTelemetry/Code/Source/Platform/Windows/RADTelemetry_Traits_Platform.h index 8cff74ace1..2e0ef9f53c 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Windows/RADTelemetry_Traits_Platform.h +++ b/Gems/RADTelemetry/Code/Source/Platform/Windows/RADTelemetry_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/RADTelemetry/Code/Source/Platform/Windows/platform_windows_files.cmake index 55322ebac7..06d4280389 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/RADTelemetry/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/Source/Platform/iOS/RADTelemetry_Traits_Platform.h b/Gems/RADTelemetry/Code/Source/Platform/iOS/RADTelemetry_Traits_Platform.h index 8cff74ace1..2e0ef9f53c 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/iOS/RADTelemetry_Traits_Platform.h +++ b/Gems/RADTelemetry/Code/Source/Platform/iOS/RADTelemetry_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/RADTelemetry/Code/Source/Platform/iOS/platform_ios_files.cmake index 55322ebac7..06d4280389 100644 --- a/Gems/RADTelemetry/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/RADTelemetry/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.cpp b/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.cpp index 161a124bf8..637ec5353b 100644 --- a/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.cpp +++ b/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.h b/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.h index ac6ecae112..79c3af9774 100644 --- a/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.h +++ b/Gems/RADTelemetry/Code/Source/ProfileTelemetryComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/Source/RADTelemetryModule.cpp b/Gems/RADTelemetry/Code/Source/RADTelemetryModule.cpp index 2a5b4443d2..7ef597aab6 100644 --- a/Gems/RADTelemetry/Code/Source/RADTelemetryModule.cpp +++ b/Gems/RADTelemetry/Code/Source/RADTelemetryModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/RADTelemetry/Code/radtelemetry_files.cmake b/Gems/RADTelemetry/Code/radtelemetry_files.cmake index 9ec882dd74..0db48c3f28 100644 --- a/Gems/RADTelemetry/Code/radtelemetry_files.cmake +++ b/Gems/RADTelemetry/Code/radtelemetry_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/RADTelemetry/Code/radtelemetry_shared_files.cmake b/Gems/RADTelemetry/Code/radtelemetry_shared_files.cmake index a1e0f43c93..57fc52d3dc 100644 --- a/Gems/RADTelemetry/Code/radtelemetry_shared_files.cmake +++ b/Gems/RADTelemetry/Code/radtelemetry_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/CMakeLists.txt b/Gems/SaveData/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/SaveData/CMakeLists.txt +++ b/Gems/SaveData/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/CMakeLists.txt b/Gems/SaveData/Code/CMakeLists.txt index f8eb7006bb..c2d24b5d34 100644 --- a/Gems/SaveData/Code/CMakeLists.txt +++ b/Gems/SaveData/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Include/SaveData/SaveDataNotificationBus.h b/Gems/SaveData/Code/Include/SaveData/SaveDataNotificationBus.h index 598d33ba68..eb2674709c 100644 --- a/Gems/SaveData/Code/Include/SaveData/SaveDataNotificationBus.h +++ b/Gems/SaveData/Code/Include/SaveData/SaveDataNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Include/SaveData/SaveDataRequestBus.h b/Gems/SaveData/Code/Include/SaveData/SaveDataRequestBus.h index 1659ce5681..298fd4a12e 100644 --- a/Gems/SaveData/Code/Include/SaveData/SaveDataRequestBus.h +++ b/Gems/SaveData/Code/Include/SaveData/SaveDataRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Android/SaveData_SystemComponent_Android.cpp b/Gems/SaveData/Code/Source/Platform/Android/SaveData_SystemComponent_Android.cpp index 9dec059cf3..80c01fc927 100644 --- a/Gems/SaveData/Code/Source/Platform/Android/SaveData_SystemComponent_Android.cpp +++ b/Gems/SaveData/Code/Source/Platform/Android/SaveData_SystemComponent_Android.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Android.h b/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Android.h index 49d282ce9c..66210425f7 100644 --- a/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Android.h +++ b/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Platform.h b/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Platform.h index 76bd387157..6d181ac919 100644 --- a/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Platform.h +++ b/Gems/SaveData/Code/Source/Platform/Android/SaveData_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Android/platform_android.cmake b/Gems/SaveData/Code/Source/Platform/Android/platform_android.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/SaveData/Code/Source/Platform/Android/platform_android.cmake +++ b/Gems/SaveData/Code/Source/Platform/Android/platform_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/SaveData/Code/Source/Platform/Android/platform_android_files.cmake index 12d148d377..5f6c79743d 100644 --- a/Gems/SaveData/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Android/platform_test_android_files.cmake b/Gems/SaveData/Code/Source/Platform/Android/platform_test_android_files.cmake index 6d6375b0c0..1b3b62f95b 100644 --- a/Gems/SaveData/Code/Source/Platform/Android/platform_test_android_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Android/platform_test_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/AppleTV/platform_appletv.cmake b/Gems/SaveData/Code/Source/Platform/AppleTV/platform_appletv.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/SaveData/Code/Source/Platform/AppleTV/platform_appletv.cmake +++ b/Gems/SaveData/Code/Source/Platform/AppleTV/platform_appletv.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Common/Apple/SaveData_SystemComponent_Apple.mm b/Gems/SaveData/Code/Source/Platform/Common/Apple/SaveData_SystemComponent_Apple.mm index e11ecdc255..15330b650f 100644 --- a/Gems/SaveData/Code/Source/Platform/Common/Apple/SaveData_SystemComponent_Apple.mm +++ b/Gems/SaveData/Code/Source/Platform/Common/Apple/SaveData_SystemComponent_Apple.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveDataTest_Unimplemented.cpp b/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveDataTest_Unimplemented.cpp index 10f26bb2b4..afce98644f 100644 --- a/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveDataTest_Unimplemented.cpp +++ b/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveDataTest_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveData_SystemComponent_Unimplemented.cpp b/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveData_SystemComponent_Unimplemented.cpp index 6e1b814c53..9b6c39eada 100644 --- a/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveData_SystemComponent_Unimplemented.cpp +++ b/Gems/SaveData/Code/Source/Platform/Common/Unimplemented/SaveData_SystemComponent_Unimplemented.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Linux.h b/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Linux.h index 49d282ce9c..66210425f7 100644 --- a/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Linux.h +++ b/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Platform.h b/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Platform.h index b440f0ac2b..87fdd0af22 100644 --- a/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Platform.h +++ b/Gems/SaveData/Code/Source/Platform/Linux/SaveData_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/SaveData/Code/Source/Platform/Linux/platform_linux.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/SaveData/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/SaveData/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/SaveData/Code/Source/Platform/Linux/platform_linux_files.cmake index 04f149eaca..9021a7fe5d 100644 --- a/Gems/SaveData/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Linux/platform_test_linux_files.cmake b/Gems/SaveData/Code/Source/Platform/Linux/platform_test_linux_files.cmake index 6d6375b0c0..1b3b62f95b 100644 --- a/Gems/SaveData/Code/Source/Platform/Linux/platform_test_linux_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Linux/platform_test_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Mac.h b/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Mac.h index 49d282ce9c..66210425f7 100644 --- a/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Mac.h +++ b/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Platform.h b/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Platform.h index c54e68f48b..a55f48498d 100644 --- a/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Platform.h +++ b/Gems/SaveData/Code/Source/Platform/Mac/SaveData_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Mac/platform_mac.cmake b/Gems/SaveData/Code/Source/Platform/Mac/platform_mac.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/SaveData/Code/Source/Platform/Mac/platform_mac.cmake +++ b/Gems/SaveData/Code/Source/Platform/Mac/platform_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/SaveData/Code/Source/Platform/Mac/platform_mac_files.cmake index 0329e0d413..95ff6f204c 100644 --- a/Gems/SaveData/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Mac/platform_test_mac_files.cmake b/Gems/SaveData/Code/Source/Platform/Mac/platform_test_mac_files.cmake index 6d6375b0c0..1b3b62f95b 100644 --- a/Gems/SaveData/Code/Source/Platform/Mac/platform_test_mac_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Mac/platform_test_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Windows/PAL_traits_windows.cmake b/Gems/SaveData/Code/Source/Platform/Windows/PAL_traits_windows.cmake index 414ff60716..1528f0e291 100644 --- a/Gems/SaveData/Code/Source/Platform/Windows/PAL_traits_windows.cmake +++ b/Gems/SaveData/Code/Source/Platform/Windows/PAL_traits_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Windows/SaveData_SystemComponent_Windows.cpp b/Gems/SaveData/Code/Source/Platform/Windows/SaveData_SystemComponent_Windows.cpp index d2501f167f..e2d0d82f7d 100644 --- a/Gems/SaveData/Code/Source/Platform/Windows/SaveData_SystemComponent_Windows.cpp +++ b/Gems/SaveData/Code/Source/Platform/Windows/SaveData_SystemComponent_Windows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Platform.h b/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Platform.h index 83f4414cf2..31d6cf3e23 100644 --- a/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Platform.h +++ b/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Windows.h b/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Windows.h index 49d282ce9c..66210425f7 100644 --- a/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Windows.h +++ b/Gems/SaveData/Code/Source/Platform/Windows/SaveData_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/Windows/platform_test_windows_files.cmake b/Gems/SaveData/Code/Source/Platform/Windows/platform_test_windows_files.cmake index 6d6375b0c0..1b3b62f95b 100644 --- a/Gems/SaveData/Code/Source/Platform/Windows/platform_test_windows_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Windows/platform_test_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Windows/platform_windows.cmake b/Gems/SaveData/Code/Source/Platform/Windows/platform_windows.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/SaveData/Code/Source/Platform/Windows/platform_windows.cmake +++ b/Gems/SaveData/Code/Source/Platform/Windows/platform_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/SaveData/Code/Source/Platform/Windows/platform_windows_files.cmake index 855464b80d..419d1452a5 100644 --- a/Gems/SaveData/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/iOS/PAL_traits_ios.cmake b/Gems/SaveData/Code/Source/Platform/iOS/PAL_traits_ios.cmake index 414ff60716..1528f0e291 100644 --- a/Gems/SaveData/Code/Source/Platform/iOS/PAL_traits_ios.cmake +++ b/Gems/SaveData/Code/Source/Platform/iOS/PAL_traits_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_Platform.h b/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_Platform.h index 1fbe68c294..d306cb078c 100644 --- a/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_Platform.h +++ b/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_iOS.h b/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_iOS.h index 49d282ce9c..66210425f7 100644 --- a/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_iOS.h +++ b/Gems/SaveData/Code/Source/Platform/iOS/SaveData_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/Platform/iOS/platform_ios.cmake b/Gems/SaveData/Code/Source/Platform/iOS/platform_ios.cmake index 11f7f0d6b9..836f1ab4aa 100644 --- a/Gems/SaveData/Code/Source/Platform/iOS/platform_ios.cmake +++ b/Gems/SaveData/Code/Source/Platform/iOS/platform_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/SaveData/Code/Source/Platform/iOS/platform_ios_files.cmake index 60e7da5b25..b7ea5aa321 100644 --- a/Gems/SaveData/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/Platform/iOS/platform_test_ios_files.cmake b/Gems/SaveData/Code/Source/Platform/iOS/platform_test_ios_files.cmake index 6d6375b0c0..1b3b62f95b 100644 --- a/Gems/SaveData/Code/Source/Platform/iOS/platform_test_ios_files.cmake +++ b/Gems/SaveData/Code/Source/Platform/iOS/platform_test_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/Source/SaveDataModule.cpp b/Gems/SaveData/Code/Source/SaveDataModule.cpp index d2ddb5403c..a82641c2ff 100644 --- a/Gems/SaveData/Code/Source/SaveDataModule.cpp +++ b/Gems/SaveData/Code/Source/SaveDataModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/SaveDataSystemComponent.cpp b/Gems/SaveData/Code/Source/SaveDataSystemComponent.cpp index 32a9439344..03ec7c44ad 100644 --- a/Gems/SaveData/Code/Source/SaveDataSystemComponent.cpp +++ b/Gems/SaveData/Code/Source/SaveDataSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Source/SaveDataSystemComponent.h b/Gems/SaveData/Code/Source/SaveDataSystemComponent.h index ca8b46a853..5770a4f65d 100644 --- a/Gems/SaveData/Code/Source/SaveDataSystemComponent.h +++ b/Gems/SaveData/Code/Source/SaveDataSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Tests/SaveDataTest.cpp b/Gems/SaveData/Code/Tests/SaveDataTest.cpp index 7d561673b1..cf288b1980 100644 --- a/Gems/SaveData/Code/Tests/SaveDataTest.cpp +++ b/Gems/SaveData/Code/Tests/SaveDataTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/Tests/SaveDataTest.h b/Gems/SaveData/Code/Tests/SaveDataTest.h index 70b4aad9d2..081408f9e1 100644 --- a/Gems/SaveData/Code/Tests/SaveDataTest.h +++ b/Gems/SaveData/Code/Tests/SaveDataTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SaveData/Code/savedata_files.cmake b/Gems/SaveData/Code/savedata_files.cmake index 9f39219342..bcb1b5dcb3 100644 --- a/Gems/SaveData/Code/savedata_files.cmake +++ b/Gems/SaveData/Code/savedata_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/savedata_shared_files.cmake b/Gems/SaveData/Code/savedata_shared_files.cmake index f99aa2d31d..9915ed8b81 100644 --- a/Gems/SaveData/Code/savedata_shared_files.cmake +++ b/Gems/SaveData/Code/savedata_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SaveData/Code/savedata_tests_files.cmake b/Gems/SaveData/Code/savedata_tests_files.cmake index 12b38d7432..97a31888d1 100644 --- a/Gems/SaveData/Code/savedata_tests_files.cmake +++ b/Gems/SaveData/Code/savedata_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneLoggingExample/CMakeLists.txt b/Gems/SceneLoggingExample/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/SceneLoggingExample/CMakeLists.txt +++ b/Gems/SceneLoggingExample/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.cpp b/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.cpp index 01984b1dfc..59709a06cb 100644 --- a/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.cpp +++ b/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.h b/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.h index dc0919ddde..dad6aeb209 100644 --- a/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.h +++ b/Gems/SceneLoggingExample/Code/Behaviors/LoggingGroupBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/CMakeLists.txt b/Gems/SceneLoggingExample/Code/CMakeLists.txt index afda2cba58..111a8dbcff 100644 --- a/Gems/SceneLoggingExample/Code/CMakeLists.txt +++ b/Gems/SceneLoggingExample/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.cpp b/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.cpp index 2ae8279365..bdad51286d 100644 --- a/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.cpp +++ b/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.h b/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.h index 944a3e75b0..9238fe4b4d 100644 --- a/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.h +++ b/Gems/SceneLoggingExample/Code/Groups/LoggingGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp b/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp index 7cac196726..abf25ff58f 100644 --- a/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp +++ b/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.h b/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.h index a2b352b164..1587b06296 100644 --- a/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.h +++ b/Gems/SceneLoggingExample/Code/Processors/ExportTrackingProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.cpp b/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.cpp index 1480e770b7..a8c2ccc23a 100644 --- a/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.cpp +++ b/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.h b/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.h index 4cf1ae378b..337295a5ed 100644 --- a/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.h +++ b/Gems/SceneLoggingExample/Code/Processors/LoadingTrackingProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp b/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp index bf89c74191..19d6634c19 100644 --- a/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp +++ b/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule_Stub.cpp b/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule_Stub.cpp index 4a8ae3e3b9..146fc668ba 100644 --- a/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule_Stub.cpp +++ b/Gems/SceneLoggingExample/Code/SceneLoggingExampleModule_Stub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneLoggingExample/Code/sceneloggingexample_files.cmake b/Gems/SceneLoggingExample/Code/sceneloggingexample_files.cmake index 869b1e3f13..5edcde4616 100644 --- a/Gems/SceneLoggingExample/Code/sceneloggingexample_files.cmake +++ b/Gems/SceneLoggingExample/Code/sceneloggingexample_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneLoggingExample/Code/sceneloggingexample_shared_files.cmake b/Gems/SceneLoggingExample/Code/sceneloggingexample_shared_files.cmake index 5a94ac7dc3..99685a2f7d 100644 --- a/Gems/SceneLoggingExample/Code/sceneloggingexample_shared_files.cmake +++ b/Gems/SceneLoggingExample/Code/sceneloggingexample_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/CMakeLists.txt b/Gems/SceneProcessing/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/SceneProcessing/CMakeLists.txt +++ b/Gems/SceneProcessing/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/Code/CMakeLists.txt b/Gems/SceneProcessing/Code/CMakeLists.txt index ed96093c28..02603a57a3 100644 --- a/Gems/SceneProcessing/Code/CMakeLists.txt +++ b/Gems/SceneProcessing/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h b/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h index 8fd53da2ad..24e36d6830 100644 --- a/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h +++ b/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp index b04c66ca7b..6f1aab3e04 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.h b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.h index d4b7b72ac8..26543dc000 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.h +++ b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.cpp b/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.cpp index 8553c57959..46c9cdd2f4 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.h b/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.h index ed1d6a1e0f..9d218c1b72 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.h +++ b/Gems/SceneProcessing/Code/Source/Config/Components/SoftNameBehavior.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.cpp b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.cpp index bc1de30125..dcae88c827 100644 --- a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.h b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.h index 492d3cb3d0..a4b7ccee5c 100644 --- a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.h +++ b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/FileSoftNameSetting.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.cpp b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.cpp index 697684964b..8262ee5e80 100644 --- a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.h b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.h index 2eb985167b..4071c42a25 100644 --- a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.h +++ b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/NodeSoftNameSetting.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.cpp b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.cpp index 32d5b12bd9..c00eeb0526 100644 --- a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.h b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.h index 14c1584b4f..41916fbbe3 100644 --- a/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.h +++ b/Gems/SceneProcessing/Code/Source/Config/SettingsObjects/SoftNameSetting.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.cpp b/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.cpp index b097e82319..c4be3f145f 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.h b/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.h index 003ab14290..f734e9682f 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.h +++ b/Gems/SceneProcessing/Code/Source/Config/Widgets/GraphTypeSelector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.h b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.h index 53c13b5c7e..2872e9a74b 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.inl b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.inl index 0d814a0777..455e4aeb67 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.inl +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/Array2D.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.cpp index 5f9f6e3737..a0fc4d38e9 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.h b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.h index e122661e7d..3e6a7357dd 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderInvalidIndex.h b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderInvalidIndex.h index fbb4a61da1..faadb31127 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderInvalidIndex.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderInvalidIndex.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.cpp index e230d33b56..d6c485800c 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.h b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.h index 3755d25572..9ff99cad33 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSkinningInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.cpp index aff9637e31..0c1eb380cf 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.h b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.h index 00471f0219..d2704fe132 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderSubMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.cpp index a19aadd626..d1c8b01ddb 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.h b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.h index 2ac629750c..71876d6781 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshBuilderVertexAttributeLayers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.cpp index 8ca4f7358d..e3eb617601 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.h b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.h index 68b52dc98f..3dc4ed00d8 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/MeshOptimizer/MeshOptimizerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp index 1b8dc1e454..9ada34a270 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.h b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.h index b4a3a5d9c1..2a39e6d2f6 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.cpp index b96249a9e6..609087c556 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.h b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.h index cd4e897bc3..a1d137f916 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/BlendShapeMikkTGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.cpp index 18e777e035..03b36a6748 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.h b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.h index 36a72151a5..e0b5ece96c 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerators/MikkTGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.cpp index 2532862d2a..7968c407b7 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.h b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.h index 7e39a22f38..41583e611b 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.h +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentPreExportComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/Platform/Linux/platform_linux.cmake b/Gems/SceneProcessing/Code/Source/Platform/Linux/platform_linux.cmake index bbd9353ee2..8537e6e7a5 100644 --- a/Gems/SceneProcessing/Code/Source/Platform/Linux/platform_linux.cmake +++ b/Gems/SceneProcessing/Code/Source/Platform/Linux/platform_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp index 1edb7a59a0..5ca2ad4b7c 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h index eb15818c13..9c9bf57aca 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp index c25d8afc11..20c0dece37 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.h b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.h index b7b8717e14..9c1990d2e1 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.h +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.cpp b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.cpp index 67c68c94d1..0bd3e6ce19 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.h b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.h index 209aa2ffc4..2c93f232e7 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.h +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneSerializationHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.cpp b/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.cpp index 33194f0a49..684d1a969f 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.h b/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.h index 1416e883ec..49ce200710 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.h +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/TraceMessageHook.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp index 4991afd91e..2839c8037d 100644 --- a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h index 6eb42f69b1..674d3b449b 100644 --- a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h +++ b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Source/SceneProcessingModuleStub.cpp b/Gems/SceneProcessing/Code/Source/SceneProcessingModuleStub.cpp index e0d05bb7dc..bde2dfed7b 100644 --- a/Gems/SceneProcessing/Code/Source/SceneProcessingModuleStub.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneProcessingModuleStub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/InitSceneAPIFixture.h b/Gems/SceneProcessing/Code/Tests/InitSceneAPIFixture.h index 1b8d7778dc..c218276f14 100644 --- a/Gems/SceneProcessing/Code/Tests/InitSceneAPIFixture.h +++ b/Gems/SceneProcessing/Code/Tests/InitSceneAPIFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshBuilderTests.cpp b/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshBuilderTests.cpp index 26f6c40153..41b224906c 100644 --- a/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshBuilderTests.cpp +++ b/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshVerticesTests.cpp b/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshVerticesTests.cpp index af1992c8a3..1e8aaa8d41 100644 --- a/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshVerticesTests.cpp +++ b/Gems/SceneProcessing/Code/Tests/MeshBuilder/MeshVerticesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/MeshBuilder/SkinInfluencesTests.cpp b/Gems/SceneProcessing/Code/Tests/MeshBuilder/SkinInfluencesTests.cpp index 006a943c8e..b3489a47e5 100644 --- a/Gems/SceneProcessing/Code/Tests/MeshBuilder/SkinInfluencesTests.cpp +++ b/Gems/SceneProcessing/Code/Tests/MeshBuilder/SkinInfluencesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/MeshOptimizer/HasBlendshapes.cpp b/Gems/SceneProcessing/Code/Tests/MeshOptimizer/HasBlendshapes.cpp index a3f5292d2e..c9bf23b73d 100644 --- a/Gems/SceneProcessing/Code/Tests/MeshOptimizer/HasBlendshapes.cpp +++ b/Gems/SceneProcessing/Code/Tests/MeshOptimizer/HasBlendshapes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderPhasesTests.cpp b/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderPhasesTests.cpp index 931a2500a8..e064e01cef 100644 --- a/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderPhasesTests.cpp +++ b/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderPhasesTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderTests.cpp b/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderTests.cpp index 71c443dc32..cd7b288a56 100644 --- a/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderTests.cpp +++ b/Gems/SceneProcessing/Code/Tests/SceneBuilder/SceneBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/Tests/SceneProcessingConfigTest.cpp b/Gems/SceneProcessing/Code/Tests/SceneProcessingConfigTest.cpp index 78091743cc..aa1e2fea28 100644 --- a/Gems/SceneProcessing/Code/Tests/SceneProcessingConfigTest.cpp +++ b/Gems/SceneProcessing/Code/Tests/SceneProcessingConfigTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SceneProcessing/Code/sceneprocessing_editor_files.cmake b/Gems/SceneProcessing/Code/sceneprocessing_editor_files.cmake index 436785ef4b..9f03e55a20 100644 --- a/Gems/SceneProcessing/Code/sceneprocessing_editor_files.cmake +++ b/Gems/SceneProcessing/Code/sceneprocessing_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/Code/sceneprocessing_editor_static_files.cmake b/Gems/SceneProcessing/Code/sceneprocessing_editor_static_files.cmake index ed17b215e2..9e80083c6a 100644 --- a/Gems/SceneProcessing/Code/sceneprocessing_editor_static_files.cmake +++ b/Gems/SceneProcessing/Code/sceneprocessing_editor_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/Code/sceneprocessing_editor_tests_files.cmake b/Gems/SceneProcessing/Code/sceneprocessing_editor_tests_files.cmake index 58233bd35e..9ebe2291a3 100644 --- a/Gems/SceneProcessing/Code/sceneprocessing_editor_tests_files.cmake +++ b/Gems/SceneProcessing/Code/sceneprocessing_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/Code/sceneprocessing_files.cmake b/Gems/SceneProcessing/Code/sceneprocessing_files.cmake index 3cd4f263ca..93f7a1decd 100644 --- a/Gems/SceneProcessing/Code/sceneprocessing_files.cmake +++ b/Gems/SceneProcessing/Code/sceneprocessing_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SceneProcessing/Code/sceneprocessing_tests_files.cmake b/Gems/SceneProcessing/Code/sceneprocessing_tests_files.cmake index e6a913cf29..e66a1a7178 100644 --- a/Gems/SceneProcessing/Code/sceneprocessing_tests_files.cmake +++ b/Gems/SceneProcessing/Code/sceneprocessing_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/CMakeLists.txt b/Gems/ScriptCanvas/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ScriptCanvas/CMakeLists.txt +++ b/Gems/ScriptCanvas/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/Asset/EditorAssetConversionBus.h b/Gems/ScriptCanvas/Code/Asset/EditorAssetConversionBus.h index 7f54a281ae..8e53db20b0 100644 --- a/Gems/ScriptCanvas/Code/Asset/EditorAssetConversionBus.h +++ b/Gems/ScriptCanvas/Code/Asset/EditorAssetConversionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.cpp b/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.cpp index 69c8032d1f..035fa0f855 100644 --- a/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.cpp +++ b/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.h b/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.h index 23b781300d..0a8bf830af 100644 --- a/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.h +++ b/Gems/ScriptCanvas/Code/Asset/EditorAssetSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.cpp b/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.cpp index e15a2ae955..9cee1fb375 100644 --- a/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.cpp +++ b/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.h b/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.h index 2764621d91..404d6bbb65 100644 --- a/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.h +++ b/Gems/ScriptCanvas/Code/Asset/RuntimeAssetSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Builder/BuilderSystemComponent.h b/Gems/ScriptCanvas/Code/Builder/BuilderSystemComponent.h index 7bff0b2180..9ff9aa812d 100644 --- a/Gems/ScriptCanvas/Code/Builder/BuilderSystemComponent.h +++ b/Gems/ScriptCanvas/Code/Builder/BuilderSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.cpp b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.cpp index cd7540c663..cdbd9ff943 100644 --- a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.cpp +++ b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.h b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.h index 201c9f00ee..bd6a09433a 100644 --- a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.h +++ b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.cpp b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.cpp index 2284ba94cf..20b927140a 100644 --- a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.cpp +++ b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.h b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.h index 4ef20f5fb1..fe07175744 100644 --- a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.h +++ b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp index 375b217780..7c63652c1a 100644 --- a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp +++ b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasBuilderWorkerUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasFunctionBuilderWorker.cpp b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasFunctionBuilderWorker.cpp index 9f528f983f..5ff5069141 100644 --- a/Gems/ScriptCanvas/Code/Builder/ScriptCanvasFunctionBuilderWorker.cpp +++ b/Gems/ScriptCanvas/Code/Builder/ScriptCanvasFunctionBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/CMakeLists.txt b/Gems/ScriptCanvas/Code/CMakeLists.txt index 84aaf315f2..e7456f4403 100644 --- a/Gems/ScriptCanvas/Code/CMakeLists.txt +++ b/Gems/ScriptCanvas/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHandler.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHandler.cpp index 41bf85bf3e..9f50f32cf5 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHandler.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.cpp index d42b324ba1..a3559f0123 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.h b/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.h index 3941f69540..1cde981e0d 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/Functions/ScriptCanvasFunctionAssetHolder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp index ff898a41fc..75bfefbd6e 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp index 0da8da5276..5a15fe4298 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp index 76cfb0de8d..247a38f58a 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.h index 1ed69b2430..d98ff25326 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp index 0a4b2e32f1..2f0d0bfc2c 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.h index 5b49132168..30fedb6157 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetHolder.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.cpp index 3ea1fffd82..30f2ecdb64 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.h index 87fc9d195d..5e86636d90 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.cpp index 8280e40741..e4d620ba57 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.h index f464fbe678..526296b1c1 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReference.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReferenceContainer.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReferenceContainer.h index aa7dd665ce..efff707234 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReferenceContainer.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetReferenceContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.cpp index 3088428608..4979f5e0e8 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.h index c46d1f96d8..d77b10f2c8 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerBus.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerBus.h index ccb7221831..828223ad38 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerDefinitions.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerDefinitions.h index 58a7d182e5..5c20d20bf0 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerDefinitions.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasAssetTrackerDefinitions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp index 6ffa2693fe..3304ad7987 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.h index 1e67a366e3..8f44a7f4b8 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasMemoryAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.cpp b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.cpp index 8783276dc3..1d26cc2525 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.h b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.h index 4c824ea2d0..deccaac161 100644 --- a/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.h +++ b/Gems/ScriptCanvas/Code/Editor/Assets/ScriptCanvasUndoHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp index b06540c1d0..f1b4af88d8 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraphVariableManagerComponent.cpp b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraphVariableManagerComponent.cpp index 7b860542bf..95dcca4d72 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/EditorGraphVariableManagerComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/EditorGraphVariableManagerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Components/EditorScriptCanvasComponent.cpp b/Gems/ScriptCanvas/Code/Editor/Components/EditorScriptCanvasComponent.cpp index b767a2b52e..97f5b8706f 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/EditorScriptCanvasComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/EditorScriptCanvasComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Components/EditorUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Components/EditorUtils.cpp index a12c2a2ff9..42f30e0a89 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/EditorUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/EditorUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Components/GraphUpgrade.cpp b/Gems/ScriptCanvas/Code/Editor/Components/GraphUpgrade.cpp index 4ff0732100..fcffc49b74 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/GraphUpgrade.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/GraphUpgrade.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.cpp b/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.cpp index a3df4244af..511b3f6658 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.h b/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.h index a3d19ec89c..137b230ec1 100644 --- a/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/Components/IconComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.cpp b/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.cpp index b87faa72e4..75a820bdba 100644 --- a/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.h b/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.h index 83b03fad04..99a67f37ab 100644 --- a/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.h +++ b/Gems/ScriptCanvas/Code/Editor/Debugger/Debugger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.h b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.h index fbb6829a4f..f1e3c85783 100644 --- a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.h +++ b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.inl b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.inl index bb40575367..ee748129e7 100644 --- a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.inl +++ b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasGraphUtilities.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.h b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.h index 90a2c2d22b..392aff3ec8 100644 --- a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.h +++ b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.inl b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.inl index dfc6ec7e2b..00f54a6c50 100644 --- a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.inl +++ b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasReporter.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasTraceUtilities.h b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasTraceUtilities.h index 886392ca7f..381e7c78ea 100644 --- a/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasTraceUtilities.h +++ b/Gems/ScriptCanvas/Code/Editor/Framework/ScriptCanvasTraceUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/AutomationIds.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/AutomationIds.h index 1e93788474..a77fdb98e9 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/AutomationIds.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/AutomationIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.cpp index 07e8fc3035..c5f212abbc 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.h index 2a71cfde02..ab27fbde82 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicOrderingDynamicSlotComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.cpp index 630a3496e9..bd845548c6 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.h index 096a535ca0..1307852382 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/DynamicSlotComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.cpp index 040442999d..fd6313f243 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.h index d8e8df3e94..5313cf94e0 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/MappingComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.cpp index daccb203aa..ac32b8f6bb 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.h index bc1b4c30ec..b00cd0a893 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/AzEventHandlerNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.cpp index c81c23370d..ce8c4a7386 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.h index 20cf6a9aa5..732ab44a84 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ClassMethodNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.cpp index d3f6634f9e..396f53309a 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.h index 454baa0a95..bdc0f7adb7 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerEventNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.cpp index 40a36ddf69..1c94d19137 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.h index e3a8b9335a..f7f4fde06f 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusHandlerNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.cpp index 51a2466e62..03dfa6f73c 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.h index 83c87b4a45..7c61a7569a 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EBusSenderNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.cpp index 46e6b28fb0..d49b776963 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.h index a83e7834b7..af8b55a69d 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/EntityRefNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.cpp index 183b5b0eba..49f0a7d167 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.h index 0e62a5b961..83806128e1 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionDefinitionNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.cpp index 87dad9df76..3930c91841 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.h index 395dcb3849..d121762c93 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/FunctionNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.cpp index 5070b3ea79..9599475a10 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.h index 4f0cbd4282..e0de0e8139 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/GetVariableNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.cpp index 17856f8b2f..86e0e930ce 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.h index f0a6a5c061..26bbb55d6e 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.cpp index 723b8c3906..d86f3991fd 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.h index 558791728b..32e5ba054f 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/NodelingDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.cpp index 89818c15f4..6872bf7f55 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.h index e09e761140..b5ff154cc0 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverEventNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.cpp index 306773fa08..4832739422 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.h index 2bb9a09a15..bf6bb74865 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventReceiverNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.cpp index 4b05cc2057..1c141f4825 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.h index fb5979f547..5769011ff0 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/ScriptEventSenderNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.cpp index 70eb335dcb..6b608f0113 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.h index 8df108725b..6b32051e9a 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/SetVariableNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.cpp index 08b5cedf54..ddaedc9039 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.h index 9148a0747d..8ff73da717 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/UserDefinedNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.cpp b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.cpp index 63a485cd54..a3db1ca2d6 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.h index 4b411c5708..d53ceba990 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/Components/NodeDescriptors/VariableNodeDescriptorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasAssetIdDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasAssetIdDataInterface.h index 63fc66a6fb..c8ac4eb40f 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasAssetIdDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasAssetIdDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasBoolDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasBoolDataInterface.h index f9e4c83802..e0bdf660fe 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasBoolDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasBoolDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasCRCDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasCRCDataInterface.h index 1ff1c135b6..ef1ebd06cd 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasCRCDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasCRCDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasColorDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasColorDataInterface.h index 248904603b..97ede5ce71 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasColorDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasColorDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasDataInterface.h index 54ca61bd51..82eb3c8e38 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEntityIdDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEntityIdDataInterface.h index aabb47e32b..514d6e2a04 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEntityIdDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEntityIdDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEnumDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEnumDataInterface.h index bbc4db0b7a..104bb63bb6 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEnumDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasEnumDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasNumericDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasNumericDataInterface.h index c22f6ab51a..d82f3a7c76 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasNumericDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasNumericDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasQuaternionDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasQuaternionDataInterface.h index 7cc8d40cdf..08376b583b 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasQuaternionDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasQuaternionDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasReadOnlyDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasReadOnlyDataInterface.h index 629f0dc77f..aacbdb74b3 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasReadOnlyDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasReadOnlyDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasStringDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasStringDataInterface.h index a337293186..c6e7b47f91 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasStringDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasStringDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVariableDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVariableDataInterface.h index ee75b5258e..6b44f59985 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVariableDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVariableDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVectorDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVectorDataInterface.h index 3b3a40cdfb..1c7bb75c67 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVectorDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/DataInterfaces/ScriptCanvasVectorDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/GraphCanvasEditorNotificationBusId.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/GraphCanvasEditorNotificationBusId.h index 3b2a1af99e..ec8e25aa8f 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/GraphCanvasEditorNotificationBusId.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/GraphCanvasEditorNotificationBusId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasEnumComboBoxPropertyDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasEnumComboBoxPropertyDataInterface.h index 6b034af3a5..07ecc1a90c 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasEnumComboBoxPropertyDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasEnumComboBoxPropertyDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasPropertyDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasPropertyDataInterface.h index 2a72d51baa..f3f1e6506c 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasPropertyDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasPropertyDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasStringPropertyDataInterface.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasStringPropertyDataInterface.h index e30f7b306f..f645e20f42 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasStringPropertyDataInterface.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertyInterfaces/ScriptCanvasStringPropertyDataInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertySlotIds.h b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertySlotIds.h index e450dfa048..ac6f42c362 100644 --- a/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertySlotIds.h +++ b/Gems/ScriptCanvas/Code/Editor/GraphCanvas/PropertySlotIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/Functions/ScriptCanvasFunctionAssetHandler.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/Functions/ScriptCanvasFunctionAssetHandler.h index 5ede7bad79..f9953aba99 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/Functions/ScriptCanvasFunctionAssetHandler.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/Functions/ScriptCanvasFunctionAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAsset.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAsset.h index bf8ab35470..fdf60a1eaa 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAsset.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetBus.h index 7d38fe13d5..fad2d75413 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetHandler.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetHandler.h index 7332603ead..591ed27bd4 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetHandler.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetTypes.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetTypes.h index 0f80a130e2..8ef3fdcb4d 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasAssetTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasBaseAssetData.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasBaseAssetData.h index 8dee7a0f1d..8b6afcde64 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasBaseAssetData.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Assets/ScriptCanvasBaseAssetData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/DocumentContextBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/DocumentContextBus.h index 4e668e3109..f841f05778 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/DocumentContextBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/DocumentContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorSceneVariableManagerBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorSceneVariableManagerBus.h index 4e8f248237..76a929563b 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorSceneVariableManagerBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorSceneVariableManagerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorScriptCanvasBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorScriptCanvasBus.h index 221d91265e..d9b2be8035 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorScriptCanvasBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/EditorScriptCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/GraphBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/GraphBus.h index 9567b8bd1f..1d7acb03a0 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/GraphBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/GraphBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/IconBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/IconBus.h index 4ec405360f..3094a50b39 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/IconBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/IconBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/NodeIdPair.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/NodeIdPair.h index 8785ffa715..a45043b549 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/NodeIdPair.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/NodeIdPair.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/RequestBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/RequestBus.h index 3b823e0e2d..0209985dc4 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/RequestBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/RequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasAssetNodeBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasAssetNodeBus.h index 40cde0a198..1366d972b9 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasAssetNodeBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasAssetNodeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasBus.h index 3204f9cc03..ff8e9e9747 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasExecutionBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasExecutionBus.h index a633c7ac54..5fa81a77ca 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasExecutionBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/ScriptCanvasExecutionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UndoBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UndoBus.h index 1638ccdc7d..74b649b72d 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UndoBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UndoBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UnitTestVerificationBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UnitTestVerificationBus.h index 40ba5ab1c3..5b5e9ed7d3 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UnitTestVerificationBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Bus/UnitTestVerificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraph.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraph.h index 1d4e1df09f..a32333e5ce 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraph.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraphVariableManagerComponent.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraphVariableManagerComponent.h index 549ac73766..93e9285e57 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraphVariableManagerComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorGraphVariableManagerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorScriptCanvasComponent.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorScriptCanvasComponent.h index c3f500c3cc..0abfda43d9 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorScriptCanvasComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorScriptCanvasComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorUtils.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorUtils.h index 97aef77bc2..33cc31d904 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorUtils.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/EditorUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h index b5c6d391f3..bd35b6b044 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/Components/GraphUpgrade.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/DynamicSlotBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/DynamicSlotBus.h index 9b1c988fe8..f265a40b64 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/DynamicSlotBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/DynamicSlotBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/MappingBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/MappingBus.h index 4b4e312c5a..c9c64cb5e9 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/MappingBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/MappingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/NodeDescriptorBus.h b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/NodeDescriptorBus.h index cbe7c995d3..6822576482 100644 --- a/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/NodeDescriptorBus.h +++ b/Gems/ScriptCanvas/Code/Editor/Include/ScriptCanvas/GraphCanvas/NodeDescriptorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.cpp b/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.cpp index 3a3e7bfe30..aafb32eb81 100644 --- a/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.h b/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.h index e74e261790..1c0fef208f 100644 --- a/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.h +++ b/Gems/ScriptCanvas/Code/Editor/Model/EntityMimeDataHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.cpp b/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.cpp index 1ca7057279..dff8090522 100644 --- a/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.h b/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.h index 5a7cf9cee5..3f2263cba3 100644 --- a/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.h +++ b/Gems/ScriptCanvas/Code/Editor/Model/LibraryDataModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp b/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp index 2b33998589..d64a18a534 100644 --- a/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.h b/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.h index 920b7371df..bfd8079019 100644 --- a/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.h +++ b/Gems/ScriptCanvas/Code/Editor/Model/UnitTestBrowserFilterModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.cpp index db13adb9f7..fcdc7b2780 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.h b/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.h index b5fdbf111d..4ea81a869a 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.h +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/EditorLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp index 86ec1456bd..a7282f85b0 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.h b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.h index 91bdea2749..c24b48a289 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.h +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeCreateUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp index 215f3c42de..ba87796161 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.h b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.h index 1db6cf9012..2ac38d86ed 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.h +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp index 7de211c67e..a0d79f28a3 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.h b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.h index 7470da047c..786858d822 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.h +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.cpp index d6a7c87966..3bc1f1b033 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.h b/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.h index 085a9cb7fd..8d3a5bf3d8 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.h +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/ScriptCanvasAssetNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/QtMetaTypes.h b/Gems/ScriptCanvas/Code/Editor/QtMetaTypes.h index 196baca86b..ceb2b612cf 100644 --- a/Gems/ScriptCanvas/Code/Editor/QtMetaTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/QtMetaTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/ReflectComponent.cpp b/Gems/ScriptCanvas/Code/Editor/ReflectComponent.cpp index c3d4903578..a90e3a9fd5 100644 --- a/Gems/ScriptCanvas/Code/Editor/ReflectComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/ReflectComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/ReflectComponent.h b/Gems/ScriptCanvas/Code/Editor/ReflectComponent.h index 6aaa1ddf5f..e31737eeb1 100644 --- a/Gems/ScriptCanvas/Code/Editor/ReflectComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/ReflectComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/ScriptCanvasEditorGem.cpp b/Gems/ScriptCanvas/Code/Editor/ScriptCanvasEditorGem.cpp index 4ab7059173..7a9d917c52 100644 --- a/Gems/ScriptCanvas/Code/Editor/ScriptCanvasEditorGem.cpp +++ b/Gems/ScriptCanvas/Code/Editor/ScriptCanvasEditorGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Settings.cpp b/Gems/ScriptCanvas/Code/Editor/Settings.cpp index 974c1b341c..821f0956d3 100644 --- a/Gems/ScriptCanvas/Code/Editor/Settings.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Settings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Settings.h b/Gems/ScriptCanvas/Code/Editor/Settings.h index e5beffb2e3..2b9268dc0c 100644 --- a/Gems/ScriptCanvas/Code/Editor/Settings.h +++ b/Gems/ScriptCanvas/Code/Editor/Settings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.h b/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.h index fa3d0c1882..ea8cd89d69 100644 --- a/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.h +++ b/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.inl b/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.inl index f7e62ac4f7..b631f3cd32 100644 --- a/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.inl +++ b/Gems/ScriptCanvas/Code/Editor/Static/Include/ScriptCanvas/View/EditCtrls/GenericLineEditCtrl.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Static/Source/View/EditCtrls/GenericLineEditCtrl.cpp b/Gems/ScriptCanvas/Code/Editor/Static/Source/View/EditCtrls/GenericLineEditCtrl.cpp index 47d4406f98..b2e93edb41 100644 --- a/Gems/ScriptCanvas/Code/Editor/Static/Source/View/EditCtrls/GenericLineEditCtrl.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Static/Source/View/EditCtrls/GenericLineEditCtrl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp b/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp index 9aed5f5c40..6ab9c9b640 100644 --- a/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/SystemComponent.h b/Gems/ScriptCanvas/Code/Editor/SystemComponent.h index 00ff4a3965..48b9bd57fc 100644 --- a/Gems/ScriptCanvas/Code/Editor/SystemComponent.h +++ b/Gems/ScriptCanvas/Code/Editor/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Tests/test_Main.cpp b/Gems/ScriptCanvas/Code/Editor/Tests/test_Main.cpp index b68ab73b3b..d6598d3d2a 100644 --- a/Gems/ScriptCanvas/Code/Editor/Tests/test_Main.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Tests/test_Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h b/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h index c15d84f05b..4f83faba66 100644 --- a/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h +++ b/Gems/ScriptCanvas/Code/Editor/Translation/TranslationHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.cpp b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.cpp index 6ead91985f..d745014d69 100644 --- a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.h b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.h index a47fa1a392..88a86ffa35 100644 --- a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.h +++ b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasGraphCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.cpp b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.cpp index 1b14cb9704..4870b8728d 100644 --- a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.h b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.h index 7c0a41b7f9..75ea25ef3f 100644 --- a/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.h +++ b/Gems/ScriptCanvas/Code/Editor/Undo/ScriptCanvasUndoManager.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/Command.cpp b/Gems/ScriptCanvas/Code/Editor/Utilities/Command.cpp index 5155dad831..e55b62681d 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/Command.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/Command.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/Command.h b/Gems/ScriptCanvas/Code/Editor/Utilities/Command.h index 43479023a7..1b7629ace8 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/Command.h +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/Command.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.cpp b/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.cpp index 7f4971465f..f874246c93 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h b/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h index bbbc431f54..3d150d7c64 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/CommonSettingsConfigurations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.cpp b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.cpp index 3668f12a97..83aeef56e2 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.h b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.h index 9754320a75..8214da7473 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.h +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentAssetPath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.cpp b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.cpp index 99ae47297e..dca0fbb17b 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.h b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.h index 8b0bae7b0d..3e01876035 100644 --- a/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.h +++ b/Gems/ScriptCanvas/Code/Editor/Utilities/RecentFiles.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.cpp b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.cpp index a839d4aad8..7f99fd40dd 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.h b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.h index aeaff650c5..bc65339f05 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerTypeLineEdit.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.cpp b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.cpp index 4b79ac0b79..f1afa83338 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.h b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.h index 23972b5b13..f9a852c02d 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/ContainerWizard/ContainerWizard.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.cpp b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.cpp index 82f4d0e3d3..4bdcd80fc3 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.h b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.h index c9af0f0ae7..6235fac191 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/NewGraphDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.cpp b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.cpp index 6cfe1563c1..b5b922acff 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.h b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.h index 74ebff3cbb..6c12f1f7af 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/SettingsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.cpp b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.cpp index 9a93a72d27..6e03b4d70c 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.h b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.h index c0080d3280..ab7335fde4 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Dialogs/UnsavedChangesDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/AssetGraphSceneDataBus.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/AssetGraphSceneDataBus.h index 0849dad746..1e1d7fb2ae 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/AssetGraphSceneDataBus.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/AssetGraphSceneDataBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.cpp index d8529bfbad..7205a7bb85 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.h index 58477774c3..557a4013c0 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CanvasWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.cpp index 33c47ddf7e..7e1e443164 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.h index 2211611abf..dfe1d58101 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/CommandLine.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp index 0e5a8932dd..3aa4d34293 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.h index f5cc4f4646..ed84f40337 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/DataTypePalette/DataTypePaletteModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.cpp index 77022dcb55..7e8bbec40c 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.h index 15c26e1a43..8177cb0a63 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/GraphTabBar.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.cpp index 29c4343820..9e7c48f949 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.h index 883e9fb2e1..09838aed3d 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LogPanel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.cpp index 730be30261..df88efb67f 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.h index 1afb44864b..774dce29de 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetDataAggregator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.cpp index 5d2d2c8f3a..a452fc3f23 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.h index f785270c2b..b809189984 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/AssetWindowSession/LoggingAssetWindowSession.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.cpp index feae601492..25ab3ba941 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.h index 934c85785d..535e6cf717 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingDataAggregator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.cpp index 3abe41ad93..26a1ab88d3 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.h index 02d9700113..3bf2718fcc 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LiveWindowSession/LiveLoggingWindowSession.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.cpp index f036835618..2af6da583a 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.h index ca2efecd50..41a47a35ea 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingDataAggregator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.cpp index 65b40ff169..5dc360b7e2 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.h index 0502c8a40c..0caf3c5299 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.cpp index b819c602f7..dc0316bd87 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.h index f2dae43580..966c9b7352 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.cpp index 0c9437ab37..2e26101179 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.h index 6e050c783c..1375151731 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowSession.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.cpp index 8fcd1ea7c5..5996a33b36 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.h index 74ddce0497..19d5a550c3 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/LoggingWindowTreeItems.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.cpp index 555fa6ec7c..3a6f7b3e69 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.h index fd7856cfd2..bd0714c55f 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/EntityPivotTree/EntityPivotTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.cpp index 311877001f..d754236b8d 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.h index aa7b28a65b..3c62fbcab3 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/GraphPivotTree/GraphPivotTree.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp index e4ede66c24..07e9814aae 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.h index ac28b2b04a..49214a7d9b 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/LoggingPanel/PivotTree/PivotTreeWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.cpp index 91c495a585..77606488c1 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.h index 48ec5a1f35..a044a202da 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/MainWindowStatusWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.cpp index ac5c940528..7b3ffdc1f1 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.h index 01c153ba17..b92ab53220 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/CreateNodeMimeEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.cpp index b454e775c1..4b2e9ffe7d 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.h index 7b4d7cb4db..8359691e3d 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/EBusNodePaletteTreeItemTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.cpp index 9d51f56328..9e5c027491 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.h index 1f3220d787..26b2eb27d6 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/FunctionNodePaletteTreeItemTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp index 74298b9ba8..9d49f17fa5 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.h index ed39aa69de..6f1bf97af3 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp index e1292d149b..787d881318 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.h index 17e6802a65..2286e8e453 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModelBus.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModelBus.h index 5f575df655..ab5f13143f 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModelBus.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModelBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.cpp index 918ecd573d..c339f941aa 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.h index e3ee260bb1..8fcc64004f 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/ScriptEventsNodePaletteTreeItemTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.cpp index 5cf8686c07..f0290eef10 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.h index 73910f659d..5f623e4c56 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/SpecializedNodePaletteTreeItemTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.cpp index 34dd2bb6ec..3c37de8386 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.h index becbb13679..1e09e5cf20 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/VariableNodePaletteTreeItemTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.cpp index a07c17be3c..f25f6ba2bf 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.h index 746a75f7d9..44f4abfc34 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGrid.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridBus.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridBus.h index a2ad3439f0..749e20dc7d 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridBus.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.cpp index 4479249f8b..14aca1a0d8 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.h index 53f154f7d3..7337b13a54 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/PropertyGridContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp index fdcc60343f..cfe719114f 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.h index 9d8e66c954..d6cfc68a22 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ScriptCanvasNodePaletteDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp index acd3f58ee1..4281e35250 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.h index c3cd8da168..0ea65cf70c 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/NodeUsageTreeItem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.cpp index 697fed3c0b..caa39d4ca4 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.h index f0a13238e2..147a05bd90 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/StatisticsDialog/ScriptCanvasStatisticsDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.cpp index 4ab5a5cb55..85c70f7864 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.h index b14b57ccf8..33c9966daf 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp index 183f5e67a7..b95354b7d8 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.h index 5406db7eea..feb944357b 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/UnitTestPanel/UnitTestTreeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp index 43f0650930..4100103dd1 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.h index 353eb32348..9eac04b4e4 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidgetBus.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidgetBus.h index 7a1458d2d5..72c3f697d4 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidgetBus.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/ValidationPanel/GraphValidationDockWidgetBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.cpp index bc01ae92d9..b6062423ee 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.h index 840effc1c9..b20b66e819 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/GraphVariablesTableView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.cpp index 7834ef0898..2d23b942df 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.h index d837dce8f2..1de1f971b8 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/SlotTypeSelectorWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp index b63cc60708..d88c16ba24 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.h index 6dbc185c9b..d48863209a 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariableDockWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp index de5257188c..6622221c68 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.h index 97ca1f6377..a9691961f0 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/VariablePanel/VariablePaletteTableView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/WidgetBus.h b/Gems/ScriptCanvas/Code/Editor/View/Widgets/WidgetBus.h index 8a7c791a9a..277add739e 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/WidgetBus.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/WidgetBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.cpp index 606ef20702..f5b77e4bd7 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.h index 081a2a1b8b..cb4cd1715a 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/CreateNodeContextMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.cpp index d18c94173c..c64d6253c1 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.h index 58f2d29763..530dc240ec 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/EBusHandlerActionMenu.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp index 0572c929eb..4bcc50e5ea 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.h index 84dc3cc14d..bb15cc13b3 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindowBus.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindowBus.h index 7d2bc1946f..c3fc9255a6 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindowBus.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/MainWindowBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.cpp index 72c34e1ee7..95386c7e55 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.h index ce0d575923..01029e0be1 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/ScriptCanvasContextMenus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.cpp index c297d9dba2..e35435f5dd 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.h index 642494688f..c3baff3f40 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp index e9e778a0d8..02fb5b567d 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.h index 74f4360feb..7fe732c1cb 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/UpgradeTool.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp index 6359836217..9ec399f616 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h index 148cf4f6f3..929184834a 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h +++ b/Gems/ScriptCanvas/Code/Editor/View/Windows/Tools/UpgradeTool/VersionExplorer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Editor/precompiled.h b/Gems/ScriptCanvas/Code/Editor/precompiled.h index bd7d04f867..dafa822ce4 100644 --- a/Gems/ScriptCanvas/Code/Editor/precompiled.h +++ b/Gems/ScriptCanvas/Code/Editor/precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetDescription.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetDescription.h index 263c1d497b..900fa4b3c5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetDescription.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetDescription.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.cpp index 1fd7bd131a..2d010b3327 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.h index eadfe90f8e..a89c6ef645 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistryBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistryBus.h index bd6f1f0865..086508ad62 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistryBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/AssetRegistryBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.cpp index dc68817610..66e2cac5b5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.h index f0897d2f73..f9b99f94ee 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAssetBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAssetBus.h index 4fd53b44dc..7d208c5915 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAssetBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ExecutionLogAssetBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.cpp index afa0fa6ba8..2f20fbbabb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.h index 0df45186dd..d468be735d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/RuntimeFunctionAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/ScriptCanvasFunctionAsset.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/ScriptCanvasFunctionAsset.h index d1899a97a2..58c99e719e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/ScriptCanvasFunctionAsset.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/Functions/ScriptCanvasFunctionAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.cpp index a675a62788..c8a14f9231 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.h index fd746f947d..cc41d5ae5e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.cpp index 86dd1b8b7a..f2c03fbd03 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.h index 32a6c71b40..ffcdbb3665 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/RuntimeAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetBase.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetBase.h index b1b34482b3..b5ec697911 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetBase.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetData.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetData.h index 994ccc6406..ae36b7a43e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetData.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Asset/ScriptCanvasAssetData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja index d417d95ec5..665642bd8b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Header.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja index f23cc8c50b..aaffe7ddef 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasGrammar_Source.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Header.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Header.jinja index 188c7d2214..6f08e3fdf5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Header.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Header.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja index fdf773bf2c..11d3cdcea3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvasNodeable_Source.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja index 5c04232873..ae25a7e363 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Macros.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Nodeable_Macros.jinja b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Nodeable_Macros.jinja index a0c57f4d64..6cb0217a8a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Nodeable_Macros.jinja +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/AutoGen/ScriptCanvas_Nodeable_Macros.jinja @@ -1,5 +1,5 @@ {# -Copyright (c) Contributors to the Open 3D Engine Project +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 #} diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h index 0ac6d8d44b..52628b62ed 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/CodeGen/NodeableCodegen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Attributes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Attributes.h index 703999e2c2..df919d3b69 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Attributes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Attributes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.cpp index a9394a47bd..2a2c055416 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.h index 5acdf64f68..1a1c47794b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Connection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ConnectionBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ConnectionBus.h index 7009ebeac1..3045dc2fdc 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ConnectionBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ConnectionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.cpp index cb6a9f0826..b8ae236563 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.h index e2028c4e1d..b92cc4f7d2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ContractBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ContractBus.h index a2bfc486a0..19a442144b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ContractBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ContractBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts.h index e5a61083cc..8e2a748f0f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.cpp index 9513d9259f..76f0459404 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.h index f527612bd0..f46776a3ce 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ConnectionLimitContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.cpp index 289326ab40..515bb004ed 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.h index c26887a67f..b24fb598f2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ContractRTTI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.cpp index 140937d04a..d4b727bb90 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.h index 3092045187..ee8e58a354 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisallowReentrantExecutionContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.cpp index 7a28d7da20..39cfa706d9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.h index 8793a60d5c..6c076e444c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DisplayGroupConnectedSlotLimitContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.cpp index 9326a4d18b..3b1eae09b1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.h index 52e8ac80e2..cedaad5b6c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/DynamicTypeContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.cpp index c80c7f6102..b546a4364d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.h index 941440732e..5e5865fb06 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/ExclusivePureDataContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.cpp index 9aba05b04a..953c37d72e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.h index 5bf767aae4..5758df6a27 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/IsReferenceTypeContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.cpp index edcc3f595f..7a7d03a564 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.h index 6159ab971b..8401f92378 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MathOperatorContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.cpp index 3a0376c55a..a5ad5b43f9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.h index a681eb050d..b502765281 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/MethodOverloadContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.cpp index 0b78d4746f..d8b74cbcd8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.h index e946fa9d40..eb9b454e71 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/RestrictedNodeContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.cpp index c594c1b15a..ea036a8432 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.h index ed4ede7ce1..bd4bcbda95 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SlotTypeContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.cpp index 51aa423ad5..f0519cd7ed 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.h index d106265dbc..2c4b0b97b6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/StorageRequiredContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.cpp index fac8aadd8f..b1c0fa1858 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.h index 5dad7d9fc6..d383835193 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/SupportsMethodContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.cpp index 3b51641c7d..2ed5a48008 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.h index e884a217ce..85344c620c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Contracts/TypeContract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp index a79c58ea32..c81b70618a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h index 78e51ddbb0..044a3d54db 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Core.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp index d51fc0038e..cd2cf7d9ea 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h index 0c6912afe8..c3730aed0a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Datum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/DatumBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/DatumBus.h index 214fffd98b..b85409b052 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/DatumBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/DatumBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.cpp index 747561cfe2..8dfed0ea66 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h index 7ba41dc271..93fded64c3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusNodeBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusNodeBus.h index 8c8a5fe590..6dc3a91df6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusNodeBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/EBusNodeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.cpp index b9d8b81923..7c5aef1fc7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.h index 155b731f4b..ca20a0ace4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Endpoint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.cpp index 47a0540ebb..09eee9ae79 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.h index 009f687e80..9e913cb38d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ExecutionNotificationsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.cpp index abd4cf1bb7..a1791509b0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.h index 76e15bfe34..e54704e95e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Graph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphBus.h index 87fa78eb1f..c85c76e54e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp index 50b2a055a6..d59e933676 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h index 38c9e4cc4f..1af246d213 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphScopedTypes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphScopedTypes.h index dda0347f2c..a3c1446b85 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphScopedTypes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/GraphScopedTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp index a2ad92ba22..603079fc28 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.h index f9323d9708..3a4ff1a104 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.cpp index 2db48ad352..57594f6f34 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.h index f37750dede..7786a1a136 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ModifiableDatumView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NamedId.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NamedId.h index e90196ace0..3459a985ef 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NamedId.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NamedId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NativeDatumNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NativeDatumNode.h index a2f6c99911..70c30198d5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NativeDatumNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NativeDatumNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp index 7aaf9ea518..f0faf324c1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h index 7e18ae8283..74707916f3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeBus.h index 6b12157d46..b55e88844c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h index c1c33b54e7..95fc23c5d5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.cpp index bdb8576d8f..c73b7e0b8e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.h index 81ced122b8..5991e4e239 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Nodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.cpp index 7a723278d6..5ec40d8e5f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.h index 26014d8bfc..0589aff0da 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp index 73eec2d685..c9e2e3acc6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.h index 53f31406bc..16767c2c6f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableNodeOverloaded.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableOut.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableOut.h index c0f7def920..46a2f65839 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableOut.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeableOut.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodelingBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodelingBus.h index c89e9a5c97..ce9938ec03 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodelingBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodelingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.cpp index 9f4da0ffd2..44d087e8a5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.h index 159f475d2f..01c52d7378 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/PureData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ScriptCanvasBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ScriptCanvasBus.h index 0d59449237..7133691078 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ScriptCanvasBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/ScriptCanvasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SignalBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SignalBus.h index de21f23ef7..1a39c0f4d6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SignalBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SignalBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.cpp index 4423d0ec7e..5b117dc4a9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.h index 4b4d09dbce..1eeddb8898 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Slot.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurationDefaults.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurationDefaults.h index 2f4090a6c0..b998f3120c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurationDefaults.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurationDefaults.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.cpp index 7f27967a08..be6b4bd094 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.h index f7318b1023..7d5a0ff895 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotConfigurations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.cpp index 073faee4d6..caf87e84af 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.h index 909503426e..1498fb332c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotExecutionMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.cpp index c6365bd7df..9c3a68c1c5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.h index e481b7a934..57a3b081eb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotMetadata.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotNames.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotNames.h index 2e5af6427c..7efdb8b890 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotNames.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SlotNames.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp index 0047455369..a6959ae209 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.h index c82868c86e..024f3e7483 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp index 4a687dbebc..af131a2208 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.h index a85b0ed3a8..02c7aef947 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/SubgraphInterfaceUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp index 53978776e5..64b006a39c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h index aa37aa6795..4980fdd37b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObject.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.cpp index b6da229e70..12810adf8a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.h index da961f6041..32334458bf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/BehaviorContextObjectPtr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.cpp index 02896568fa..92d30f88fb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h index 156b184bbf..bcf2a6bafe 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Data.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataMacros.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataMacros.h index 5906e43456..14c4cd67a0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataMacros.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataMacros.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.cpp index 91b81b3dab..ba217c9290 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.h index c7bb55074a..6266a596ae 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.cpp index e8039f8164..199f6fe26d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.h index 190fc1f1f4..d1df5a1cf6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/DataTrait.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/NumericData.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/NumericData.h index 173a064975..8af1e8864e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/NumericData.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/NumericData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.cpp index 7e9a2cb2a0..99a48a51b1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.h index 4a321359dd..bae23d151c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/PropertyTraits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Traits.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Traits.h index 9de5a185d1..a1dee0ec01 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Traits.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Data/Traits.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.cpp index f12561d437..cd696d1d28 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.h index d0ecdf2f46..5fdfc80ac7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/API.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.cpp index 291e96e677..b2495336bb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.h index 9c56fd1b99..03d842c7ec 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/APIArguments.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Bus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Bus.h index d8dec0987a..e404fc62a5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Bus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Bus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.cpp index aae10b554d..1ee13221f9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.h index bb4abddd21..9cbb8697fb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ClientTransceiver.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.cpp index 1e3ba13aaf..1435808490 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.h index 721a9c3565..6df9d8482c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Debugger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.cpp index 54afe74e0e..0c8963d6b3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.h index caa26cbf19..88eddf0111 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/LogReader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.cpp index 7cedb49d9e..c4fffee9ba 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.h index 210a6429db..13c413d47b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Logger.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.cpp index 0706b2ea2f..c4f7592adb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.h index c4eaab1c9c..30b930302f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Notify.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.cpp index e61b0f6028..5e8e51be7e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.h index 3e4d08392d..c454d82a7d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/Messages/Request.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/StatusBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/StatusBus.h index 1dc1e86375..66cbe46ac6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/StatusBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/StatusBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationEvents.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationEvents.h index a3ec8a31f6..b1bf2d96dc 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationEvents.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationIds.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationIds.h index 8547996193..9eda5e1e53 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationIds.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DataValidationIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DynamicDataTypeEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DynamicDataTypeEvent.h index d5fec371c6..32125a5d6d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DynamicDataTypeEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/DynamicDataTypeEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidExpressionEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidExpressionEvent.h index 979da822b7..0b1008f16b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidExpressionEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidExpressionEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidPropertyEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidPropertyEvent.h index 21def4d2ae..49807bfff3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidPropertyEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidPropertyEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidRandomSignalEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidRandomSignalEvent.h index 4f9979cc4c..af8864daa3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidRandomSignalEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidRandomSignalEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidVariableTypeEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidVariableTypeEvent.h index a4738ce621..a03b541012 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidVariableTypeEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/InvalidVariableTypeEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScopedDataConnectionEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScopedDataConnectionEvent.h index 59c3ee2b7e..e411059e3b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScopedDataConnectionEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScopedDataConnectionEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScriptEventVersionMismatch.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScriptEventVersionMismatch.h index d270bdbd2f..91d3e40556 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScriptEventVersionMismatch.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/ScriptEventVersionMismatch.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/SlotReferenceEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/SlotReferenceEvent.h index 773102addf..205ac6376e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/SlotReferenceEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/SlotReferenceEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/UnknownEndpointEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/UnknownEndpointEvent.h index 2546974141..3774467f9b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/UnknownEndpointEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/DataValidation/UnknownEndpointEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationEvents.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationEvents.h index dbce59ebce..a54b3dbd7d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationEvents.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationIds.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationIds.h index 5112b0c352..4299ea43e0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationIds.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/ExecutionValidationIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/UnusedNodeEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/UnusedNodeEvent.h index 5ffbe66c6d..c0ccbd1ced 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/UnusedNodeEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ExecutionValidation/UnusedNodeEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidationIds.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidationIds.h index 330865bede..8b24e67dc8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidationIds.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidationIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidations.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidations.h index b82e5fa0a0..4274af88a2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidations.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/GraphTranslationValidation/GraphTranslationValidations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidationIds.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidationIds.h index ee298be2ef..f30cd830f6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidationIds.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidationIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidations.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidations.h index 458ca1202f..72bfa828ba 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidations.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ParsingValidation/ParsingValidations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/FocusOnEffect.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/FocusOnEffect.h index 6852b6efac..6e41361b8c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/FocusOnEffect.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/FocusOnEffect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/GreyOutEffect.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/GreyOutEffect.h index 569e64c2dd..2a7cae6bc5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/GreyOutEffect.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/GreyOutEffect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/HighlightEffect.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/HighlightEffect.h index 7aafbcefc9..68715a98a3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/HighlightEffect.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEffects/HighlightEffect.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEvent.h index c28779b253..868b8bc460 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Debugger/ValidationEvents/ValidationEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.cpp index 76d8836296..b79dd140f8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.h index 7a100a9146..6042c6e45a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.cpp index e844a613a9..d3433a3085 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.h index 09dd552444..464cd10f6e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableDatumBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.cpp index 3b1e524899..0f55b86ac4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.h index 624059b24c..d814909a73 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Deprecated/VariableHelpers.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ErrorBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ErrorBus.h index 5a28cdffbd..0933bc27dd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ErrorBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ErrorBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionBus.h index 7f54565482..a71b74494c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.cpp index af8a2d5f15..3098f03e6a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.h index ed55af7286..ee3c5230c3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.cpp index 83898cfada..076b098226 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.h index ba39d6d4ae..43eb3c7119 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionObjectCloning.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.cpp index 70ecbe87de..79fb898cc6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.h index 3225261c25..27eac54326 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionPerformanceTimer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.cpp index fb9ba1afb0..6579d24e21 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.h index 0cb51b028e..feb10c56eb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionState.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionStateDeclarations.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionStateDeclarations.h index d3ac8ff7b8..f53a8fe6cf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionStateDeclarations.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/ExecutionStateDeclarations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp index 9730d52289..3d4cb9a939 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.h index cf655b64e5..9c11d26afd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.cpp index 809b3ecfe0..e3fed31528 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.h index bd83fa5168..4458c3535d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedCloningAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.cpp index 8dbec712e5..b461119851 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.h index af48b287e0..e1899deab9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedDebugAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.cpp index 2698165435..60dbd4c179 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.h index d30984a97f..81ab1c428c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedEBusAPI.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.cpp index c400d070e2..1d223f20c0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.h index b5e8c54235..be6b82de11 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionInterpretedOut.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.cpp index 27377157be..d52807e952 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.h index f785b8933d..7418cec430 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpreted.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.cpp index 86e2b6d7fd..7662c8dca9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.h index 05e07db423..020b4643e4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPerActivation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.cpp index 20f5a2126e..db8d729e67 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.h index 5523bddb08..3b5d1e9d05 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedPure.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.cpp index e92aeb74fb..499bf1c305 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.h index 558c9ad7ce..bc46550ce5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedSingleton.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.cpp index ea346a54fd..5c3d11154a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.h index 323bafb2b2..a376e44d79 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/Interpreted/ExecutionStateInterpretedUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.cpp index b604daf031..86fe65fd99 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.h index 5624c85d59..945b6523f7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDeclarations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.cpp index bf482eefe7..6c956bdd70 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.h index f431dee8cc..aa15ab73be 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NativeHostDefinitions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h index badb28cd44..2d702363d3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/NodeableOut/NodeableOutNative.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeBus.h index 7daae7a008..eb3956c4e5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp index 94cb258c95..7533ec3699 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.h index 3bee2ea592..025c936d28 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Execution/RuntimeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.cpp index 37a7ab898c..50abf19389 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.h index c0ef720fbe..a3ddec73bf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/AbstractCodeModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.cpp index bbf8256675..e5496d168d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.h index 1bfb5e0167..46870e5fc1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/DebugMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionIterator.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionIterator.h index 88929aa2e0..b1748c41f8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionIterator.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.cpp index ca6831c09c..1ac9303082 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.h index ce3e20b1f5..3e9d4e4d14 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ExecutionTraversalListeners.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.cpp index ebff7a8b86..5d16bd7f9c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.h index 54fc1743a8..756537fcc7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/FunctionsLegacySupport.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.cpp index 7c6131bd60..b8eb5f5ad5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.h index 345fd1622e..7a9d2eaec9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContextBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContextBus.h index 5b10f8f64e..1630d0b99e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContextBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/GrammarContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Parser.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Parser.h index 1b68e3ac33..95aa521ae4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Parser.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Parser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.cpp index 1b3fe8db4f..27b8b23e91 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.h index f37e5bfe0c..3864fe15e0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingMetaData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp index 43d0823b25..9f7473551c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.h index d264983e03..b443bc7be2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/ParsingUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp index 82d93ac45e..c32595a900 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.h index 4391899683..a5300d01cf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/Primitives.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.cpp index 9a164cd339..85bb4a0025 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.h index 95c57b3211..a9d838a4fe 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesDeclarations.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.cpp index cc6310cca9..0984440bf4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.h index c374d2a78f..c86f445a68 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/PrimitivesExecution.h @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/SymbolNames.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/SymbolNames.h index 2c9eb27ce8..d5d688f8f0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/SymbolNames.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Grammar/SymbolNames.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.cpp index c90fec5471..0b48790ffd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.h index 416725e3db..d48da8b7a8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodeables/BaseTimer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.cpp index 7312195944..598671becb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.h index d87e41934d..ca4306cb6e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/BaseTimerNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.cpp index 899bc399bf..aef18a9255 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.h index 50713eaae3..4f8949ba4b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/ExpressionNodeBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp index f9209bf625..ab095f4b96 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.h index 55c618af15..396d6de074 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Internal/Nodes/StringFormatted.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.cpp index ef9ca98a8c..328d827954 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.h index 78ae6d5b43..85735ace6e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Comparison.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/ComparisonFunctions.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/ComparisonFunctions.h index adf7ad4ef6..9e6f48dad6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/ComparisonFunctions.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/ComparisonFunctions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/EqualTo.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/EqualTo.h index 39f769c7b4..8d597884ed 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/EqualTo.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/EqualTo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Greater.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Greater.h index 23cc5e8651..baa4762911 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Greater.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Greater.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/GreaterEqual.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/GreaterEqual.h index 10a410c531..e9f5c06501 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/GreaterEqual.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/GreaterEqual.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Less.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Less.h index 9357a011ab..b16f447d92 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Less.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/Less.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/LessEqual.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/LessEqual.h index 09d1a204c2..35364b918f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/LessEqual.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/LessEqual.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/NotEqualTo.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/NotEqualTo.h index 51aba4da1a..c11ff1ba05 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/NotEqualTo.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Comparison/NotEqualTo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.cpp index e76246c04e..39faae9f0a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.h index aae30a3612..89d164f3d2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Assign.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.cpp index ea2c3a010e..23ee563ccb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.h index b732ec81a9..047d1f68b1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/AzEventHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.cpp index 3b4985aa7a..c4d3b6f302 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.h index 2eaeb09bf8..88680fd0a3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BehaviorContextObjectNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.cpp index fd40b09715..7b840862bd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.h index 1a742793ca..92890b2842 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/BinaryOperator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ContainerTypeReflection.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ContainerTypeReflection.h index 32d601bd1a..e7ad4848ea 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ContainerTypeReflection.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ContainerTypeReflection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.cpp index 2d70c68b36..f5a9148231 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.h index 543ed289d9..2551dfb4b1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/CoreNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp index 060540fe76..fb43e41ad8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h index 9e7907378b..5fad1ecec2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.cpp index 1a59435080..1da9428e8f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.h index 206b3cf0e9..f9c91ad85b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Error.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.cpp index 7342ab68ed..a53eb18cbb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.h index e2f032851a..3edd8c7d4b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ErrorHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.cpp index 465730454b..13e8b085cd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.h index af35dd4768..bb61c0fcdb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EventHandlerTranslationUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.cpp index bb43578714..c97654c1d8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.h index 582ce7c9da..eb255c8f09 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ExtractProperty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.cpp index 313f79b242..6584f795b8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.h index 13d335d64c..daf32d6310 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ForEach.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionBus.h index d79f368d1c..d1bc75837d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.cpp index 38e83ddbfc..48958fe994 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.h index 92e6863a7b..56b17095a7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.cpp index 2f0a38574a..ffa183f540 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.h index 355eeb139b..9bc4fb3382 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionCallNodeIsOutOfDate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp index 63f6071b98..cd242c87c5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.h index 03ea459109..28e30c7f1c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/FunctionDefinitionNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.cpp index 23f1ba373e..c8defb77ec 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.h index b115ed91a3..e5011de5c6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/GetVariable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp index 37ffd8f553..b76c3ce87c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h index 54f04a0196..930b6e8539 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Method.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp index 997bafc0f1..76c393fb9a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h index 5de7c9c8a7..21bc99c3b5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodOverloaded.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp index 342aa9cec5..144427d74c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.h index 53a75a0938..92248d3ac6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/MethodUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.cpp index 6f38564e31..2e6da5184d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.cpp @@ -2,7 +2,7 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.h index a8746bc90c..be52c8d3a2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Nodeling.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp index a4b1647fa3..b797174f59 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.h index 62af4d4140..e541f428db 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.cpp index 6c59c4aa0a..3ff8545746 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.h index 60bf440476..3d094feb78 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Repeater.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.cpp index f7bd0be080..9a7c2a000c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.h index 59f2dd1e26..d3b0aeb492 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/RepeaterNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.cpp index 789129def6..ac946dc037 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.h index b63885468d..d2ec893b5b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ScriptEventBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp index 9173a5be18..ee1d00e646 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.h index 465e7a21d8..27cd309386 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.cpp index cf02c3ac50..7096f5024e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.h index fa238a4dcd..bc97fa6a08 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SetVariable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.cpp index a84b00caf2..66dfe424c5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.h index 71725c928f..bc5ca997e8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/Start.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/String.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/String.h index 0a8efff422..712d3d808f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/String.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/String.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.cpp index 2cf2197af3..43d84f0e28 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.h index 8677dc6b91..d2188f0b3c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/UnaryOperator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.cpp index 3a2594cf34..79a89ab1bf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.h index 66fa9c531c..0bd54f4194 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Entity.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNode.h index e3c1a1250b..5b60c0cea8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNodes.h index 2401b2078d..157b01668a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityIDNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityNodes.h index 078c822f91..927ea59f23 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityRef.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityRef.h index a031ba4ca4..720205a158 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityRef.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/EntityRef.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/FindTaggedEntities.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/FindTaggedEntities.cpp index 7357c3743f..7682a412a8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/FindTaggedEntities.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/FindTaggedEntities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.cpp index 7385ea89e2..b1df21ea52 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.h index 8321b5305a..cf6c19c417 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/Rotate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.cpp index a2434f86ad..1b79c5f2ac 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.h index 6ce00e7910..8fc1d910ef 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Entity/RotateMethod.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.cpp index cd60b7565a..4c6d401965 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.h index 5d5fe27d44..e75191a4f6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Libraries.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/And.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/And.h index d0aa78a4a5..fa553036f5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/And.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/And.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.cpp index 2c8dcdd1d7..29fd8a5075 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.h index ccbb857c48..aca5b2bb51 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Any.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Boolean.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Boolean.h index 25cbd60cfb..5a118d9374 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Boolean.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Boolean.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.cpp index 43935785a5..fbe703ea07 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.h index c39ff1bcaf..6d0718ff2e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Break.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.cpp index e9fdf250bd..a5a75e259c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.h index 2d3726d4a1..c275b8031c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Cycle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.cpp index 359f529719..3a36a265c2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.h index 07cc9352c0..0480db1f32 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Gate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.cpp index 2cb053e6f8..85898ad042 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.h index 307c39217c..bea41a4e14 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Indexer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.cpp index d034833aeb..480d51643b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.h index 96357e3561..12f996003c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/IsNull.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.cpp index e39660ec4a..8bd587ee4b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.h index 904f091170..a59a4e4a88 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Logic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.cpp index a4d2e24322..c8af5ae7a4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.h index 84e9799ef3..00a974ab8a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Multiplexer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Not.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Not.h index e3a4b81982..58e0d747c7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Not.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Not.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.cpp index 28525ad3e5..5bdd1ea9bd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.h index 82436172a8..e216b7e793 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Once.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Or.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Or.h index 94b2764a10..6868dc6e6b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Or.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Or.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.cpp index 2907447838..c7c3834594 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.h index 6811bb2e42..f973446702 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/OrderedSequencer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp index deecaa050a..75693f994c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.h index 2cbccdd841..347d21baa2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/Sequencer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.cpp index e1f64eeba8..ec55784a33 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.h index c9a5c5143f..7f50fbeb11 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/TargetedSequencer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.cpp index 4d781bcdba..80646e66a1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.h index a31569899e..f58f89690d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/WeightedRandomSequencer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.cpp index ecc20365da..25535d3102 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.h index 5a590e54cd..68a6b9fdfc 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Logic/While.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNode.h index fcaf9c0e82..fb138194c5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNodes.h index bc7bc23318..de31323328 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/AABBNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.cpp index e0015700aa..19adcd2777 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.h index f464c6ff4f..dc0d3fb47f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/BinaryOperation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNode.h index 5f1273e581..b1824d0e70 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNodes.h index f11257124d..7b9ca64496 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/CRCNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNode.h index 09b4ea9aa0..84b9b38b69 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNodes.h index 81f1e76f75..a4034c1753 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/ColorNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Divide.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Divide.h index d534ca66da..7320fff037 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Divide.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Divide.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.cpp index b78b767fa0..6fa228c3b9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.h index 46c68708b1..e9b39c582f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Math.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.cpp index 6ba2b96ab8..83cf0621fb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.h index 0881675d16..76d952b92c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathExpression.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathGenerics.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathGenerics.h index 6329b17dd4..1cd73b770c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathGenerics.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathGenerics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.cpp index e7e945db06..5d652c2919 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.h index 4b721c5d71..1d5c18ecdf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathNodeUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathRandom.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathRandom.h index b2f05987c5..1e304dc898 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathRandom.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/MathRandom.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Node.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Node.h index cf0c28e0a2..4417413567 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Node.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Nodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Nodes.h index 0d726e592a..76a5a8dcba 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Nodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix3x3Nodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Node.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Node.h index 949f441f27..da7d5983f4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Node.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Node.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Nodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Nodes.h index 0dd2a68960..2f3c9cf1c6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Nodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Matrix4x4Nodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Multiply.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Multiply.h index 7278cb0240..c0761502c0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Multiply.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Multiply.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Number.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Number.h index 55f185a193..9639f1fce7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Number.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Number.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNode.h index 18df8cee77..24718c82f4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNodes.h index ee53f5e264..7563be3cec 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/OBBNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNode.h index f2a98630fd..c429eb1dc3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNodes.h index 6a88852543..3345b7ca07 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/PlaneNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.cpp index f9d7318d2e..dba370fa7c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.h index ed18a39644..a5cc7d1aa9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Random.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Rotation.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Rotation.h index 8aca1b338c..9e23a206a1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Rotation.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Rotation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/RotationNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/RotationNodes.h index 7f73051f77..0f20bcf8c9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/RotationNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/RotationNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Subtract.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Subtract.h index 522b6e8a76..ecffc724cc 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Subtract.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Subtract.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Sum.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Sum.h index 33fff3d49e..ed53b66878 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Sum.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Sum.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Transform.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Transform.h index 742933b929..e4260966a9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Transform.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Transform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/TransformNodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/TransformNodes.h index 2167429dee..0f0fdddcac 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/TransformNodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/TransformNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector.h index 691c5f0e43..af5054c45e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector2Nodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector2Nodes.h index e36ac767d0..a807243f92 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector2Nodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector2Nodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector3Nodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector3Nodes.h index a8e942d0e0..a74ae45e67 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector3Nodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector3Nodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector4Nodes.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector4Nodes.h index 9262ac7949..c8ce20fe14 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector4Nodes.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Math/Vector4Nodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp index c963dabf22..6b5b2770de 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.h index 4fb8c35e22..e20de1a02b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorAt.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp index b07008eaad..99607c37f3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.h index 09202d78e5..41c4b2cbc1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorBack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.cpp index 3f2398fe66..36890c9720 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.h index e9ac8a7242..a0ccad1379 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorClear.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.cpp index ab8ae5fce7..71ee545397 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.h index 6e8a14fa55..5cc26c126e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorEmpty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp index 355dadda43..15328b42fb 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.h index 27351b5815..dc5d8c4c0c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorErase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp index 91aa24f287..794ee8aeb0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.h index 72cb8b8033..cb41f6a479 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorFront.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp index 17d02d7a43..bce98a6776 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.h index b6afd08390..970c8ab780 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorInsert.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp index 53c8fd6111..e449d04d34 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.h index 7323a45968..695d6a6f93 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorPushBack.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.cpp index afa40ab35f..29c5e61a21 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.h index 4f9d529b5a..3199b09ebd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Containers/OperatorSize.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.cpp index ffaf49bae3..a82e8f9871 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.h index d6cb9f6a6e..8c4aa684ce 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorAdd.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.cpp index 0b603ae311..7d6fb74768 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.h index 6df6c13ae1..716c9111af 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorArithmetic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.cpp index c7bf14f2a7..b50d06e9e9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.h index 2d7e8b6258..61121ff85d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDiv.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.cpp index e0776d9ce2..27a8e5f846 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.h index 88cf308c97..10df09a42e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorDivideByNumber.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.cpp index faaf5fb4c3..b52b6d8da2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.h index 3d7d4f03ad..f49c384439 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLength.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.cpp index 43abfcf74c..079073fa64 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.h index ee9e93fc9d..cb54f2f236 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerp.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.cpp index 3a223592f7..c037776ac0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.h index 2105c22b80..3807bff5e7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.cpp index 14dfd6bf7c..6082e768ef 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.h index ea325d0294..27b1f85612 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorLerpNodeableNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.cpp index b88a054d8b..62d10ba58d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.h index 7ef96fa6c4..e901aa519b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorMul.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.cpp index 0b9343560d..1246feb521 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.h index 2292d4ee8d..2797a4fdea 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Math/OperatorSub.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.cpp index ec6e094f33..329b8d4c31 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.h index a5a3ee3916..7401b60d21 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.cpp index e9173cfa88..6a35c246c9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.h index 292ed0ad85..758871e4fc 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Operators/Operators.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp index 45a778c0bb..5fd2459520 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.h index a7d35b1971..3a913826c2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/SpawnNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.cpp index 27a4a12cee..2966d7d082 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.h index dd6619a426..559248a2f2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Spawning/Spawning.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.cpp index 2a36ce3aa9..b88b2edbd3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.h index 19622e4745..e2756f6ebf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Contains.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.cpp index ac35de60d5..1b71390e0c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.h index b90158e48b..6e5c50d2ae 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Format.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.cpp index 00c8d6e678..26f3716b6a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.h index ac4a903565..0f971f99e7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Print.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.cpp index 8ccedd51a8..56a7ae2ef8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.h index 0849475817..6c69818ac9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Replace.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.cpp index 072f4b7685..d0368fb02b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.h index 05d65947f2..02eb04ae08 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/String.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h index 46ba474ae6..e51ed9ed11 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringGenerics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.cpp index dd15d3289e..8fc5d10dc7 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.h index ac9bc39f2f..657ac6bc93 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/StringMethods.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.cpp index ba5c37cebd..ad36615e26 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.h index e9592777d4..c1dad1f0e5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/String/Utilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.cpp index d47f20ff94..ee06418e68 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.h index f0dd29da8e..1809bece64 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Countdown.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.cpp index c7bcb56a12..fc13a5c259 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.h index 46bd5e01b6..cdc9071705 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/CountdownNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.cpp index da972d2402..84f9fa7125 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.h index b3bb55016d..6e024377f4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DateTime.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.cpp index 8dd1f699f0..1e40a23794 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.h index f610cf27cb..260f0dd5f0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DelayNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.cpp index dcf6d871d3..c1e47e21b9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.h index 1ac8eb1000..dd6c7868cf 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Duration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.cpp index f57de67939..34781bc858 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.h index ff9e88b9ca..2915232cff 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/DurationNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.cpp index 321d0bb552..62ed77ab2f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.h index 00acddfa23..967376e932 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.cpp index 647c3ff5e6..c2c3c24faa 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.h index baacc832a0..99dd174bb0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/HeartBeatNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.cpp index 3c35826a56..7a6e5bc859 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.h index 699fc0e57f..0e79590033 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Time.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.cpp index a5e5138863..d34c5a2283 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.h index 141e971cd5..0345144d92 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimeDelayNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.cpp index 3fb894f1ab..0465c49b43 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.h index c8e4725e24..58ba646891 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/Timer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.cpp index d459d41abb..834b8f3bdc 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.h index 358ead1d1d..2e73dc524c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Time/TimerNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.cpp index f61541432f..301db76008 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.h index 391a777a07..1c0e5a6fd4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddFailure.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.cpp index 009e54f975..ee9b8975b0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.h index fb82f610e6..c6793ad432 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/AddSuccess.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.cpp index e594826141..dff5dff30c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.h index 867811084d..94c307e07d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/Auxiliary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/AuxiliaryGenerics.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/AuxiliaryGenerics.h index e1d7e86956..816a40c686 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/AuxiliaryGenerics.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Auxiliary/AuxiliaryGenerics.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.cpp index 1a9cfad77e..5b77bea492 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.h index 0ede5350d6..551d250b6b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/Checkpoint.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.cpp index 135ba9fd03..019286355b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.h index 38f3629592..bfb5b4ffb2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectEqual.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.cpp index 56e4acab4a..77bf80fd73 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.h index d1035fc026..ca18f6f2d5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectFalse.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.cpp index 92df84b387..28e2f7a8bd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.h index 52574a1d3c..d9d7f8630d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThan.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.cpp index eb282baf60..7b782094de 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.h index d5e0c71487..7ef46a9dc9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectGreaterThanEqual.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.cpp index 8b3143c7fb..327cfb49b3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.h index 512a6bea55..fb9ca5737c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThan.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.cpp index a80780c1a9..3649816abc 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.h index eca83fbb8a..577aa4f8ff 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectLessThanEqual.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.cpp index e2daeb9880..6b5d3fa98c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.h index 2ea70b5b89..effc011b5a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectNotEqual.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.cpp index c4d7884cb5..ae0ec8a168 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.h index b5f2fd85b9..6d94dc7403 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/ExpectTrue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.cpp index 469dbd67f7..e7613695e8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.h index 89680b661e..9f86fe5b28 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/MarkComplete.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.cpp index 81ab59d491..dfbacbf1d6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.h index 6c8b1da605..6f3e9babb8 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusMacros.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusMacros.h index db446f52a3..0de3e49a82 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusMacros.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusMacros.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.cpp index 526e1f1caf..20eb061e1a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.h index debd4c1310..62d48519da 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSender.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSenderMacros.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSenderMacros.h index 2b58fbf031..d4c99edd03 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSenderMacros.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestBusSenderMacros.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.cpp index 4f1b047a27..a754ff087c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.h index 432295307d..921571bafa 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTesting.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.cpp index e05def4e55..d4cc228acd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.h index 440995b2b0..3d142fabb5 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/UnitTesting/UnitTestingLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatistician.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatistician.h index cb3a00b3fa..d5191ee150 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatistician.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatistician.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatisticsBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatisticsBus.h index 3482fa14c7..3f00678d04 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatisticsBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceStatisticsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceTracker.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceTracker.h index 961e2d69a8..a815e62c7b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceTracker.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/PerformanceTracker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.cpp index 94b221ea1b..32ff07d9f0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.h index fd82357af6..dd94ef694f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Aggregator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.cpp index f24fa04194..f6812351d0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.h index 2ad1c26dcc..26eae84481 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/Driller.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.cpp index 94b221ea1b..32ff07d9f0 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.h index 7d873954c5..b5c1e1467c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Profiler/DrillerEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Results/ErrorText.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Results/ErrorText.h index 98bbfa249c..339c0fc3a1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Results/ErrorText.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Results/ErrorText.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/ScriptCanvasGem.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/ScriptCanvasGem.h index e0ff1e0163..90213fd8d2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/ScriptCanvasGem.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/ScriptCanvasGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/SystemComponent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/SystemComponent.h index c5719813c2..466de99d46 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/SystemComponent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/SystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/AbstractModelTranslator.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/AbstractModelTranslator.h index 78569d9bcf..34975370a3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/AbstractModelTranslator.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/AbstractModelTranslator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Configuration.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Configuration.h index cb1160be6a..3469fec2ed 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Configuration.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Configuration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.cpp index c746aae377..ea33f1639e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.h index bc81ac604d..0515a35f47 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToCPlusPlus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.cpp index f40ced4569..772fda4f7e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.h index 48fce8bdcb..ba46b21c65 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLua.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.cpp index 2573826b27..2b762db176 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.h index 336ed60269..d01025cdfd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToLuaUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.cpp index f95ed75be8..8a424a1d7b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.h index 924ba9e7cc..d15d8fea9c 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/GraphToX.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.cpp index 96cf4c4ce0..e735469538 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.h index 4c59b46280..b25526f04a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/Translation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.cpp index f755aa9fb5..2ef3aa7501 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.h index 94ded03f84..ea49f90bde 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContext.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContextBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContextBus.h index 8a86589c43..0edac2afe3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContextBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationContextBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.cpp index 2bd39ee8df..289f066ddd 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.h index 951518de72..e822fd244a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationResult.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp index d2e3a8378f..0318959e0e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * @@ -169,7 +169,7 @@ namespace ScriptCanvas AZStd::string_view GetAmazonCopyright() { return - "* Copyright (c) Contributors to the Open 3D Engine Project\n" + "* 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.\n" "*\n" "* SPDX-License-Identifier: Apache-2.0 OR MIT\n" "*" diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.h index 9e2b9090dd..429cd653f1 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Translation/TranslationUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.cpp index 2662dfed31..a5839c8df4 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.h index 398bccecfe..65201d7b47 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/BehaviorContextUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.cpp index dc60dea0d0..4d831df4ef 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.h index 2d4e5ee645..f639f21694 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/DataUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.cpp index 487cfec4a2..164255fba9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.h index f5e951033a..fbdee32d73 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/NodeUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/SerializationUtils.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/SerializationUtils.h index c4a2a8a0ea..96d662bfda 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/SerializationUtils.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/SerializationUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.cpp index ea78e51722..b03cf54590 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.h index d81f2482e5..b11583cbd3 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersionConverters.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.cpp index 43a48369f8..a552b1cd03 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.h index 5e1a6d98af..66f5a29835 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Utils/VersioningUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.cpp index 43ad3c43f2..3f93153c1f 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.h index b4ec135340..b6ad7fcf30 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.cpp index 43a771d122..28e6060d5b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.h index 0320d9ca36..955f403733 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/GraphVariableManagerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableBus.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableBus.h index 4ae782df56..a8dc25ca83 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableBus.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.cpp index 33d1e55696..15188fde82 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.h index 520a5deed3..63b76e0357 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableCore.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp index 8fffc98f03..68262aff0a 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.h index dafc85cc1d..29e026d414 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Variable/VariableData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp b/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp index 118f37e16e..0d3a4f5a21 100644 --- a/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp +++ b/Gems/ScriptCanvas/Code/Source/PerformanceStatistician.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Source/PerformanceTracker.cpp b/Gems/ScriptCanvas/Code/Source/PerformanceTracker.cpp index 5f2861d82d..4a27c940c9 100644 --- a/Gems/ScriptCanvas/Code/Source/PerformanceTracker.cpp +++ b/Gems/ScriptCanvas/Code/Source/PerformanceTracker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Source/ScriptCanvasCommonGem.cpp b/Gems/ScriptCanvas/Code/Source/ScriptCanvasCommonGem.cpp index 575af0fe18..1c614dc5bc 100644 --- a/Gems/ScriptCanvas/Code/Source/ScriptCanvasCommonGem.cpp +++ b/Gems/ScriptCanvas/Code/Source/ScriptCanvasCommonGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Source/ScriptCanvasGem.cpp b/Gems/ScriptCanvas/Code/Source/ScriptCanvasGem.cpp index 1c6cc9cafc..c0bf635efc 100644 --- a/Gems/ScriptCanvas/Code/Source/ScriptCanvasGem.cpp +++ b/Gems/ScriptCanvas/Code/Source/ScriptCanvasGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp b/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp index 2ba32fb5c9..eeb0d25289 100644 --- a/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp +++ b/Gems/ScriptCanvas/Code/Source/SystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Source/precompiled.h b/Gems/ScriptCanvas/Code/Source/precompiled.h index 3bdeac7835..8e9334e7ef 100644 --- a/Gems/ScriptCanvas/Code/Source/precompiled.h +++ b/Gems/ScriptCanvas/Code/Source/precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/Framework/ScriptCanvasUnitTestFixture.h b/Gems/ScriptCanvas/Code/Tests/Framework/ScriptCanvasUnitTestFixture.h index a2ea6d8a1c..1f00788694 100644 --- a/Gems/ScriptCanvas/Code/Tests/Framework/ScriptCanvasUnitTestFixture.h +++ b/Gems/ScriptCanvas/Code/Tests/Framework/ScriptCanvasUnitTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/Mocks/BehaviorMethodMock.h b/Gems/ScriptCanvas/Code/Tests/Mocks/BehaviorMethodMock.h index 669009706d..a51ade534d 100644 --- a/Gems/ScriptCanvas/Code/Tests/Mocks/BehaviorMethodMock.h +++ b/Gems/ScriptCanvas/Code/Tests/Mocks/BehaviorMethodMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/Mocks/RuntimeRequestsMock.h b/Gems/ScriptCanvas/Code/Tests/Mocks/RuntimeRequestsMock.h index 6240cd021f..ccd5be2705 100644 --- a/Gems/ScriptCanvas/Code/Tests/Mocks/RuntimeRequestsMock.h +++ b/Gems/ScriptCanvas/Code/Tests/Mocks/RuntimeRequestsMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp index 41fbcdeedb..0664e034e0 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasBuilderTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTest.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTest.cpp index 907ebf0e25..2bd51b1751 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTest.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTestApplication.h b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTestApplication.h index aa1bccf2c3..b312663f16 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTestApplication.h +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasTestApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTestHook.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTestHook.cpp index 5acbd5cb12..d0384e7f23 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTestHook.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTestHook.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_AbstractCodeModel.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_AbstractCodeModel.cpp index 5177918433..8897218f7a 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_AbstractCodeModel.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_AbstractCodeModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_BehaviorContextUtils.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_BehaviorContextUtils.cpp index 7f642eac72..ae5fc8582d 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_BehaviorContextUtils.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_BehaviorContextUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_EventHandlerTranslationUtility.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_EventHandlerTranslationUtility.cpp index 1bae9d1a04..8d37b2889d 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_EventHandlerTranslationUtility.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_EventHandlerTranslationUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Method.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Method.cpp index 84407fa7d9..8cfdc43003 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Method.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Method.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Node.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Node.cpp index aa85976b83..97042a8c99 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Node.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_Node.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_ScriptCanvasBuilderComponent.cpp b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_ScriptCanvasBuilderComponent.cpp index 7e926dcf9b..4fdb709e27 100644 --- a/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_ScriptCanvasBuilderComponent.cpp +++ b/Gems/ScriptCanvas/Code/Tests/ScriptCanvasUnitTest_ScriptCanvasBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake index aef1803e25..d1d7606b4f 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_debugger_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_debugger_files.cmake index b5579a9c23..bde041be2b 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_debugger_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_debugger_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_asset_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_asset_files.cmake index b70f08b161..0474e6b8e6 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_asset_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_asset_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_builder_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_builder_files.cmake index a3bb843473..c8a8d43a64 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_builder_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_builder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_files.cmake index ff437eec19..daa2a599ce 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_shared_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_shared_files.cmake index 3378655188..95430a69c8 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_shared_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_static_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_static_files.cmake index 049f3eb137..9072f83577 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_static_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_static_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_tests_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_tests_files.cmake index a2a1debff4..1d04a8a876 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_tests_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_editor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_game_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_game_files.cmake index eb3cfceb64..299209436f 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_game_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_game_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_runtime_asset_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_runtime_asset_files.cmake index e4e3061c13..2d19f44765 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_runtime_asset_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_runtime_asset_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvas/Code/scriptcanvasgem_tests_files.cmake b/Gems/ScriptCanvas/Code/scriptcanvasgem_tests_files.cmake index e997591536..7d20226e9c 100644 --- a/Gems/ScriptCanvas/Code/scriptcanvasgem_tests_files.cmake +++ b/Gems/ScriptCanvas/Code/scriptcanvasgem_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasDeveloper/CMakeLists.txt b/Gems/ScriptCanvasDeveloper/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ScriptCanvasDeveloper/CMakeLists.txt +++ b/Gems/ScriptCanvasDeveloper/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasDeveloper/Code/CMakeLists.txt b/Gems/ScriptCanvasDeveloper/Code/CMakeLists.txt index d57b3f200a..917a75e58b 100644 --- a/Gems/ScriptCanvasDeveloper/Code/CMakeLists.txt +++ b/Gems/ScriptCanvasDeveloper/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/DynamicSlotFullCreation.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/DynamicSlotFullCreation.h index a712781c90..7a6e5686ff 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/DynamicSlotFullCreation.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/DynamicSlotFullCreation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/FullyConnectedNodePaletteCreation.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/FullyConnectedNodePaletteCreation.h index b1f3b5d4ba..9c708b11b7 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/FullyConnectedNodePaletteCreation.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/FullyConnectedNodePaletteCreation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/NodePaletteFullCreation.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/NodePaletteFullCreation.h index eea5f31b19..00a799aee6 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/NodePaletteFullCreation.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/NodePaletteFullCreation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/VariableListFullCreation.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/VariableListFullCreation.h index 246cfd0f0a..aa6380f54e 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/VariableListFullCreation.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/AutomationActions/VariableListFullCreation.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Developer.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Developer.h index 4e82f8b44e..6cf7dcb54d 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Developer.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Developer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/DeveloperUtils.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/DeveloperUtils.h index 6a80afcd38..dbd7e116bd 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/DeveloperUtils.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/DeveloperUtils.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationAction.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationAction.h index f966c2c4b0..4f62073df8 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationAction.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorKeyActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorKeyActions.h index 1b9983c9b3..c874f1731d 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorKeyActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorKeyActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorMouseActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorMouseActions.h index 2800f9c067..8f6ed71c7c 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorMouseActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/EditorMouseActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/GenericActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/GenericActions.h index 2856accb0f..f0145b4367 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/GenericActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/GenericActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.h index ef69756a75..2d1e8dcb67 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.h index 49e03c22cc..bd953be839 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.h index db9ca4d315..4418e1d32e 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.h index a4df309102..144eb44f53 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.h index 2e6d77d6ac..e77c585fd2 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.h index 68db3a8391..edb7c1bc14 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/WidgetActions.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/WidgetActions.h index b38737b1ea..3dca3a8ab8 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/WidgetActions.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationActions/WidgetActions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationModelIds.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationModelIds.h index cef310dd2a..760b6a7455 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationModelIds.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationModelIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ConnectionStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ConnectionStates.h index 7c3b29829f..e3fd15f27a 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ConnectionStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ConnectionStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/CreateElementsStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/CreateElementsStates.h index fb0e6857a3..6bc498dd08 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/CreateElementsStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/CreateElementsStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/EditorViewStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/EditorViewStates.h index a228f7893e..275f3f6dbc 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/EditorViewStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/EditorViewStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ElementInteractionStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ElementInteractionStates.h index 2c746b720c..6270fc2212 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ElementInteractionStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/ElementInteractionStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/GraphStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/GraphStates.h index 7dac81efd5..081ada80c7 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/GraphStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/GraphStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h index c4d60fdff0..9b37b668c7 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/UtilityStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/VariableStates.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/VariableStates.h index d3aa8e7f7e..da4f56827c 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/VariableStates.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationStates/VariableStates.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationTest.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationTest.h index c7e1c53fed..30b13fca15 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationTest.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/EditorAutomation/EditorAutomationTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Mock.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Mock.h index 443401e748..8e0eb963d6 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Mock.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/Mock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/MockBus.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/MockBus.h index 8336943b82..180323ac84 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/MockBus.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/MockBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/NodeListDumpAction.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/NodeListDumpAction.h index 7c516a41bb..a1543d627b 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/NodeListDumpAction.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/NodeListDumpAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/ScriptCanvasDeveloperEditorComponent.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/ScriptCanvasDeveloperEditorComponent.h index 35dd805ea5..bb3c4d6e71 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/ScriptCanvasDeveloperEditorComponent.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/ScriptCanvasDeveloperEditorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/TSGenerateAction.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/TSGenerateAction.h index e6288609d9..e71fb7bb7e 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/TSGenerateAction.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/TSGenerateAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/WrapperMock.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/WrapperMock.h index a5e96b1898..0ea2d75547 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/WrapperMock.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Include/ScriptCanvasDeveloperEditor/WrapperMock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/DynamicSlotFullCreation.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/DynamicSlotFullCreation.cpp index 6f69f976a5..ed4bd76aa9 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/DynamicSlotFullCreation.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/DynamicSlotFullCreation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/FullyConnectedNodePaletteCreation.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/FullyConnectedNodePaletteCreation.cpp index 3b2d30f8e3..3f400cfa96 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/FullyConnectedNodePaletteCreation.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/FullyConnectedNodePaletteCreation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp index 9c9da7bd83..1dc843dcd4 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/NodePaletteFullCreation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/VariableListFullCreation.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/VariableListFullCreation.cpp index bf5346480b..6f698d8af2 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/VariableListFullCreation.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/AutomationActions/VariableListFullCreation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Developer.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Developer.cpp index c639ae1989..29cef2b2c3 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Developer.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Developer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/DeveloperUtils.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/DeveloperUtils.cpp index 5cc50ada45..b3a8b08549 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/DeveloperUtils.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/DeveloperUtils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorKeyActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorKeyActions.cpp index 8037e2fc05..cb3a356008 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorKeyActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorKeyActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp index d30a08f3fa..b5753c06c4 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/EditorMouseActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/GenericActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/GenericActions.cpp index 35d3305079..b341fe2ec4 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/GenericActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/GenericActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.cpp index 39cf302b56..302138491e 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ConnectionActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.cpp index e5f526d290..01997982f8 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/CreateElementsActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.cpp index 68972365bf..ed3cf05b5d 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/EditorViewActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.cpp index 52894a5194..4db4d6c827 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/ElementInteractions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.cpp index da02cc3257..f016dd0a8d 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/GraphActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp index e67bfca796..451c8ada44 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/ScriptCanvasActions/VariableActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/WidgetActions.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/WidgetActions.cpp index 140a596e13..017dc8b950 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/WidgetActions.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationActions/WidgetActions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ConnectionStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ConnectionStates.cpp index dd22b19701..df46cf1b07 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ConnectionStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ConnectionStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/CreateElementsStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/CreateElementsStates.cpp index 771ed589de..16d0bc3707 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/CreateElementsStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/CreateElementsStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/EditorViewStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/EditorViewStates.cpp index 28ec904e80..86afe4564e 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/EditorViewStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/EditorViewStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ElementInteractionStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ElementInteractionStates.cpp index efacc8b514..d3ecfebddc 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ElementInteractionStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/ElementInteractionStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/GraphStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/GraphStates.cpp index 54123180cd..3e24f04a0f 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/GraphStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/GraphStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp index b509aafbd3..e7b4b829d3 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/UtilityStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/VariableStates.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/VariableStates.cpp index aa833e83af..a1d3513dde 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/VariableStates.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationStates/VariableStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationTest.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationTest.cpp index c3e6320b1f..d3f7f07f3c 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationTest.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomation/EditorAutomationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.cpp index edbffdfeaf..35c31f9f83 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h index f4c9f91eb5..157eb8d884 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTestDialog.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/EditorAutomationTests.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/EditorAutomationTests.h index 037069e5b3..82ec47508f 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/EditorAutomationTests.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/EditorAutomationTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.cpp index 2d6c5a4dab..bc372a4f50 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.h index b05134ffe9..b5055e5069 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GraphCreationTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.cpp index d601c357b7..b1a41a94fc 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.h index 04c36aeacc..2781f46990 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/GroupTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp index c476560a94..8e69ade668 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.h index 5355020ba7..9132fae394 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/InteractionTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.cpp index ea62057c4a..a9aaaac591 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.h index 9c74fa994a..a4cc184ae7 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/NodeCreationTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp index 787f755484..b1fa4849bf 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h index 9106b61486..6d486b2bd4 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/EditorAutomationTests/VariableTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Mock.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Mock.cpp index 259621aad4..9ecbbc8995 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Mock.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/Mock.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/NodeListDumpAction.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/NodeListDumpAction.cpp index d6e9890e03..5a395a8732 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/NodeListDumpAction.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/NodeListDumpAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperEditorComponent.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperEditorComponent.cpp index ef58ca97a9..62ec2b0973 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperEditorComponent.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperEditorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperGem.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperGem.cpp index beedbc4286..7bebe48fdf 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperGem.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/ScriptCanvasDeveloperGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/TSGenerateAction.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/TSGenerateAction.cpp index c40c10e6ef..483778e94a 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/TSGenerateAction.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/TSGenerateAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp index 54e8ca1e52..cb3d5fbdd9 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/WrapperMock.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.cpp b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.cpp index 68fd813294..047df73df1 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.h b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.h index 096e7d12b7..b8c2d068f5 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.h +++ b/Gems/ScriptCanvasDeveloper/Code/Editor/Source/XMLDoc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Game/Source/ScriptCanvasDeveloperGem.cpp b/Gems/ScriptCanvasDeveloper/Code/Game/Source/ScriptCanvasDeveloperGem.cpp index e3a4fc0f37..2b20b7766c 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Game/Source/ScriptCanvasDeveloperGem.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Game/Source/ScriptCanvasDeveloperGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperComponent.h b/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperComponent.h index c81f922d90..bb241e0144 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperComponent.h +++ b/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperGem.h b/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperGem.h index caae07255f..1ab1bd41ed 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperGem.h +++ b/Gems/ScriptCanvasDeveloper/Code/Include/ScriptCanvasDeveloper/ScriptCanvasDeveloperGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Source/ScriptCanvasDeveloperComponent.cpp b/Gems/ScriptCanvasDeveloper/Code/Source/ScriptCanvasDeveloperComponent.cpp index 28c5580657..a79521e42a 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Source/ScriptCanvasDeveloperComponent.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Source/ScriptCanvasDeveloperComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Source/precompiled.h b/Gems/ScriptCanvasDeveloper/Code/Source/precompiled.h index c4ea73dfdd..2968ab652a 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Source/precompiled.h +++ b/Gems/ScriptCanvasDeveloper/Code/Source/precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/Tests/ScriptCanvasDeveloperTest.cpp b/Gems/ScriptCanvasDeveloper/Code/Tests/ScriptCanvasDeveloperTest.cpp index 17ee03e1a6..ba7caec391 100644 --- a/Gems/ScriptCanvasDeveloper/Code/Tests/ScriptCanvasDeveloperTest.cpp +++ b/Gems/ScriptCanvasDeveloper/Code/Tests/ScriptCanvasDeveloperTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_common_files.cmake b/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_common_files.cmake index 117cab93ef..abe33739a8 100644 --- a/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_common_files.cmake +++ b/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_editor_files.cmake b/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_editor_files.cmake index 8147d6be61..e2495cea95 100644 --- a/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_editor_files.cmake +++ b/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_game_files.cmake b/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_game_files.cmake index d684831f16..4e63b45622 100644 --- a/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_game_files.cmake +++ b/Gems/ScriptCanvasDeveloper/Code/scriptcanvasdeveloper_gem_game_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasPhysics/CMakeLists.txt b/Gems/ScriptCanvasPhysics/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ScriptCanvasPhysics/CMakeLists.txt +++ b/Gems/ScriptCanvasPhysics/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasPhysics/Code/CMakeLists.txt b/Gems/ScriptCanvasPhysics/Code/CMakeLists.txt index 6d504e1944..ba2b1e9c1e 100644 --- a/Gems/ScriptCanvasPhysics/Code/CMakeLists.txt +++ b/Gems/ScriptCanvasPhysics/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.cpp b/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.cpp index d6a1584da6..7864ad97b4 100644 --- a/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.cpp +++ b/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.h b/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.h index 604b4b103c..5b4f562705 100644 --- a/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.h +++ b/Gems/ScriptCanvasPhysics/Code/Source/PhysicsNodeLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsModule.cpp b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsModule.cpp index bcff2ba217..94a28fb3a8 100644 --- a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsModule.cpp +++ b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.cpp b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.cpp index b69d01f798..dd76ae0925 100644 --- a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.cpp +++ b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.h b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.h index 19b2a6991a..8268540959 100644 --- a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.h +++ b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysicsSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysics_precompiled.h b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysics_precompiled.h index 8d99a0243c..eefa26c318 100644 --- a/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysics_precompiled.h +++ b/Gems/ScriptCanvasPhysics/Code/Source/ScriptCanvasPhysics_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/Source/WorldNodes.h b/Gems/ScriptCanvasPhysics/Code/Source/WorldNodes.h index 780ed3f572..2f5351a1f6 100644 --- a/Gems/ScriptCanvasPhysics/Code/Source/WorldNodes.h +++ b/Gems/ScriptCanvasPhysics/Code/Source/WorldNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp b/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp index 1075554478..94fdd8bb6c 100644 --- a/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp +++ b/Gems/ScriptCanvasPhysics/Code/Tests/ScriptCanvasPhysicsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_files.cmake b/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_files.cmake index 54b87ca1f0..04d5da2c30 100644 --- a/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_files.cmake +++ b/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_shared_files.cmake b/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_shared_files.cmake index 55bb87c38a..ca64d4d804 100644 --- a/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_shared_files.cmake +++ b/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_tests_files.cmake b/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_tests_files.cmake index b3ce6fa46b..c671eea404 100644 --- a/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_tests_files.cmake +++ b/Gems/ScriptCanvasPhysics/Code/scriptcanvas_physics_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/CMakeLists.txt b/Gems/ScriptCanvasTesting/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ScriptCanvasTesting/CMakeLists.txt +++ b/Gems/ScriptCanvasTesting/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/CMakeLists.txt b/Gems/ScriptCanvasTesting/Code/CMakeLists.txt index 1f90636a78..83a3456a1c 100644 --- a/Gems/ScriptCanvasTesting/Code/CMakeLists.txt +++ b/Gems/ScriptCanvasTesting/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/Platform/Common/Clang/scriptcanvastesting_editor_tests_clang.cmake b/Gems/ScriptCanvasTesting/Code/Platform/Common/Clang/scriptcanvastesting_editor_tests_clang.cmake index 30503258bc..1fe051b062 100644 --- a/Gems/ScriptCanvasTesting/Code/Platform/Common/Clang/scriptcanvastesting_editor_tests_clang.cmake +++ b/Gems/ScriptCanvasTesting/Code/Platform/Common/Clang/scriptcanvastesting_editor_tests_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/Platform/Common/MSVC/scriptcanvastesting_editor_tests_msvc.cmake b/Gems/ScriptCanvasTesting/Code/Platform/Common/MSVC/scriptcanvastesting_editor_tests_msvc.cmake index ebad2b0255..95d699cd27 100644 --- a/Gems/ScriptCanvasTesting/Code/Platform/Common/MSVC/scriptcanvastesting_editor_tests_msvc.cmake +++ b/Gems/ScriptCanvasTesting/Code/Platform/Common/MSVC/scriptcanvastesting_editor_tests_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/EntityRefTests.h b/Gems/ScriptCanvasTesting/Code/Source/Framework/EntityRefTests.h index 7b439f59a2..88cefccca9 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/EntityRefTests.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/EntityRefTests.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestApplication.h b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestApplication.h index 8bd868d6f8..c1eb78805d 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestApplication.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.cpp b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.cpp index 428ec4562e..67dadc58ba 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.h b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.h index c1bc0dc4bf..0a4408b689 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.cpp b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.cpp index ab3de535fb..cf866d9f83 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.h b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.h index e7af3992fa..8963cb4708 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestNodes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.cpp b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.cpp index bd06b245e1..8f769aefa4 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.h b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.h index dc7b12ba6b..e1879f6038 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.cpp b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.cpp index a430ee1a31..159f5891d0 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.h b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.h index 360eaf99e8..51c788f3cf 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/ScriptCanvasTestVerify.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.cpp b/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.cpp index 1cc0263685..11016117d8 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.h b/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.h index 406859178b..dc176fca5f 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Framework/UnitTestingReporter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/BehaviorContextObjectTestNode.h b/Gems/ScriptCanvasTesting/Code/Source/Nodes/BehaviorContextObjectTestNode.h index a6ce693ddd..e4d35c64da 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/BehaviorContextObjectTestNode.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/BehaviorContextObjectTestNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.cpp b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.cpp index c9a81b6ba8..3f0cbe2088 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.h b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.h index 1d4e146954..2b4dd73d62 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/NodeableTestingLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.cpp b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.cpp index ac102e134e..6527e3d1d5 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.h b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.h index 6664240523..c3bc487c89 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/SharedDataSlotExample.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.cpp b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.cpp index 3010fa6163..259e04b4e1 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.h b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.h index 55205647a6..616cceb5d3 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.h +++ b/Gems/ScriptCanvasTesting/Code/Source/Nodes/Nodeables/ValuePointerReferenceExample.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp index f526530978..9e25579197 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.h b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.h index d22bbe68e8..19f2617d52 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.h +++ b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingEditorModule.cpp b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingEditorModule.cpp index 4834b84d33..a2eae9bd7c 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingEditorModule.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingEditorModule.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingModule.cpp b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingModule.cpp index 3f98e44b6a..21924896ff 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingModule.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingModule.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.cpp b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.cpp index aefe672ff6..46967852de 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.cpp +++ b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.h b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.h index 9cae496b7e..61bb83607e 100644 --- a/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.h +++ b/Gems/ScriptCanvasTesting/Code/Source/ScriptCanvasTestingSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvasTestingTest.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvasTestingTest.cpp index d2d97956b9..e92f8c4d9c 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvasTestingTest.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvasTestingTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Async.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Async.cpp index 1be7006273..e50914c0a6 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Async.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Async.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_BehaviorContext.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_BehaviorContext.cpp index 030251079c..be0f57665a 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_BehaviorContext.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_BehaviorContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_ContainerSupport.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_ContainerSupport.cpp index e159ebc0b1..9452ddebe2 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_ContainerSupport.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_ContainerSupport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp index d5cbf0b500..b365a939e8 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Core.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_EventHandlers.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_EventHandlers.cpp index 4fcbfbc516..ea55e883cc 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_EventHandlers.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_EventHandlers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Math.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Math.cpp index e1592548d2..65236a7c92 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Math.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Math.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_MethodOverload.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_MethodOverload.cpp index 0b7a4281c4..b45a4fdc3c 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_MethodOverload.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_MethodOverload.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_NodeGenerics.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_NodeGenerics.cpp index ec804f5afc..a1e48a4637 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_NodeGenerics.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_NodeGenerics.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Regressions.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Regressions.cpp index 00cc06cc2c..8152ed9987 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Regressions.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Regressions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_RuntimeInterpreted.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_RuntimeInterpreted.cpp index 434c6b87b7..e7657cff65 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_RuntimeInterpreted.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_RuntimeInterpreted.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Slots.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Slots.cpp index 10d266d832..84a34dcf32 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Slots.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Slots.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_StringNodes.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_StringNodes.cpp index 4baeeb5b8c..2106268f13 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_StringNodes.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_StringNodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_UnitTesting.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_UnitTesting.cpp index b6daf0843b..2b4e7b8710 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_UnitTesting.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_UnitTesting.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_VM.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_VM.cpp index 3011247ef6..0733101743 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_VM.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_VM.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp index c2d8707a84..e7aaa33076 100644 --- a/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp +++ b/Gems/ScriptCanvasTesting/Code/Tests/ScriptCanvas_Variables.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_autogen_files.cmake b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_autogen_files.cmake index 6abefe0129..109a528b68 100644 --- a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_autogen_files.cmake +++ b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_autogen_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_files.cmake b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_files.cmake index fd65c21daa..fa39346147 100644 --- a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_files.cmake +++ b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_shared_files.cmake b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_shared_files.cmake index 1431f10ade..afe9d6e5b7 100644 --- a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_shared_files.cmake +++ b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_tests_files.cmake b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_tests_files.cmake index 768b1fa721..ea5912045e 100644 --- a/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_tests_files.cmake +++ b/Gems/ScriptCanvasTesting/Code/scriptcanvastesting_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_files.cmake b/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_files.cmake index 62b3b076b0..35e5b4cb4c 100644 --- a/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_files.cmake +++ b/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_shared_files.cmake b/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_shared_files.cmake index a4466a9d7c..856acfb801 100644 --- a/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_shared_files.cmake +++ b/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_tests_files.cmake b/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_tests_files.cmake index e0706a515d..681a3c0ba1 100644 --- a/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_tests_files.cmake +++ b/Gems/ScriptCanvasTesting/Code/scriptcanvastestingeditor_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Addressable.lua b/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Addressable.lua index ff769fdf98..89efd37320 100644 --- a/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Addressable.lua +++ b/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Addressable.lua @@ -1,6 +1,6 @@ -- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Broadcast.lua b/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Broadcast.lua index cb8194eb10..b92ebee944 100644 --- a/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Broadcast.lua +++ b/Gems/ScriptEvents/Assets/Scripts/Example/ScriptEvents_Broadcast.lua @@ -1,6 +1,6 @@ -- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/ScriptEvents/CMakeLists.txt b/Gems/ScriptEvents/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ScriptEvents/CMakeLists.txt +++ b/Gems/ScriptEvents/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptEvents/Code/Builder/BuilderSystemComponent.h b/Gems/ScriptEvents/Code/Builder/BuilderSystemComponent.h index 38097a8ede..2308240d38 100644 --- a/Gems/ScriptEvents/Code/Builder/BuilderSystemComponent.h +++ b/Gems/ScriptEvents/Code/Builder/BuilderSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.cpp b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.cpp index c80c01364d..bf4e9ad3d1 100644 --- a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.cpp +++ b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.h b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.h index 22b74983a4..b398229023 100644 --- a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.h +++ b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.cpp b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.cpp index ce4916cf3a..2357fb38a5 100644 --- a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.cpp +++ b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.h b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.h index 941c3972e5..baf1a25d9d 100644 --- a/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.h +++ b/Gems/ScriptEvents/Code/Builder/ScriptEventsBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/CMakeLists.txt b/Gems/ScriptEvents/Code/CMakeLists.txt index 92615ed047..a67b3bf256 100644 --- a/Gems/ScriptEvents/Code/CMakeLists.txt +++ b/Gems/ScriptEvents/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.cpp index 592e047a65..79d9fdd3c5 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.h index 109556e535..1332b203dd 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Components/ScriptEventReferencesComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/BehaviorContextFactoryMethods.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/BehaviorContextFactoryMethods.h index d802b48cfc..bef9bb287f 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/BehaviorContextFactoryMethods.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/BehaviorContextFactoryMethods.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.cpp index 47e8bd4f57..3896372564 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.h index 012cd906be..88628a57b9 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/DefaultEventHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.cpp index 2f474ccd9c..3d78a481e5 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.h index d6f11e4693..91c55928ae 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBinding.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp index ffcb55808b..06b42f4966 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.h index 2f565911ec..9ce2dd44ab 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventBroadcast.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp index 9ab5e0bc6c..5caf4bbb91 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.h index a1a69c1a94..6a553205fb 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventMethod.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventsBindingBus.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventsBindingBus.h index d074611b93..4813559e98 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventsBindingBus.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/BehaviorContextBinding/ScriptEventsBindingBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.cpp index 47658fe045..aaaa500123 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.h index 1b52be776a..2c0a174164 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/Internal/VersionedProperty.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.cpp index b98e2ab7f0..c35737aaca 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.h index 7dd416c9fd..5d0f7c2cb4 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEvent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.cpp index 676d03cf7a..75f3056124 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.h index ea0923bbbd..3b42eb42cc 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventDefinition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventFundamentalTypes.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventFundamentalTypes.h index 598c61d09f..5964dbc45a 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventFundamentalTypes.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventFundamentalTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventMethod.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventMethod.h index 779f361324..4700411723 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventMethod.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventMethod.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventParameter.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventParameter.h index 1ab3b3eed8..3176cd591a 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventParameter.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventParameter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.cpp index ce4512731f..13944ade9f 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.h index 853706648b..8fda6e8e73 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventRegistration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.cpp index 7cde849ba0..c88def3484 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.h index 86a7d62a65..d67fe3f7e1 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventSystem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.cpp index 90fae2f7d0..df315cd82a 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.h index b98b7fe0e2..1d5f5d774c 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.cpp b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.cpp index d0d5082ec8..673d694f2c 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.cpp +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.h index 80008cb736..cfa8253923 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h index 1eb7f45bed..bfd468e033 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsAssetRef.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsBus.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsBus.h index e91241d804..987c912db6 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsBus.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsGem.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsGem.h index ad65e5d12f..b74ab4fa2b 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsGem.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsGem.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsLegacyDefinitions.h b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsLegacyDefinitions.h index 4c32b2a8bb..8f02edd9ef 100644 --- a/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsLegacyDefinitions.h +++ b/Gems/ScriptEvents/Code/Include/ScriptEvents/ScriptEventsLegacyDefinitions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsEditorGem.cpp b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsEditorGem.cpp index f5a4d94b2b..b9ff71caae 100644 --- a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsEditorGem.cpp +++ b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsEditorGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp index d400233b1c..bc71146bfa 100644 --- a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp +++ b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.h b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.h index ab486cfd5c..faa4697f87 100644 --- a/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.h +++ b/Gems/ScriptEvents/Code/Source/Editor/ScriptEventsSystemEditorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Source/ScriptEventsGem.cpp b/Gems/ScriptEvents/Code/Source/ScriptEventsGem.cpp index 2ed1017748..936867f4ff 100644 --- a/Gems/ScriptEvents/Code/Source/ScriptEventsGem.cpp +++ b/Gems/ScriptEvents/Code/Source/ScriptEventsGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp index 4236ff819b..110de7e4ef 100644 --- a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp +++ b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h index 63c5c3ad50..0c19d9c9a3 100644 --- a/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h +++ b/Gems/ScriptEvents/Code/Source/ScriptEventsSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Source/precompiled.h b/Gems/ScriptEvents/Code/Source/precompiled.h index 553ef40d29..3dec2dda4a 100644 --- a/Gems/ScriptEvents/Code/Source/precompiled.h +++ b/Gems/ScriptEvents/Code/Source/precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/Editor/EditorTests.cpp b/Gems/ScriptEvents/Code/Tests/Editor/EditorTests.cpp index c692819633..c87383e224 100644 --- a/Gems/ScriptEvents/Code/Tests/Editor/EditorTests.cpp +++ b/Gems/ScriptEvents/Code/Tests/Editor/EditorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.cpp b/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.cpp index 2401a9e341..63ce7ee2e8 100644 --- a/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.cpp +++ b/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.h b/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.h index 5f455105eb..82c5fbc0f0 100644 --- a/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.h +++ b/Gems/ScriptEvents/Code/Tests/ScriptEventTestUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/ScriptEventsTest.cpp b/Gems/ScriptEvents/Code/Tests/ScriptEventsTest.cpp index ea38b5f872..cba1fd92ed 100644 --- a/Gems/ScriptEvents/Code/Tests/ScriptEventsTest.cpp +++ b/Gems/ScriptEvents/Code/Tests/ScriptEventsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/ScriptEventsTestApplication.h b/Gems/ScriptEvents/Code/Tests/ScriptEventsTestApplication.h index 9d0346851e..b15f817716 100644 --- a/Gems/ScriptEvents/Code/Tests/ScriptEventsTestApplication.h +++ b/Gems/ScriptEvents/Code/Tests/ScriptEventsTestApplication.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.cpp b/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.cpp index 1b63d8c655..e9fce056c3 100644 --- a/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.cpp +++ b/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.h b/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.h index 42820ad448..e36f1a906b 100644 --- a/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.h +++ b/Gems/ScriptEvents/Code/Tests/ScriptEventsTestFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp b/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp index 635094991d..0e985729c3 100644 --- a/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp +++ b/Gems/ScriptEvents/Code/Tests/Tests/ScriptEventsTest_Core.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptEvents/Code/scriptevents_common_files.cmake b/Gems/ScriptEvents/Code/scriptevents_common_files.cmake index f0cdb82320..194224755b 100644 --- a/Gems/ScriptEvents/Code/scriptevents_common_files.cmake +++ b/Gems/ScriptEvents/Code/scriptevents_common_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptEvents/Code/scriptevents_editor_builder_files.cmake b/Gems/ScriptEvents/Code/scriptevents_editor_builder_files.cmake index a69be3dee3..203d17962d 100644 --- a/Gems/ScriptEvents/Code/scriptevents_editor_builder_files.cmake +++ b/Gems/ScriptEvents/Code/scriptevents_editor_builder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptEvents/Code/scriptevents_editor_files.cmake b/Gems/ScriptEvents/Code/scriptevents_editor_files.cmake index 54d8ef6254..73eab21ecb 100644 --- a/Gems/ScriptEvents/Code/scriptevents_editor_files.cmake +++ b/Gems/ScriptEvents/Code/scriptevents_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptEvents/Code/scriptevents_files.cmake b/Gems/ScriptEvents/Code/scriptevents_files.cmake index b2ec8f8d10..18df26eae4 100644 --- a/Gems/ScriptEvents/Code/scriptevents_files.cmake +++ b/Gems/ScriptEvents/Code/scriptevents_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptEvents/Code/scriptevents_tests_files.cmake b/Gems/ScriptEvents/Code/scriptevents_tests_files.cmake index 6f28cc1f53..242ffcec2e 100644 --- a/Gems/ScriptEvents/Code/scriptevents_tests_files.cmake +++ b/Gems/ScriptEvents/Code/scriptevents_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptedEntityTweener/Assets/Scripts/ScriptedEntityTweener/ScriptedEntityTweener.lua b/Gems/ScriptedEntityTweener/Assets/Scripts/ScriptedEntityTweener/ScriptedEntityTweener.lua index 546b7313ef..e0385520d7 100644 --- a/Gems/ScriptedEntityTweener/Assets/Scripts/ScriptedEntityTweener/ScriptedEntityTweener.lua +++ b/Gems/ScriptedEntityTweener/Assets/Scripts/ScriptedEntityTweener/ScriptedEntityTweener.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/ScriptedEntityTweener/CMakeLists.txt b/Gems/ScriptedEntityTweener/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/ScriptedEntityTweener/CMakeLists.txt +++ b/Gems/ScriptedEntityTweener/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptedEntityTweener/Code/CMakeLists.txt b/Gems/ScriptedEntityTweener/Code/CMakeLists.txt index b3b46b3e16..c857a7be4f 100644 --- a/Gems/ScriptedEntityTweener/Code/CMakeLists.txt +++ b/Gems/ScriptedEntityTweener/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerBus.h b/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerBus.h index 050751f78d..a64aa2c727 100644 --- a/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerBus.h +++ b/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerEnums.h b/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerEnums.h index c2a5d95a6a..47783497d1 100644 --- a/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerEnums.h +++ b/Gems/ScriptedEntityTweener/Code/Include/ScriptedEntityTweener/ScriptedEntityTweenerEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerMath.h b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerMath.h index a1f2ffe3f5..584571c176 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerMath.h +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerMath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerModule.cpp b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerModule.cpp index df185c28fc..d157fc2d75 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerModule.cpp +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.cpp b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.cpp index ed69daa23f..490c09d495 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.cpp +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.h b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.h index f02817a38f..08375bd55f 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.h +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSubtask.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.cpp b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.cpp index 82d1155be9..9cbfe72e8f 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.cpp +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.h b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.h index 259405cc30..9b182fb251 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.h +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.cpp b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.cpp index 344cf24f7b..71048d87fa 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.cpp +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.h b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.h index 3d28321ed8..577b6bc971 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.h +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweenerTask.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweener_precompiled.h b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweener_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweener_precompiled.h +++ b/Gems/ScriptedEntityTweener/Code/Source/ScriptedEntityTweener_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_files.cmake b/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_files.cmake index 4c65fa87c9..6926ca4a0d 100644 --- a/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_files.cmake +++ b/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_shared_files.cmake b/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_shared_files.cmake index 956c593c44..78b8695d42 100644 --- a/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_shared_files.cmake +++ b/Gems/ScriptedEntityTweener/Code/scriptedentitytweener_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SliceFavorites/CMakeLists.txt b/Gems/SliceFavorites/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/SliceFavorites/CMakeLists.txt +++ b/Gems/SliceFavorites/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SliceFavorites/Code/CMakeLists.txt b/Gems/SliceFavorites/Code/CMakeLists.txt index b0ff8ec334..be8454cbc9 100644 --- a/Gems/SliceFavorites/Code/CMakeLists.txt +++ b/Gems/SliceFavorites/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SliceFavorites/Code/Include/SliceFavorites/SliceFavoritesBus.h b/Gems/SliceFavorites/Code/Include/SliceFavorites/SliceFavoritesBus.h index d129dc8543..f8fd96fc20 100644 --- a/Gems/SliceFavorites/Code/Include/SliceFavorites/SliceFavoritesBus.h +++ b/Gems/SliceFavorites/Code/Include/SliceFavorites/SliceFavoritesBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.cpp b/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.cpp index a9c34f46b5..84149dde4f 100644 --- a/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.cpp +++ b/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.h b/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.h index 0efd05be67..f804bd850a 100644 --- a/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.h +++ b/Gems/SliceFavorites/Code/Source/ComponentSliceFavoritesWindow.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp b/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp index 3f99efbdf4..8d7886b45b 100644 --- a/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp +++ b/Gems/SliceFavorites/Code/Source/FavoriteDataModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/FavoriteDataModel.h b/Gems/SliceFavorites/Code/Source/FavoriteDataModel.h index a31b56f39f..d857d5def6 100644 --- a/Gems/SliceFavorites/Code/Source/FavoriteDataModel.h +++ b/Gems/SliceFavorites/Code/Source/FavoriteDataModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesModule.cpp b/Gems/SliceFavorites/Code/Source/SliceFavoritesModule.cpp index 73fbdc3cd3..d56e01635a 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesModule.cpp +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.cpp b/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.cpp index 8032c8c733..7e624789d7 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.cpp +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.h b/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.h index 528c4beb93..d38d08590b 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.h +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponentBus.h b/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponentBus.h index 440e60cb21..0a2cb8cf21 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponentBus.h +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesSystemComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.cpp b/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.cpp index ed729009b5..8319f60816 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.cpp +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.h b/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.h index 826398d3a1..ec0fb82152 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.h +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesTreeView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.cpp b/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.cpp index 5f43a864bf..17526d8e5d 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.cpp +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.h b/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.h index 91d6193e1a..fb9d8d6909 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.h +++ b/Gems/SliceFavorites/Code/Source/SliceFavoritesWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/Source/SliceFavorites_precompiled.h b/Gems/SliceFavorites/Code/Source/SliceFavorites_precompiled.h index 8d99a0243c..eefa26c318 100644 --- a/Gems/SliceFavorites/Code/Source/SliceFavorites_precompiled.h +++ b/Gems/SliceFavorites/Code/Source/SliceFavorites_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SliceFavorites/Code/slicefavorites_files.cmake b/Gems/SliceFavorites/Code/slicefavorites_files.cmake index b7fc0672e3..492050a5f4 100644 --- a/Gems/SliceFavorites/Code/slicefavorites_files.cmake +++ b/Gems/SliceFavorites/Code/slicefavorites_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SliceFavorites/Code/slicefavorites_shared_files.cmake b/Gems/SliceFavorites/Code/slicefavorites_shared_files.cmake index 270098c639..2f7e1a10e3 100644 --- a/Gems/SliceFavorites/Code/slicefavorites_shared_files.cmake +++ b/Gems/SliceFavorites/Code/slicefavorites_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointCamera/CMakeLists.txt b/Gems/StartingPointCamera/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/StartingPointCamera/CMakeLists.txt +++ b/Gems/StartingPointCamera/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointCamera/Code/CMakeLists.txt b/Gems/StartingPointCamera/Code/CMakeLists.txt index 3bf6dbd3b5..e6764d1c2c 100644 --- a/Gems/StartingPointCamera/Code/CMakeLists.txt +++ b/Gems/StartingPointCamera/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraConstants.h b/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraConstants.h index e7f2060781..7b3a5ac47c 100644 --- a/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraConstants.h +++ b/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraUtilities.h b/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraUtilities.h index a508440f2b..c6347a60e9 100644 --- a/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraUtilities.h +++ b/Gems/StartingPointCamera/Code/Include/StartingPointCamera/StartingPointCameraUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.cpp b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.cpp index 77ed2d05bb..d89608b930 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h index 04149d5a8d..9104a4d9c5 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/OffsetPosition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.cpp b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.cpp index 0f65f5b532..e8cf24988a 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h index 8e7abd5f32..4094b4cc2b 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/RotateCameraLookAt.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.cpp b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.cpp index 79dce95b10..e2e7cd0637 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h index 8f685faf6d..2245cf7451 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h +++ b/Gems/StartingPointCamera/Code/Source/CameraLookAtBehaviors/SlideAlongAxisBasedOnAngle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.cpp b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.cpp index bd4b9b7f6b..0314d9af05 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h index e9171e0ce4..2c4985fb7a 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByEntityId.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.cpp b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.cpp index 64a1a65569..644b1accc5 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h index 15dc05c230..e04fe0fcd2 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTargetAcquirers/AcquireByTag.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.cpp b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.cpp index 3f630da0cc..bc060231b9 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h index 4052d44ec9..71e48ef08e 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FaceTarget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.cpp b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.cpp index 6cea9da691..d6b2c95106 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h index 076a63edfb..82ff066563 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromAngle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.cpp b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.cpp index db2c067416..50030b3086 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h index 78e43df0cf..f5cd9aa352 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/FollowTargetFromDistance.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.cpp b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.cpp index b157dc6b8c..6ed1bbae73 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h index e590d8c2eb..ae898a4ca3 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/OffsetCameraPosition.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.cpp b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.cpp index c9d141e8ff..fe69c1410f 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.cpp +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h index d5af0ac9d3..83e2e4efc0 100644 --- a/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h +++ b/Gems/StartingPointCamera/Code/Source/CameraTransformBehaviors/Rotate.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/StartingPointCamera/StartingPointCameraUtilities.cpp b/Gems/StartingPointCamera/Code/Source/StartingPointCamera/StartingPointCameraUtilities.cpp index db92a31553..eafaf1cf9a 100644 --- a/Gems/StartingPointCamera/Code/Source/StartingPointCamera/StartingPointCameraUtilities.cpp +++ b/Gems/StartingPointCamera/Code/Source/StartingPointCamera/StartingPointCameraUtilities.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/StartingPointCameraGem.cpp b/Gems/StartingPointCamera/Code/Source/StartingPointCameraGem.cpp index efef7b70c8..c4bb3cad27 100644 --- a/Gems/StartingPointCamera/Code/Source/StartingPointCameraGem.cpp +++ b/Gems/StartingPointCamera/Code/Source/StartingPointCameraGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/Source/StartingPointCamera_precompiled.h b/Gems/StartingPointCamera/Code/Source/StartingPointCamera_precompiled.h index 70bb9284de..2609e3b701 100644 --- a/Gems/StartingPointCamera/Code/Source/StartingPointCamera_precompiled.h +++ b/Gems/StartingPointCamera/Code/Source/StartingPointCamera_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointCamera/Code/startingpointcamera_files.cmake b/Gems/StartingPointCamera/Code/startingpointcamera_files.cmake index 3af925ac2d..aa11d3ef54 100644 --- a/Gems/StartingPointCamera/Code/startingpointcamera_files.cmake +++ b/Gems/StartingPointCamera/Code/startingpointcamera_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointCamera/Code/startingpointcamera_shared_files.cmake b/Gems/StartingPointCamera/Code/startingpointcamera_shared_files.cmake index 123b0d0b52..8b83ab1ac1 100644 --- a/Gems/StartingPointCamera/Code/startingpointcamera_shared_files.cmake +++ b/Gems/StartingPointCamera/Code/startingpointcamera_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointInput/Assets/Scripts/Input/held.lua b/Gems/StartingPointInput/Assets/Scripts/Input/held.lua index 923f818a93..542e6d0539 100644 --- a/Gems/StartingPointInput/Assets/Scripts/Input/held.lua +++ b/Gems/StartingPointInput/Assets/Scripts/Input/held.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointInput/Assets/Scripts/Input/ordered_event_combination.lua b/Gems/StartingPointInput/Assets/Scripts/Input/ordered_event_combination.lua index b55863a230..70d6d49aa2 100644 --- a/Gems/StartingPointInput/Assets/Scripts/Input/ordered_event_combination.lua +++ b/Gems/StartingPointInput/Assets/Scripts/Input/ordered_event_combination.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointInput/Assets/Scripts/Input/pressed.lua b/Gems/StartingPointInput/Assets/Scripts/Input/pressed.lua index ebf9d847a5..5df1768b85 100644 --- a/Gems/StartingPointInput/Assets/Scripts/Input/pressed.lua +++ b/Gems/StartingPointInput/Assets/Scripts/Input/pressed.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointInput/Assets/Scripts/Input/released.lua b/Gems/StartingPointInput/Assets/Scripts/Input/released.lua index ed98d1af50..4ea206193b 100644 --- a/Gems/StartingPointInput/Assets/Scripts/Input/released.lua +++ b/Gems/StartingPointInput/Assets/Scripts/Input/released.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointInput/Assets/Scripts/Input/vectorized_combination.lua b/Gems/StartingPointInput/Assets/Scripts/Input/vectorized_combination.lua index 1d3fe66305..3df8dd98f9 100644 --- a/Gems/StartingPointInput/Assets/Scripts/Input/vectorized_combination.lua +++ b/Gems/StartingPointInput/Assets/Scripts/Input/vectorized_combination.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointInput/CMakeLists.txt b/Gems/StartingPointInput/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/StartingPointInput/CMakeLists.txt +++ b/Gems/StartingPointInput/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointInput/Code/CMakeLists.txt b/Gems/StartingPointInput/Code/CMakeLists.txt index c7932e2ebc..a5ca0ccd31 100644 --- a/Gems/StartingPointInput/Code/CMakeLists.txt +++ b/Gems/StartingPointInput/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventNotificationBus.h b/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventNotificationBus.h index f9ed1c7fe2..5f5b1b518b 100644 --- a/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventNotificationBus.h +++ b/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventRequestBus.h b/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventRequestBus.h index 190f077a8e..05fd68d59d 100644 --- a/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventRequestBus.h +++ b/Gems/StartingPointInput/Code/Include/StartingPointInput/InputEventRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/Input.cpp b/Gems/StartingPointInput/Code/Source/Input.cpp index a8498cd5ab..6ac711e88f 100644 --- a/Gems/StartingPointInput/Code/Source/Input.cpp +++ b/Gems/StartingPointInput/Code/Source/Input.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/Input.h b/Gems/StartingPointInput/Code/Source/Input.h index 90e7c53f0f..525e00a140 100644 --- a/Gems/StartingPointInput/Code/Source/Input.h +++ b/Gems/StartingPointInput/Code/Source/Input.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.cpp b/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.cpp index c4f415f9d6..2d78cc828c 100644 --- a/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.cpp +++ b/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.h b/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.h index 40dc154a62..8822c77b6a 100644 --- a/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.h +++ b/Gems/StartingPointInput/Code/Source/InputConfigurationComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputEventBindings.h b/Gems/StartingPointInput/Code/Source/InputEventBindings.h index 21ad0f329b..18abd165e9 100644 --- a/Gems/StartingPointInput/Code/Source/InputEventBindings.h +++ b/Gems/StartingPointInput/Code/Source/InputEventBindings.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputEventGroup.h b/Gems/StartingPointInput/Code/Source/InputEventGroup.h index 67b1baff3a..0ef9797f24 100644 --- a/Gems/StartingPointInput/Code/Source/InputEventGroup.h +++ b/Gems/StartingPointInput/Code/Source/InputEventGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputEventMap.cpp b/Gems/StartingPointInput/Code/Source/InputEventMap.cpp index 1fd4eb3213..aec1526250 100644 --- a/Gems/StartingPointInput/Code/Source/InputEventMap.cpp +++ b/Gems/StartingPointInput/Code/Source/InputEventMap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputEventMap.h b/Gems/StartingPointInput/Code/Source/InputEventMap.h index 56a32e2f5a..3969640b1f 100644 --- a/Gems/StartingPointInput/Code/Source/InputEventMap.h +++ b/Gems/StartingPointInput/Code/Source/InputEventMap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.cpp b/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.cpp index ed0dc7e0d2..d98daba121 100644 --- a/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.cpp +++ b/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.h b/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.h index 085e4b330c..0db7f8a358 100644 --- a/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.h +++ b/Gems/StartingPointInput/Code/Source/InputHandlerNodeable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputLibrary.cpp b/Gems/StartingPointInput/Code/Source/InputLibrary.cpp index 5de02b2ba5..23d09b1b30 100644 --- a/Gems/StartingPointInput/Code/Source/InputLibrary.cpp +++ b/Gems/StartingPointInput/Code/Source/InputLibrary.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputLibrary.h b/Gems/StartingPointInput/Code/Source/InputLibrary.h index 079a959597..6c4e313b08 100644 --- a/Gems/StartingPointInput/Code/Source/InputLibrary.h +++ b/Gems/StartingPointInput/Code/Source/InputLibrary.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputNode.cpp b/Gems/StartingPointInput/Code/Source/InputNode.cpp index ef80371b96..e0f9de3657 100644 --- a/Gems/StartingPointInput/Code/Source/InputNode.cpp +++ b/Gems/StartingPointInput/Code/Source/InputNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/InputNode.h b/Gems/StartingPointInput/Code/Source/InputNode.h index e9e4222dae..d71c302f2b 100644 --- a/Gems/StartingPointInput/Code/Source/InputNode.h +++ b/Gems/StartingPointInput/Code/Source/InputNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/LyToAzInputNameConversions.h b/Gems/StartingPointInput/Code/Source/LyToAzInputNameConversions.h index 729fbe5ba2..a8f9c32db1 100644 --- a/Gems/StartingPointInput/Code/Source/LyToAzInputNameConversions.h +++ b/Gems/StartingPointInput/Code/Source/LyToAzInputNameConversions.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/StartingPointInputGem.cpp b/Gems/StartingPointInput/Code/Source/StartingPointInputGem.cpp index 5438992796..6cc8eb33d7 100644 --- a/Gems/StartingPointInput/Code/Source/StartingPointInputGem.cpp +++ b/Gems/StartingPointInput/Code/Source/StartingPointInputGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Source/StartingPointInput_precompiled.h b/Gems/StartingPointInput/Code/Source/StartingPointInput_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/StartingPointInput/Code/Source/StartingPointInput_precompiled.h +++ b/Gems/StartingPointInput/Code/Source/StartingPointInput_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/Tests/StartingPointInputTest.cpp b/Gems/StartingPointInput/Code/Tests/StartingPointInputTest.cpp index 6fa84f86fa..a366f757e3 100644 --- a/Gems/StartingPointInput/Code/Tests/StartingPointInputTest.cpp +++ b/Gems/StartingPointInput/Code/Tests/StartingPointInputTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointInput/Code/startingpointinput_autogen_files.cmake b/Gems/StartingPointInput/Code/startingpointinput_autogen_files.cmake index f8410c31fd..8cd8e30e5a 100644 --- a/Gems/StartingPointInput/Code/startingpointinput_autogen_files.cmake +++ b/Gems/StartingPointInput/Code/startingpointinput_autogen_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointInput/Code/startingpointinput_editor_files.cmake b/Gems/StartingPointInput/Code/startingpointinput_editor_files.cmake index de8d911d8f..4a42575140 100644 --- a/Gems/StartingPointInput/Code/startingpointinput_editor_files.cmake +++ b/Gems/StartingPointInput/Code/startingpointinput_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointInput/Code/startingpointinput_files.cmake b/Gems/StartingPointInput/Code/startingpointinput_files.cmake index a27b23c902..933f32ec66 100644 --- a/Gems/StartingPointInput/Code/startingpointinput_files.cmake +++ b/Gems/StartingPointInput/Code/startingpointinput_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointInput/Code/startingpointinput_shared_files.cmake b/Gems/StartingPointInput/Code/startingpointinput_shared_files.cmake index 5f5db5d505..ee7dbefa7b 100644 --- a/Gems/StartingPointInput/Code/startingpointinput_shared_files.cmake +++ b/Gems/StartingPointInput/Code/startingpointinput_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointInput/Code/startingpointinput_tests_files.cmake b/Gems/StartingPointInput/Code/startingpointinput_tests_files.cmake index 846b0efa11..ce5e67e502 100644 --- a/Gems/StartingPointInput/Code/startingpointinput_tests_files.cmake +++ b/Gems/StartingPointInput/Code/startingpointinput_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointMovement/Assets/Scripts/Components/AddPhysicsImpulse.lua b/Gems/StartingPointMovement/Assets/Scripts/Components/AddPhysicsImpulse.lua index 1cc7c48696..cb4b0d62ef 100644 --- a/Gems/StartingPointMovement/Assets/Scripts/Components/AddPhysicsImpulse.lua +++ b/Gems/StartingPointMovement/Assets/Scripts/Components/AddPhysicsImpulse.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointMovement/Assets/Scripts/Components/EntityLookAt.lua b/Gems/StartingPointMovement/Assets/Scripts/Components/EntityLookAt.lua index 28267d3580..ccd68a00fd 100644 --- a/Gems/StartingPointMovement/Assets/Scripts/Components/EntityLookAt.lua +++ b/Gems/StartingPointMovement/Assets/Scripts/Components/EntityLookAt.lua @@ -1,6 +1,6 @@ -- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointMovement/Assets/Scripts/Components/MoveEntity.lua b/Gems/StartingPointMovement/Assets/Scripts/Components/MoveEntity.lua index 1a1309b7c8..86caaa999a 100644 --- a/Gems/StartingPointMovement/Assets/Scripts/Components/MoveEntity.lua +++ b/Gems/StartingPointMovement/Assets/Scripts/Components/MoveEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointMovement/Assets/Scripts/Components/RotateEntity.lua b/Gems/StartingPointMovement/Assets/Scripts/Components/RotateEntity.lua index 06c60a0a52..518aac2c4e 100644 --- a/Gems/StartingPointMovement/Assets/Scripts/Components/RotateEntity.lua +++ b/Gems/StartingPointMovement/Assets/Scripts/Components/RotateEntity.lua @@ -1,6 +1,6 @@ ---------------------------------------------------------------------------------------------------- -- --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/StartingPointMovement/CMakeLists.txt b/Gems/StartingPointMovement/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/StartingPointMovement/CMakeLists.txt +++ b/Gems/StartingPointMovement/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointMovement/Code/CMakeLists.txt b/Gems/StartingPointMovement/Code/CMakeLists.txt index 011726859c..b7412e0fef 100644 --- a/Gems/StartingPointMovement/Code/CMakeLists.txt +++ b/Gems/StartingPointMovement/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementConstants.h b/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementConstants.h index f07f05883d..07508d3d41 100644 --- a/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementConstants.h +++ b/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementUtilities.h b/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementUtilities.h index c3a735b5e6..bcc37eda24 100644 --- a/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementUtilities.h +++ b/Gems/StartingPointMovement/Code/Include/StartingPointMovement/StartingPointMovementUtilities.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointMovement/Code/Source/StartingPointMovementGem.cpp b/Gems/StartingPointMovement/Code/Source/StartingPointMovementGem.cpp index c75fbe7269..057a32c514 100644 --- a/Gems/StartingPointMovement/Code/Source/StartingPointMovementGem.cpp +++ b/Gems/StartingPointMovement/Code/Source/StartingPointMovementGem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointMovement/Code/Source/StartingPointMovement_precompiled.h b/Gems/StartingPointMovement/Code/Source/StartingPointMovement_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/StartingPointMovement/Code/Source/StartingPointMovement_precompiled.h +++ b/Gems/StartingPointMovement/Code/Source/StartingPointMovement_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/StartingPointMovement/Code/startingpointmovement_shared_files.cmake b/Gems/StartingPointMovement/Code/startingpointmovement_shared_files.cmake index c2d09a8232..f2addd54fa 100644 --- a/Gems/StartingPointMovement/Code/startingpointmovement_shared_files.cmake +++ b/Gems/StartingPointMovement/Code/startingpointmovement_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SurfaceData/CMakeLists.txt b/Gems/SurfaceData/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/SurfaceData/CMakeLists.txt +++ b/Gems/SurfaceData/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SurfaceData/Code/CMakeLists.txt b/Gems/SurfaceData/Code/CMakeLists.txt index 53bba93fa3..0cc16abf67 100644 --- a/Gems/SurfaceData/Code/CMakeLists.txt +++ b/Gems/SurfaceData/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataConstants.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataConstants.h index 4cf3657fc6..8557884cdb 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataConstants.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataModifierRequestBus.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataModifierRequestBus.h index e9ef7ac11a..0f37437614 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataModifierRequestBus.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataModifierRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataProviderRequestBus.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataProviderRequestBus.h index 3e699aaa13..dbc74def0b 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataProviderRequestBus.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataProviderRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemNotificationBus.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemNotificationBus.h index b7c43a4c3a..86bd7b2dfe 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemNotificationBus.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemRequestBus.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemRequestBus.h index b2d7d02aa5..ff7859d7a4 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemRequestBus.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagEnumeratorRequestBus.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagEnumeratorRequestBus.h index 6527276c71..628c8be443 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagEnumeratorRequestBus.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagEnumeratorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagProviderRequestBus.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagProviderRequestBus.h index ff207c77c7..857bac3e6d 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagProviderRequestBus.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTagProviderRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTypes.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTypes.h index 95177dd35f..2fd644ee47 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTypes.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceDataTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceTag.h b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceTag.h index f75698549b..19b70b32bb 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceTag.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/SurfaceTag.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h b/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h index 52384e9cdc..8fc22fd988 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/Tests/SurfaceDataTestMocks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Include/SurfaceData/Utility/SurfaceDataUtility.h b/Gems/SurfaceData/Code/Include/SurfaceData/Utility/SurfaceDataUtility.h index 9df55803f9..55d604c75b 100644 --- a/Gems/SurfaceData/Code/Include/SurfaceData/Utility/SurfaceDataUtility.h +++ b/Gems/SurfaceData/Code/Include/SurfaceData/Utility/SurfaceDataUtility.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.cpp b/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.cpp index 2662e3bfe1..098e71f9ac 100644 --- a/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.cpp +++ b/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.h b/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.h index 2730617c44..5550f12e83 100644 --- a/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.h +++ b/Gems/SurfaceData/Code/Source/Components/SurfaceDataColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.cpp b/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.cpp index 5e42585f5c..ea33b8d1a2 100644 --- a/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.cpp +++ b/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.h b/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.h index 66c766a8eb..151659a964 100644 --- a/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.h +++ b/Gems/SurfaceData/Code/Source/Components/SurfaceDataShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.cpp b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.cpp index 4d09fd9582..45532486af 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.cpp +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.h b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.h index 005a800eb6..e74451a4e9 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.h +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.cpp b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.cpp index e0aed2a8db..4422f22e62 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.cpp +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.h b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.h index 43bfda1a98..591221d60b 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.h +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.cpp b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.cpp index 63ae2f09ba..ab1b0cdffe 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.cpp +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.h b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.h index 5e308439eb..3a798e2314 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.h +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceDataSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.cpp b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.cpp index 6f1e37c99c..bd127990d4 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.cpp +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.h b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.h index f38f07da33..385db762a3 100644 --- a/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.h +++ b/Gems/SurfaceData/Code/Source/Editor/EditorSurfaceTagListAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.cpp b/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.cpp index aeeec71eec..fc3b91be5a 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.cpp +++ b/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.h b/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.h index 593b7e6d3d..4d5d1fb05f 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.h +++ b/Gems/SurfaceData/Code/Source/SurfaceDataEditorModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp b/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp index 3f4c50e8a2..ae2b66a8f6 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp +++ b/Gems/SurfaceData/Code/Source/SurfaceDataModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataModule.h b/Gems/SurfaceData/Code/Source/SurfaceDataModule.h index f6028b53cc..afd5ad1b52 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataModule.h +++ b/Gems/SurfaceData/Code/Source/SurfaceDataModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.cpp b/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.cpp index b2d9151e07..a3e6d65eef 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.cpp +++ b/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.h b/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.h index 70208ce735..4c5ab28a29 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.h +++ b/Gems/SurfaceData/Code/Source/SurfaceDataSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceDataUtility.cpp b/Gems/SurfaceData/Code/Source/SurfaceDataUtility.cpp index 439bc35071..24e59bd2c2 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceDataUtility.cpp +++ b/Gems/SurfaceData/Code/Source/SurfaceDataUtility.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceData_precompiled.h b/Gems/SurfaceData/Code/Source/SurfaceData_precompiled.h index 4899df5161..d424689241 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceData_precompiled.h +++ b/Gems/SurfaceData/Code/Source/SurfaceData_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/SurfaceTag.cpp b/Gems/SurfaceData/Code/Source/SurfaceTag.cpp index e931273cbd..692e7185bb 100644 --- a/Gems/SurfaceData/Code/Source/SurfaceTag.cpp +++ b/Gems/SurfaceData/Code/Source/SurfaceTag.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.cpp b/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.cpp index 346a20dcb2..01b9467363 100644 --- a/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.cpp +++ b/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.h b/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.h index 09af4d0cbf..b0faf03b8c 100644 --- a/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.h +++ b/Gems/SurfaceData/Code/Source/TerrainSurfaceDataSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Tests/SurfaceDataColliderComponentTest.cpp b/Gems/SurfaceData/Code/Tests/SurfaceDataColliderComponentTest.cpp index d582aeb1cb..ecb3c9cfa6 100644 --- a/Gems/SurfaceData/Code/Tests/SurfaceDataColliderComponentTest.cpp +++ b/Gems/SurfaceData/Code/Tests/SurfaceDataColliderComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/Tests/SurfaceDataTest.cpp b/Gems/SurfaceData/Code/Tests/SurfaceDataTest.cpp index 120d4375d0..cffdf0ea3f 100644 --- a/Gems/SurfaceData/Code/Tests/SurfaceDataTest.cpp +++ b/Gems/SurfaceData/Code/Tests/SurfaceDataTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/SurfaceData/Code/surfacedata_editor_files.cmake b/Gems/SurfaceData/Code/surfacedata_editor_files.cmake index 150d67d506..47d4a36fc6 100644 --- a/Gems/SurfaceData/Code/surfacedata_editor_files.cmake +++ b/Gems/SurfaceData/Code/surfacedata_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SurfaceData/Code/surfacedata_files.cmake b/Gems/SurfaceData/Code/surfacedata_files.cmake index 8958723155..cfeec51b41 100644 --- a/Gems/SurfaceData/Code/surfacedata_files.cmake +++ b/Gems/SurfaceData/Code/surfacedata_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SurfaceData/Code/surfacedata_shared_files.cmake b/Gems/SurfaceData/Code/surfacedata_shared_files.cmake index 66a3cae417..60b97ff916 100644 --- a/Gems/SurfaceData/Code/surfacedata_shared_files.cmake +++ b/Gems/SurfaceData/Code/surfacedata_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/SurfaceData/Code/surfacedata_tests_files.cmake b/Gems/SurfaceData/Code/surfacedata_tests_files.cmake index 8d2aa91cba..1e307caee7 100644 --- a/Gems/SurfaceData/Code/surfacedata_tests_files.cmake +++ b/Gems/SurfaceData/Code/surfacedata_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TestAssetBuilder/CMakeLists.txt b/Gems/TestAssetBuilder/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/TestAssetBuilder/CMakeLists.txt +++ b/Gems/TestAssetBuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TestAssetBuilder/Code/CMakeLists.txt b/Gems/TestAssetBuilder/Code/CMakeLists.txt index dc7ff3e5c0..9b2a529821 100644 --- a/Gems/TestAssetBuilder/Code/CMakeLists.txt +++ b/Gems/TestAssetBuilder/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.cpp b/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.cpp index 00ea5f983d..b59fe1f7ed 100644 --- a/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.cpp +++ b/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.h b/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.h index 409df6ff6a..208280226c 100644 --- a/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.h +++ b/Gems/TestAssetBuilder/Code/Source/Builder/TestAssetBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TestAssetBuilder/Code/Source/TestAssetBuilderModule.cpp b/Gems/TestAssetBuilder/Code/Source/TestAssetBuilderModule.cpp index 082fb111ac..ef30dbf3ed 100644 --- a/Gems/TestAssetBuilder/Code/Source/TestAssetBuilderModule.cpp +++ b/Gems/TestAssetBuilder/Code/Source/TestAssetBuilderModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TestAssetBuilder/Code/testassetbuilder_files.cmake b/Gems/TestAssetBuilder/Code/testassetbuilder_files.cmake index 5145140f14..9b12ba7b3a 100644 --- a/Gems/TestAssetBuilder/Code/testassetbuilder_files.cmake +++ b/Gems/TestAssetBuilder/Code/testassetbuilder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TestAssetBuilder/Code/testassetbuilder_shared_files.cmake b/Gems/TestAssetBuilder/Code/testassetbuilder_shared_files.cmake index 9f6a7c2a26..ae95a3bfe3 100644 --- a/Gems/TestAssetBuilder/Code/testassetbuilder_shared_files.cmake +++ b/Gems/TestAssetBuilder/Code/testassetbuilder_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TextureAtlas/CMakeLists.txt b/Gems/TextureAtlas/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/TextureAtlas/CMakeLists.txt +++ b/Gems/TextureAtlas/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TextureAtlas/Code/CMakeLists.txt b/Gems/TextureAtlas/Code/CMakeLists.txt index 30839deeb6..d146e824e7 100644 --- a/Gems/TextureAtlas/Code/CMakeLists.txt +++ b/Gems/TextureAtlas/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlas.h b/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlas.h index a0129cf57d..7cbe320ad5 100644 --- a/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlas.h +++ b/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlas.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasBus.h b/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasBus.h index b26f9b0545..3d4697abc3 100644 --- a/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasBus.h +++ b/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasNotificationBus.h b/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasNotificationBus.h index 91af627b54..6a7de90b87 100644 --- a/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasNotificationBus.h +++ b/Gems/TextureAtlas/Code/Include/TextureAtlas/TextureAtlasNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.cpp b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.cpp index ffd4ab8347..5023849d47 100644 --- a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.cpp +++ b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.h b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.h index e13e77852c..27bbb0adf9 100644 --- a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.h +++ b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp index 0970c50eb0..dfe43b4cfb 100644 --- a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp +++ b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h index 243861fde6..ff490a2648 100644 --- a/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h +++ b/Gems/TextureAtlas/Code/Source/Editor/AtlasBuilderWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.cpp b/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.cpp index 2c9501d720..28210715a5 100644 --- a/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.cpp +++ b/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.h b/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.h index 85ee376036..a787dd4e3c 100644 --- a/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.h +++ b/Gems/TextureAtlas/Code/Source/TextureAtlasImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/TextureAtlasModule.cpp b/Gems/TextureAtlas/Code/Source/TextureAtlasModule.cpp index 8cf1197a1c..71097fdfe0 100644 --- a/Gems/TextureAtlas/Code/Source/TextureAtlasModule.cpp +++ b/Gems/TextureAtlas/Code/Source/TextureAtlasModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.cpp b/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.cpp index a0fe16df8c..3d30370faa 100644 --- a/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.cpp +++ b/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.h b/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.h index c50a560a9a..a660879134 100644 --- a/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.h +++ b/Gems/TextureAtlas/Code/Source/TextureAtlasSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/Source/TextureAtlas_precompiled.h b/Gems/TextureAtlas/Code/Source/TextureAtlas_precompiled.h index 8d99a0243c..eefa26c318 100644 --- a/Gems/TextureAtlas/Code/Source/TextureAtlas_precompiled.h +++ b/Gems/TextureAtlas/Code/Source/TextureAtlas_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TextureAtlas/Code/textureatlas_builder_files.cmake b/Gems/TextureAtlas/Code/textureatlas_builder_files.cmake index e5da2cfe3b..2594079aef 100644 --- a/Gems/TextureAtlas/Code/textureatlas_builder_files.cmake +++ b/Gems/TextureAtlas/Code/textureatlas_builder_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TextureAtlas/Code/textureatlas_files.cmake b/Gems/TextureAtlas/Code/textureatlas_files.cmake index 9ef7527f1a..44d2443072 100644 --- a/Gems/TextureAtlas/Code/textureatlas_files.cmake +++ b/Gems/TextureAtlas/Code/textureatlas_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TextureAtlas/Code/textureatlas_module_files.cmake b/Gems/TextureAtlas/Code/textureatlas_module_files.cmake index dd5a5f3bd1..c87da636a8 100644 --- a/Gems/TextureAtlas/Code/textureatlas_module_files.cmake +++ b/Gems/TextureAtlas/Code/textureatlas_module_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TickBusOrderViewer/CMakeLists.txt b/Gems/TickBusOrderViewer/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/TickBusOrderViewer/CMakeLists.txt +++ b/Gems/TickBusOrderViewer/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TickBusOrderViewer/Code/CMakeLists.txt b/Gems/TickBusOrderViewer/Code/CMakeLists.txt index 14a2e95cde..eb358312bb 100644 --- a/Gems/TickBusOrderViewer/Code/CMakeLists.txt +++ b/Gems/TickBusOrderViewer/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TickBusOrderViewer/Code/Include/TickBusOrderViewer/TickBusOrderViewerBus.h b/Gems/TickBusOrderViewer/Code/Include/TickBusOrderViewer/TickBusOrderViewerBus.h index 52d5f502ef..880286eae8 100644 --- a/Gems/TickBusOrderViewer/Code/Include/TickBusOrderViewer/TickBusOrderViewerBus.h +++ b/Gems/TickBusOrderViewer/Code/Include/TickBusOrderViewer/TickBusOrderViewerBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerModule.cpp b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerModule.cpp index 26989dddfd..6d131241ea 100644 --- a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerModule.cpp +++ b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.cpp b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.cpp index 6660726014..80dbb2b579 100644 --- a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.cpp +++ b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.h b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.h index d493801932..b7227a469b 100644 --- a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.h +++ b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewerSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewer_precompiled.h b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewer_precompiled.h index 4899df5161..d424689241 100644 --- a/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewer_precompiled.h +++ b/Gems/TickBusOrderViewer/Code/Source/TickBusOrderViewer_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/TickBusOrderViewer/Code/tickbusorderviewer_files.cmake b/Gems/TickBusOrderViewer/Code/tickbusorderviewer_files.cmake index a756c59418..682dbb506c 100644 --- a/Gems/TickBusOrderViewer/Code/tickbusorderviewer_files.cmake +++ b/Gems/TickBusOrderViewer/Code/tickbusorderviewer_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/TickBusOrderViewer/Code/tickbusorderviewer_shared_files.cmake b/Gems/TickBusOrderViewer/Code/tickbusorderviewer_shared_files.cmake index 4ff1506a13..a11323a912 100644 --- a/Gems/TickBusOrderViewer/Code/tickbusorderviewer_shared_files.cmake +++ b/Gems/TickBusOrderViewer/Code/tickbusorderviewer_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Assets/Scripts/Twitch.lua b/Gems/Twitch/Assets/Scripts/Twitch.lua index ed86395dcb..6e6fe82c6e 100644 --- a/Gems/Twitch/Assets/Scripts/Twitch.lua +++ b/Gems/Twitch/Assets/Scripts/Twitch.lua @@ -1,5 +1,5 @@ --[[ --- Copyright (c) Contributors to the Open 3D Engine Project +-- 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 -- diff --git a/Gems/Twitch/CMakeLists.txt b/Gems/Twitch/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Twitch/CMakeLists.txt +++ b/Gems/Twitch/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/CMakeLists.txt b/Gems/Twitch/Code/CMakeLists.txt index 153002329e..103e81da00 100644 --- a/Gems/Twitch/Code/CMakeLists.txt +++ b/Gems/Twitch/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/Include/Twitch/BaseTypes.h b/Gems/Twitch/Code/Include/Twitch/BaseTypes.h index b6b0180fe2..a0d37b72cd 100644 --- a/Gems/Twitch/Code/Include/Twitch/BaseTypes.h +++ b/Gems/Twitch/Code/Include/Twitch/BaseTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Include/Twitch/RESTTypes.h b/Gems/Twitch/Code/Include/Twitch/RESTTypes.h index 0c5e1818e9..5bf71b9d67 100644 --- a/Gems/Twitch/Code/Include/Twitch/RESTTypes.h +++ b/Gems/Twitch/Code/Include/Twitch/RESTTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Include/Twitch/TwitchBus.h b/Gems/Twitch/Code/Include/Twitch/TwitchBus.h index 196ecba22f..597a6c05dc 100644 --- a/Gems/Twitch/Code/Include/Twitch/TwitchBus.h +++ b/Gems/Twitch/Code/Include/Twitch/TwitchBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Include/Twitch/TwitchTypes.h b/Gems/Twitch/Code/Include/Twitch/TwitchTypes.h index bca334c513..dccb0e3211 100644 --- a/Gems/Twitch/Code/Include/Twitch/TwitchTypes.h +++ b/Gems/Twitch/Code/Include/Twitch/TwitchTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/ComponentStub.cpp b/Gems/Twitch/Code/Source/ComponentStub.cpp index 015ba46284..f65d127212 100644 --- a/Gems/Twitch/Code/Source/ComponentStub.cpp +++ b/Gems/Twitch/Code/Source/ComponentStub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/FuelInterface.h b/Gems/Twitch/Code/Source/FuelInterface.h index 954a7c1651..7acea8ad47 100644 --- a/Gems/Twitch/Code/Source/FuelInterface.h +++ b/Gems/Twitch/Code/Source/FuelInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/IFuelInterface.h b/Gems/Twitch/Code/Source/IFuelInterface.h index 16b8f0919a..1c245359d6 100644 --- a/Gems/Twitch/Code/Source/IFuelInterface.h +++ b/Gems/Twitch/Code/Source/IFuelInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/ITwitchREST.h b/Gems/Twitch/Code/Source/ITwitchREST.h index 65b022eca8..ec0aa20a19 100644 --- a/Gems/Twitch/Code/Source/ITwitchREST.h +++ b/Gems/Twitch/Code/Source/ITwitchREST.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Android.h b/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Android.h index 1afeb32b8b..9360cf17fd 100644 --- a/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Android.h +++ b/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Android.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Platform.h b/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Platform.h index 1ba70da7ad..48d905635a 100644 --- a/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Platform.h +++ b/Gems/Twitch/Code/Source/Platform/Android/Twitch_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Android/platform_android_files.cmake b/Gems/Twitch/Code/Source/Platform/Android/platform_android_files.cmake index 5666f29cb4..90e21a13b6 100644 --- a/Gems/Twitch/Code/Source/Platform/Android/platform_android_files.cmake +++ b/Gems/Twitch/Code/Source/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Linux.h b/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Linux.h index 1afeb32b8b..9360cf17fd 100644 --- a/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Linux.h +++ b/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Linux.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Platform.h b/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Platform.h index 440a7f6fb4..2e9da6af10 100644 --- a/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Platform.h +++ b/Gems/Twitch/Code/Source/Platform/Linux/Twitch_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Linux/platform_linux_files.cmake b/Gems/Twitch/Code/Source/Platform/Linux/platform_linux_files.cmake index b1b07293e6..9603c4180c 100644 --- a/Gems/Twitch/Code/Source/Platform/Linux/platform_linux_files.cmake +++ b/Gems/Twitch/Code/Source/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Mac.h b/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Mac.h index 1afeb32b8b..9360cf17fd 100644 --- a/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Mac.h +++ b/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Mac.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Platform.h b/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Platform.h index 0806055c94..0172a0228a 100644 --- a/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Platform.h +++ b/Gems/Twitch/Code/Source/Platform/Mac/Twitch_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Mac/platform_mac_files.cmake b/Gems/Twitch/Code/Source/Platform/Mac/platform_mac_files.cmake index d9111723c0..99a2c66507 100644 --- a/Gems/Twitch/Code/Source/Platform/Mac/platform_mac_files.cmake +++ b/Gems/Twitch/Code/Source/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Platform.h b/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Platform.h index c36cb4fea7..cf44b45626 100644 --- a/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Platform.h +++ b/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Windows.h b/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Windows.h index ec28fa9379..d9bc3cafb8 100644 --- a/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Windows.h +++ b/Gems/Twitch/Code/Source/Platform/Windows/Twitch_Traits_Windows.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/Windows/platform_windows_files.cmake b/Gems/Twitch/Code/Source/Platform/Windows/platform_windows_files.cmake index 0a9a588c75..03df7575ee 100644 --- a/Gems/Twitch/Code/Source/Platform/Windows/platform_windows_files.cmake +++ b/Gems/Twitch/Code/Source/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_Platform.h b/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_Platform.h index b1ce4f88d8..bdd3be66db 100644 --- a/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_Platform.h +++ b/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_Platform.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_iOS.h b/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_iOS.h index 1afeb32b8b..9360cf17fd 100644 --- a/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_iOS.h +++ b/Gems/Twitch/Code/Source/Platform/iOS/Twitch_Traits_iOS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Platform/iOS/platform_ios_files.cmake b/Gems/Twitch/Code/Source/Platform/iOS/platform_ios_files.cmake index 7f13d1ff79..35a8a8d182 100644 --- a/Gems/Twitch/Code/Source/Platform/iOS/platform_ios_files.cmake +++ b/Gems/Twitch/Code/Source/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/Source/TwitchModule.cpp b/Gems/Twitch/Code/Source/TwitchModule.cpp index 05367f0d41..9819c93e7c 100644 --- a/Gems/Twitch/Code/Source/TwitchModule.cpp +++ b/Gems/Twitch/Code/Source/TwitchModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/TwitchREST.cpp b/Gems/Twitch/Code/Source/TwitchREST.cpp index 41b96bcff3..d4d42347aa 100644 --- a/Gems/Twitch/Code/Source/TwitchREST.cpp +++ b/Gems/Twitch/Code/Source/TwitchREST.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/TwitchREST.h b/Gems/Twitch/Code/Source/TwitchREST.h index 85a80e071e..ad4b51d0f0 100644 --- a/Gems/Twitch/Code/Source/TwitchREST.h +++ b/Gems/Twitch/Code/Source/TwitchREST.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/TwitchReflection.cpp b/Gems/Twitch/Code/Source/TwitchReflection.cpp index 4b5851857f..50d4079d7a 100644 --- a/Gems/Twitch/Code/Source/TwitchReflection.cpp +++ b/Gems/Twitch/Code/Source/TwitchReflection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/TwitchReflection.h b/Gems/Twitch/Code/Source/TwitchReflection.h index 7a89d5c4c5..43375bb535 100644 --- a/Gems/Twitch/Code/Source/TwitchReflection.h +++ b/Gems/Twitch/Code/Source/TwitchReflection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/TwitchSystemComponent.cpp b/Gems/Twitch/Code/Source/TwitchSystemComponent.cpp index d505d01400..c163d39370 100644 --- a/Gems/Twitch/Code/Source/TwitchSystemComponent.cpp +++ b/Gems/Twitch/Code/Source/TwitchSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/TwitchSystemComponent.h b/Gems/Twitch/Code/Source/TwitchSystemComponent.h index 49e199d28c..1fc10a2321 100644 --- a/Gems/Twitch/Code/Source/TwitchSystemComponent.h +++ b/Gems/Twitch/Code/Source/TwitchSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/Source/Twitch_precompiled.h b/Gems/Twitch/Code/Source/Twitch_precompiled.h index ad49d2df73..e41e011a88 100644 --- a/Gems/Twitch/Code/Source/Twitch_precompiled.h +++ b/Gems/Twitch/Code/Source/Twitch_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Twitch/Code/lmbraws_unsupported_files.cmake b/Gems/Twitch/Code/lmbraws_unsupported_files.cmake index 962441706f..0c76fe2cd3 100644 --- a/Gems/Twitch/Code/lmbraws_unsupported_files.cmake +++ b/Gems/Twitch/Code/lmbraws_unsupported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/twitch_files.cmake b/Gems/Twitch/Code/twitch_files.cmake index e3d86d3de6..6ae60b7923 100644 --- a/Gems/Twitch/Code/twitch_files.cmake +++ b/Gems/Twitch/Code/twitch_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Twitch/Code/twitch_shared_files.cmake b/Gems/Twitch/Code/twitch_shared_files.cmake index 3feecb53bc..4dfcf821f2 100644 --- a/Gems/Twitch/Code/twitch_shared_files.cmake +++ b/Gems/Twitch/Code/twitch_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/UiBasics/CMakeLists.txt b/Gems/UiBasics/CMakeLists.txt index edcda6dfba..0b2cb4efff 100644 --- a/Gems/UiBasics/CMakeLists.txt +++ b/Gems/UiBasics/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Vegetation/CMakeLists.txt b/Gems/Vegetation/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/Vegetation/CMakeLists.txt +++ b/Gems/Vegetation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Vegetation/Code/CMakeLists.txt b/Gems/Vegetation/Code/CMakeLists.txt index 29ad636737..3b701a4f56 100644 --- a/Gems/Vegetation/Code/CMakeLists.txt +++ b/Gems/Vegetation/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Vegetation/Code/Include/Vegetation/AreaComponentBase.h b/Gems/Vegetation/Code/Include/Vegetation/AreaComponentBase.h index 81ed1dd9ca..109971702e 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/AreaComponentBase.h +++ b/Gems/Vegetation/Code/Include/Vegetation/AreaComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Descriptor.h b/Gems/Vegetation/Code/Include/Vegetation/Descriptor.h index abdd0c5cc6..2e54c4ef13 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Descriptor.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Descriptor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/DescriptorListAsset.h b/Gems/Vegetation/Code/Include/Vegetation/DescriptorListAsset.h index ddf051a469..8ae19acabf 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/DescriptorListAsset.h +++ b/Gems/Vegetation/Code/Include/Vegetation/DescriptorListAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/DynamicSliceInstanceSpawner.h b/Gems/Vegetation/Code/Include/Vegetation/DynamicSliceInstanceSpawner.h index 28cbf98301..2ef4a5ab71 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/DynamicSliceInstanceSpawner.h +++ b/Gems/Vegetation/Code/Include/Vegetation/DynamicSliceInstanceSpawner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaBlenderRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaBlenderRequestBus.h index e4b0f3f776..8a30f8b971 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaBlenderRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaBlenderRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaConfigRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaConfigRequestBus.h index 994380f334..4386172482 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaConfigRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaConfigRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaDebugBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaDebugBus.h index e96105721a..1149560c38 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaDebugBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaDebugBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaInfoBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaInfoBus.h index e5f4cdbfa3..0f1709d200 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaInfoBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaInfoBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaNotificationBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaNotificationBus.h index 399b489059..9a9d4b524e 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaNotificationBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaRequestBus.h index a16dca8e0b..f98c922abe 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaSystemRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaSystemRequestBus.h index 0c05bb93e8..84c84dea50 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaSystemRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/AreaSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/BlockerRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/BlockerRequestBus.h index 069b9ae795..1956c8fb4a 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/BlockerRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/BlockerRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugNotificationBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugNotificationBus.h index 40c4d37536..51aa40ddeb 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugNotificationBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugRequestsBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugRequestsBus.h index 19ab9e03f4..568dd59763 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugRequestsBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugRequestsBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugSystemDataBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugSystemDataBus.h index 85534c495d..713aa7bb96 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugSystemDataBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DebugSystemDataBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DependencyRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DependencyRequestBus.h index 34eebe936a..60b2374656 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DependencyRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DependencyRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListCombinerRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListCombinerRequestBus.h index 97cef4e630..d91b71a0d7 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListCombinerRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListCombinerRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListRequestBus.h index 2ac29c88ef..fac3a2cc5d 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorListRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorNotificationBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorNotificationBus.h index 536e0b6c95..45d5f76e47 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorNotificationBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorNotificationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorProviderRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorProviderRequestBus.h index 4a0755417b..d706143f6c 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorProviderRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorProviderRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorSelectorRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorSelectorRequestBus.h index 93ace97cd9..d5a6d53916 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorSelectorRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorSelectorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorWeightSelectorRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorWeightSelectorRequestBus.h index e148079bde..240a4d2808 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorWeightSelectorRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DescriptorWeightSelectorRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistanceBetweenFilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistanceBetweenFilterRequestBus.h index b0d6be96f7..3487a3187f 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistanceBetweenFilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistanceBetweenFilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistributionFilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistributionFilterRequestBus.h index 8712e34c8e..9269ab501e 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistributionFilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/DistributionFilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/FilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/FilterRequestBus.h index d2be432926..bfa9f759eb 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/FilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/FilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/InstanceSystemRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/InstanceSystemRequestBus.h index c3d9363444..f696b7955c 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/InstanceSystemRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/InstanceSystemRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/LevelSettingsRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/LevelSettingsRequestBus.h index 54a90d0cca..cde5076340 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/LevelSettingsRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/LevelSettingsRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/MeshBlockerRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/MeshBlockerRequestBus.h index a0c71c655d..4366e7b5dc 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/MeshBlockerRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/MeshBlockerRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ModifierRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ModifierRequestBus.h index f268605c69..70ee34ddfe 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ModifierRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ModifierRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/PositionModifierRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/PositionModifierRequestBus.h index eb515c38e2..1e8a4eb3f4 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/PositionModifierRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/PositionModifierRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ReferenceShapeRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ReferenceShapeRequestBus.h index ba1ad043fc..26fd8e5e26 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ReferenceShapeRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ReferenceShapeRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/RotationModifierRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/RotationModifierRequestBus.h index 09f6812a18..bc09ca77c2 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/RotationModifierRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/RotationModifierRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ScaleModifierRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ScaleModifierRequestBus.h index b789b86c77..9a1fbcf4ab 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ScaleModifierRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ScaleModifierRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ShapeIntersectionFilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ShapeIntersectionFilterRequestBus.h index 61fd9f264c..a0f2112368 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ShapeIntersectionFilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/ShapeIntersectionFilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SlopeAlignmentModifierRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SlopeAlignmentModifierRequestBus.h index 5c4dabd8f5..5f52fdf7ab 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SlopeAlignmentModifierRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SlopeAlignmentModifierRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SpawnerRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SpawnerRequestBus.h index 0e4d888532..15b2789137 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SpawnerRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SpawnerRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceAltitudeFilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceAltitudeFilterRequestBus.h index 16f2a2dd40..a6017e4826 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceAltitudeFilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceAltitudeFilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskDepthFilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskDepthFilterRequestBus.h index b3f7c935d4..22056c3430 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskDepthFilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskDepthFilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskFilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskFilterRequestBus.h index 1a07b6d0f0..26db019a56 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskFilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceMaskFilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceSlopeFilterRequestBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceSlopeFilterRequestBus.h index c0415c6c00..433051e26e 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceSlopeFilterRequestBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SurfaceSlopeFilterRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SystemConfigurationBus.h b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SystemConfigurationBus.h index f7c2a9410d..b58f94a5b0 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SystemConfigurationBus.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Ebuses/SystemConfigurationBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.h b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.h index 7c4a08b3b2..da3d45445c 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.inl b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.inl index edcf80d3ee..20b9355e23 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.inl +++ b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorAreaComponentBase.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.h b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.h index ccd283cad4..94bcc36415 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.inl b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.inl index 8b45ee35bd..f8b07d5c94 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.inl +++ b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentBase.inl @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentTypeIds.h b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentTypeIds.h index c061a87f1b..f26320ef87 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentTypeIds.h +++ b/Gems/Vegetation/Code/Include/Vegetation/Editor/EditorVegetationComponentTypeIds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/EmptyInstanceSpawner.h b/Gems/Vegetation/Code/Include/Vegetation/EmptyInstanceSpawner.h index fa76b34b27..2239b9feab 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/EmptyInstanceSpawner.h +++ b/Gems/Vegetation/Code/Include/Vegetation/EmptyInstanceSpawner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/InstanceData.h b/Gems/Vegetation/Code/Include/Vegetation/InstanceData.h index 10f7e34a8a..bbf6bd3391 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/InstanceData.h +++ b/Gems/Vegetation/Code/Include/Vegetation/InstanceData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/InstanceSpawner.h b/Gems/Vegetation/Code/Include/Vegetation/InstanceSpawner.h index d517b51b5d..4c9803085f 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/InstanceSpawner.h +++ b/Gems/Vegetation/Code/Include/Vegetation/InstanceSpawner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Include/Vegetation/PrefabInstanceSpawner.h b/Gems/Vegetation/Code/Include/Vegetation/PrefabInstanceSpawner.h index b88188ceda..84ffa3f674 100644 --- a/Gems/Vegetation/Code/Include/Vegetation/PrefabInstanceSpawner.h +++ b/Gems/Vegetation/Code/Include/Vegetation/PrefabInstanceSpawner.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/AreaSystemComponent.cpp b/Gems/Vegetation/Code/Source/AreaSystemComponent.cpp index 0034e35854..16771f67c7 100644 --- a/Gems/Vegetation/Code/Source/AreaSystemComponent.cpp +++ b/Gems/Vegetation/Code/Source/AreaSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/AreaSystemComponent.h b/Gems/Vegetation/Code/Source/AreaSystemComponent.h index 51baa8086c..b8fd36ab0a 100644 --- a/Gems/Vegetation/Code/Source/AreaSystemComponent.h +++ b/Gems/Vegetation/Code/Source/AreaSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.cpp b/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.cpp index 322e286a8b..07c4e1a19e 100644 --- a/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.h b/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.h index 01d76ef77a..ea912d9938 100644 --- a/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.h +++ b/Gems/Vegetation/Code/Source/Components/AreaBlenderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/AreaComponentBase.cpp b/Gems/Vegetation/Code/Source/Components/AreaComponentBase.cpp index 1aa653a1bf..1df8e2301b 100644 --- a/Gems/Vegetation/Code/Source/Components/AreaComponentBase.cpp +++ b/Gems/Vegetation/Code/Source/Components/AreaComponentBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp b/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp index d887980dcd..4cef2d7951 100644 --- a/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/BlockerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/BlockerComponent.h b/Gems/Vegetation/Code/Source/Components/BlockerComponent.h index 4b11da38f7..66116227c3 100644 --- a/Gems/Vegetation/Code/Source/Components/BlockerComponent.h +++ b/Gems/Vegetation/Code/Source/Components/BlockerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.cpp b/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.cpp index 38faa18eda..9a72017111 100644 --- a/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.h b/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.h index 1788e7a7c3..4b0858b7cf 100644 --- a/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.h +++ b/Gems/Vegetation/Code/Source/Components/DescriptorListCombinerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.cpp b/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.cpp index 0f27ae8413..bc630d2c12 100644 --- a/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.h b/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.h index ecc5cee1f7..c044fe6480 100644 --- a/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.h +++ b/Gems/Vegetation/Code/Source/Components/DescriptorListComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.cpp b/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.cpp index 2d7e489eaa..24230597e8 100644 --- a/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.h b/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.h index 9a63513d21..80bfb45567 100644 --- a/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.h +++ b/Gems/Vegetation/Code/Source/Components/DescriptorWeightSelectorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.cpp b/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.cpp index c1f5b28359..76989f2e90 100644 --- a/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.h b/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.h index 2ee17d3805..86e552a93d 100644 --- a/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Components/DistanceBetweenFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.cpp b/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.cpp index a037cf7b23..af93f9409a 100644 --- a/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.h b/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.h index 8b2da2239b..cc429e1223 100644 --- a/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Components/DistributionFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.cpp b/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.cpp index c8c5b8fe87..eac395b6c2 100644 --- a/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.h b/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.h index 2af98df6a9..f2c1aac93e 100644 --- a/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.h +++ b/Gems/Vegetation/Code/Source/Components/LevelSettingsComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp b/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp index 097c03a4fd..c3ac0e8105 100644 --- a/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.h b/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.h index bfafa2a321..ce677bfc65 100644 --- a/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.h +++ b/Gems/Vegetation/Code/Source/Components/MeshBlockerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.cpp b/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.cpp index 92165341f2..d396928dac 100644 --- a/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.h b/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.h index 43fdd7bf5f..44daf16b7b 100644 --- a/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Components/PositionModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.cpp b/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.cpp index bf1776144b..042fda8d6d 100644 --- a/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.h b/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.h index 4c9fe0537d..82a8bf5eea 100644 --- a/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.h +++ b/Gems/Vegetation/Code/Source/Components/ReferenceShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.cpp b/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.cpp index 5fbb7f8c5e..a307623f7d 100644 --- a/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.h b/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.h index be4cb1a3ca..07c2e0351f 100644 --- a/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Components/RotationModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.cpp b/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.cpp index 8f7130c651..0faab5aabe 100644 --- a/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.h b/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.h index c44a4d79ab..a053ee974e 100644 --- a/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Components/ScaleModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.cpp b/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.cpp index 11a6fe1504..a3ec226c23 100644 --- a/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.h b/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.h index e66baa483e..a10bf00d56 100644 --- a/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Components/ShapeIntersectionFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.cpp b/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.cpp index 9a7ab34532..8bcbf0df22 100644 --- a/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.h b/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.h index d6b8fa4523..a32593b8d2 100644 --- a/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Components/SlopeAlignmentModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SpawnerComponent.cpp b/Gems/Vegetation/Code/Source/Components/SpawnerComponent.cpp index 88a04a4978..ab236f4a9b 100644 --- a/Gems/Vegetation/Code/Source/Components/SpawnerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/SpawnerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SpawnerComponent.h b/Gems/Vegetation/Code/Source/Components/SpawnerComponent.h index ec9619bbef..5c810fafd5 100644 --- a/Gems/Vegetation/Code/Source/Components/SpawnerComponent.h +++ b/Gems/Vegetation/Code/Source/Components/SpawnerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.cpp b/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.cpp index 21ac9a1a8a..8dd798ee1b 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.h b/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.h index aefc356065..fa739f6512 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Components/SurfaceAltitudeFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.cpp b/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.cpp index 0a110043a7..408f07bfef 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.h b/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.h index 1cb4d269c5..3a59541947 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Components/SurfaceMaskDepthFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.cpp b/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.cpp index 0d8a405f46..4ae60543f9 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.h b/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.h index f6ff9a6b8d..dab3312f4e 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Components/SurfaceMaskFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.cpp b/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.cpp index c4c67c6c0a..5534694002 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.h b/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.h index b2633958a0..33b7712cc9 100644 --- a/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Components/SurfaceSlopeFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/DebugSystemComponent.cpp b/Gems/Vegetation/Code/Source/DebugSystemComponent.cpp index af9055a663..cc4eca7f0e 100644 --- a/Gems/Vegetation/Code/Source/DebugSystemComponent.cpp +++ b/Gems/Vegetation/Code/Source/DebugSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/DebugSystemComponent.h b/Gems/Vegetation/Code/Source/DebugSystemComponent.h index 0620e2485b..9811b98c19 100644 --- a/Gems/Vegetation/Code/Source/DebugSystemComponent.h +++ b/Gems/Vegetation/Code/Source/DebugSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.cpp b/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.cpp index 9f0d1e8c26..1585ba629e 100644 --- a/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.cpp +++ b/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.h b/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.h index fda9b17a2a..9e7fd0c1b4 100644 --- a/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.h +++ b/Gems/Vegetation/Code/Source/Debugger/AreaDebugComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/DebugComponent.cpp b/Gems/Vegetation/Code/Source/Debugger/DebugComponent.cpp index 9553d31557..c24c380d6f 100644 --- a/Gems/Vegetation/Code/Source/Debugger/DebugComponent.cpp +++ b/Gems/Vegetation/Code/Source/Debugger/DebugComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/DebugComponent.h b/Gems/Vegetation/Code/Source/Debugger/DebugComponent.h index 859d7e98a7..6362d98371 100644 --- a/Gems/Vegetation/Code/Source/Debugger/DebugComponent.h +++ b/Gems/Vegetation/Code/Source/Debugger/DebugComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.cpp b/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.cpp index 9e5e26894e..6a554b2e71 100644 --- a/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.cpp +++ b/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.h b/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.h index 9655883927..09e73f779f 100644 --- a/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.h +++ b/Gems/Vegetation/Code/Source/Debugger/EditorAreaDebugComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.cpp b/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.cpp index 0ad265333e..7f0a750c0a 100644 --- a/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.cpp +++ b/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.h b/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.h index 62649c134b..6d37fe79ce 100644 --- a/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.h +++ b/Gems/Vegetation/Code/Source/Debugger/EditorDebugComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Descriptor.cpp b/Gems/Vegetation/Code/Source/Descriptor.cpp index 9cc211a168..7e2e639926 100644 --- a/Gems/Vegetation/Code/Source/Descriptor.cpp +++ b/Gems/Vegetation/Code/Source/Descriptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/DescriptorListAsset.cpp b/Gems/Vegetation/Code/Source/DescriptorListAsset.cpp index 0a7ea19ac3..b6ff6289ec 100644 --- a/Gems/Vegetation/Code/Source/DescriptorListAsset.cpp +++ b/Gems/Vegetation/Code/Source/DescriptorListAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/DynamicSliceInstanceSpawner.cpp b/Gems/Vegetation/Code/Source/DynamicSliceInstanceSpawner.cpp index 85ed247acb..8642c41102 100644 --- a/Gems/Vegetation/Code/Source/DynamicSliceInstanceSpawner.cpp +++ b/Gems/Vegetation/Code/Source/DynamicSliceInstanceSpawner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.cpp index f87ac02af9..7f45945d7e 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.h index 2a78b5cda0..3bfde59124 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorAreaBlenderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.cpp index 0589c8ac58..b9f42eba4c 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.h index 42b209d99e..60e4f7fdcc 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorBlockerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.cpp index 726721bf9f..1ce5fddd6d 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.h index 8eca31c892..c156abb803 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListCombinerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.cpp index 2ddc690f53..5107fc72e0 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.h index ec57d3c147..bdb6151c9e 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorListComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.cpp index d935fd7a62..831952a1fa 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.h index d8ee99500f..5a42f9821b 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorDescriptorWeightSelectorComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.cpp index d000f4cf37..2e8c547c3f 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.h index 4804b21336..110d8368ab 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorDistanceBetweenFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.cpp index 867ec87574..01909e7d92 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.h index b35d91bea8..f87b92d62e 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorDistributionFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.cpp index bd103b3338..dbb94b96fe 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.h index ab255627cf..fb8b30c737 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorLevelSettingsComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.cpp index bef220a413..8dade21d75 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.h index e63260b4d6..eb1f105f59 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorMeshBlockerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.cpp index f541449eed..e924bec94c 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.h index 79667f9b4e..edb7af7d24 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorPositionModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.cpp index d7751a2189..9bbbddb691 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.h index 9c546d77ab..73ec6a0f11 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorReferenceShapeComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.cpp index 944458b91f..cc21927e8b 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.h index 4eaa2190a0..5856bfb7da 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorRotationModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.cpp index 20b690a739..ec0347076e 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.h index 95a3c1d00d..325e03ab2a 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.cpp index 5f82bbcd22..3add308d16 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.h index 00fdfdada0..0b7e531856 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorShapeIntersectionFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.cpp index d8b35c5fac..ab2d69ff3b 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.h index 810df7d456..e1cc5396ce 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorSlopeAlignmentModifierComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.cpp index 43cd4d3a1b..ffdf6bac64 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.h index 328b34af7a..3f4fc0145d 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorSpawnerComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.cpp index d3027a4300..f466b2b1a5 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.h index 1879858a36..8369250425 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceAltitudeFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.cpp index 66ba8bd4d8..cde8e7181a 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.h index 209910fac2..49bd046973 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskDepthFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.cpp index 70c701c4b2..a04f86d7ae 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.h index 5137aa471e..fc6d599bb2 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceMaskFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.cpp index 123b094efd..f0c106b278 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.h index 66b2c2ad18..0fde49dfb5 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorSurfaceSlopeFilterComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.cpp b/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.cpp index 93845bc06e..91d24a18ff 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.cpp +++ b/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.h b/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.h index 7c5ed03e31..af37ea30ed 100644 --- a/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.h +++ b/Gems/Vegetation/Code/Source/Editor/EditorVegetationSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/EmptyInstanceSpawner.cpp b/Gems/Vegetation/Code/Source/EmptyInstanceSpawner.cpp index 9137de43ba..c477c939c2 100644 --- a/Gems/Vegetation/Code/Source/EmptyInstanceSpawner.cpp +++ b/Gems/Vegetation/Code/Source/EmptyInstanceSpawner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/InstanceData.cpp b/Gems/Vegetation/Code/Source/InstanceData.cpp index 998a551a9d..99a967cc8e 100644 --- a/Gems/Vegetation/Code/Source/InstanceData.cpp +++ b/Gems/Vegetation/Code/Source/InstanceData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp b/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp index f9c1fbe735..86504c89a5 100644 --- a/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp +++ b/Gems/Vegetation/Code/Source/InstanceSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/InstanceSystemComponent.h b/Gems/Vegetation/Code/Source/InstanceSystemComponent.h index ae1a02504f..bb90d6553d 100644 --- a/Gems/Vegetation/Code/Source/InstanceSystemComponent.h +++ b/Gems/Vegetation/Code/Source/InstanceSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp b/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp index b1a9e3ba3a..0023da59c2 100644 --- a/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp +++ b/Gems/Vegetation/Code/Source/PrefabInstanceSpawner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Util/ConcurrentQueue.h b/Gems/Vegetation/Code/Source/Util/ConcurrentQueue.h index 2654c6cf0a..95d7a03397 100644 --- a/Gems/Vegetation/Code/Source/Util/ConcurrentQueue.h +++ b/Gems/Vegetation/Code/Source/Util/ConcurrentQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/Util/ProducerConsumerQueue.h b/Gems/Vegetation/Code/Source/Util/ProducerConsumerQueue.h index b1cca4fc88..f34a7562fd 100644 --- a/Gems/Vegetation/Code/Source/Util/ProducerConsumerQueue.h +++ b/Gems/Vegetation/Code/Source/Util/ProducerConsumerQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/VegetationEditorModule.cpp b/Gems/Vegetation/Code/Source/VegetationEditorModule.cpp index 1a27905396..78d8176dd3 100644 --- a/Gems/Vegetation/Code/Source/VegetationEditorModule.cpp +++ b/Gems/Vegetation/Code/Source/VegetationEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/VegetationEditorModule.h b/Gems/Vegetation/Code/Source/VegetationEditorModule.h index 8b80bc14bd..8ff79110e9 100644 --- a/Gems/Vegetation/Code/Source/VegetationEditorModule.h +++ b/Gems/Vegetation/Code/Source/VegetationEditorModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/VegetationModule.cpp b/Gems/Vegetation/Code/Source/VegetationModule.cpp index ce51ff7f22..0e3522124c 100644 --- a/Gems/Vegetation/Code/Source/VegetationModule.cpp +++ b/Gems/Vegetation/Code/Source/VegetationModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/VegetationModule.h b/Gems/Vegetation/Code/Source/VegetationModule.h index e99e9c6eb6..ec995f8a19 100644 --- a/Gems/Vegetation/Code/Source/VegetationModule.h +++ b/Gems/Vegetation/Code/Source/VegetationModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/VegetationProfiler.h b/Gems/Vegetation/Code/Source/VegetationProfiler.h index def73d829a..c064b75eae 100644 --- a/Gems/Vegetation/Code/Source/VegetationProfiler.h +++ b/Gems/Vegetation/Code/Source/VegetationProfiler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp b/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp index 24e79e1461..87fc782777 100644 --- a/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp +++ b/Gems/Vegetation/Code/Source/VegetationSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Source/VegetationSystemComponent.h b/Gems/Vegetation/Code/Source/VegetationSystemComponent.h index 143feaa00a..4009aa50ab 100644 --- a/Gems/Vegetation/Code/Source/VegetationSystemComponent.h +++ b/Gems/Vegetation/Code/Source/VegetationSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/DynamicSliceInstanceSpawnerTests.cpp b/Gems/Vegetation/Code/Tests/DynamicSliceInstanceSpawnerTests.cpp index 1efa3af7e5..5cb36a3665 100644 --- a/Gems/Vegetation/Code/Tests/DynamicSliceInstanceSpawnerTests.cpp +++ b/Gems/Vegetation/Code/Tests/DynamicSliceInstanceSpawnerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/EmptyInstanceSpawnerTests.cpp b/Gems/Vegetation/Code/Tests/EmptyInstanceSpawnerTests.cpp index 7dc3b3dee7..62b7e86416 100644 --- a/Gems/Vegetation/Code/Tests/EmptyInstanceSpawnerTests.cpp +++ b/Gems/Vegetation/Code/Tests/EmptyInstanceSpawnerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/PrefabInstanceSpawnerTests.cpp b/Gems/Vegetation/Code/Tests/PrefabInstanceSpawnerTests.cpp index a0c3d22575..1d81e9a496 100644 --- a/Gems/Vegetation/Code/Tests/PrefabInstanceSpawnerTests.cpp +++ b/Gems/Vegetation/Code/Tests/PrefabInstanceSpawnerTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationAreaSystemComponentTest.cpp b/Gems/Vegetation/Code/Tests/VegetationAreaSystemComponentTest.cpp index 59c06951aa..7e43a47358 100644 --- a/Gems/Vegetation/Code/Tests/VegetationAreaSystemComponentTest.cpp +++ b/Gems/Vegetation/Code/Tests/VegetationAreaSystemComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationComponentDescriptorTests.cpp b/Gems/Vegetation/Code/Tests/VegetationComponentDescriptorTests.cpp index 16be43f0cc..a7e79b6d7d 100644 --- a/Gems/Vegetation/Code/Tests/VegetationComponentDescriptorTests.cpp +++ b/Gems/Vegetation/Code/Tests/VegetationComponentDescriptorTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationComponentFilterTests.cpp b/Gems/Vegetation/Code/Tests/VegetationComponentFilterTests.cpp index 26b2ea8e1d..35a02a016f 100644 --- a/Gems/Vegetation/Code/Tests/VegetationComponentFilterTests.cpp +++ b/Gems/Vegetation/Code/Tests/VegetationComponentFilterTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationComponentModifierTests.cpp b/Gems/Vegetation/Code/Tests/VegetationComponentModifierTests.cpp index af56217ed0..ceaefac355 100644 --- a/Gems/Vegetation/Code/Tests/VegetationComponentModifierTests.cpp +++ b/Gems/Vegetation/Code/Tests/VegetationComponentModifierTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationComponentOperationTests.cpp b/Gems/Vegetation/Code/Tests/VegetationComponentOperationTests.cpp index 073eea6cc4..6d93abe9f8 100644 --- a/Gems/Vegetation/Code/Tests/VegetationComponentOperationTests.cpp +++ b/Gems/Vegetation/Code/Tests/VegetationComponentOperationTests.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationMocks.h b/Gems/Vegetation/Code/Tests/VegetationMocks.h index e2e135a3f3..ce40c363f2 100644 --- a/Gems/Vegetation/Code/Tests/VegetationMocks.h +++ b/Gems/Vegetation/Code/Tests/VegetationMocks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationTest.cpp b/Gems/Vegetation/Code/Tests/VegetationTest.cpp index aee4a0bc75..bffe94359f 100644 --- a/Gems/Vegetation/Code/Tests/VegetationTest.cpp +++ b/Gems/Vegetation/Code/Tests/VegetationTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/Tests/VegetationTest.h b/Gems/Vegetation/Code/Tests/VegetationTest.h index 56e927529f..22db4a5b3b 100644 --- a/Gems/Vegetation/Code/Tests/VegetationTest.h +++ b/Gems/Vegetation/Code/Tests/VegetationTest.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/Vegetation/Code/vegetation_editor_files.cmake b/Gems/Vegetation/Code/vegetation_editor_files.cmake index 76cb4797a8..80068ab4cb 100644 --- a/Gems/Vegetation/Code/vegetation_editor_files.cmake +++ b/Gems/Vegetation/Code/vegetation_editor_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Vegetation/Code/vegetation_files.cmake b/Gems/Vegetation/Code/vegetation_files.cmake index 173cf2748f..f64f5e6dec 100644 --- a/Gems/Vegetation/Code/vegetation_files.cmake +++ b/Gems/Vegetation/Code/vegetation_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Vegetation/Code/vegetation_shared_files.cmake b/Gems/Vegetation/Code/vegetation_shared_files.cmake index eb2e00fa63..fd4d468957 100644 --- a/Gems/Vegetation/Code/vegetation_shared_files.cmake +++ b/Gems/Vegetation/Code/vegetation_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/Vegetation/Code/vegetation_tests_files.cmake b/Gems/Vegetation/Code/vegetation_tests_files.cmake index d8ccc330aa..d2207b7556 100644 --- a/Gems/Vegetation/Code/vegetation_tests_files.cmake +++ b/Gems/Vegetation/Code/vegetation_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VideoPlaybackFramework/CMakeLists.txt b/Gems/VideoPlaybackFramework/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/VideoPlaybackFramework/CMakeLists.txt +++ b/Gems/VideoPlaybackFramework/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VideoPlaybackFramework/Code/CMakeLists.txt b/Gems/VideoPlaybackFramework/Code/CMakeLists.txt index a6fdfc5e71..a4a9a74658 100644 --- a/Gems/VideoPlaybackFramework/Code/CMakeLists.txt +++ b/Gems/VideoPlaybackFramework/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackAsset.h b/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackAsset.h index e1adb91b13..a704dfdacf 100644 --- a/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackAsset.h +++ b/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackBus.h b/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackBus.h index 8bcd33912b..b6cc27cbe7 100644 --- a/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackBus.h +++ b/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackFrameworkBus.h b/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackFrameworkBus.h index 71a46b6686..1ab0f9115c 100644 --- a/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackFrameworkBus.h +++ b/Gems/VideoPlaybackFramework/Code/Include/VideoPlaybackFramework/VideoPlaybackFrameworkBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.cpp b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.cpp index 26eddf7a42..b9f6ab6454 100644 --- a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.cpp +++ b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.h b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.h index 5b2ccbb306..5c46bcb56b 100644 --- a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.h +++ b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.cpp b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.cpp index 3f1c00f584..66c3354dfe 100644 --- a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.cpp +++ b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.h b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.h index e5aea24da0..47c6a42d87 100644 --- a/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.h +++ b/Gems/VideoPlaybackFramework/Code/Source/VideoPlaybackFrameworkSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/Tests/VideoPlaybackFrameworkTest.cpp b/Gems/VideoPlaybackFramework/Code/Tests/VideoPlaybackFrameworkTest.cpp index 9f24db5be3..3faa3b8ffb 100644 --- a/Gems/VideoPlaybackFramework/Code/Tests/VideoPlaybackFrameworkTest.cpp +++ b/Gems/VideoPlaybackFramework/Code/Tests/VideoPlaybackFrameworkTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VideoPlaybackFramework/Code/videoplaybackframework_files.cmake b/Gems/VideoPlaybackFramework/Code/videoplaybackframework_files.cmake index 39fdd21f78..660365e7d6 100644 --- a/Gems/VideoPlaybackFramework/Code/videoplaybackframework_files.cmake +++ b/Gems/VideoPlaybackFramework/Code/videoplaybackframework_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VideoPlaybackFramework/Code/videoplaybackframework_shared_files.cmake b/Gems/VideoPlaybackFramework/Code/videoplaybackframework_shared_files.cmake index 4e52be77ec..82c3e2eae6 100644 --- a/Gems/VideoPlaybackFramework/Code/videoplaybackframework_shared_files.cmake +++ b/Gems/VideoPlaybackFramework/Code/videoplaybackframework_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VideoPlaybackFramework/Code/videoplaybackframework_tests_files.cmake b/Gems/VideoPlaybackFramework/Code/videoplaybackframework_tests_files.cmake index fce54a7c63..959128559b 100644 --- a/Gems/VideoPlaybackFramework/Code/videoplaybackframework_tests_files.cmake +++ b/Gems/VideoPlaybackFramework/Code/videoplaybackframework_tests_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VirtualGamepad/CMakeLists.txt b/Gems/VirtualGamepad/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/VirtualGamepad/CMakeLists.txt +++ b/Gems/VirtualGamepad/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VirtualGamepad/Code/CMakeLists.txt b/Gems/VirtualGamepad/Code/CMakeLists.txt index be10380447..e98e2cf57b 100644 --- a/Gems/VirtualGamepad/Code/CMakeLists.txt +++ b/Gems/VirtualGamepad/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VirtualGamepad/Code/Include/VirtualGamepad/VirtualGamepadBus.h b/Gems/VirtualGamepad/Code/Include/VirtualGamepad/VirtualGamepadBus.h index b58eab6ca9..d3f84995ed 100644 --- a/Gems/VirtualGamepad/Code/Include/VirtualGamepad/VirtualGamepadBus.h +++ b/Gems/VirtualGamepad/Code/Include/VirtualGamepad/VirtualGamepadBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.cpp b/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.cpp index a4d274c162..e9d71aa23e 100644 --- a/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.cpp +++ b/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.h b/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.h index 9feb28d388..d7509a2126 100644 --- a/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.h +++ b/Gems/VirtualGamepad/Code/Source/InputDeviceVirtualGamepad.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.cpp b/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.cpp index 988df67797..269545e8d8 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.cpp +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.h b/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.h index 4bb1b807a3..89a4ee1452 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.h +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonRequestBus.h b/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonRequestBus.h index 61deef4009..68078dcb0f 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonRequestBus.h +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadButtonRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadModule.cpp b/Gems/VirtualGamepad/Code/Source/VirtualGamepadModule.cpp index 33963ad604..c781b102e6 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadModule.cpp +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.cpp b/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.cpp index 37fefa3434..fd0d42ab3f 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.cpp +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.h b/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.h index d431c94c2e..4ffb5e58a1 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.h +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.cpp b/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.cpp index a1ba59d89e..bc1964ff5d 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.cpp +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.h b/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.h index 9b31428729..b1992eda3e 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.h +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickRequestBus.h b/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickRequestBus.h index 093565de6b..f5a401bad4 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickRequestBus.h +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepadThumbStickRequestBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/Source/VirtualGamepad_precompiled.h b/Gems/VirtualGamepad/Code/Source/VirtualGamepad_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/VirtualGamepad/Code/Source/VirtualGamepad_precompiled.h +++ b/Gems/VirtualGamepad/Code/Source/VirtualGamepad_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/VirtualGamepad/Code/virtualgamepad_files.cmake b/Gems/VirtualGamepad/Code/virtualgamepad_files.cmake index 78b82c40d7..09cc357a1c 100644 --- a/Gems/VirtualGamepad/Code/virtualgamepad_files.cmake +++ b/Gems/VirtualGamepad/Code/virtualgamepad_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/VirtualGamepad/Code/virtualgamepad_shared_files.cmake b/Gems/VirtualGamepad/Code/virtualgamepad_shared_files.cmake index 31937a54d3..d278b441d6 100644 --- a/Gems/VirtualGamepad/Code/virtualgamepad_shared_files.cmake +++ b/Gems/VirtualGamepad/Code/virtualgamepad_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/CMakeLists.txt b/Gems/WhiteBox/CMakeLists.txt index dbfe0c9c3f..34bce0825f 100644 --- a/Gems/WhiteBox/CMakeLists.txt +++ b/Gems/WhiteBox/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/CMakeLists.txt b/Gems/WhiteBox/Code/CMakeLists.txt index 4e47436897..24b846cb14 100644 --- a/Gems/WhiteBox/Code/CMakeLists.txt +++ b/Gems/WhiteBox/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxBus.h b/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxBus.h index 21f79b6a97..8060d02298 100644 --- a/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxBus.h +++ b/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxColliderBus.h b/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxColliderBus.h index 9da7c8dbed..59541e1dc1 100644 --- a/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxColliderBus.h +++ b/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxColliderBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxComponentBus.h b/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxComponentBus.h index dd309fad17..e205d2daf9 100644 --- a/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxComponentBus.h +++ b/Gems/WhiteBox/Code/Include/WhiteBox/EditorWhiteBoxComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxBus.h b/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxBus.h index e96d2126e8..2dc5705883 100644 --- a/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxBus.h +++ b/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxComponentBus.h b/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxComponentBus.h index 6721b515e3..591f2a15a1 100644 --- a/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxComponentBus.h +++ b/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxComponentBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxToolApi.h b/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxToolApi.h index 401ff8bb12..08bab642b5 100644 --- a/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxToolApi.h +++ b/Gems/WhiteBox/Code/Include/WhiteBox/WhiteBoxToolApi.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.cpp b/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.cpp index 144954724b..8abd7d2a75 100644 --- a/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.cpp +++ b/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.h b/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.h index 0f1121f80c..3a662d4ce1 100644 --- a/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.h +++ b/Gems/WhiteBox/Code/Source/Asset/EditorWhiteBoxMeshAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAsset.h b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAsset.h index 0208410d40..937ec5e01e 100644 --- a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAsset.h +++ b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAsset.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetBus.h b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetBus.h index 3b908f8a3f..9f5d5d7c3c 100644 --- a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetBus.h +++ b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.cpp b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.cpp index 373fc2fd69..cc3c7bb682 100644 --- a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.cpp +++ b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.h b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.h index 245e9d3fbf..88fbc1b329 100644 --- a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.h +++ b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.cpp b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.cpp index a54247776b..e6e784e01b 100644 --- a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.cpp +++ b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.h b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.h index 71aa743652..e0328c86ab 100644 --- a/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.h +++ b/Gems/WhiteBox/Code/Source/Asset/WhiteBoxMeshAssetUndoCommand.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.cpp b/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.cpp index 58f3b36aab..9d43c0b8fa 100644 --- a/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.cpp +++ b/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.h b/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.h index 66ed1af45f..57d6830063 100644 --- a/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.h +++ b/Gems/WhiteBox/Code/Source/Components/EditorWhiteBoxColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.cpp b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.cpp index aba3a9b866..e616d3567e 100644 --- a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.cpp +++ b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.h b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.h index 04eefb4ba8..94bd8a9328 100644 --- a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.h +++ b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.cpp b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.cpp index 211c1f9460..f23dea356b 100644 --- a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.cpp +++ b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.h b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.h index 91e36aea2a..348feb48e7 100644 --- a/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.h +++ b/Gems/WhiteBox/Code/Source/Components/WhiteBoxColliderConfiguration.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp b/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp index bd6a933d76..f380a54432 100644 --- a/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp +++ b/Gems/WhiteBox/Code/Source/Core/WhiteBoxToolApi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp index 49a1fbd820..f003b18808 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.h index 56452ca7d6..783f5c1479 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp index 6b3f993a95..774ef518ab 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.h index 4c181ee2a9..8e683583b0 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeBus.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeBus.h index ce904c6618..a5d2315f5f 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeBus.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp index a64cc9339c..a61c18acc4 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.h index 93af183441..7c3a030cfe 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxComponentModeTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxDefaultShapeTypes.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxDefaultShapeTypes.h index b051b0505a..a855830a57 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxDefaultShapeTypes.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxDefaultShapeTypes.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxEdgeModifierBus.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxEdgeModifierBus.h index 7662b3623f..f891e33a50 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxEdgeModifierBus.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxEdgeModifierBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxPolygonModifierBus.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxPolygonModifierBus.h index 7db7e86d2a..657d86b50b 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxPolygonModifierBus.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxPolygonModifierBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.cpp b/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.cpp index db20d2f268..426e311b64 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.cpp +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.h b/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.h index 6ca52c5204..478becd02d 100644 --- a/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.h +++ b/Gems/WhiteBox/Code/Source/EditorWhiteBoxSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Platform/Android/PAL_android.cmake b/Gems/WhiteBox/Code/Source/Platform/Android/PAL_android.cmake index 484dd078cb..cd00b8a13b 100644 --- a/Gems/WhiteBox/Code/Source/Platform/Android/PAL_android.cmake +++ b/Gems/WhiteBox/Code/Source/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/Source/Platform/Linux/PAL_linux.cmake b/Gems/WhiteBox/Code/Source/Platform/Linux/PAL_linux.cmake index 484dd078cb..cd00b8a13b 100644 --- a/Gems/WhiteBox/Code/Source/Platform/Linux/PAL_linux.cmake +++ b/Gems/WhiteBox/Code/Source/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/Source/Platform/Mac/PAL_mac.cmake b/Gems/WhiteBox/Code/Source/Platform/Mac/PAL_mac.cmake index 484dd078cb..cd00b8a13b 100644 --- a/Gems/WhiteBox/Code/Source/Platform/Mac/PAL_mac.cmake +++ b/Gems/WhiteBox/Code/Source/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/Source/Platform/Windows/PAL_windows.cmake b/Gems/WhiteBox/Code/Source/Platform/Windows/PAL_windows.cmake index 0af6a15063..eb0034384c 100644 --- a/Gems/WhiteBox/Code/Source/Platform/Windows/PAL_windows.cmake +++ b/Gems/WhiteBox/Code/Source/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/Source/Platform/Windows/platform_windows_tools.cmake b/Gems/WhiteBox/Code/Source/Platform/Windows/platform_windows_tools.cmake index ef1fcfe9ba..ba10fba81a 100644 --- a/Gems/WhiteBox/Code/Source/Platform/Windows/platform_windows_tools.cmake +++ b/Gems/WhiteBox/Code/Source/Platform/Windows/platform_windows_tools.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/Source/Platform/iOS/PAL_ios.cmake b/Gems/WhiteBox/Code/Source/Platform/iOS/PAL_ios.cmake index 484dd078cb..cd00b8a13b 100644 --- a/Gems/WhiteBox/Code/Source/Platform/iOS/PAL_ios.cmake +++ b/Gems/WhiteBox/Code/Source/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/PackedFloat2.h b/Gems/WhiteBox/Code/Source/Rendering/Atom/PackedFloat2.h index f48007e756..548c286929 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/PackedFloat2.h +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/PackedFloat2.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.cpp b/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.cpp index 28893e7ea9..5ca1b3e79f 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.cpp +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.h b/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.h index ea5dee45b0..cd5f56d615 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.h +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/TangentSpaceHelper.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.cpp b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.cpp index 68dd3576c2..4c13a63308 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.cpp +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.h b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.h index 6bf82cd8f0..473f946d85 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.h +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAtomRenderMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAttributeBuffer.h b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAttributeBuffer.h index dcdbf7eada..6611d9d762 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAttributeBuffer.h +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxAttributeBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxBuffer.h b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxBuffer.h index 0c9982c7cc..5e3b41acda 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxBuffer.h +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.cpp b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.cpp index 45c789804b..11a52e145e 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.cpp +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.h b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.h index 9bc20fb307..126337eeb0 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.h +++ b/Gems/WhiteBox/Code/Source/Rendering/Atom/WhiteBoxMeshAtomData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.cpp b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.cpp index e14067cddb..6d70dee48e 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.cpp +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.h b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.h index c473977292..f81e269396 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.h +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxMaterial.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.cpp b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.cpp index def9a1e7c9..7060e983e6 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.cpp +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.h b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.h index f655aee294..6231245e05 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.h +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxNullRenderMesh.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.cpp b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.cpp index 2d06f3d13c..bcb1e62209 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.cpp +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.h b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.h index d1b3911da3..ea114ff9f4 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.h +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderData.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.cpp b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.cpp index 22f0af199b..088c6c4b28 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.cpp +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.h b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.h index 5e063e4273..c3b860e6a4 100644 --- a/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.h +++ b/Gems/WhiteBox/Code/Source/Rendering/WhiteBoxRenderMeshInterface.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.cpp b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.cpp index 894d51a34e..e199509ad7 100644 --- a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.cpp +++ b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.h b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.h index 7d29f67fbc..9b4b9582cd 100644 --- a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.h +++ b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxComponentModeCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.cpp b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.cpp index 5ff73802f0..e9b5514006 100644 --- a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.cpp +++ b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.h b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.h index 933f5b912a..e8e78f2b8e 100644 --- a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.h +++ b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultModeBus.h b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultModeBus.h index fcbdbbf73a..a62cf1e55c 100644 --- a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultModeBus.h +++ b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxDefaultModeBus.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.cpp b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.cpp index 31dea008ef..0abc6ffa60 100644 --- a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.cpp +++ b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.h b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.h index 3cc8d626c7..50ef685ba7 100644 --- a/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.h +++ b/Gems/WhiteBox/Code/Source/SubComponentModes/EditorWhiteBoxEdgeRestoreMode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.cpp b/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.cpp index c94fd743d5..9643925907 100644 --- a/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.cpp +++ b/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.h b/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.h index a52f39830f..4cd6f25af0 100644 --- a/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.h +++ b/Gems/WhiteBox/Code/Source/Util/WhiteBoxEditorUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.cpp b/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.cpp index 52370468ee..f9014333a2 100644 --- a/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.cpp +++ b/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.h b/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.h index 66347b8b6b..2fbda90c8e 100644 --- a/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.h +++ b/Gems/WhiteBox/Code/Source/Util/WhiteBoxMathUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.cpp b/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.cpp index 8699a99b6a..8e9680e65b 100644 --- a/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.cpp +++ b/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.h b/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.h index c0b56b16b3..d33cb230d6 100644 --- a/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.h +++ b/Gems/WhiteBox/Code/Source/Util/WhiteBoxTextureUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.cpp index be3762fbc4..2ce08fc5ce 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.h index d5380c48d7..924fe9177a 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeScaleModifier.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.cpp index 5b176abb5e..8c7d59f3b8 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.h index 8da485d78a..34095c04be 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxEdgeTranslationModifier.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.cpp index 090b65727c..32fa42f69a 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.h index 86c01a8efa..309f58b3c0 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorBounds.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.cpp index c3e68dff87..66a2cd0ca4 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.h index 64d52a0d3d..f717e522f3 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxManipulatorViews.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.cpp index c17a4de6b4..ae34217981 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.h index c0053e70a0..5f97519958 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxModifierUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.cpp index 65946d8343..db49ae0679 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.h index e9f964d670..200fb07273 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonScaleModifier.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.cpp index 827d1f026f..833b887ef4 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.h index f4a3398134..aede27fdb4 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxPolygonTranslationModifier.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.cpp index e9030f908a..07a17ac2cb 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.h index ac077ae4f3..b9b433a9f9 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxVertexTranslationModifier.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.cpp b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.cpp index 28d4a98a1b..86808cecdc 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.cpp +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.h b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.h index 564f36b294..7d4c76b105 100644 --- a/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.h +++ b/Gems/WhiteBox/Code/Source/Viewport/WhiteBoxViewportConstants.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.cpp b/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.cpp index 1b8e23a048..86ea1a974a 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.cpp +++ b/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.h b/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.h index 3f16b10661..5aad1a687e 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.h +++ b/Gems/WhiteBox/Code/Source/WhiteBoxAllocator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxComponent.cpp b/Gems/WhiteBox/Code/Source/WhiteBoxComponent.cpp index f3385e560b..6951135895 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxComponent.cpp +++ b/Gems/WhiteBox/Code/Source/WhiteBoxComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxComponent.h b/Gems/WhiteBox/Code/Source/WhiteBoxComponent.h index 88264912bb..b8a55f0104 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxComponent.h +++ b/Gems/WhiteBox/Code/Source/WhiteBoxComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.cpp b/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.cpp index d5743954d7..c3b5445ed7 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.cpp +++ b/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.h b/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.h index 7e05c53f04..974d3f882d 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.h +++ b/Gems/WhiteBox/Code/Source/WhiteBoxEditorModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxModule.cpp b/Gems/WhiteBox/Code/Source/WhiteBoxModule.cpp index 05461cbd45..e7e5bb9128 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxModule.cpp +++ b/Gems/WhiteBox/Code/Source/WhiteBoxModule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxModule.h b/Gems/WhiteBox/Code/Source/WhiteBoxModule.h index beead7c89d..bc0662b62a 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxModule.h +++ b/Gems/WhiteBox/Code/Source/WhiteBoxModule.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxModuleUnsupported.cpp b/Gems/WhiteBox/Code/Source/WhiteBoxModuleUnsupported.cpp index 3309c33a4d..f0796d621c 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxModuleUnsupported.cpp +++ b/Gems/WhiteBox/Code/Source/WhiteBoxModuleUnsupported.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.cpp b/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.cpp index 4adcddb7c8..0c364e37f0 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.cpp +++ b/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.h b/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.h index 81b373c025..3a0119118f 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.h +++ b/Gems/WhiteBox/Code/Source/WhiteBoxSystemComponent.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.cpp b/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.cpp index 8674c70b11..dca96186f9 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.cpp +++ b/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.h b/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.h index 0343eec625..320792d8ff 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.h +++ b/Gems/WhiteBox/Code/Source/WhiteBoxToolApiReflection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBoxUnsupported_precompiled.h b/Gems/WhiteBox/Code/Source/WhiteBoxUnsupported_precompiled.h index 0eb554cc0c..cc8a920d01 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBoxUnsupported_precompiled.h +++ b/Gems/WhiteBox/Code/Source/WhiteBoxUnsupported_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Source/WhiteBox_precompiled.h b/Gems/WhiteBox/Code/Source/WhiteBox_precompiled.h index 64c410e9b1..2f7e53eb31 100644 --- a/Gems/WhiteBox/Code/Source/WhiteBox_precompiled.h +++ b/Gems/WhiteBox/Code/Source/WhiteBox_precompiled.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxComponentTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxComponentTest.cpp index 29dee72d05..dce88122c3 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxComponentTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxComponentTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxEdgeTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxEdgeTest.cpp index c073d44470..d30a7e2283 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxEdgeTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxEdgeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxPhysicsTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxPhysicsTest.cpp index 0723832b23..513c8a90bf 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxPhysicsTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxPhysicsTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxRenderDataTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxRenderDataTest.cpp index 63ae3de4e1..0fb49d7b0f 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxRenderDataTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxRenderDataTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxRuntimeTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxRuntimeTest.cpp index 4e91bbf614..6aca4296e2 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxRuntimeTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxRuntimeTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxSelectionTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxSelectionTest.cpp index f58b2cca14..5f04fc50ad 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxSelectionTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxSelectionTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp index ad915b427f..e53bf1f24f 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxTestFixtures.h b/Gems/WhiteBox/Code/Tests/WhiteBoxTestFixtures.h index fd87b3c1de..b75bc81674 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxTestFixtures.h +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxTestFixtures.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxTestRailsAutomation.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxTestRailsAutomation.cpp index c075f1cfa9..c5e892a990 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxTestRailsAutomation.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxTestRailsAutomation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.cpp index 3172fe5377..80dc272dde 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.h b/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.h index 6a023657a6..e20ef8f639 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.h +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxTestUtil.h @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/Tests/WhiteBoxUVTest.cpp b/Gems/WhiteBox/Code/Tests/WhiteBoxUVTest.cpp index efb5b2d07f..d3be243903 100644 --- a/Gems/WhiteBox/Code/Tests/WhiteBoxUVTest.cpp +++ b/Gems/WhiteBox/Code/Tests/WhiteBoxUVTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Gems/WhiteBox/Code/whitebox_editor_physics_tests_supported_files.cmake b/Gems/WhiteBox/Code/whitebox_editor_physics_tests_supported_files.cmake index 81d5109f9f..a257139abc 100644 --- a/Gems/WhiteBox/Code/whitebox_editor_physics_tests_supported_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_editor_physics_tests_supported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/whitebox_editor_shared_files.cmake b/Gems/WhiteBox/Code/whitebox_editor_shared_files.cmake index 50a21f55ad..299b343130 100644 --- a/Gems/WhiteBox/Code/whitebox_editor_shared_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_editor_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/whitebox_editor_supported_files.cmake b/Gems/WhiteBox/Code/whitebox_editor_supported_files.cmake index a9d0320db3..e01e8d5c78 100644 --- a/Gems/WhiteBox/Code/whitebox_editor_supported_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_editor_supported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/whitebox_editor_tests_supported_files.cmake b/Gems/WhiteBox/Code/whitebox_editor_tests_supported_files.cmake index 4138e27de3..7a38c19040 100644 --- a/Gems/WhiteBox/Code/whitebox_editor_tests_supported_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_editor_tests_supported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/whitebox_shared_files.cmake b/Gems/WhiteBox/Code/whitebox_shared_files.cmake index 5fecda5af9..78a04b97a4 100644 --- a/Gems/WhiteBox/Code/whitebox_shared_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_shared_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/whitebox_supported_files.cmake b/Gems/WhiteBox/Code/whitebox_supported_files.cmake index 1e7b041b87..870885ccfd 100644 --- a/Gems/WhiteBox/Code/whitebox_supported_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_supported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/whitebox_tests_supported_files.cmake b/Gems/WhiteBox/Code/whitebox_tests_supported_files.cmake index b20db20b81..d3180c3b76 100644 --- a/Gems/WhiteBox/Code/whitebox_tests_supported_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_tests_supported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Code/whitebox_unsupported_files.cmake b/Gems/WhiteBox/Code/whitebox_unsupported_files.cmake index 089a07d64a..dac84c280f 100644 --- a/Gems/WhiteBox/Code/whitebox_unsupported_files.cmake +++ b/Gems/WhiteBox/Code/whitebox_unsupported_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Gems/WhiteBox/Editor/Scripts/Cylinder.py b/Gems/WhiteBox/Editor/Scripts/Cylinder.py index fa83d0d61a..c5862e4a01 100755 --- a/Gems/WhiteBox/Editor/Scripts/Cylinder.py +++ b/Gems/WhiteBox/Editor/Scripts/Cylinder.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/Icosahedron.py b/Gems/WhiteBox/Editor/Scripts/Icosahedron.py index 8d94433bbd..04e8d56673 100755 --- a/Gems/WhiteBox/Editor/Scripts/Icosahedron.py +++ b/Gems/WhiteBox/Editor/Scripts/Icosahedron.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/Sphere.py b/Gems/WhiteBox/Editor/Scripts/Sphere.py index aa9b6d6d04..cfa151b916 100755 --- a/Gems/WhiteBox/Editor/Scripts/Sphere.py +++ b/Gems/WhiteBox/Editor/Scripts/Sphere.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/Staircase.py b/Gems/WhiteBox/Editor/Scripts/Staircase.py index 22ea8c2667..0036faadaf 100755 --- a/Gems/WhiteBox/Editor/Scripts/Staircase.py +++ b/Gems/WhiteBox/Editor/Scripts/Staircase.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/Tetrahedron.py b/Gems/WhiteBox/Editor/Scripts/Tetrahedron.py index 2859d707e3..dac33b5b11 100755 --- a/Gems/WhiteBox/Editor/Scripts/Tetrahedron.py +++ b/Gems/WhiteBox/Editor/Scripts/Tetrahedron.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/WhiteBox.py b/Gems/WhiteBox/Editor/Scripts/WhiteBox.py index a408920939..1de7f7ec73 100755 --- a/Gems/WhiteBox/Editor/Scripts/WhiteBox.py +++ b/Gems/WhiteBox/Editor/Scripts/WhiteBox.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/WhiteBoxInit.py b/Gems/WhiteBox/Editor/Scripts/WhiteBoxInit.py index b4ae35a7ba..bc3ab59b3d 100755 --- a/Gems/WhiteBox/Editor/Scripts/WhiteBoxInit.py +++ b/Gems/WhiteBox/Editor/Scripts/WhiteBoxInit.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/WhiteBoxMath.py b/Gems/WhiteBox/Editor/Scripts/WhiteBoxMath.py index b1dec3d8c4..6e29981e6f 100755 --- a/Gems/WhiteBox/Editor/Scripts/WhiteBoxMath.py +++ b/Gems/WhiteBox/Editor/Scripts/WhiteBoxMath.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Gems/WhiteBox/Editor/Scripts/default_shapes.py b/Gems/WhiteBox/Editor/Scripts/default_shapes.py index 2fb74a3dd5..ad8ac06c9d 100755 --- a/Gems/WhiteBox/Editor/Scripts/default_shapes.py +++ b/Gems/WhiteBox/Editor/Scripts/default_shapes.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Registry/setregbuilder.assetprocessor.setreg b/Registry/setregbuilder.assetprocessor.setreg index 7b1165c0f9..c04027ad72 100644 --- a/Registry/setregbuilder.assetprocessor.setreg +++ b/Registry/setregbuilder.assetprocessor.setreg @@ -1,5 +1,5 @@ // -// Copyright (c) Contributors to the Open 3D Engine Project +// 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 // diff --git a/SerializeContextAnalysis.bat b/SerializeContextAnalysis.bat index 663909e1a2..078671b8b8 100644 --- a/SerializeContextAnalysis.bat +++ b/SerializeContextAnalysis.bat @@ -1,7 +1,7 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Templates/AssetGem/Template/CMakeLists.txt b/Templates/AssetGem/Template/CMakeLists.txt index bd18ce90fc..3479c0b34c 100644 --- a/Templates/AssetGem/Template/CMakeLists.txt +++ b/Templates/AssetGem/Template/CMakeLists.txt @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/CMakeLists.txt b/Templates/DefaultGem/Template/CMakeLists.txt index 1a56806069..d00a5f0128 100644 --- a/Templates/DefaultGem/Template/CMakeLists.txt +++ b/Templates/DefaultGem/Template/CMakeLists.txt @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/${NameLower}_editor_files.cmake b/Templates/DefaultGem/Template/Code/${NameLower}_editor_files.cmake index 64659bd40e..a45b0cd905 100644 --- a/Templates/DefaultGem/Template/Code/${NameLower}_editor_files.cmake +++ b/Templates/DefaultGem/Template/Code/${NameLower}_editor_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/${NameLower}_editor_shared_files.cmake b/Templates/DefaultGem/Template/Code/${NameLower}_editor_shared_files.cmake index ecdc928144..aa40de2163 100644 --- a/Templates/DefaultGem/Template/Code/${NameLower}_editor_shared_files.cmake +++ b/Templates/DefaultGem/Template/Code/${NameLower}_editor_shared_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/${NameLower}_editor_tests_files.cmake b/Templates/DefaultGem/Template/Code/${NameLower}_editor_tests_files.cmake index 3d1293d059..1b5f6df9aa 100644 --- a/Templates/DefaultGem/Template/Code/${NameLower}_editor_tests_files.cmake +++ b/Templates/DefaultGem/Template/Code/${NameLower}_editor_tests_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/${NameLower}_files.cmake b/Templates/DefaultGem/Template/Code/${NameLower}_files.cmake index e9e5d571b0..e3c1792ae6 100644 --- a/Templates/DefaultGem/Template/Code/${NameLower}_files.cmake +++ b/Templates/DefaultGem/Template/Code/${NameLower}_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/${NameLower}_shared_files.cmake b/Templates/DefaultGem/Template/Code/${NameLower}_shared_files.cmake index 386f6bace1..3381f0f5e8 100644 --- a/Templates/DefaultGem/Template/Code/${NameLower}_shared_files.cmake +++ b/Templates/DefaultGem/Template/Code/${NameLower}_shared_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/${NameLower}_tests_files.cmake b/Templates/DefaultGem/Template/Code/${NameLower}_tests_files.cmake index c7d93fdf34..8e618957df 100644 --- a/Templates/DefaultGem/Template/Code/${NameLower}_tests_files.cmake +++ b/Templates/DefaultGem/Template/Code/${NameLower}_tests_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/CMakeLists.txt b/Templates/DefaultGem/Template/Code/CMakeLists.txt index 9d69aa77a4..015c2b28fb 100644 --- a/Templates/DefaultGem/Template/Code/CMakeLists.txt +++ b/Templates/DefaultGem/Template/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Include/${Name}/${Name}Bus.h b/Templates/DefaultGem/Template/Code/Include/${Name}/${Name}Bus.h index 92e2ea6f45..2b6b2f938d 100644 --- a/Templates/DefaultGem/Template/Code/Include/${Name}/${Name}Bus.h +++ b/Templates/DefaultGem/Template/Code/Include/${Name}/${Name}Bus.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_android_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_android_files.cmake index 89dde8670b..bdb5876b70 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_android_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_android_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake index 89dde8670b..bdb5876b70 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Android/PAL_android.cmake b/Templates/DefaultGem/Template/Code/Platform/Android/PAL_android.cmake index 0a6f76f99e..4440f7083e 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Android/PAL_android.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake index 866a83c820..459af43c44 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake index 866a83c820..459af43c44 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Linux/PAL_linux.cmake b/Templates/DefaultGem/Template/Code/Platform/Linux/PAL_linux.cmake index 5631708717..eb475b256e 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Linux/PAL_linux.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake index e0611bef93..1dd04d1b58 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake index e0611bef93..1dd04d1b58 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Mac/PAL_mac.cmake b/Templates/DefaultGem/Template/Code/Platform/Mac/PAL_mac.cmake index 5631708717..eb475b256e 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Mac/PAL_mac.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake index fc1345a894..c9c61b2b25 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake b/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake index fc1345a894..c9c61b2b25 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/Windows/PAL_windows.cmake b/Templates/DefaultGem/Template/Code/Platform/Windows/PAL_windows.cmake index 5631708717..eb475b256e 100644 --- a/Templates/DefaultGem/Template/Code/Platform/Windows/PAL_windows.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake b/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake index 4d13d420ff..10dc197857 100644 --- a/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake b/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake index 4d13d420ff..10dc197857 100644 --- a/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Platform/iOS/PAL_ios.cmake b/Templates/DefaultGem/Template/Code/Platform/iOS/PAL_ios.cmake index 5631708717..eb475b256e 100644 --- a/Templates/DefaultGem/Template/Code/Platform/iOS/PAL_ios.cmake +++ b/Templates/DefaultGem/Template/Code/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Code/Source/${Name}EditorModule.cpp b/Templates/DefaultGem/Template/Code/Source/${Name}EditorModule.cpp index 88a2f804d7..bff1c61314 100644 --- a/Templates/DefaultGem/Template/Code/Source/${Name}EditorModule.cpp +++ b/Templates/DefaultGem/Template/Code/Source/${Name}EditorModule.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.cpp b/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.cpp index 6265a1dc35..2c3668c69a 100644 --- a/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.cpp +++ b/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.h b/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.h index 8111b1b636..1ea6b66276 100644 --- a/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.h +++ b/Templates/DefaultGem/Template/Code/Source/${Name}EditorSystemComponent.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Source/${Name}Module.cpp b/Templates/DefaultGem/Template/Code/Source/${Name}Module.cpp index 6aef3dbd31..bedbaa7305 100644 --- a/Templates/DefaultGem/Template/Code/Source/${Name}Module.cpp +++ b/Templates/DefaultGem/Template/Code/Source/${Name}Module.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Source/${Name}ModuleInterface.h b/Templates/DefaultGem/Template/Code/Source/${Name}ModuleInterface.h index 29e3f4c43d..ff547443ac 100644 --- a/Templates/DefaultGem/Template/Code/Source/${Name}ModuleInterface.h +++ b/Templates/DefaultGem/Template/Code/Source/${Name}ModuleInterface.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.cpp b/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.cpp index 2138f034d9..40a60f2fb9 100644 --- a/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.cpp +++ b/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.h b/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.h index 6f0455418f..e0d69c1a0b 100644 --- a/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.h +++ b/Templates/DefaultGem/Template/Code/Source/${Name}SystemComponent.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Tests/${Name}EditorTest.cpp b/Templates/DefaultGem/Template/Code/Tests/${Name}EditorTest.cpp index 3aa2be49a6..a905f1814a 100644 --- a/Templates/DefaultGem/Template/Code/Tests/${Name}EditorTest.cpp +++ b/Templates/DefaultGem/Template/Code/Tests/${Name}EditorTest.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Code/Tests/${Name}Test.cpp b/Templates/DefaultGem/Template/Code/Tests/${Name}Test.cpp index 3aa2be49a6..a905f1814a 100644 --- a/Templates/DefaultGem/Template/Code/Tests/${Name}Test.cpp +++ b/Templates/DefaultGem/Template/Code/Tests/${Name}Test.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultGem/Template/Platform/Android/android_gem.cmake b/Templates/DefaultGem/Template/Platform/Android/android_gem.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultGem/Template/Platform/Android/android_gem.cmake +++ b/Templates/DefaultGem/Template/Platform/Android/android_gem.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Platform/Linux/linux_gem.cmake b/Templates/DefaultGem/Template/Platform/Linux/linux_gem.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultGem/Template/Platform/Linux/linux_gem.cmake +++ b/Templates/DefaultGem/Template/Platform/Linux/linux_gem.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Platform/Mac/mac_gem.cmake b/Templates/DefaultGem/Template/Platform/Mac/mac_gem.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultGem/Template/Platform/Mac/mac_gem.cmake +++ b/Templates/DefaultGem/Template/Platform/Mac/mac_gem.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Platform/Windows/windows_gem.cmake b/Templates/DefaultGem/Template/Platform/Windows/windows_gem.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultGem/Template/Platform/Windows/windows_gem.cmake +++ b/Templates/DefaultGem/Template/Platform/Windows/windows_gem.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultGem/Template/Platform/iOS/ios_gem.cmake b/Templates/DefaultGem/Template/Platform/iOS/ios_gem.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultGem/Template/Platform/iOS/ios_gem.cmake +++ b/Templates/DefaultGem/Template/Platform/iOS/ios_gem.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/CMakeLists.txt b/Templates/DefaultProject/Template/CMakeLists.txt index 4f3a2cc1a3..cdd5f786a7 100644 --- a/Templates/DefaultProject/Template/CMakeLists.txt +++ b/Templates/DefaultProject/Template/CMakeLists.txt @@ -1,6 +1,6 @@ # {BEGIN_LICENSE} # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/${NameLower}_files.cmake b/Templates/DefaultProject/Template/Code/${NameLower}_files.cmake index a0906325c8..76f2b9a978 100644 --- a/Templates/DefaultProject/Template/Code/${NameLower}_files.cmake +++ b/Templates/DefaultProject/Template/Code/${NameLower}_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/${NameLower}_shared_files.cmake b/Templates/DefaultProject/Template/Code/${NameLower}_shared_files.cmake index 386f6bace1..3381f0f5e8 100644 --- a/Templates/DefaultProject/Template/Code/${NameLower}_shared_files.cmake +++ b/Templates/DefaultProject/Template/Code/${NameLower}_shared_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/CMakeLists.txt b/Templates/DefaultProject/Template/Code/CMakeLists.txt index 95d8d6dc4b..8955d289ad 100644 --- a/Templates/DefaultProject/Template/Code/CMakeLists.txt +++ b/Templates/DefaultProject/Template/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Include/${Name}/${Name}Bus.h b/Templates/DefaultProject/Template/Code/Include/${Name}/${Name}Bus.h index 92e2ea6f45..2b6b2f938d 100644 --- a/Templates/DefaultProject/Template/Code/Include/${Name}/${Name}Bus.h +++ b/Templates/DefaultProject/Template/Code/Include/${Name}/${Name}Bus.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake index ad75435f86..7a80ce0e1b 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Android/PAL_android.cmake b/Templates/DefaultProject/Template/Code/Platform/Android/PAL_android.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Android/PAL_android.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake index 104264ec86..c829a7120c 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Linux/PAL_linux.cmake b/Templates/DefaultProject/Template/Code/Platform/Linux/PAL_linux.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Linux/PAL_linux.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake index 5e4d3d68fc..e892e058dc 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake index c794ebc3d5..fed1903c0e 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Mac/PAL_mac.cmake b/Templates/DefaultProject/Template/Code/Platform/Mac/PAL_mac.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Mac/PAL_mac.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake b/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake index a225176144..d577c56b1e 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/Windows/PAL_windows.cmake b/Templates/DefaultProject/Template/Code/Platform/Windows/PAL_windows.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/DefaultProject/Template/Code/Platform/Windows/PAL_windows.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake b/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake index 3e7d17477c..b9a8d49b48 100644 --- a/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake b/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Platform/iOS/PAL_ios.cmake b/Templates/DefaultProject/Template/Code/Platform/iOS/PAL_ios.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/DefaultProject/Template/Code/Platform/iOS/PAL_ios.cmake +++ b/Templates/DefaultProject/Template/Code/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Code/Source/${Name}Module.cpp b/Templates/DefaultProject/Template/Code/Source/${Name}Module.cpp index 5bed0f1c30..a9527ae79d 100644 --- a/Templates/DefaultProject/Template/Code/Source/${Name}Module.cpp +++ b/Templates/DefaultProject/Template/Code/Source/${Name}Module.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.cpp b/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.cpp index 627ca41431..576cd01203 100644 --- a/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.cpp +++ b/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.h b/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.h index c492dfc4c7..b25b0106b6 100644 --- a/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.h +++ b/Templates/DefaultProject/Template/Code/Source/${Name}SystemComponent.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultProject/Template/Code/enabled_gems.cmake b/Templates/DefaultProject/Template/Code/enabled_gems.cmake index 5cab2e09da..99c3b89895 100644 --- a/Templates/DefaultProject/Template/Code/enabled_gems.cmake +++ b/Templates/DefaultProject/Template/Code/enabled_gems.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/EngineFinder.cmake b/Templates/DefaultProject/Template/EngineFinder.cmake index d1c565a2e6..de109df12d 100644 --- a/Templates/DefaultProject/Template/EngineFinder.cmake +++ b/Templates/DefaultProject/Template/EngineFinder.cmake @@ -1,6 +1,6 @@ # {BEGIN_LICENSE} # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Platform/Android/android_project.cmake b/Templates/DefaultProject/Template/Platform/Android/android_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultProject/Template/Platform/Android/android_project.cmake +++ b/Templates/DefaultProject/Template/Platform/Android/android_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Platform/Linux/linux_project.cmake b/Templates/DefaultProject/Template/Platform/Linux/linux_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultProject/Template/Platform/Linux/linux_project.cmake +++ b/Templates/DefaultProject/Template/Platform/Linux/linux_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Platform/Mac/mac_project.cmake b/Templates/DefaultProject/Template/Platform/Mac/mac_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultProject/Template/Platform/Mac/mac_project.cmake +++ b/Templates/DefaultProject/Template/Platform/Mac/mac_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Platform/Windows/windows_project.cmake b/Templates/DefaultProject/Template/Platform/Windows/windows_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultProject/Template/Platform/Windows/windows_project.cmake +++ b/Templates/DefaultProject/Template/Platform/Windows/windows_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/Platform/iOS/ios_project.cmake b/Templates/DefaultProject/Template/Platform/iOS/ios_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/DefaultProject/Template/Platform/iOS/ios_project.cmake +++ b/Templates/DefaultProject/Template/Platform/iOS/ios_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/DefaultProject/Template/ShaderLib/scenesrg.srgi b/Templates/DefaultProject/Template/ShaderLib/scenesrg.srgi index ce5025b704..f02c84d04c 100644 --- a/Templates/DefaultProject/Template/ShaderLib/scenesrg.srgi +++ b/Templates/DefaultProject/Template/ShaderLib/scenesrg.srgi @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultProject/Template/ShaderLib/viewsrg.srgi b/Templates/DefaultProject/Template/ShaderLib/viewsrg.srgi index 529f257f9b..dcaed96cab 100644 --- a/Templates/DefaultProject/Template/ShaderLib/viewsrg.srgi +++ b/Templates/DefaultProject/Template/ShaderLib/viewsrg.srgi @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultProject/Template/Shaders/CommonVS.azsli b/Templates/DefaultProject/Template/Shaders/CommonVS.azsli index bff8c61f03..3ff6751c5e 100644 --- a/Templates/DefaultProject/Template/Shaders/CommonVS.azsli +++ b/Templates/DefaultProject/Template/Shaders/CommonVS.azsli @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/DefaultProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli b/Templates/DefaultProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli index d317ab7339..f2c1224387 100644 --- a/Templates/DefaultProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli +++ b/Templates/DefaultProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/CMakeLists.txt b/Templates/MinimalProject/Template/CMakeLists.txt index 4f3a2cc1a3..cdd5f786a7 100644 --- a/Templates/MinimalProject/Template/CMakeLists.txt +++ b/Templates/MinimalProject/Template/CMakeLists.txt @@ -1,6 +1,6 @@ # {BEGIN_LICENSE} # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/${NameLower}_files.cmake b/Templates/MinimalProject/Template/Code/${NameLower}_files.cmake index a0906325c8..76f2b9a978 100644 --- a/Templates/MinimalProject/Template/Code/${NameLower}_files.cmake +++ b/Templates/MinimalProject/Template/Code/${NameLower}_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/${NameLower}_shared_files.cmake b/Templates/MinimalProject/Template/Code/${NameLower}_shared_files.cmake index 386f6bace1..3381f0f5e8 100644 --- a/Templates/MinimalProject/Template/Code/${NameLower}_shared_files.cmake +++ b/Templates/MinimalProject/Template/Code/${NameLower}_shared_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/CMakeLists.txt b/Templates/MinimalProject/Template/Code/CMakeLists.txt index 95d8d6dc4b..8955d289ad 100644 --- a/Templates/MinimalProject/Template/Code/CMakeLists.txt +++ b/Templates/MinimalProject/Template/Code/CMakeLists.txt @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Include/${Name}/${Name}Bus.h b/Templates/MinimalProject/Template/Code/Include/${Name}/${Name}Bus.h index 1e8318d17d..26a00b995a 100644 --- a/Templates/MinimalProject/Template/Code/Include/${Name}/${Name}Bus.h +++ b/Templates/MinimalProject/Template/Code/Include/${Name}/${Name}Bus.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake index ad75435f86..7a80ce0e1b 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_android_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Android/${NameLower}_shared_android_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Android/PAL_android.cmake b/Templates/MinimalProject/Template/Code/Platform/Android/PAL_android.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Android/PAL_android.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake index 104264ec86..c829a7120c 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_linux_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Linux/${NameLower}_shared_linux_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Linux/PAL_linux.cmake b/Templates/MinimalProject/Template/Code/Platform/Linux/PAL_linux.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Linux/PAL_linux.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake index 5e4d3d68fc..e892e058dc 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_mac_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake index c794ebc3d5..fed1903c0e 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Mac/${NameLower}_shared_mac_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Mac/PAL_mac.cmake b/Templates/MinimalProject/Template/Code/Platform/Mac/PAL_mac.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Mac/PAL_mac.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_shared_windows_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake b/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake index a225176144..d577c56b1e 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Windows/${NameLower}_windows_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/Windows/PAL_windows.cmake b/Templates/MinimalProject/Template/Code/Platform/Windows/PAL_windows.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/MinimalProject/Template/Code/Platform/Windows/PAL_windows.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake b/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake index 3e7d17477c..b9a8d49b48 100644 --- a/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_ios_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake b/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake index 9c13bdfa30..c39c8e4a48 100644 --- a/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/iOS/${NameLower}_shared_ios_files.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Platform/iOS/PAL_ios.cmake b/Templates/MinimalProject/Template/Code/Platform/iOS/PAL_ios.cmake index c6850c7c38..c0888aaced 100644 --- a/Templates/MinimalProject/Template/Code/Platform/iOS/PAL_ios.cmake +++ b/Templates/MinimalProject/Template/Code/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Code/Source/${Name}Module.cpp b/Templates/MinimalProject/Template/Code/Source/${Name}Module.cpp index 5bed0f1c30..a9527ae79d 100644 --- a/Templates/MinimalProject/Template/Code/Source/${Name}Module.cpp +++ b/Templates/MinimalProject/Template/Code/Source/${Name}Module.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.cpp b/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.cpp index 6ba14c6ef4..6b804591cb 100644 --- a/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.cpp +++ b/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.cpp @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.h b/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.h index c492dfc4c7..b25b0106b6 100644 --- a/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.h +++ b/Templates/MinimalProject/Template/Code/Source/${Name}SystemComponent.h @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/Code/enabled_gems.cmake b/Templates/MinimalProject/Template/Code/enabled_gems.cmake index aea155a78e..13774c2831 100644 --- a/Templates/MinimalProject/Template/Code/enabled_gems.cmake +++ b/Templates/MinimalProject/Template/Code/enabled_gems.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/EngineFinder.cmake b/Templates/MinimalProject/Template/EngineFinder.cmake index d1c565a2e6..de109df12d 100644 --- a/Templates/MinimalProject/Template/EngineFinder.cmake +++ b/Templates/MinimalProject/Template/EngineFinder.cmake @@ -1,6 +1,6 @@ # {BEGIN_LICENSE} # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Platform/Android/android_project.cmake b/Templates/MinimalProject/Template/Platform/Android/android_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/MinimalProject/Template/Platform/Android/android_project.cmake +++ b/Templates/MinimalProject/Template/Platform/Android/android_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Platform/Linux/linux_project.cmake b/Templates/MinimalProject/Template/Platform/Linux/linux_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/MinimalProject/Template/Platform/Linux/linux_project.cmake +++ b/Templates/MinimalProject/Template/Platform/Linux/linux_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Platform/Mac/mac_project.cmake b/Templates/MinimalProject/Template/Platform/Mac/mac_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/MinimalProject/Template/Platform/Mac/mac_project.cmake +++ b/Templates/MinimalProject/Template/Platform/Mac/mac_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Platform/Windows/windows_project.cmake b/Templates/MinimalProject/Template/Platform/Windows/windows_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/MinimalProject/Template/Platform/Windows/windows_project.cmake +++ b/Templates/MinimalProject/Template/Platform/Windows/windows_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/Platform/iOS/ios_project.cmake b/Templates/MinimalProject/Template/Platform/iOS/ios_project.cmake index d52d53f6dc..13f237b63c 100644 --- a/Templates/MinimalProject/Template/Platform/iOS/ios_project.cmake +++ b/Templates/MinimalProject/Template/Platform/iOS/ios_project.cmake @@ -1,5 +1,5 @@ # {BEGIN_LICENSE} -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Templates/MinimalProject/Template/ShaderLib/scenesrg.srgi b/Templates/MinimalProject/Template/ShaderLib/scenesrg.srgi index ce5025b704..f02c84d04c 100644 --- a/Templates/MinimalProject/Template/ShaderLib/scenesrg.srgi +++ b/Templates/MinimalProject/Template/ShaderLib/scenesrg.srgi @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/ShaderLib/viewsrg.srgi b/Templates/MinimalProject/Template/ShaderLib/viewsrg.srgi index 529f257f9b..dcaed96cab 100644 --- a/Templates/MinimalProject/Template/ShaderLib/viewsrg.srgi +++ b/Templates/MinimalProject/Template/ShaderLib/viewsrg.srgi @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/Shaders/CommonVS.azsli b/Templates/MinimalProject/Template/Shaders/CommonVS.azsli index bff8c61f03..3ff6751c5e 100644 --- a/Templates/MinimalProject/Template/Shaders/CommonVS.azsli +++ b/Templates/MinimalProject/Template/Shaders/CommonVS.azsli @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Templates/MinimalProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli b/Templates/MinimalProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli index d317ab7339..f2c1224387 100644 --- a/Templates/MinimalProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli +++ b/Templates/MinimalProject/Template/Shaders/ShaderResourceGroups/SceneSrg.azsli @@ -1,6 +1,6 @@ // {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/Tools/EventLogTools/EventLogger/Reader.py b/Tools/EventLogTools/EventLogger/Reader.py index e2f5f3ae59..b89db1c603 100755 --- a/Tools/EventLogTools/EventLogger/Reader.py +++ b/Tools/EventLogTools/EventLogger/Reader.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/EventLogTools/EventLogger/Utils.py b/Tools/EventLogTools/EventLogger/Utils.py index 06f253eca9..dd214e33d6 100755 --- a/Tools/EventLogTools/EventLogger/Utils.py +++ b/Tools/EventLogTools/EventLogger/Utils.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/EventLogTools/EventLogger/__init__.py b/Tools/EventLogTools/EventLogger/__init__.py index ce5d67d66d..e1b5394b94 100755 --- a/Tools/EventLogTools/EventLogger/__init__.py +++ b/Tools/EventLogTools/EventLogger/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/EventLogTools/MessagePrinter.py b/Tools/EventLogTools/MessagePrinter.py index 43b1e90bc0..a450f7ebd8 100755 --- a/Tools/EventLogTools/MessagePrinter.py +++ b/Tools/EventLogTools/MessagePrinter.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/EventLogTools/TraceViewer.py b/Tools/EventLogTools/TraceViewer.py index ffb296fda0..8f46653083 100755 --- a/Tools/EventLogTools/TraceViewer.py +++ b/Tools/EventLogTools/TraceViewer.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/LauncherTestTools/__init__.py b/Tools/LauncherTestTools/__init__.py index ce5bb8503d..99aac69543 100755 --- a/Tools/LauncherTestTools/__init__.py +++ b/Tools/LauncherTestTools/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/Tools/LauncherTestTools/device_farm_create_bundle.py b/Tools/LauncherTestTools/device_farm_create_bundle.py index 027f3a63eb..793bc109af 100755 --- a/Tools/LauncherTestTools/device_farm_create_bundle.py +++ b/Tools/LauncherTestTools/device_farm_create_bundle.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LauncherTestTools/device_farm_create_bundle_startergame.bat b/Tools/LauncherTestTools/device_farm_create_bundle_startergame.bat index ec6434cc86..aca4458ac5 100644 --- a/Tools/LauncherTestTools/device_farm_create_bundle_startergame.bat +++ b/Tools/LauncherTestTools/device_farm_create_bundle_startergame.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Tools/LauncherTestTools/device_farm_schedule_run.py b/Tools/LauncherTestTools/device_farm_schedule_run.py index 355cec2158..50928cd196 100755 --- a/Tools/LauncherTestTools/device_farm_schedule_run.py +++ b/Tools/LauncherTestTools/device_farm_schedule_run.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LauncherTestTools/device_farm_schedule_run_android_startergame.bat b/Tools/LauncherTestTools/device_farm_schedule_run_android_startergame.bat index 7bedce20b2..83bbaed213 100644 --- a/Tools/LauncherTestTools/device_farm_schedule_run_android_startergame.bat +++ b/Tools/LauncherTestTools/device_farm_schedule_run_android_startergame.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Tools/LauncherTestTools/device_farm_schedule_run_ios_startergame.sh b/Tools/LauncherTestTools/device_farm_schedule_run_ios_startergame.sh index 1e79a75e03..1010c8638e 100755 --- a/Tools/LauncherTestTools/device_farm_schedule_run_ios_startergame.sh +++ b/Tools/LauncherTestTools/device_farm_schedule_run_ios_startergame.sh @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/LauncherTestTools/run_launcher_tests.py b/Tools/LauncherTestTools/run_launcher_tests.py index d54de2368b..8dbc91ff66 100755 --- a/Tools/LauncherTestTools/run_launcher_tests.py +++ b/Tools/LauncherTestTools/run_launcher_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LauncherTestTools/run_launcher_tests_android.py b/Tools/LauncherTestTools/run_launcher_tests_android.py index 3d1226e7d8..bf1311924e 100755 --- a/Tools/LauncherTestTools/run_launcher_tests_android.py +++ b/Tools/LauncherTestTools/run_launcher_tests_android.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LauncherTestTools/run_launcher_tests_ios.py b/Tools/LauncherTestTools/run_launcher_tests_ios.py index 79911362d4..844c7ea9b7 100755 --- a/Tools/LauncherTestTools/run_launcher_tests_ios.py +++ b/Tools/LauncherTestTools/run_launcher_tests_ios.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LauncherTestTools/run_launcher_tests_local_validation.py b/Tools/LauncherTestTools/run_launcher_tests_local_validation.py index 26ed6afea5..175e809ce2 100755 --- a/Tools/LauncherTestTools/run_launcher_tests_local_validation.py +++ b/Tools/LauncherTestTools/run_launcher_tests_local_validation.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LauncherTestTools/run_launcher_tests_win.py b/Tools/LauncherTestTools/run_launcher_tests_win.py index df00658838..ba6e42b8e4 100755 --- a/Tools/LauncherTestTools/run_launcher_tests_win.py +++ b/Tools/LauncherTestTools/run_launcher_tests_win.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LauncherTestTools/run_local_launcher_test_win_automatedtesting.bat b/Tools/LauncherTestTools/run_local_launcher_test_win_automatedtesting.bat index 1f02f1e35b..0fc8ada332 100644 --- a/Tools/LauncherTestTools/run_local_launcher_test_win_automatedtesting.bat +++ b/Tools/LauncherTestTools/run_local_launcher_test_win_automatedtesting.bat @@ -1,6 +1,6 @@ @echo off REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Tools/LyTestTools/README.txt b/Tools/LyTestTools/README.txt index 76bf7697db..cec1698c57 100644 --- a/Tools/LyTestTools/README.txt +++ b/Tools/LyTestTools/README.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/__init__.py b/Tools/LyTestTools/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/__init__.py +++ b/Tools/LyTestTools/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/__init__.py b/Tools/LyTestTools/ly_test_tools/__init__.py index 3dc1a8241b..aa4d2e157a 100755 --- a/Tools/LyTestTools/ly_test_tools/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/__init__.py b/Tools/LyTestTools/ly_test_tools/_internal/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/_internal/log/__init__.py b/Tools/LyTestTools/ly_test_tools/_internal/log/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/log/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/log/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/_internal/log/py_logging_util.py b/Tools/LyTestTools/ly_test_tools/_internal/log/py_logging_util.py index f9fcb27f80..fe76d8c363 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/log/py_logging_util.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/log/py_logging_util.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/__init__.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/abstract_resource_locator.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/abstract_resource_locator.py index ec6feee80d..3417311ef8 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/abstract_resource_locator.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/abstract_resource_locator.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/artifact_manager.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/artifact_manager.py index 3fcefd2e83..1f42af37a1 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/artifact_manager.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/artifact_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/ly_process_killer.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/ly_process_killer.py index 7e42ce276a..4e33157061 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/ly_process_killer.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/ly_process_killer.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/__init__.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/mac.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/mac.py index 54d16c8e62..663fd585b5 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/mac.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/mac.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py index f665f0be7e..4b9bfb2594 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/platforms/windows.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/managers/workspace.py b/Tools/LyTestTools/ly_test_tools/_internal/managers/workspace.py index 73a3d68850..b6af18a148 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/managers/workspace.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/managers/workspace.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/__init__.py b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/__init__.py index b339ff96c7..5c88cc8ce8 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/case_id.py b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/case_id.py index 6c9f3ee21d..adf647a519 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/case_id.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/case_id.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/failed_test_rerun_command.py b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/failed_test_rerun_command.py index 62370378ee..31ad28c5b6 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/failed_test_rerun_command.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/failed_test_rerun_command.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/terminal_report.py b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/terminal_report.py index 33e13d5177..551d9d411a 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/terminal_report.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/terminal_report.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/test_tools_fixtures.py b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/test_tools_fixtures.py index 4459f423d2..0446a5143f 100755 --- a/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/test_tools_fixtures.py +++ b/Tools/LyTestTools/ly_test_tools/_internal/pytest_plugin/test_tools_fixtures.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/builtin/__init__.py b/Tools/LyTestTools/ly_test_tools/builtin/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/builtin/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/builtin/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/builtin/helpers.py b/Tools/LyTestTools/ly_test_tools/builtin/helpers.py index 3c71bb6f8b..4343d65101 100755 --- a/Tools/LyTestTools/ly_test_tools/builtin/helpers.py +++ b/Tools/LyTestTools/ly_test_tools/builtin/helpers.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/environment/__init__.py b/Tools/LyTestTools/ly_test_tools/environment/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/environment/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/environment/file_system.py b/Tools/LyTestTools/ly_test_tools/environment/file_system.py index a27cebc349..41b5104cb5 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/file_system.py +++ b/Tools/LyTestTools/ly_test_tools/environment/file_system.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/environment/process_utils.py b/Tools/LyTestTools/ly_test_tools/environment/process_utils.py index 97558cdac6..63e9dc874c 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/process_utils.py +++ b/Tools/LyTestTools/ly_test_tools/environment/process_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py b/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py index 90e4ce2b2b..8f8a7e02fb 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py +++ b/Tools/LyTestTools/ly_test_tools/environment/reg_cleaner.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/environment/waiter.py b/Tools/LyTestTools/ly_test_tools/environment/waiter.py index 8bdffaf51a..4c37fda433 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/waiter.py +++ b/Tools/LyTestTools/ly_test_tools/environment/waiter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/environment/watchdog.py b/Tools/LyTestTools/ly_test_tools/environment/watchdog.py index e2ec29b30e..1091ee201d 100755 --- a/Tools/LyTestTools/ly_test_tools/environment/watchdog.py +++ b/Tools/LyTestTools/ly_test_tools/environment/watchdog.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/image/__init__.py b/Tools/LyTestTools/ly_test_tools/image/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/image/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/image/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/image/image_capture.py b/Tools/LyTestTools/ly_test_tools/image/image_capture.py index c781b5c02c..687931b65d 100755 --- a/Tools/LyTestTools/ly_test_tools/image/image_capture.py +++ b/Tools/LyTestTools/ly_test_tools/image/image_capture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/image/screenshot_compare_qssim.py b/Tools/LyTestTools/ly_test_tools/image/screenshot_compare_qssim.py index f1d299c02e..854ab74cfb 100755 --- a/Tools/LyTestTools/ly_test_tools/image/screenshot_compare_qssim.py +++ b/Tools/LyTestTools/ly_test_tools/image/screenshot_compare_qssim.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/launchers/__init__.py b/Tools/LyTestTools/ly_test_tools/launchers/__init__.py index efa4a83d6f..07ebf663fb 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/launchers/exceptions.py b/Tools/LyTestTools/ly_test_tools/launchers/exceptions.py index 62f1562dd6..89dcafc286 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/exceptions.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/exceptions.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/launchers/launcher_helper.py b/Tools/LyTestTools/ly_test_tools/launchers/launcher_helper.py index 404c3b1a1a..0db87d731c 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/launcher_helper.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/launcher_helper.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/__init__.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/__init__.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/launcher.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/launcher.py index c5134d707a..b6ec30db88 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/launcher.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/android/launcher.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/base.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/base.py index 9100762561..8c44a02061 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/base.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/base.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/__init__.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/launcher.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/launcher.py index 96111d2fc7..69da1379b5 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/launcher.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/mac/launcher.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/__init__.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py index 0e19030fc6..86e37f96bb 100755 --- a/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py +++ b/Tools/LyTestTools/ly_test_tools/launchers/platforms/win/launcher.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/log/__init__.py b/Tools/LyTestTools/ly_test_tools/log/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/log/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/log/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/log/log_monitor.py b/Tools/LyTestTools/ly_test_tools/log/log_monitor.py index ceb624da52..a2556fa41d 100755 --- a/Tools/LyTestTools/ly_test_tools/log/log_monitor.py +++ b/Tools/LyTestTools/ly_test_tools/log/log_monitor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/mobile/__init__.py b/Tools/LyTestTools/ly_test_tools/mobile/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/mobile/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/mobile/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/mobile/android.py b/Tools/LyTestTools/ly_test_tools/mobile/android.py index b74743c989..bbc1e39f3f 100755 --- a/Tools/LyTestTools/ly_test_tools/mobile/android.py +++ b/Tools/LyTestTools/ly_test_tools/mobile/android.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/o3de/__init__.py b/Tools/LyTestTools/ly_test_tools/o3de/__init__.py index a3a4055d50..e200fa77d0 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/o3de/ap_log_parser.py b/Tools/LyTestTools/ly_test_tools/o3de/ap_log_parser.py index 11059b313c..41c8dd772c 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/ap_log_parser.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/ap_log_parser.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/o3de/asset_processor.py b/Tools/LyTestTools/ly_test_tools/o3de/asset_processor.py index 937d404af5..bc64d98b01 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/asset_processor.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/asset_processor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_config_util.py b/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_config_util.py index 874650e267..dfeaaa61dd 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_config_util.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_config_util.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_utils.py b/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_utils.py index 46bc4612bb..2b6ff8292e 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_utils.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/asset_processor_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/o3de/ini_configuration_util.py b/Tools/LyTestTools/ly_test_tools/o3de/ini_configuration_util.py index f1999d52c2..e64df93431 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/ini_configuration_util.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/ini_configuration_util.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py b/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py index 0f0be73bc5..39371f35dc 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/pipeline_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/o3de/settings.py b/Tools/LyTestTools/ly_test_tools/o3de/settings.py index 82625727d0..e8e1a66300 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/settings.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/settings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/o3de/shader_compiler.py b/Tools/LyTestTools/ly_test_tools/o3de/shader_compiler.py index aadf031cc0..d7f8a4ca1d 100644 --- a/Tools/LyTestTools/ly_test_tools/o3de/shader_compiler.py +++ b/Tools/LyTestTools/ly_test_tools/o3de/shader_compiler.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/ly_test_tools/report/__init__.py b/Tools/LyTestTools/ly_test_tools/report/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/ly_test_tools/report/__init__.py +++ b/Tools/LyTestTools/ly_test_tools/report/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/ly_test_tools/report/rad_telemetry.py b/Tools/LyTestTools/ly_test_tools/report/rad_telemetry.py index df916dde86..61d84e2fac 100755 --- a/Tools/LyTestTools/ly_test_tools/report/rad_telemetry.py +++ b/Tools/LyTestTools/ly_test_tools/report/rad_telemetry.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/setup.py b/Tools/LyTestTools/setup.py index f754cf2999..4260974f68 100755 --- a/Tools/LyTestTools/setup.py +++ b/Tools/LyTestTools/setup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/CMakeLists.txt b/Tools/LyTestTools/tests/CMakeLists.txt index c64739a2f1..5e57cbf123 100644 --- a/Tools/LyTestTools/tests/CMakeLists.txt +++ b/Tools/LyTestTools/tests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/LyTestTools/tests/example/__init__.py b/Tools/LyTestTools/tests/example/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/tests/example/__init__.py +++ b/Tools/LyTestTools/tests/example/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/example/test_system_example.py b/Tools/LyTestTools/tests/example/test_system_example.py index f940719b3d..b1623d4416 100755 --- a/Tools/LyTestTools/tests/example/test_system_example.py +++ b/Tools/LyTestTools/tests/example/test_system_example.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/integ/__init__.py b/Tools/LyTestTools/tests/integ/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/tests/integ/__init__.py +++ b/Tools/LyTestTools/tests/integ/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/integ/sanity_tests.py b/Tools/LyTestTools/tests/integ/sanity_tests.py index 9518bd58e9..c6c5ce0c31 100755 --- a/Tools/LyTestTools/tests/integ/sanity_tests.py +++ b/Tools/LyTestTools/tests/integ/sanity_tests.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/integ/test_process_utils.py b/Tools/LyTestTools/tests/integ/test_process_utils.py index 166bf5b14a..023b91a2d8 100755 --- a/Tools/LyTestTools/tests/integ/test_process_utils.py +++ b/Tools/LyTestTools/tests/integ/test_process_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/integ/test_regression.py b/Tools/LyTestTools/tests/integ/test_regression.py index 780a4d7f2f..2c797362ec 100755 --- a/Tools/LyTestTools/tests/integ/test_regression.py +++ b/Tools/LyTestTools/tests/integ/test_regression.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/__init__.py b/Tools/LyTestTools/tests/unit/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/LyTestTools/tests/unit/__init__.py +++ b/Tools/LyTestTools/tests/unit/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/unit/test_abstract_resource_locator.py b/Tools/LyTestTools/tests/unit/test_abstract_resource_locator.py index f40f9782f5..ed7382d36e 100755 --- a/Tools/LyTestTools/tests/unit/test_abstract_resource_locator.py +++ b/Tools/LyTestTools/tests/unit/test_abstract_resource_locator.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_artifact_manager.py b/Tools/LyTestTools/tests/unit/test_artifact_manager.py index d0f2213426..fba9029148 100755 --- a/Tools/LyTestTools/tests/unit/test_artifact_manager.py +++ b/Tools/LyTestTools/tests/unit/test_artifact_manager.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_asset_processor.py b/Tools/LyTestTools/tests/unit/test_asset_processor.py index acf37364da..ed7768a3c1 100755 --- a/Tools/LyTestTools/tests/unit/test_asset_processor.py +++ b/Tools/LyTestTools/tests/unit/test_asset_processor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_builtin_helpers.py b/Tools/LyTestTools/tests/unit/test_builtin_helpers.py index ab4e78f5a2..57f8af8cfc 100755 --- a/Tools/LyTestTools/tests/unit/test_builtin_helpers.py +++ b/Tools/LyTestTools/tests/unit/test_builtin_helpers.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_case_id.py b/Tools/LyTestTools/tests/unit/test_case_id.py index 4dc6295bf6..20b3a0a408 100755 --- a/Tools/LyTestTools/tests/unit/test_case_id.py +++ b/Tools/LyTestTools/tests/unit/test_case_id.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_failed_rerun_command.py b/Tools/LyTestTools/tests/unit/test_failed_rerun_command.py index 80acf96198..d29a0e5ec7 100755 --- a/Tools/LyTestTools/tests/unit/test_failed_rerun_command.py +++ b/Tools/LyTestTools/tests/unit/test_failed_rerun_command.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_file_system.py b/Tools/LyTestTools/tests/unit/test_file_system.py index f6582d0a9b..7ae0fa35e5 100755 --- a/Tools/LyTestTools/tests/unit/test_file_system.py +++ b/Tools/LyTestTools/tests/unit/test_file_system.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/unit/test_fixtures.py b/Tools/LyTestTools/tests/unit/test_fixtures.py index 19d934587d..64e5a0b420 100755 --- a/Tools/LyTestTools/tests/unit/test_fixtures.py +++ b/Tools/LyTestTools/tests/unit/test_fixtures.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_image_capture.py b/Tools/LyTestTools/tests/unit/test_image_capture.py index a32049dbc1..19422523b4 100755 --- a/Tools/LyTestTools/tests/unit/test_image_capture.py +++ b/Tools/LyTestTools/tests/unit/test_image_capture.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_launcher_android.py b/Tools/LyTestTools/tests/unit/test_launcher_android.py index 3d4025c1ee..bbd0667b5c 100755 --- a/Tools/LyTestTools/tests/unit/test_launcher_android.py +++ b/Tools/LyTestTools/tests/unit/test_launcher_android.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_launcher_base.py b/Tools/LyTestTools/tests/unit/test_launcher_base.py index b6ea036382..8a2be5260c 100755 --- a/Tools/LyTestTools/tests/unit/test_launcher_base.py +++ b/Tools/LyTestTools/tests/unit/test_launcher_base.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_launcher_mac.py b/Tools/LyTestTools/tests/unit/test_launcher_mac.py index 77faf9064f..61426fb106 100755 --- a/Tools/LyTestTools/tests/unit/test_launcher_mac.py +++ b/Tools/LyTestTools/tests/unit/test_launcher_mac.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_launcher_win.py b/Tools/LyTestTools/tests/unit/test_launcher_win.py index 572de787af..f438df65f3 100755 --- a/Tools/LyTestTools/tests/unit/test_launcher_win.py +++ b/Tools/LyTestTools/tests/unit/test_launcher_win.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_log_monitor.py b/Tools/LyTestTools/tests/unit/test_log_monitor.py index 6d29d675f4..230dd84896 100755 --- a/Tools/LyTestTools/tests/unit/test_log_monitor.py +++ b/Tools/LyTestTools/tests/unit/test_log_monitor.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_ly_process_killer.py b/Tools/LyTestTools/tests/unit/test_ly_process_killer.py index f1daac2a6f..6a4d9a3e77 100755 --- a/Tools/LyTestTools/tests/unit/test_ly_process_killer.py +++ b/Tools/LyTestTools/tests/unit/test_ly_process_killer.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_manager_platforms_mac.py b/Tools/LyTestTools/tests/unit/test_manager_platforms_mac.py index a52ea2322b..0211785dc4 100755 --- a/Tools/LyTestTools/tests/unit/test_manager_platforms_mac.py +++ b/Tools/LyTestTools/tests/unit/test_manager_platforms_mac.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py b/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py index bb10bfb99c..59f5cf1dac 100755 --- a/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py +++ b/Tools/LyTestTools/tests/unit/test_manager_platforms_windows.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_process_utils.py b/Tools/LyTestTools/tests/unit/test_process_utils.py index 2e8424b1f6..855f5d09a1 100755 --- a/Tools/LyTestTools/tests/unit/test_process_utils.py +++ b/Tools/LyTestTools/tests/unit/test_process_utils.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/unit/test_py_logging_util.py b/Tools/LyTestTools/tests/unit/test_py_logging_util.py index 9ab1984bce..d68df46e6d 100755 --- a/Tools/LyTestTools/tests/unit/test_py_logging_util.py +++ b/Tools/LyTestTools/tests/unit/test_py_logging_util.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/unit/test_rad_telemetry.py b/Tools/LyTestTools/tests/unit/test_rad_telemetry.py index f26d6a99ca..9260cc0fbd 100755 --- a/Tools/LyTestTools/tests/unit/test_rad_telemetry.py +++ b/Tools/LyTestTools/tests/unit/test_rad_telemetry.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_reg_cleaner.py b/Tools/LyTestTools/tests/unit/test_reg_cleaner.py index cca45cbf1f..99a3e7000f 100755 --- a/Tools/LyTestTools/tests/unit/test_reg_cleaner.py +++ b/Tools/LyTestTools/tests/unit/test_reg_cleaner.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/unit/test_screenshot_compare_qssim.py b/Tools/LyTestTools/tests/unit/test_screenshot_compare_qssim.py index 200ba0ed46..df09296517 100755 --- a/Tools/LyTestTools/tests/unit/test_screenshot_compare_qssim.py +++ b/Tools/LyTestTools/tests/unit/test_screenshot_compare_qssim.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_settings.py b/Tools/LyTestTools/tests/unit/test_settings.py index 2d7586602f..d165d7d748 100755 --- a/Tools/LyTestTools/tests/unit/test_settings.py +++ b/Tools/LyTestTools/tests/unit/test_settings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/unit/test_shader_compiler.py b/Tools/LyTestTools/tests/unit/test_shader_compiler.py index fe724ffee5..1bbe9f11c4 100755 --- a/Tools/LyTestTools/tests/unit/test_shader_compiler.py +++ b/Tools/LyTestTools/tests/unit/test_shader_compiler.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_terminal_report.py b/Tools/LyTestTools/tests/unit/test_terminal_report.py index 56a5c5c1c8..eab85a090e 100755 --- a/Tools/LyTestTools/tests/unit/test_terminal_report.py +++ b/Tools/LyTestTools/tests/unit/test_terminal_report.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_waiter.py b/Tools/LyTestTools/tests/unit/test_waiter.py index 6ac1c8dc56..c7859ed2b0 100755 --- a/Tools/LyTestTools/tests/unit/test_waiter.py +++ b/Tools/LyTestTools/tests/unit/test_waiter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/LyTestTools/tests/unit/test_watchdog.py b/Tools/LyTestTools/tests/unit/test_watchdog.py index 42a5f2aa6c..621b54d7c0 100755 --- a/Tools/LyTestTools/tests/unit/test_watchdog.py +++ b/Tools/LyTestTools/tests/unit/test_watchdog.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/LyTestTools/tests/unit/test_workspace.py b/Tools/LyTestTools/tests/unit/test_workspace.py index 689e1eabd8..ec600ce519 100755 --- a/Tools/LyTestTools/tests/unit/test_workspace.py +++ b/Tools/LyTestTools/tests/unit/test_workspace.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/RemoteConsole/ly_remote_console/README.txt b/Tools/RemoteConsole/ly_remote_console/README.txt index 5071eff640..8b05b6ea06 100644 --- a/Tools/RemoteConsole/ly_remote_console/README.txt +++ b/Tools/RemoteConsole/ly_remote_console/README.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/__init__.py b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/__init__.py index d503a03f1e..35b04cb776 100755 --- a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/__init__.py +++ b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py index bad0cbf9d4..30a8c36f08 100755 --- a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py +++ b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/RemoteConsole/ly_remote_console/setup.py b/Tools/RemoteConsole/ly_remote_console/setup.py index e02baa1f62..8225789b7e 100755 --- a/Tools/RemoteConsole/ly_remote_console/setup.py +++ b/Tools/RemoteConsole/ly_remote_console/setup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/RemoteConsole/ly_remote_console/tests/CMakeLists.txt b/Tools/RemoteConsole/ly_remote_console/tests/CMakeLists.txt index 4fc35ea570..8484dd5d34 100644 --- a/Tools/RemoteConsole/ly_remote_console/tests/CMakeLists.txt +++ b/Tools/RemoteConsole/ly_remote_console/tests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/RemoteConsole/ly_remote_console/tests/integ/test_remote_console.py b/Tools/RemoteConsole/ly_remote_console/tests/integ/test_remote_console.py index 799cf94f39..611bfbd67e 100755 --- a/Tools/RemoteConsole/ly_remote_console/tests/integ/test_remote_console.py +++ b/Tools/RemoteConsole/ly_remote_console/tests/integ/test_remote_console.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py b/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py index 08305e9cce..a0d49a503a 100755 --- a/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py +++ b/Tools/RemoteConsole/ly_remote_console/tests/unit/test_remote_console_commands.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/SerializeContextAnalyzer/ConfluenceWiki_SerializeContext.jinja b/Tools/SerializeContextAnalyzer/ConfluenceWiki_SerializeContext.jinja index d12ec11344..0635132b55 100644 --- a/Tools/SerializeContextAnalyzer/ConfluenceWiki_SerializeContext.jinja +++ b/Tools/SerializeContextAnalyzer/ConfluenceWiki_SerializeContext.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/ConfluenceWiki_SystemComponents.jinja b/Tools/SerializeContextAnalyzer/ConfluenceWiki_SystemComponents.jinja index 62de4a7256..f95ab158f4 100644 --- a/Tools/SerializeContextAnalyzer/ConfluenceWiki_SystemComponents.jinja +++ b/Tools/SerializeContextAnalyzer/ConfluenceWiki_SystemComponents.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/ConfluenceWiki_Utilities.jinja b/Tools/SerializeContextAnalyzer/ConfluenceWiki_Utilities.jinja index 47febb05d6..3a2b0242a1 100644 --- a/Tools/SerializeContextAnalyzer/ConfluenceWiki_Utilities.jinja +++ b/Tools/SerializeContextAnalyzer/ConfluenceWiki_Utilities.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/SerializeContextAnalyzer.py b/Tools/SerializeContextAnalyzer/SerializeContextAnalyzer.py index c49a12778e..a2b4cf84f0 100755 --- a/Tools/SerializeContextAnalyzer/SerializeContextAnalyzer.py +++ b/Tools/SerializeContextAnalyzer/SerializeContextAnalyzer.py @@ -1,5 +1,5 @@ ######################################################################################## -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/Text_EntityComponents.jinja b/Tools/SerializeContextAnalyzer/Text_EntityComponents.jinja index 99bfe41b75..ed68a6c8b5 100644 --- a/Tools/SerializeContextAnalyzer/Text_EntityComponents.jinja +++ b/Tools/SerializeContextAnalyzer/Text_EntityComponents.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/Text_SerializeContext.jinja b/Tools/SerializeContextAnalyzer/Text_SerializeContext.jinja index 09b614eca3..b6fab6ca54 100644 --- a/Tools/SerializeContextAnalyzer/Text_SerializeContext.jinja +++ b/Tools/SerializeContextAnalyzer/Text_SerializeContext.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/Text_SystemComponents.jinja b/Tools/SerializeContextAnalyzer/Text_SystemComponents.jinja index 36b959cdad..9b49170c9b 100644 --- a/Tools/SerializeContextAnalyzer/Text_SystemComponents.jinja +++ b/Tools/SerializeContextAnalyzer/Text_SystemComponents.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/Text_Types.jinja b/Tools/SerializeContextAnalyzer/Text_Types.jinja index e9d7b8a04e..3fcc369df7 100644 --- a/Tools/SerializeContextAnalyzer/Text_Types.jinja +++ b/Tools/SerializeContextAnalyzer/Text_Types.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/SerializeContextAnalyzer/Text_Utilities.jinja b/Tools/SerializeContextAnalyzer/Text_Utilities.jinja index 5371680ba7..03ec39ea56 100644 --- a/Tools/SerializeContextAnalyzer/Text_Utilities.jinja +++ b/Tools/SerializeContextAnalyzer/Text_Utilities.jinja @@ -1,5 +1,5 @@ {#### -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/Tools/TestRailImporter/lib/__init__.py b/Tools/TestRailImporter/lib/__init__.py index ce5bb8503d..99aac69543 100755 --- a/Tools/TestRailImporter/lib/__init__.py +++ b/Tools/TestRailImporter/lib/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/Tools/TestRailImporter/lib/testrail_importer/__init__.py b/Tools/TestRailImporter/lib/testrail_importer/__init__.py index ce5bb8503d..99aac69543 100755 --- a/Tools/TestRailImporter/lib/testrail_importer/__init__.py +++ b/Tools/TestRailImporter/lib/testrail_importer/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ \ No newline at end of file diff --git a/Tools/TestRailImporter/lib/testrail_importer/testrail_importer.py b/Tools/TestRailImporter/lib/testrail_importer/testrail_importer.py index 7be90a1628..96bfe9bf2f 100755 --- a/Tools/TestRailImporter/lib/testrail_importer/testrail_importer.py +++ b/Tools/TestRailImporter/lib/testrail_importer/testrail_importer.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/__init__.py b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/__init__.py +++ b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_api_connector.py b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_api_connector.py index 2feeefec94..97db1318dd 100755 --- a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_api_connector.py +++ b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_api_connector.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_connection.py b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_connection.py index 376d1c40d9..05f78aa9f8 100755 --- a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_connection.py +++ b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_connection.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_report_converter.py b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_report_converter.py index 42262daf2a..898a4f303d 100755 --- a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_report_converter.py +++ b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_report_converter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_settings.py b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_settings.py index b8dc405079..e4d0a6d562 100755 --- a/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_settings.py +++ b/Tools/TestRailImporter/lib/testrail_importer/testrail_tools/testrail_settings.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/TestRailImporter/testrail_importer.cmd b/Tools/TestRailImporter/testrail_importer.cmd index c61e511777..40840917c8 100644 --- a/Tools/TestRailImporter/testrail_importer.cmd +++ b/Tools/TestRailImporter/testrail_importer.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Tools/TestRailImporter/tests/__init__.py b/Tools/TestRailImporter/tests/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/TestRailImporter/tests/__init__.py +++ b/Tools/TestRailImporter/tests/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/TestRailImporter/tests/unit/__init__.py b/Tools/TestRailImporter/tests/unit/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/Tools/TestRailImporter/tests/unit/__init__.py +++ b/Tools/TestRailImporter/tests/unit/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/Tools/TestRailImporter/tests/unit/test_testrail_api_connector.py b/Tools/TestRailImporter/tests/unit/test_testrail_api_connector.py index 9414f04f08..d146bd0502 100755 --- a/Tools/TestRailImporter/tests/unit/test_testrail_api_connector.py +++ b/Tools/TestRailImporter/tests/unit/test_testrail_api_connector.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/TestRailImporter/tests/unit/test_testrail_connection.py b/Tools/TestRailImporter/tests/unit/test_testrail_connection.py index e73bab6e8e..3b5dd35f2d 100755 --- a/Tools/TestRailImporter/tests/unit/test_testrail_connection.py +++ b/Tools/TestRailImporter/tests/unit/test_testrail_connection.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/TestRailImporter/tests/unit/test_testrail_importer.py b/Tools/TestRailImporter/tests/unit/test_testrail_importer.py index 852731f730..7f265bbbc9 100755 --- a/Tools/TestRailImporter/tests/unit/test_testrail_importer.py +++ b/Tools/TestRailImporter/tests/unit/test_testrail_importer.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/TestRailImporter/tests/unit/test_testrail_report_converter.py b/Tools/TestRailImporter/tests/unit/test_testrail_report_converter.py index f5a65707af..3a637f6ec7 100755 --- a/Tools/TestRailImporter/tests/unit/test_testrail_report_converter.py +++ b/Tools/TestRailImporter/tests/unit/test_testrail_report_converter.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/Tools/styleui/styleui.cmd b/Tools/styleui/styleui.cmd index 65393d8edb..cfd7f2832b 100644 --- a/Tools/styleui/styleui.cmd +++ b/Tools/styleui/styleui.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/Tools/styleui/styleui.py b/Tools/styleui/styleui.py index b9be4d4865..4f5f94342f 100755 --- a/Tools/styleui/styleui.py +++ b/Tools/styleui/styleui.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/cmake/3rdParty.cmake b/cmake/3rdParty.cmake index 665fa92537..204aaedb79 100644 --- a/cmake/3rdParty.cmake +++ b/cmake/3rdParty.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/BuiltInPackages.cmake b/cmake/3rdParty/BuiltInPackages.cmake index 7f1ce8bf98..28f66dda0c 100644 --- a/cmake/3rdParty/BuiltInPackages.cmake +++ b/cmake/3rdParty/BuiltInPackages.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/FindOpenGLInterface.cmake b/cmake/3rdParty/FindOpenGLInterface.cmake index f3822c5bac..c6e14ec67e 100644 --- a/cmake/3rdParty/FindOpenGLInterface.cmake +++ b/cmake/3rdParty/FindOpenGLInterface.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/FindRadTelemetry.cmake b/cmake/3rdParty/FindRadTelemetry.cmake index a97cd56f6f..1bbead4cbf 100644 --- a/cmake/3rdParty/FindRadTelemetry.cmake +++ b/cmake/3rdParty/FindRadTelemetry.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/FindVkValidation.cmake b/cmake/3rdParty/FindVkValidation.cmake index 163abf66d2..d3dfa1e795 100644 --- a/cmake/3rdParty/FindVkValidation.cmake +++ b/cmake/3rdParty/FindVkValidation.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/FindWwise.cmake b/cmake/3rdParty/FindWwise.cmake index c53426fcc8..132b3032d7 100644 --- a/cmake/3rdParty/FindWwise.cmake +++ b/cmake/3rdParty/FindWwise.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake b/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake index 5846463c7f..1f3d67a034 100644 --- a/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake +++ b/cmake/3rdParty/Platform/Android/BuiltInPackages_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Android/RadTelemetry_android.cmake b/cmake/3rdParty/Platform/Android/RadTelemetry_android.cmake index dd6fa06731..7bc1ad7ca6 100644 --- a/cmake/3rdParty/Platform/Android/RadTelemetry_android.cmake +++ b/cmake/3rdParty/Platform/Android/RadTelemetry_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Android/VkValidation_android.cmake b/cmake/3rdParty/Platform/Android/VkValidation_android.cmake index 03b754e145..608eed70bd 100644 --- a/cmake/3rdParty/Platform/Android/VkValidation_android.cmake +++ b/cmake/3rdParty/Platform/Android/VkValidation_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Android/Wwise_android.cmake b/cmake/3rdParty/Platform/Android/Wwise_android.cmake index e63a1d25f8..659db96843 100644 --- a/cmake/3rdParty/Platform/Android/Wwise_android.cmake +++ b/cmake/3rdParty/Platform/Android/Wwise_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Android/cmake_android_files.cmake b/cmake/3rdParty/Platform/Android/cmake_android_files.cmake index a5f666c884..7389b33d4d 100644 --- a/cmake/3rdParty/Platform/Android/cmake_android_files.cmake +++ b/cmake/3rdParty/Platform/Android/cmake_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake index 618bdc2fe6..c0099b8dbe 100644 --- a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake +++ b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Linux/Wwise_linux.cmake b/cmake/3rdParty/Platform/Linux/Wwise_linux.cmake index b3c085d933..93b65afe52 100644 --- a/cmake/3rdParty/Platform/Linux/Wwise_linux.cmake +++ b/cmake/3rdParty/Platform/Linux/Wwise_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Linux/cmake_linux_files.cmake b/cmake/3rdParty/Platform/Linux/cmake_linux_files.cmake index 1ba16db296..217903633f 100644 --- a/cmake/3rdParty/Platform/Linux/cmake_linux_files.cmake +++ b/cmake/3rdParty/Platform/Linux/cmake_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Linux/squish-ccr_linux.cmake b/cmake/3rdParty/Platform/Linux/squish-ccr_linux.cmake index 7cf2303508..02680ce2f3 100644 --- a/cmake/3rdParty/Platform/Linux/squish-ccr_linux.cmake +++ b/cmake/3rdParty/Platform/Linux/squish-ccr_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake b/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake index 09f3a093e6..59da804e82 100644 --- a/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake +++ b/cmake/3rdParty/Platform/Mac/BuiltInPackages_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Mac/OpenGLInterface_mac.cmake b/cmake/3rdParty/Platform/Mac/OpenGLInterface_mac.cmake index cf06e7520c..6d3a1d5129 100644 --- a/cmake/3rdParty/Platform/Mac/OpenGLInterface_mac.cmake +++ b/cmake/3rdParty/Platform/Mac/OpenGLInterface_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Mac/RadTelemetry_mac.cmake b/cmake/3rdParty/Platform/Mac/RadTelemetry_mac.cmake index a6fb41f077..1edf30bd8c 100644 --- a/cmake/3rdParty/Platform/Mac/RadTelemetry_mac.cmake +++ b/cmake/3rdParty/Platform/Mac/RadTelemetry_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Mac/Wwise_mac.cmake b/cmake/3rdParty/Platform/Mac/Wwise_mac.cmake index b5c2c121eb..0edfd791ce 100644 --- a/cmake/3rdParty/Platform/Mac/Wwise_mac.cmake +++ b/cmake/3rdParty/Platform/Mac/Wwise_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Mac/cmake_mac_files.cmake b/cmake/3rdParty/Platform/Mac/cmake_mac_files.cmake index 4334035a1a..c2ab76d23d 100644 --- a/cmake/3rdParty/Platform/Mac/cmake_mac_files.cmake +++ b/cmake/3rdParty/Platform/Mac/cmake_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Mac/squish-ccr_mac.cmake b/cmake/3rdParty/Platform/Mac/squish-ccr_mac.cmake index ebf72aa160..bef495af48 100644 --- a/cmake/3rdParty/Platform/Mac/squish-ccr_mac.cmake +++ b/cmake/3rdParty/Platform/Mac/squish-ccr_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake b/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake index 919dec3f94..5fa9617d6f 100644 --- a/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake +++ b/cmake/3rdParty/Platform/Windows/BuiltInPackages_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Windows/RadTelemetry_windows.cmake b/cmake/3rdParty/Platform/Windows/RadTelemetry_windows.cmake index 3a6ff60cbf..d44080d968 100644 --- a/cmake/3rdParty/Platform/Windows/RadTelemetry_windows.cmake +++ b/cmake/3rdParty/Platform/Windows/RadTelemetry_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Windows/Wwise_windows.cmake b/cmake/3rdParty/Platform/Windows/Wwise_windows.cmake index fd72985a82..e5d2c06651 100644 --- a/cmake/3rdParty/Platform/Windows/Wwise_windows.cmake +++ b/cmake/3rdParty/Platform/Windows/Wwise_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Windows/cmake_windows_files.cmake b/cmake/3rdParty/Platform/Windows/cmake_windows_files.cmake index d5a3ec31b5..75f2e61889 100644 --- a/cmake/3rdParty/Platform/Windows/cmake_windows_files.cmake +++ b/cmake/3rdParty/Platform/Windows/cmake_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/Windows/squish-ccr_windows.cmake b/cmake/3rdParty/Platform/Windows/squish-ccr_windows.cmake index dffc02bd5a..a44681aea8 100644 --- a/cmake/3rdParty/Platform/Windows/squish-ccr_windows.cmake +++ b/cmake/3rdParty/Platform/Windows/squish-ccr_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake b/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake index 43fd1568a3..573dece628 100644 --- a/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake +++ b/cmake/3rdParty/Platform/iOS/BuiltInPackages_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/iOS/RadTelemetry_ios.cmake b/cmake/3rdParty/Platform/iOS/RadTelemetry_ios.cmake index bed461c357..3ff213b4e5 100644 --- a/cmake/3rdParty/Platform/iOS/RadTelemetry_ios.cmake +++ b/cmake/3rdParty/Platform/iOS/RadTelemetry_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/iOS/Wwise_ios.cmake b/cmake/3rdParty/Platform/iOS/Wwise_ios.cmake index 874273a5a4..e81d25b53a 100644 --- a/cmake/3rdParty/Platform/iOS/Wwise_ios.cmake +++ b/cmake/3rdParty/Platform/iOS/Wwise_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake b/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake index 6e1ac8cfad..81aa33a1b0 100644 --- a/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake +++ b/cmake/3rdParty/Platform/iOS/cmake_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdParty/cmake_files.cmake b/cmake/3rdParty/cmake_files.cmake index 77640fe4aa..d5ce8045c4 100644 --- a/cmake/3rdParty/cmake_files.cmake +++ b/cmake/3rdParty/cmake_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/3rdPartyPackages.cmake b/cmake/3rdPartyPackages.cmake index fa6349a303..a0124f9a33 100644 --- a/cmake/3rdPartyPackages.cmake +++ b/cmake/3rdPartyPackages.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/CMakeFiles.cmake b/cmake/CMakeFiles.cmake index 5b3e858694..2c28d61d73 100644 --- a/cmake/CMakeFiles.cmake +++ b/cmake/CMakeFiles.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/CommandExecution.cmake b/cmake/CommandExecution.cmake index c450d9b405..370a074a11 100644 --- a/cmake/CommandExecution.cmake +++ b/cmake/CommandExecution.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Configurations.cmake b/cmake/Configurations.cmake index 721c383a68..82dd94e17d 100644 --- a/cmake/Configurations.cmake +++ b/cmake/Configurations.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake index 71ff0673d7..6d018e5a31 100644 --- a/cmake/Dependencies.cmake +++ b/cmake/Dependencies.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Deployment.cmake b/cmake/Deployment.cmake index 2202a58cdb..ed11848f28 100644 --- a/cmake/Deployment.cmake +++ b/cmake/Deployment.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/EngineJson.cmake b/cmake/EngineJson.cmake index a88008d9a0..fa469758d6 100644 --- a/cmake/EngineJson.cmake +++ b/cmake/EngineJson.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/FileUtil.cmake b/cmake/FileUtil.cmake index 86fa5532fa..77291d8dbb 100644 --- a/cmake/FileUtil.cmake +++ b/cmake/FileUtil.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Findo3de.cmake b/cmake/Findo3de.cmake index 1af52490df..4593d85460 100644 --- a/cmake/Findo3de.cmake +++ b/cmake/Findo3de.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Gems.cmake b/cmake/Gems.cmake index 94928fdd40..634e09f596 100644 --- a/cmake/Gems.cmake +++ b/cmake/Gems.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/GeneralSettings.cmake b/cmake/GeneralSettings.cmake index da8cdcd71e..93f12020b7 100644 --- a/cmake/GeneralSettings.cmake +++ b/cmake/GeneralSettings.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Install.cmake b/cmake/Install.cmake index a6d5ffe5f7..d2131c4a50 100644 --- a/cmake/Install.cmake +++ b/cmake/Install.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/LYPackage_S3Downloader.cmake b/cmake/LYPackage_S3Downloader.cmake index e5398a754f..ec33d3f4c2 100644 --- a/cmake/LYPackage_S3Downloader.cmake +++ b/cmake/LYPackage_S3Downloader.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/LYPython.cmake b/cmake/LYPython.cmake index b5c7c44905..d7d3f3251e 100644 --- a/cmake/LYPython.cmake +++ b/cmake/LYPython.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/LYTestWrappers.cmake b/cmake/LYTestWrappers.cmake index 010adebd74..9dd9596255 100644 --- a/cmake/LYTestWrappers.cmake +++ b/cmake/LYTestWrappers.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/LYWrappers.cmake b/cmake/LYWrappers.cmake index c559adaf83..89a4ab29f0 100644 --- a/cmake/LYWrappers.cmake +++ b/cmake/LYWrappers.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/LyAutoGen.cmake b/cmake/LyAutoGen.cmake index 841bca7fa7..201db8566b 100644 --- a/cmake/LyAutoGen.cmake +++ b/cmake/LyAutoGen.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/LySet.cmake b/cmake/LySet.cmake index 0968dd9ad6..0ce4e17081 100644 --- a/cmake/LySet.cmake +++ b/cmake/LySet.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Monolithic.cmake b/cmake/Monolithic.cmake index 90c0569a13..3b75f45b5c 100644 --- a/cmake/Monolithic.cmake +++ b/cmake/Monolithic.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/O3DEJson.cmake b/cmake/O3DEJson.cmake index a95c2c4663..0c0a5efcfe 100644 --- a/cmake/O3DEJson.cmake +++ b/cmake/O3DEJson.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/OutputDirectory.cmake b/cmake/OutputDirectory.cmake index c1979045f1..146315177a 100644 --- a/cmake/OutputDirectory.cmake +++ b/cmake/OutputDirectory.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/PAL.cmake b/cmake/PAL.cmake index a87143c0d4..11541d395a 100644 --- a/cmake/PAL.cmake +++ b/cmake/PAL.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/PALTools.cmake b/cmake/PALTools.cmake index c8be3f2cb0..09af3c8d16 100644 --- a/cmake/PALTools.cmake +++ b/cmake/PALTools.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Packaging.cmake b/cmake/Packaging.cmake index 83e91d73ee..d77b5a30f8 100644 --- a/cmake/Packaging.cmake +++ b/cmake/Packaging.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/PackagingConfig.cmake b/cmake/PackagingConfig.cmake index 26275aff36..e54164d641 100644 --- a/cmake/PackagingConfig.cmake +++ b/cmake/PackagingConfig.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/Configurations_android.cmake b/cmake/Platform/Android/Configurations_android.cmake index 2b05fbc4fc..7e91ea3838 100644 --- a/cmake/Platform/Android/Configurations_android.cmake +++ b/cmake/Platform/Android/Configurations_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/Install_android.cmake b/cmake/Platform/Android/Install_android.cmake index b95561046e..6d3bb4c1d9 100644 --- a/cmake/Platform/Android/Install_android.cmake +++ b/cmake/Platform/Android/Install_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/LYTestWrappers_android.cmake b/cmake/Platform/Android/LYTestWrappers_android.cmake index ce5d67d66d..e1b5394b94 100644 --- a/cmake/Platform/Android/LYTestWrappers_android.cmake +++ b/cmake/Platform/Android/LYTestWrappers_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/LYWrappers_android.cmake b/cmake/Platform/Android/LYWrappers_android.cmake index 33ed162cf4..193e0622fa 100644 --- a/cmake/Platform/Android/LYWrappers_android.cmake +++ b/cmake/Platform/Android/LYWrappers_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/PALDetection_android.cmake b/cmake/Platform/Android/PALDetection_android.cmake index 2d10e1b275..bfa8530ff0 100644 --- a/cmake/Platform/Android/PALDetection_android.cmake +++ b/cmake/Platform/Android/PALDetection_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/PAL_android.cmake b/cmake/Platform/Android/PAL_android.cmake index c0d7e4d757..ea19081a8f 100644 --- a/cmake/Platform/Android/PAL_android.cmake +++ b/cmake/Platform/Android/PAL_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/RuntimeDependencies_android.cmake b/cmake/Platform/Android/RuntimeDependencies_android.cmake index d57c916270..45fdaec202 100644 --- a/cmake/Platform/Android/RuntimeDependencies_android.cmake +++ b/cmake/Platform/Android/RuntimeDependencies_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/Toolchain_android.cmake b/cmake/Platform/Android/Toolchain_android.cmake index 91febd474e..e63c30af90 100644 --- a/cmake/Platform/Android/Toolchain_android.cmake +++ b/cmake/Platform/Android/Toolchain_android.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Android/platform_android_files.cmake b/cmake/Platform/Android/platform_android_files.cmake index 6dd2748ab7..285c1c0995 100644 --- a/cmake/Platform/Android/platform_android_files.cmake +++ b/cmake/Platform/Android/platform_android_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/Clang/Configurations_clang.cmake b/cmake/Platform/Common/Clang/Configurations_clang.cmake index b1f4771f56..841988cabc 100644 --- a/cmake/Platform/Common/Clang/Configurations_clang.cmake +++ b/cmake/Platform/Common/Clang/Configurations_clang.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/Configurations_common.cmake b/cmake/Platform/Common/Configurations_common.cmake index da8bf683d4..6abac53778 100644 --- a/cmake/Platform/Common/Configurations_common.cmake +++ b/cmake/Platform/Common/Configurations_common.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/Directory.Build.props b/cmake/Platform/Common/Directory.Build.props index c511787fbe..29dbcd8584 100644 --- a/cmake/Platform/Common/Directory.Build.props +++ b/cmake/Platform/Common/Directory.Build.props @@ -1,6 +1,6 @@ diff --git a/cmake/Platform/Common/Install_common.cmake b/cmake/Platform/Common/Install_common.cmake index 307f5c3ef8..4c94aa7fc5 100644 --- a/cmake/Platform/Common/Install_common.cmake +++ b/cmake/Platform/Common/Install_common.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/LYWrappers_default.cmake b/cmake/Platform/Common/LYWrappers_default.cmake index 65cfa33c0e..4f74d577e1 100644 --- a/cmake/Platform/Common/LYWrappers_default.cmake +++ b/cmake/Platform/Common/LYWrappers_default.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/MSVC/Configurations_msvc.cmake b/cmake/Platform/Common/MSVC/Configurations_msvc.cmake index 8f47a5a924..1850bec114 100644 --- a/cmake/Platform/Common/MSVC/Configurations_msvc.cmake +++ b/cmake/Platform/Common/MSVC/Configurations_msvc.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/RuntimeDependencies_common.cmake b/cmake/Platform/Common/RuntimeDependencies_common.cmake index 97f573981a..734dd94203 100644 --- a/cmake/Platform/Common/RuntimeDependencies_common.cmake +++ b/cmake/Platform/Common/RuntimeDependencies_common.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/TargetIncludeSystemDirectories_supported.cmake b/cmake/Platform/Common/TargetIncludeSystemDirectories_supported.cmake index d270aadb17..7412d9b9ac 100644 --- a/cmake/Platform/Common/TargetIncludeSystemDirectories_supported.cmake +++ b/cmake/Platform/Common/TargetIncludeSystemDirectories_supported.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/TargetIncludeSystemDirectories_unsupported.cmake b/cmake/Platform/Common/TargetIncludeSystemDirectories_unsupported.cmake index 9cc035ab01..1999195b23 100644 --- a/cmake/Platform/Common/TargetIncludeSystemDirectories_unsupported.cmake +++ b/cmake/Platform/Common/TargetIncludeSystemDirectories_unsupported.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/VisualStudio_common.cmake b/cmake/Platform/Common/VisualStudio_common.cmake index 8ee5da0b79..345214274b 100644 --- a/cmake/Platform/Common/VisualStudio_common.cmake +++ b/cmake/Platform/Common/VisualStudio_common.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Common/runtime_dependencies_common.cmake.in b/cmake/Platform/Common/runtime_dependencies_common.cmake.in index fcf8d75291..e2a85374b8 100644 --- a/cmake/Platform/Common/runtime_dependencies_common.cmake.in +++ b/cmake/Platform/Common/runtime_dependencies_common.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/Configurations_linux.cmake b/cmake/Platform/Linux/Configurations_linux.cmake index de2e3968d2..b963266beb 100644 --- a/cmake/Platform/Linux/Configurations_linux.cmake +++ b/cmake/Platform/Linux/Configurations_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/Install_linux.cmake b/cmake/Platform/Linux/Install_linux.cmake index b95561046e..6d3bb4c1d9 100644 --- a/cmake/Platform/Linux/Install_linux.cmake +++ b/cmake/Platform/Linux/Install_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/LYTestWrappers_linux.cmake b/cmake/Platform/Linux/LYTestWrappers_linux.cmake index b401f52e8c..72573a437f 100644 --- a/cmake/Platform/Linux/LYTestWrappers_linux.cmake +++ b/cmake/Platform/Linux/LYTestWrappers_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/LYWrappers_linux.cmake b/cmake/Platform/Linux/LYWrappers_linux.cmake index 63d8d4928c..fcb45851f4 100644 --- a/cmake/Platform/Linux/LYWrappers_linux.cmake +++ b/cmake/Platform/Linux/LYWrappers_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/PALDetection_linux.cmake b/cmake/Platform/Linux/PALDetection_linux.cmake index d8bbc5b646..5cc8ad2ea3 100644 --- a/cmake/Platform/Linux/PALDetection_linux.cmake +++ b/cmake/Platform/Linux/PALDetection_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/PAL_linux.cmake b/cmake/Platform/Linux/PAL_linux.cmake index 41e48b9709..d8f16d0706 100644 --- a/cmake/Platform/Linux/PAL_linux.cmake +++ b/cmake/Platform/Linux/PAL_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/RPathChange.cmake b/cmake/Platform/Linux/RPathChange.cmake index 9b8ea1aab1..ea7df87053 100644 --- a/cmake/Platform/Linux/RPathChange.cmake +++ b/cmake/Platform/Linux/RPathChange.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/RuntimeDependencies_linux.cmake b/cmake/Platform/Linux/RuntimeDependencies_linux.cmake index d57c916270..45fdaec202 100644 --- a/cmake/Platform/Linux/RuntimeDependencies_linux.cmake +++ b/cmake/Platform/Linux/RuntimeDependencies_linux.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Linux/platform_linux_files.cmake b/cmake/Platform/Linux/platform_linux_files.cmake index 53ec15b44f..73f5ba3cb6 100644 --- a/cmake/Platform/Linux/platform_linux_files.cmake +++ b/cmake/Platform/Linux/platform_linux_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/Configurations_mac.cmake b/cmake/Platform/Mac/Configurations_mac.cmake index 02dcc5af5b..a3551be3b9 100644 --- a/cmake/Platform/Mac/Configurations_mac.cmake +++ b/cmake/Platform/Mac/Configurations_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/Install_mac.cmake b/cmake/Platform/Mac/Install_mac.cmake index d9c54ad555..74ebd293ae 100644 --- a/cmake/Platform/Mac/Install_mac.cmake +++ b/cmake/Platform/Mac/Install_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/LYTestWrappers_mac.cmake b/cmake/Platform/Mac/LYTestWrappers_mac.cmake index ce5d67d66d..e1b5394b94 100644 --- a/cmake/Platform/Mac/LYTestWrappers_mac.cmake +++ b/cmake/Platform/Mac/LYTestWrappers_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/LYWrappers_mac.cmake b/cmake/Platform/Mac/LYWrappers_mac.cmake index 19f1abb08d..242ed30f74 100644 --- a/cmake/Platform/Mac/LYWrappers_mac.cmake +++ b/cmake/Platform/Mac/LYWrappers_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/PALDetection_mac.cmake b/cmake/Platform/Mac/PALDetection_mac.cmake index f17d5f03dc..b3c16e86e9 100644 --- a/cmake/Platform/Mac/PALDetection_mac.cmake +++ b/cmake/Platform/Mac/PALDetection_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/PAL_mac.cmake b/cmake/Platform/Mac/PAL_mac.cmake index fd45dfa3f9..5a47c91c8a 100644 --- a/cmake/Platform/Mac/PAL_mac.cmake +++ b/cmake/Platform/Mac/PAL_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/RPathChange.cmake b/cmake/Platform/Mac/RPathChange.cmake index ed624fc77a..e35c88456d 100644 --- a/cmake/Platform/Mac/RPathChange.cmake +++ b/cmake/Platform/Mac/RPathChange.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/RuntimeDependencies_mac.cmake b/cmake/Platform/Mac/RuntimeDependencies_mac.cmake index 59c481864d..cce87c0ded 100644 --- a/cmake/Platform/Mac/RuntimeDependencies_mac.cmake +++ b/cmake/Platform/Mac/RuntimeDependencies_mac.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/platform_mac_files.cmake b/cmake/Platform/Mac/platform_mac_files.cmake index 48c6f7b4ea..efee5d265e 100644 --- a/cmake/Platform/Mac/platform_mac_files.cmake +++ b/cmake/Platform/Mac/platform_mac_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Mac/runtime_dependencies_mac.cmake.in b/cmake/Platform/Mac/runtime_dependencies_mac.cmake.in index 795ba60e44..92ad3514d4 100644 --- a/cmake/Platform/Mac/runtime_dependencies_mac.cmake.in +++ b/cmake/Platform/Mac/runtime_dependencies_mac.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/Configurations_windows.cmake b/cmake/Platform/Windows/Configurations_windows.cmake index a821082eab..1f7776f219 100644 --- a/cmake/Platform/Windows/Configurations_windows.cmake +++ b/cmake/Platform/Windows/Configurations_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/Install_windows.cmake b/cmake/Platform/Windows/Install_windows.cmake index b95561046e..6d3bb4c1d9 100644 --- a/cmake/Platform/Windows/Install_windows.cmake +++ b/cmake/Platform/Windows/Install_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/LYTestWrappers_windows.cmake b/cmake/Platform/Windows/LYTestWrappers_windows.cmake index ce5d67d66d..e1b5394b94 100644 --- a/cmake/Platform/Windows/LYTestWrappers_windows.cmake +++ b/cmake/Platform/Windows/LYTestWrappers_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/LYWrappers_windows.cmake b/cmake/Platform/Windows/LYWrappers_windows.cmake index 33ed162cf4..193e0622fa 100644 --- a/cmake/Platform/Windows/LYWrappers_windows.cmake +++ b/cmake/Platform/Windows/LYWrappers_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/PALDetection_windows.cmake b/cmake/Platform/Windows/PALDetection_windows.cmake index 55e212dbe1..7e3a4fb295 100644 --- a/cmake/Platform/Windows/PALDetection_windows.cmake +++ b/cmake/Platform/Windows/PALDetection_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/PAL_windows.cmake b/cmake/Platform/Windows/PAL_windows.cmake index a815668858..639c0bd8e5 100644 --- a/cmake/Platform/Windows/PAL_windows.cmake +++ b/cmake/Platform/Windows/PAL_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/PackagingPostBuild.cmake b/cmake/Platform/Windows/PackagingPostBuild.cmake index 07326972c6..2d003d6062 100644 --- a/cmake/Platform/Windows/PackagingPostBuild.cmake +++ b/cmake/Platform/Windows/PackagingPostBuild.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/Packaging_windows.cmake b/cmake/Platform/Windows/Packaging_windows.cmake index 895886942b..b35733a1ea 100644 --- a/cmake/Platform/Windows/Packaging_windows.cmake +++ b/cmake/Platform/Windows/Packaging_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/RuntimeDependencies_windows.cmake b/cmake/Platform/Windows/RuntimeDependencies_windows.cmake index d57c916270..45fdaec202 100644 --- a/cmake/Platform/Windows/RuntimeDependencies_windows.cmake +++ b/cmake/Platform/Windows/RuntimeDependencies_windows.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/Windows/platform_windows_files.cmake b/cmake/Platform/Windows/platform_windows_files.cmake index de87ab3dc9..c3906099b1 100644 --- a/cmake/Platform/Windows/platform_windows_files.cmake +++ b/cmake/Platform/Windows/platform_windows_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/Configurations_ios.cmake b/cmake/Platform/iOS/Configurations_ios.cmake index 94fcb984e3..618cbb1d1f 100644 --- a/cmake/Platform/iOS/Configurations_ios.cmake +++ b/cmake/Platform/iOS/Configurations_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/Install_ios.cmake b/cmake/Platform/iOS/Install_ios.cmake index d9c54ad555..74ebd293ae 100644 --- a/cmake/Platform/iOS/Install_ios.cmake +++ b/cmake/Platform/iOS/Install_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/LYTestWrappers_ios.cmake b/cmake/Platform/iOS/LYTestWrappers_ios.cmake index ce5d67d66d..e1b5394b94 100644 --- a/cmake/Platform/iOS/LYTestWrappers_ios.cmake +++ b/cmake/Platform/iOS/LYTestWrappers_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/LYWrappers_ios.cmake b/cmake/Platform/iOS/LYWrappers_ios.cmake index 0fa085d21f..353bbc4899 100644 --- a/cmake/Platform/iOS/LYWrappers_ios.cmake +++ b/cmake/Platform/iOS/LYWrappers_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/PALDetection_ios.cmake b/cmake/Platform/iOS/PALDetection_ios.cmake index 5c32dca082..bd0f04aa3f 100644 --- a/cmake/Platform/iOS/PALDetection_ios.cmake +++ b/cmake/Platform/iOS/PALDetection_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/PAL_ios.cmake b/cmake/Platform/iOS/PAL_ios.cmake index 387779eef2..870da34a58 100644 --- a/cmake/Platform/iOS/PAL_ios.cmake +++ b/cmake/Platform/iOS/PAL_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/RuntimeDependencies_ios.cmake b/cmake/Platform/iOS/RuntimeDependencies_ios.cmake index 8b167bd609..15ef35e777 100644 --- a/cmake/Platform/iOS/RuntimeDependencies_ios.cmake +++ b/cmake/Platform/iOS/RuntimeDependencies_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/SDK_ios.cmake b/cmake/Platform/iOS/SDK_ios.cmake index 347d312a4f..8db9d51dd9 100644 --- a/cmake/Platform/iOS/SDK_ios.cmake +++ b/cmake/Platform/iOS/SDK_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/Toolchain_ios.cmake b/cmake/Platform/iOS/Toolchain_ios.cmake index 86c56d95b1..a01fb76b56 100644 --- a/cmake/Platform/iOS/Toolchain_ios.cmake +++ b/cmake/Platform/iOS/Toolchain_ios.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Platform/iOS/platform_ios_files.cmake b/cmake/Platform/iOS/platform_ios_files.cmake index 91f67742ed..703fc3338c 100644 --- a/cmake/Platform/iOS/platform_ios_files.cmake +++ b/cmake/Platform/iOS/platform_ios_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Projects.cmake b/cmake/Projects.cmake index d9843f634f..a8515eeee9 100644 --- a/cmake/Projects.cmake +++ b/cmake/Projects.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/RuntimeDependencies.cmake b/cmake/RuntimeDependencies.cmake index 2cb52cf733..66cd1f9c8a 100644 --- a/cmake/RuntimeDependencies.cmake +++ b/cmake/RuntimeDependencies.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/SettingsRegistry.cmake b/cmake/SettingsRegistry.cmake index 3aff1bdc5c..0eae244c4f 100644 --- a/cmake/SettingsRegistry.cmake +++ b/cmake/SettingsRegistry.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/TestImpactFramework/CMakeGraphVizOptions.cmake b/cmake/TestImpactFramework/CMakeGraphVizOptions.cmake index 3540bffce2..4a0be0ef5b 100644 --- a/cmake/TestImpactFramework/CMakeGraphVizOptions.cmake +++ b/cmake/TestImpactFramework/CMakeGraphVizOptions.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/TestImpactFramework/LYTestImpactFramework.cmake b/cmake/TestImpactFramework/LYTestImpactFramework.cmake index 9d42759840..bfb3d888e6 100644 --- a/cmake/TestImpactFramework/LYTestImpactFramework.cmake +++ b/cmake/TestImpactFramework/LYTestImpactFramework.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/__init__.py b/cmake/Tools/Platform/Android/__init__.py index 30503258bc..1fe051b062 100755 --- a/cmake/Tools/Platform/Android/__init__.py +++ b/cmake/Tools/Platform/Android/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/android_deployment.py b/cmake/Tools/Platform/Android/android_deployment.py index dc0d56692b..889c3d7bc2 100755 --- a/cmake/Tools/Platform/Android/android_deployment.py +++ b/cmake/Tools/Platform/Android/android_deployment.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/android_support.py b/cmake/Tools/Platform/Android/android_support.py index 2afd2b97ab..c0ac26c277 100755 --- a/cmake/Tools/Platform/Android/android_support.py +++ b/cmake/Tools/Platform/Android/android_support.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/deploy_android.py b/cmake/Tools/Platform/Android/deploy_android.py index 8123c57136..2314b45efc 100755 --- a/cmake/Tools/Platform/Android/deploy_android.py +++ b/cmake/Tools/Platform/Android/deploy_android.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/generate_android_project.py b/cmake/Tools/Platform/Android/generate_android_project.py index 14c732da6c..01b92e4ab9 100755 --- a/cmake/Tools/Platform/Android/generate_android_project.py +++ b/cmake/Tools/Platform/Android/generate_android_project.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/launch_android_test.py b/cmake/Tools/Platform/Android/launch_android_test.py index 87f62b7d06..3021fa6626 100755 --- a/cmake/Tools/Platform/Android/launch_android_test.py +++ b/cmake/Tools/Platform/Android/launch_android_test.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/unit_test_android_deployment.py b/cmake/Tools/Platform/Android/unit_test_android_deployment.py index 82d03e6caf..44d1bfac15 100755 --- a/cmake/Tools/Platform/Android/unit_test_android_deployment.py +++ b/cmake/Tools/Platform/Android/unit_test_android_deployment.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/Android/unit_test_generate_android_project.py b/cmake/Tools/Platform/Android/unit_test_generate_android_project.py index 97ff1736b8..fc16fdd4df 100755 --- a/cmake/Tools/Platform/Android/unit_test_generate_android_project.py +++ b/cmake/Tools/Platform/Android/unit_test_generate_android_project.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/__init__.py b/cmake/Tools/Platform/__init__.py index 30503258bc..1fe051b062 100755 --- a/cmake/Tools/Platform/__init__.py +++ b/cmake/Tools/Platform/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/iOS/build_ios_test.py b/cmake/Tools/Platform/iOS/build_ios_test.py index ead8dd02ba..53166c8b57 100755 --- a/cmake/Tools/Platform/iOS/build_ios_test.py +++ b/cmake/Tools/Platform/iOS/build_ios_test.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/Platform/iOS/launch_ios_test.py b/cmake/Tools/Platform/iOS/launch_ios_test.py index 69e0475bda..4b4a30a934 100755 --- a/cmake/Tools/Platform/iOS/launch_ios_test.py +++ b/cmake/Tools/Platform/iOS/launch_ios_test.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/__init__.py b/cmake/Tools/__init__.py index 30503258bc..1fe051b062 100755 --- a/cmake/Tools/__init__.py +++ b/cmake/Tools/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/common.py b/cmake/Tools/common.py index 9de9ea3286..6d82af789b 100755 --- a/cmake/Tools/common.py +++ b/cmake/Tools/common.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/layout_tool.py b/cmake/Tools/layout_tool.py index 97826beb8c..c95a85d0c6 100755 --- a/cmake/Tools/layout_tool.py +++ b/cmake/Tools/layout_tool.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/unit_test_common.py b/cmake/Tools/unit_test_common.py index 637d96e51f..287a78b4f6 100755 --- a/cmake/Tools/unit_test_common.py +++ b/cmake/Tools/unit_test_common.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Tools/unit_test_layout_tool.py b/cmake/Tools/unit_test_layout_tool.py index abc0f32323..642c1081bb 100755 --- a/cmake/Tools/unit_test_layout_tool.py +++ b/cmake/Tools/unit_test_layout_tool.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/UnitTest.cmake b/cmake/UnitTest.cmake index 55612ce2d5..3ac9b92346 100644 --- a/cmake/UnitTest.cmake +++ b/cmake/UnitTest.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/Version.cmake b/cmake/Version.cmake index c18f7b45a0..28f759eb6b 100644 --- a/cmake/Version.cmake +++ b/cmake/Version.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/__init__.py b/cmake/__init__.py index 30503258bc..1fe051b062 100755 --- a/cmake/__init__.py +++ b/cmake/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/cmake_files.cmake b/cmake/cmake_files.cmake index a632283807..0909344c27 100644 --- a/cmake/cmake_files.cmake +++ b/cmake/cmake_files.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/createplatformfiles.py b/cmake/createplatformfiles.py index 440183a016..590bdddc47 100755 --- a/cmake/createplatformfiles.py +++ b/cmake/createplatformfiles.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # @@ -19,7 +19,7 @@ fileContents = "" def getCopyright(): return """# -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/gemcmake.py b/cmake/gemcmake.py index 1917333e6b..7215111ed8 100755 --- a/cmake/gemcmake.py +++ b/cmake/gemcmake.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # @@ -20,7 +20,7 @@ fileContents = "" def getCopyright(): return """# -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/install/Copyright.in b/cmake/install/Copyright.in index 30503258bc..1fe051b062 100644 --- a/cmake/install/Copyright.in +++ b/cmake/install/Copyright.in @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/install/Findo3de.cmake.in b/cmake/install/Findo3de.cmake.in index e059f8506b..5859f949f3 100644 --- a/cmake/install/Findo3de.cmake.in +++ b/cmake/install/Findo3de.cmake.in @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/mocfix.py b/cmake/mocfix.py index c08e70e587..73649faf4b 100755 --- a/cmake/mocfix.py +++ b/cmake/mocfix.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/projectcmake.py b/cmake/projectcmake.py index 5d39945ee4..10850ece3f 100755 --- a/cmake/projectcmake.py +++ b/cmake/projectcmake.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/reroot.py b/cmake/reroot.py index 0d46d2a5cc..4dbbb24f30 100755 --- a/cmake/reroot.py +++ b/cmake/reroot.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/run_epbtest.cmake b/cmake/run_epbtest.cmake index 93f03fa92d..22fc7ae469 100644 --- a/cmake/run_epbtest.cmake +++ b/cmake/run_epbtest.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/waffiles2cmake.py b/cmake/waffiles2cmake.py index cdb2f7b0cd..22c0f47428 100755 --- a/cmake/waffiles2cmake.py +++ b/cmake/waffiles2cmake.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # @@ -17,7 +17,7 @@ import argparse def get_banner(): return """# -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/cmake/warn_fix.py b/cmake/warn_fix.py index 4647854dee..42a0c88935 100755 --- a/cmake/warn_fix.py +++ b/cmake/warn_fix.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/ctest_pytest.ini b/ctest_pytest.ini index 6d5a35e96d..61d0630279 100644 --- a/ctest_pytest.ini +++ b/ctest_pytest.ini @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/python/get_python.bat b/python/get_python.bat index 348db7d112..61dbeee6ff 100644 --- a/python/get_python.bat +++ b/python/get_python.bat @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/python/get_python.cmake b/python/get_python.cmake index d5a4f745c7..0e1fbfaee6 100644 --- a/python/get_python.cmake +++ b/python/get_python.cmake @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/python/get_python.sh b/python/get_python.sh index 1b28706ca6..9214c45edf 100755 --- a/python/get_python.sh +++ b/python/get_python.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/python/pip.cmd b/python/pip.cmd index 33e403d474..07bcd26ef8 100644 --- a/python/pip.cmd +++ b/python/pip.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/python/pip.sh b/python/pip.sh index 0a9eec20d5..75436e391b 100755 --- a/python/pip.sh +++ b/python/pip.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/python/python.cmd b/python/python.cmd index 74e09deb73..270835acef 100644 --- a/python/python.cmd +++ b/python/python.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/python/python.sh b/python/python.sh index 2407e20ae5..6d53c2ee07 100755 --- a/python/python.sh +++ b/python/python.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index 2a21b166c1..0375587e1b 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Jenkins/Jenkinsfile b/scripts/build/Jenkins/Jenkinsfile index 4c6223073d..8e73524878 100644 --- a/scripts/build/Jenkins/Jenkinsfile +++ b/scripts/build/Jenkins/Jenkinsfile @@ -1,6 +1,6 @@ #!/usr/bin/env groovy /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/scripts/build/Jenkins/tools/jenkins_pipeline_metrics.py b/scripts/build/Jenkins/tools/jenkins_pipeline_metrics.py index 6f69f66944..5702d2de9b 100644 --- a/scripts/build/Jenkins/tools/jenkins_pipeline_metrics.py +++ b/scripts/build/Jenkins/tools/jenkins_pipeline_metrics.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Android/build_and_run_unit_tests.cmd b/scripts/build/Platform/Android/build_and_run_unit_tests.cmd index 6575873dce..2287f38070 100644 --- a/scripts/build/Platform/Android/build_and_run_unit_tests.cmd +++ b/scripts/build/Platform/Android/build_and_run_unit_tests.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Android/gradle_windows.cmd b/scripts/build/Platform/Android/gradle_windows.cmd index a869021b15..4ac5a3ca69 100644 --- a/scripts/build/Platform/Android/gradle_windows.cmd +++ b/scripts/build/Platform/Android/gradle_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Android/run_test_on_android_simulator.py b/scripts/build/Platform/Android/run_test_on_android_simulator.py index e3c4436493..031c52bf7c 100644 --- a/scripts/build/Platform/Android/run_test_on_android_simulator.py +++ b/scripts/build/Platform/Android/run_test_on_android_simulator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/asset_linux.sh b/scripts/build/Platform/Linux/asset_linux.sh index fe2ec3d582..bf27802b6a 100755 --- a/scripts/build/Platform/Linux/asset_linux.sh +++ b/scripts/build/Platform/Linux/asset_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/build_asset_linux.sh b/scripts/build/Platform/Linux/build_asset_linux.sh index d9be128e16..3f564d2ac1 100755 --- a/scripts/build/Platform/Linux/build_asset_linux.sh +++ b/scripts/build/Platform/Linux/build_asset_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/build_linux.sh b/scripts/build/Platform/Linux/build_linux.sh index aeb46020c7..3d12db22e3 100755 --- a/scripts/build/Platform/Linux/build_linux.sh +++ b/scripts/build/Platform/Linux/build_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/build_test_linux.sh b/scripts/build/Platform/Linux/build_test_linux.sh index b7abe72b93..3299ef9085 100755 --- a/scripts/build/Platform/Linux/build_test_linux.sh +++ b/scripts/build/Platform/Linux/build_test_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/clean_linux.sh b/scripts/build/Platform/Linux/clean_linux.sh index 24e0f97afc..af56d9558c 100755 --- a/scripts/build/Platform/Linux/clean_linux.sh +++ b/scripts/build/Platform/Linux/clean_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/env_linux.sh b/scripts/build/Platform/Linux/env_linux.sh index 62de307e9d..49424758ef 100755 --- a/scripts/build/Platform/Linux/env_linux.sh +++ b/scripts/build/Platform/Linux/env_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/python_linux.sh b/scripts/build/Platform/Linux/python_linux.sh index 2cbddf6efb..c9c9eec918 100755 --- a/scripts/build/Platform/Linux/python_linux.sh +++ b/scripts/build/Platform/Linux/python_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Linux/test_linux.sh b/scripts/build/Platform/Linux/test_linux.sh index fcca37222e..3e03dca253 100755 --- a/scripts/build/Platform/Linux/test_linux.sh +++ b/scripts/build/Platform/Linux/test_linux.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/asset_mac.sh b/scripts/build/Platform/Mac/asset_mac.sh index 25a002e801..012416d21c 100755 --- a/scripts/build/Platform/Mac/asset_mac.sh +++ b/scripts/build/Platform/Mac/asset_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/build_asset_mac.sh b/scripts/build/Platform/Mac/build_asset_mac.sh index e5a50fa900..f0ac90ab07 100755 --- a/scripts/build/Platform/Mac/build_asset_mac.sh +++ b/scripts/build/Platform/Mac/build_asset_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/build_mac.sh b/scripts/build/Platform/Mac/build_mac.sh index 00254a2974..00fe684767 100755 --- a/scripts/build/Platform/Mac/build_mac.sh +++ b/scripts/build/Platform/Mac/build_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/build_test_mac.sh b/scripts/build/Platform/Mac/build_test_mac.sh index 569b05d03e..d4560577a1 100755 --- a/scripts/build/Platform/Mac/build_test_mac.sh +++ b/scripts/build/Platform/Mac/build_test_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/clean_mac.sh b/scripts/build/Platform/Mac/clean_mac.sh index 24e0f97afc..af56d9558c 100755 --- a/scripts/build/Platform/Mac/clean_mac.sh +++ b/scripts/build/Platform/Mac/clean_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/env_mac.sh b/scripts/build/Platform/Mac/env_mac.sh index afef865593..0a938f0ec5 100755 --- a/scripts/build/Platform/Mac/env_mac.sh +++ b/scripts/build/Platform/Mac/env_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/python_mac.sh b/scripts/build/Platform/Mac/python_mac.sh index 2cbddf6efb..c9c9eec918 100755 --- a/scripts/build/Platform/Mac/python_mac.sh +++ b/scripts/build/Platform/Mac/python_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Mac/test_mac.sh b/scripts/build/Platform/Mac/test_mac.sh index a04f2f7279..ee9a2f9df8 100755 --- a/scripts/build/Platform/Mac/test_mac.sh +++ b/scripts/build/Platform/Mac/test_mac.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/Platform/Windows/asset_windows.cmd b/scripts/build/Platform/Windows/asset_windows.cmd index 1881fcacaa..97af2bbfca 100644 --- a/scripts/build/Platform/Windows/asset_windows.cmd +++ b/scripts/build/Platform/Windows/asset_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/build_asset_windows.cmd b/scripts/build/Platform/Windows/build_asset_windows.cmd index 22e28ece2d..2b480990a3 100644 --- a/scripts/build/Platform/Windows/build_asset_windows.cmd +++ b/scripts/build/Platform/Windows/build_asset_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/build_installer_windows.cmd b/scripts/build/Platform/Windows/build_installer_windows.cmd index 4207c00634..8ad19f7c14 100644 --- a/scripts/build/Platform/Windows/build_installer_windows.cmd +++ b/scripts/build/Platform/Windows/build_installer_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/build_ninja_windows.cmd b/scripts/build/Platform/Windows/build_ninja_windows.cmd index ce9c04ddcc..9d34a44636 100644 --- a/scripts/build/Platform/Windows/build_ninja_windows.cmd +++ b/scripts/build/Platform/Windows/build_ninja_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/build_test_windows.cmd b/scripts/build/Platform/Windows/build_test_windows.cmd index bbc279ba88..316ee0ad3d 100644 --- a/scripts/build/Platform/Windows/build_test_windows.cmd +++ b/scripts/build/Platform/Windows/build_test_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/build_windows.cmd b/scripts/build/Platform/Windows/build_windows.cmd index 8e6227ed8a..d4e54967b6 100644 --- a/scripts/build/Platform/Windows/build_windows.cmd +++ b/scripts/build/Platform/Windows/build_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/clean_windows.cmd b/scripts/build/Platform/Windows/clean_windows.cmd index 0dbc570db0..ee4039748a 100644 --- a/scripts/build/Platform/Windows/clean_windows.cmd +++ b/scripts/build/Platform/Windows/clean_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/env_windows.cmd b/scripts/build/Platform/Windows/env_windows.cmd index 115cca62bf..81304546ee 100644 --- a/scripts/build/Platform/Windows/env_windows.cmd +++ b/scripts/build/Platform/Windows/env_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/installer_windows.cmd b/scripts/build/Platform/Windows/installer_windows.cmd index e7449eda0a..a8f0198299 100644 --- a/scripts/build/Platform/Windows/installer_windows.cmd +++ b/scripts/build/Platform/Windows/installer_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/python_windows.cmd b/scripts/build/Platform/Windows/python_windows.cmd index ba459e7f96..4f5d029544 100644 --- a/scripts/build/Platform/Windows/python_windows.cmd +++ b/scripts/build/Platform/Windows/python_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/Platform/Windows/test_windows.cmd b/scripts/build/Platform/Windows/test_windows.cmd index 7c74a48355..d6c795aaa2 100644 --- a/scripts/build/Platform/Windows/test_windows.cmd +++ b/scripts/build/Platform/Windows/test_windows.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/build/bootstrap/incremental_build_util.py b/scripts/build/bootstrap/incremental_build_util.py index 31fe503e2c..0a1dce5130 100755 --- a/scripts/build/bootstrap/incremental_build_util.py +++ b/scripts/build/bootstrap/incremental_build_util.py @@ -1,4 +1,4 @@ -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu-awscli.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu-awscli.sh index 34986be047..3bcf80fd0c 100755 --- a/scripts/build/build_node/Platform/Linux/install-ubuntu-awscli.sh +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu-awscli.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh index a04feccb0f..41dbe6202d 100755 --- a/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu-build-tools.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu-git.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu-git.sh index 2ba27214d1..d863c0644e 100755 --- a/scripts/build/build_node/Platform/Linux/install-ubuntu-git.sh +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu-git.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu-python3.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu-python3.sh index 7deeb3071d..df67986c3c 100755 --- a/scripts/build/build_node/Platform/Linux/install-ubuntu-python3.sh +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu-python3.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Linux/install-ubuntu.sh b/scripts/build/build_node/Platform/Linux/install-ubuntu.sh index 932020d1d3..877c6d355d 100755 --- a/scripts/build/build_node/Platform/Linux/install-ubuntu.sh +++ b/scripts/build/build_node/Platform/Linux/install-ubuntu.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Mac/init-setup.sh b/scripts/build/build_node/Platform/Mac/init-setup.sh index 5dd2247fd3..e7b8d0c24a 100755 --- a/scripts/build/build_node/Platform/Mac/init-setup.sh +++ b/scripts/build/build_node/Platform/Mac/init-setup.sh @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Mac/install-jdk.sh b/scripts/build/build_node/Platform/Mac/install-jdk.sh index 7695e56f92..a4d3878c79 100755 --- a/scripts/build/build_node/Platform/Mac/install-jdk.sh +++ b/scripts/build/build_node/Platform/Mac/install-jdk.sh @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Mac/install-python.sh b/scripts/build/build_node/Platform/Mac/install-python.sh index 9b2d8ea194..c1eee8cc7f 100755 --- a/scripts/build/build_node/Platform/Mac/install-python.sh +++ b/scripts/build/build_node/Platform/Mac/install-python.sh @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Mac/install-xcode.sh b/scripts/build/build_node/Platform/Mac/install-xcode.sh index 41a77e6954..c805400777 100755 --- a/scripts/build/build_node/Platform/Mac/install-xcode.sh +++ b/scripts/build/build_node/Platform/Mac/install-xcode.sh @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Mac/jenkins-self-register-mac.sh b/scripts/build/build_node/Platform/Mac/jenkins-self-register-mac.sh index 428caf7d83..95cb361642 100755 --- a/scripts/build/build_node/Platform/Mac/jenkins-self-register-mac.sh +++ b/scripts/build/build_node/Platform/Mac/jenkins-self-register-mac.sh @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/build_node/Platform/Windows/init_setup.ps1 b/scripts/build/build_node/Platform/Windows/init_setup.ps1 index 9e27261791..e6ca968d80 100644 --- a/scripts/build/build_node/Platform/Windows/init_setup.ps1 +++ b/scripts/build/build_node/Platform/Windows/init_setup.ps1 @@ -1,5 +1,5 @@ <# -Copyright (c) Contributors to the Open 3D Engine Project +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 #> diff --git a/scripts/build/build_node/Platform/Windows/install_android.ps1 b/scripts/build/build_node/Platform/Windows/install_android.ps1 index 368eb866a8..32a21596e1 100644 --- a/scripts/build/build_node/Platform/Windows/install_android.ps1 +++ b/scripts/build/build_node/Platform/Windows/install_android.ps1 @@ -1,5 +1,5 @@ <# -Copyright (c) Contributors to the Open 3D Engine Project +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 #> diff --git a/scripts/build/build_node/Platform/Windows/install_cygwin.ps1 b/scripts/build/build_node/Platform/Windows/install_cygwin.ps1 index ad793c6ec6..972498fab3 100644 --- a/scripts/build/build_node/Platform/Windows/install_cygwin.ps1 +++ b/scripts/build/build_node/Platform/Windows/install_cygwin.ps1 @@ -1,5 +1,5 @@ <# -Copyright (c) Contributors to the Open 3D Engine Project +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 #> diff --git a/scripts/build/build_node/Platform/Windows/install_python.ps1 b/scripts/build/build_node/Platform/Windows/install_python.ps1 index 178d90a426..a75ce2783b 100644 --- a/scripts/build/build_node/Platform/Windows/install_python.ps1 +++ b/scripts/build/build_node/Platform/Windows/install_python.ps1 @@ -1,5 +1,5 @@ <# -Copyright (c) Contributors to the Open 3D Engine Project +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 #> diff --git a/scripts/build/build_node/Platform/Windows/install_utiltools.ps1 b/scripts/build/build_node/Platform/Windows/install_utiltools.ps1 index 9b1f9ec0a7..32db09614b 100644 --- a/scripts/build/build_node/Platform/Windows/install_utiltools.ps1 +++ b/scripts/build/build_node/Platform/Windows/install_utiltools.ps1 @@ -1,5 +1,5 @@ <# -Copyright (c) Contributors to the Open 3D Engine Project +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 #> diff --git a/scripts/build/build_node/Platform/Windows/install_vsbuildtools.ps1 b/scripts/build/build_node/Platform/Windows/install_vsbuildtools.ps1 index 5419653a59..2bb095c1d4 100644 --- a/scripts/build/build_node/Platform/Windows/install_vsbuildtools.ps1 +++ b/scripts/build/build_node/Platform/Windows/install_vsbuildtools.ps1 @@ -1,5 +1,5 @@ <# -Copyright (c) Contributors to the Open 3D Engine Project +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 #> diff --git a/scripts/build/build_node/Platform/Windows/setup.sh b/scripts/build/build_node/Platform/Windows/setup.sh index fe3b2109ae..bbcc10c68b 100755 --- a/scripts/build/build_node/Platform/Windows/setup.sh +++ b/scripts/build/build_node/Platform/Windows/setup.sh @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/ci_build.py b/scripts/build/ci_build.py index 72558028b4..28318d54e2 100755 --- a/scripts/build/ci_build.py +++ b/scripts/build/ci_build.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/ci_build_metrics.py b/scripts/build/ci_build_metrics.py index e72c6554f6..a383fe7eb2 100755 --- a/scripts/build/ci_build_metrics.py +++ b/scripts/build/ci_build_metrics.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/lambda/delete_branch_ebs.py b/scripts/build/lambda/delete_branch_ebs.py index 3e3ed00e22..d5186b564e 100644 --- a/scripts/build/lambda/delete_branch_ebs.py +++ b/scripts/build/lambda/delete_branch_ebs.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/lambda/delete_github_branch_ebs.py b/scripts/build/lambda/delete_github_branch_ebs.py index 2165b7b57b..59ea525ffd 100644 --- a/scripts/build/lambda/delete_github_branch_ebs.py +++ b/scripts/build/lambda/delete_github_branch_ebs.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/lambda/trigger_first_build.py b/scripts/build/lambda/trigger_first_build.py index 44e065b6e3..d019dcc18f 100755 --- a/scripts/build/lambda/trigger_first_build.py +++ b/scripts/build/lambda/trigger_first_build.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/package/PackageEnv.py b/scripts/build/package/PackageEnv.py index 0231f13997..7713dfd671 100755 --- a/scripts/build/package/PackageEnv.py +++ b/scripts/build/package/PackageEnv.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/package/Params.py b/scripts/build/package/Params.py index d7a35511c4..69e1d84c9e 100755 --- a/scripts/build/package/Params.py +++ b/scripts/build/package/Params.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/package/glob3.py b/scripts/build/package/glob3.py index af3e67fb1c..ab480952c5 100755 --- a/scripts/build/package/glob3.py +++ b/scripts/build/package/glob3.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/package/glob_to_regex.py b/scripts/build/package/glob_to_regex.py index e4fa49be4d..9a3a2f2113 100755 --- a/scripts/build/package/glob_to_regex.py +++ b/scripts/build/package/glob_to_regex.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/package/package.py b/scripts/build/package/package.py index 031cd5c072..98b94a4b4b 100755 --- a/scripts/build/package/package.py +++ b/scripts/build/package/package.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/package/util.py b/scripts/build/package/util.py index 28ca03679e..c596af8a11 100755 --- a/scripts/build/package/util.py +++ b/scripts/build/package/util.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/submit_metrics.py b/scripts/build/submit_metrics.py index 3a54cc2c8f..85a1819c83 100755 --- a/scripts/build/submit_metrics.py +++ b/scripts/build/submit_metrics.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/tools/delete_inactive_ebs.py b/scripts/build/tools/delete_inactive_ebs.py index aadf4f6111..5bdc1c1200 100644 --- a/scripts/build/tools/delete_inactive_ebs.py +++ b/scripts/build/tools/delete_inactive_ebs.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/tools/delete_stale_ebs.py b/scripts/build/tools/delete_stale_ebs.py index 58e4ab0b26..a46e5f96eb 100644 --- a/scripts/build/tools/delete_stale_ebs.py +++ b/scripts/build/tools/delete_stale_ebs.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/tools/download_from_s3.py b/scripts/build/tools/download_from_s3.py index b76cad1bd5..f4a7b5836c 100755 --- a/scripts/build/tools/download_from_s3.py +++ b/scripts/build/tools/download_from_s3.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/tools/generate_build_tag.py b/scripts/build/tools/generate_build_tag.py index 1a0e21d363..e64c898ded 100644 --- a/scripts/build/tools/generate_build_tag.py +++ b/scripts/build/tools/generate_build_tag.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/tools/sync_repo.py b/scripts/build/tools/sync_repo.py index 9b0b1a4144..c50011ebaf 100644 --- a/scripts/build/tools/sync_repo.py +++ b/scripts/build/tools/sync_repo.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/build/tools/upload_to_s3.py b/scripts/build/tools/upload_to_s3.py index 7a08ea5ebc..db80318d69 100755 --- a/scripts/build/tools/upload_to_s3.py +++ b/scripts/build/tools/upload_to_s3.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/bundler/BuildReleaseAuxiliaryContent.py b/scripts/bundler/BuildReleaseAuxiliaryContent.py index 76c5a40276..99da2d564a 100644 --- a/scripts/bundler/BuildReleaseAuxiliaryContent.py +++ b/scripts/bundler/BuildReleaseAuxiliaryContent.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/scripts/bundler/gen_shaders.py b/scripts/bundler/gen_shaders.py index 70f293edd9..2bd129b1ff 100644 --- a/scripts/bundler/gen_shaders.py +++ b/scripts/bundler/gen_shaders.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/bundler/get_shader_list.py b/scripts/bundler/get_shader_list.py index 266af5ab7b..b5bb81731f 100644 --- a/scripts/bundler/get_shader_list.py +++ b/scripts/bundler/get_shader_list.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/bundler/pak_shaders.py b/scripts/bundler/pak_shaders.py index 5fdd764633..c90be5ab3c 100644 --- a/scripts/bundler/pak_shaders.py +++ b/scripts/bundler/pak_shaders.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/CMakeLists.txt b/scripts/commit_validation/CMakeLists.txt index 19584036a7..a8d623bdc6 100644 --- a/scripts/commit_validation/CMakeLists.txt +++ b/scripts/commit_validation/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/__init__.py b/scripts/commit_validation/commit_validation/__init__.py index 30503258bc..1fe051b062 100755 --- a/scripts/commit_validation/commit_validation/__init__.py +++ b/scripts/commit_validation/commit_validation/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/commit_validation.py b/scripts/commit_validation/commit_validation/commit_validation.py index 0fe99e834b..ba69bbcb73 100755 --- a/scripts/commit_validation/commit_validation/commit_validation.py +++ b/scripts/commit_validation/commit_validation/commit_validation.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/pal_allowedlist.py b/scripts/commit_validation/commit_validation/pal_allowedlist.py index 9ee4fae63f..c29fea1cae 100755 --- a/scripts/commit_validation/commit_validation/pal_allowedlist.py +++ b/scripts/commit_validation/commit_validation/pal_allowedlist.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/__init__.py b/scripts/commit_validation/commit_validation/tests/__init__.py index 30503258bc..1fe051b062 100755 --- a/scripts/commit_validation/commit_validation/tests/__init__.py +++ b/scripts/commit_validation/commit_validation/tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/mocks/__init__.py b/scripts/commit_validation/commit_validation/tests/mocks/__init__.py index 30503258bc..1fe051b062 100755 --- a/scripts/commit_validation/commit_validation/tests/mocks/__init__.py +++ b/scripts/commit_validation/commit_validation/tests/mocks/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/mocks/mock_commit.py b/scripts/commit_validation/commit_validation/tests/mocks/mock_commit.py index 185757e206..6a229f9c9f 100755 --- a/scripts/commit_validation/commit_validation/tests/mocks/mock_commit.py +++ b/scripts/commit_validation/commit_validation/tests/mocks/mock_commit.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/test_pal_allowedlist.py b/scripts/commit_validation/commit_validation/tests/test_pal_allowedlist.py index 68f3e7d255..ac5bdb9143 100755 --- a/scripts/commit_validation/commit_validation/tests/test_pal_allowedlist.py +++ b/scripts/commit_validation/commit_validation/tests/test_pal_allowedlist.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/__init__.py b/scripts/commit_validation/commit_validation/tests/validators/__init__.py index 3a3549d485..5482b53e84 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/__init__.py +++ b/scripts/commit_validation/commit_validation/tests/validators/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_az_platform_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_az_platform_validator.py index 920bc2c1f1..3b06923780 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_az_platform_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_az_platform_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_az_trait_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_az_trait_validator.py index 52067f2aae..4d0d5adafa 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_az_trait_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_az_trait_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_copyright_header_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_copyright_header_validator.py index 88a30b09f8..ed61af285c 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_copyright_header_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_copyright_header_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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# # @@ -13,19 +13,19 @@ from commit_validation.validators.copyright_header_validator import CopyrightHea class CopyrightHeaderValidatorTests(unittest.TestCase): @patch('builtins.open', mock_open(read_data='This file does contain\n' - 'Copyright (c) Contributors to the Open 3D Engine Project, so it should pass\n')) + '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., so it should pass\n')) def test_fileWithCopyrightHeader_passes(self): commit = MockCommit(files=['/someCppFile.cpp']) files = [ 'This file does contain\n' - 'Copyright (c) Contributors to the Open 3D Engine Project, so it should pass\n', + '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., so it should pass\n', 'This file does contain\n' - 'Copyright(c) Contributors to the Open 3D Engine Project, so it should pass\n' + '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., so it should pass\n' 'and there\'s no space between "Copyright" and "(c)"', 'This file has a upper-case C between the parenthesis\n' - '// Copyright (C) Contributors to the Open 3D Engine Project.', + '// 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.', ] for file in files: with patch('builtins.open', mock_open(read_data=file)): @@ -63,6 +63,14 @@ class CopyrightHeaderValidatorTests(unittest.TestCase): self.assertFalse(CopyrightHeaderValidator().run(commit, error_list)) self.assertNotEqual(len(error_list), 0, f"Errors were expected but none were returned.") + @patch('builtins.open', mock_open(read_data='Copyright (c) Contributors to the Open 3D Engine Project.\n' + '******************\n'.format(' '))) + def test_fileWithStaleO3DECopyrightHeader_fails(self): + commit = MockCommit(files=['/someCppFile.cpp']) + error_list = [] + self.assertFalse(CopyrightHeaderValidator().run(commit, error_list)) + self.assertNotEqual(len(error_list), 0, f"Errors were expected but none were returned.") + @patch('builtins.open', mock_open(read_data='This file does contains legacy header\n' 'Copyright{0}Crytek\n'.format(' '))) def test_fileWithCrytekCopyrightHeader_fails(self): diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_diff_whitespace_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_diff_whitespace_validator.py index ced3cc5c78..7fd8236eda 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_diff_whitespace_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_diff_whitespace_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_generated_files_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_generated_files_validator.py index 8a08e11e22..856d97806a 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_generated_files_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_generated_files_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_git_conflict_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_git_conflict_validator.py index 90b4d6209a..05c9d463ec 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_git_conflict_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_git_conflict_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_newline_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_newline_validator.py index cd970d5b96..a8a124ec20 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_newline_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_newline_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_platform_macro_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_platform_macro_validator.py index 1760233e27..1df2e0ac69 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_platform_macro_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_platform_macro_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_pragma_optimize_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_pragma_optimize_validator.py index c9d478d4e4..f6f05f27c2 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_pragma_optimize_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_pragma_optimize_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_tabs_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_tabs_validator.py index 68932e633d..c1c618a9c2 100755 --- a/scripts/commit_validation/commit_validation/tests/validators/test_tabs_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_tabs_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/tests/validators/test_unicode_validator.py b/scripts/commit_validation/commit_validation/tests/validators/test_unicode_validator.py index 448518a2b3..24a031b3ab 100644 --- a/scripts/commit_validation/commit_validation/tests/validators/test_unicode_validator.py +++ b/scripts/commit_validation/commit_validation/tests/validators/test_unicode_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/__init__.py b/scripts/commit_validation/commit_validation/validators/__init__.py index 30503258bc..1fe051b062 100755 --- a/scripts/commit_validation/commit_validation/validators/__init__.py +++ b/scripts/commit_validation/commit_validation/validators/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/az_platform_validator.py b/scripts/commit_validation/commit_validation/validators/az_platform_validator.py index dd3562863b..340cacb712 100755 --- a/scripts/commit_validation/commit_validation/validators/az_platform_validator.py +++ b/scripts/commit_validation/commit_validation/validators/az_platform_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/az_trait_validator.py b/scripts/commit_validation/commit_validation/validators/az_trait_validator.py index 94ccca5624..14d1f00ff2 100755 --- a/scripts/commit_validation/commit_validation/validators/az_trait_validator.py +++ b/scripts/commit_validation/commit_validation/validators/az_trait_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py b/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py index 88ca9a8592..d7206f909b 100755 --- a/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py +++ b/scripts/commit_validation/commit_validation/validators/copyright_header_validator.py @@ -11,7 +11,8 @@ from typing import Type, List from commit_validation.commit_validation import Commit, CommitValidator, IsFileSkipped, SOURCE_AND_SCRIPT_FILE_EXTENSIONS, EXCLUDED_VALIDATION_PATTERNS, VERBOSE -OPEN_3D_ENGINE_PATTERN = re.compile(r'copyright[\s]*(?:\(c\))?[\s]*.*?Contributors\sto\sthe\sOpen\s3D\sEngine\sProject', re.IGNORECASE | re.DOTALL) +OPEN_3D_ENGINE_PATTERN_STALE = re.compile(r'copyright[\s]*(?:\(c\))?[\s]*.*?Contributors\sto\sthe\sOpen\s3D\sEngine\sProject\s*$', re.IGNORECASE | re.DOTALL) +OPEN_3D_ENGINE_PATTERN = re.compile(r'copyright[\s]*(?:\(c\))?[\s]*.*?Contributors\sto\sthe\sOpen\s3D\sEngine\sProject\.\sFor\scomplete\scopyright\sand\slicense\sterms\splease\ssee\sthe\sLICENSE\sat\sthe\sroot\sof\sthis\sdistribution\.', re.IGNORECASE | re.DOTALL) AMAZON_ORIGINAL_COPYRIGHT_PATTERN = re.compile(r'.*?this\sfile\sCopyright\s*\(c\)\s*Amazon\.com.*?', re.IGNORECASE | re.DOTALL) AMAZON_MODIFICATION_COPYRIGHT_PATTERN = re.compile(r'.*?Modifications\scopyright\sAmazon\.com', re.IGNORECASE | re.DOTALL) CRYTEK_COPYRIGHT_PATTERN = re.compile(r'Copyright Crytek', re.MULTILINE) @@ -49,10 +50,12 @@ class CopyrightHeaderValidator(CommitValidator): has_amazon_mod_pattern = False has_crytek_pattern = False has_original_amazon_copyright_pattern = False + has_stale_o3de_pattern = False with open(file_name, 'rt', encoding='utf8', errors='replace') as fh: for line in fh: - + if OPEN_3D_ENGINE_PATTERN_STALE.search(line): + has_stale_o3de_pattern = True if OPEN_3D_ENGINE_PATTERN.search(line): has_o3de_pattern = True elif AMAZON_ORIGINAL_COPYRIGHT_PATTERN.search(line): @@ -74,6 +77,12 @@ class CopyrightHeaderValidator(CommitValidator): if VERBOSE: print(error_message) errors.append(error_message) + if has_stale_o3de_pattern: + # Has the stale the O3DE copyright (without the 'For complete copyright...') + error_message = str(f"{file_name}::{self.__class__.__name__} FAILED - Source file O3DE copyright header missing 'For complete copyright...'") + if VERBOSE: print(error_message) + errors.append(error_message) + if not has_o3de_pattern: # Missing the O3DE copyright AND does not have the Amazon Modifications copyright, assuming that this file is missing valid copyrights in general error_message = str(f'{file_name}::{self.__class__.__name__} FAILED - Source file missing O3DE copyright header.') diff --git a/scripts/commit_validation/commit_validation/validators/diff_whitespace_validator.py b/scripts/commit_validation/commit_validation/validators/diff_whitespace_validator.py index f91103cce3..4ffd9ed823 100755 --- a/scripts/commit_validation/commit_validation/validators/diff_whitespace_validator.py +++ b/scripts/commit_validation/commit_validation/validators/diff_whitespace_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/generated_files_validator.py b/scripts/commit_validation/commit_validation/validators/generated_files_validator.py index 00339945f2..3d27003628 100755 --- a/scripts/commit_validation/commit_validation/validators/generated_files_validator.py +++ b/scripts/commit_validation/commit_validation/validators/generated_files_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/git_conflict_validator.py b/scripts/commit_validation/commit_validation/validators/git_conflict_validator.py index e3c9999df7..bbfe90a03d 100755 --- a/scripts/commit_validation/commit_validation/validators/git_conflict_validator.py +++ b/scripts/commit_validation/commit_validation/validators/git_conflict_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/newline_validator.py b/scripts/commit_validation/commit_validation/validators/newline_validator.py index 7a4083d44e..88f641b3b8 100755 --- a/scripts/commit_validation/commit_validation/validators/newline_validator.py +++ b/scripts/commit_validation/commit_validation/validators/newline_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/platform_macro_validator.py b/scripts/commit_validation/commit_validation/validators/platform_macro_validator.py index f1a862d61a..143d1dd1b2 100755 --- a/scripts/commit_validation/commit_validation/validators/platform_macro_validator.py +++ b/scripts/commit_validation/commit_validation/validators/platform_macro_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/pragma_optimize_validator.py b/scripts/commit_validation/commit_validation/validators/pragma_optimize_validator.py index 79414a524f..601dce8e0d 100755 --- a/scripts/commit_validation/commit_validation/validators/pragma_optimize_validator.py +++ b/scripts/commit_validation/commit_validation/validators/pragma_optimize_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/tabs_validator.py b/scripts/commit_validation/commit_validation/validators/tabs_validator.py index bf43f91d32..049090c0ad 100755 --- a/scripts/commit_validation/commit_validation/validators/tabs_validator.py +++ b/scripts/commit_validation/commit_validation/validators/tabs_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/commit_validation/validators/unicode_validator.py b/scripts/commit_validation/commit_validation/validators/unicode_validator.py index ebd8282dcc..4c40b3a73f 100644 --- a/scripts/commit_validation/commit_validation/validators/unicode_validator.py +++ b/scripts/commit_validation/commit_validation/validators/unicode_validator.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/fix_copyright_headers.py b/scripts/commit_validation/fix_copyright_headers.py index 6239ae8d27..fc8fae6bed 100755 --- a/scripts/commit_validation/fix_copyright_headers.py +++ b/scripts/commit_validation/fix_copyright_headers.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # @@ -11,7 +11,7 @@ import re copyrightre = re.compile(r'All or portions of this file Copyright \(c\) Amazon\.com') copyright_text = """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/scripts/commit_validation/fix_tabs.py b/scripts/commit_validation/fix_tabs.py index 56de5837e2..b2a9e5145f 100755 --- a/scripts/commit_validation/fix_tabs.py +++ b/scripts/commit_validation/fix_tabs.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/fix_unicode.py b/scripts/commit_validation/fix_unicode.py index 39abbe055a..8c06fcd58f 100644 --- a/scripts/commit_validation/fix_unicode.py +++ b/scripts/commit_validation/fix_unicode.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/git_validate_branch.py b/scripts/commit_validation/git_validate_branch.py index 9ce52abaa2..1678cc22e2 100755 --- a/scripts/commit_validation/git_validate_branch.py +++ b/scripts/commit_validation/git_validate_branch.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/p4.py b/scripts/commit_validation/p4.py index a1ab547880..b3ecfdc6d6 100755 --- a/scripts/commit_validation/p4.py +++ b/scripts/commit_validation/p4.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/p4_validate_changelist.py b/scripts/commit_validation/p4_validate_changelist.py index 887df87fd5..f349168dbe 100755 --- a/scripts/commit_validation/p4_validate_changelist.py +++ b/scripts/commit_validation/p4_validate_changelist.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/p4_validate_submitted_changelists.py b/scripts/commit_validation/p4_validate_submitted_changelists.py index dc47d02cab..5c5a574f29 100755 --- a/scripts/commit_validation/p4_validate_submitted_changelists.py +++ b/scripts/commit_validation/p4_validate_submitted_changelists.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/commit_validation/validate_file_or_folder.py b/scripts/commit_validation/validate_file_or_folder.py index 670e420221..16c8e2c6c9 100755 --- a/scripts/commit_validation/validate_file_or_folder.py +++ b/scripts/commit_validation/validate_file_or_folder.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/ctest/CMakeLists.txt b/scripts/ctest/CMakeLists.txt index 05405623dd..4fe6703f4c 100644 --- a/scripts/ctest/CMakeLists.txt +++ b/scripts/ctest/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/ctest/ctest_driver.py b/scripts/ctest/ctest_driver.py index 01ad045cb3..4dcbfe06d4 100755 --- a/scripts/ctest/ctest_driver.py +++ b/scripts/ctest/ctest_driver.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/scripts/ctest/ctest_driver_test.py b/scripts/ctest/ctest_driver_test.py index 1a095c50ac..9dd94cfc6a 100755 --- a/scripts/ctest/ctest_driver_test.py +++ b/scripts/ctest/ctest_driver_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/scripts/ctest/ctest_entrypoint.cmd b/scripts/ctest/ctest_entrypoint.cmd index fe531369b4..3f931ab808 100644 --- a/scripts/ctest/ctest_entrypoint.cmd +++ b/scripts/ctest/ctest_entrypoint.cmd @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/ctest/ctest_entrypoint.sh b/scripts/ctest/ctest_entrypoint.sh index d7d3f89b7a..993c464bde 100755 --- a/scripts/ctest/ctest_entrypoint.sh +++ b/scripts/ctest/ctest_entrypoint.sh @@ -1,7 +1,7 @@ #!/bin/bash # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/ctest/epb_sanity_test.py b/scripts/ctest/epb_sanity_test.py index 36ca2eb219..d7c76de4af 100755 --- a/scripts/ctest/epb_sanity_test.py +++ b/scripts/ctest/epb_sanity_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/scripts/ctest/result_processing/__init__.py b/scripts/ctest/result_processing/__init__.py index a3a4055d50..e200fa77d0 100755 --- a/scripts/ctest/result_processing/__init__.py +++ b/scripts/ctest/result_processing/__init__.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/scripts/ctest/result_processing/result_processing.py b/scripts/ctest/result_processing/result_processing.py index e47786baa1..f4ebc485cc 100755 --- a/scripts/ctest/result_processing/result_processing.py +++ b/scripts/ctest/result_processing/result_processing.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/scripts/ctest/sanity_test.py b/scripts/ctest/sanity_test.py index aae449fd04..303fe1e559 100755 --- a/scripts/ctest/sanity_test.py +++ b/scripts/ctest/sanity_test.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/scripts/detect_file_changes/CMakeLists.txt b/scripts/detect_file_changes/CMakeLists.txt index 6131fdd50d..d4e2eae3ec 100644 --- a/scripts/detect_file_changes/CMakeLists.txt +++ b/scripts/detect_file_changes/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/detect_file_changes/compare_snapshots.py b/scripts/detect_file_changes/compare_snapshots.py index 0164da6806..cba6eb49c6 100755 --- a/scripts/detect_file_changes/compare_snapshots.py +++ b/scripts/detect_file_changes/compare_snapshots.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/detect_file_changes/make_snapshot.py b/scripts/detect_file_changes/make_snapshot.py index 165ec4df61..6b9051edb0 100755 --- a/scripts/detect_file_changes/make_snapshot.py +++ b/scripts/detect_file_changes/make_snapshot.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/detect_file_changes/snapshot_folder/__init__.py b/scripts/detect_file_changes/snapshot_folder/__init__.py index 30503258bc..1fe051b062 100755 --- a/scripts/detect_file_changes/snapshot_folder/__init__.py +++ b/scripts/detect_file_changes/snapshot_folder/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/detect_file_changes/snapshot_folder/snapshot_folder.py b/scripts/detect_file_changes/snapshot_folder/snapshot_folder.py index ca269e203f..442d1f8844 100755 --- a/scripts/detect_file_changes/snapshot_folder/snapshot_folder.py +++ b/scripts/detect_file_changes/snapshot_folder/snapshot_folder.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/detect_file_changes/snapshot_folder/tests/__init__.py b/scripts/detect_file_changes/snapshot_folder/tests/__init__.py index 30503258bc..1fe051b062 100755 --- a/scripts/detect_file_changes/snapshot_folder/tests/__init__.py +++ b/scripts/detect_file_changes/snapshot_folder/tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/detect_file_changes/snapshot_folder/tests/test_snapshots.py b/scripts/detect_file_changes/snapshot_folder/tests/test_snapshots.py index 7b38545ded..e94da1986e 100755 --- a/scripts/detect_file_changes/snapshot_folder/tests/test_snapshots.py +++ b/scripts/detect_file_changes/snapshot_folder/tests/test_snapshots.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/migration/non_uniform_scale.py b/scripts/migration/non_uniform_scale.py index dddfe65d01..4f7f205aa0 100644 --- a/scripts/migration/non_uniform_scale.py +++ b/scripts/migration/non_uniform_scale.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de.bat b/scripts/o3de.bat index cddca71120..98603bbeb2 100644 --- a/scripts/o3de.bat +++ b/scripts/o3de.bat @@ -1,6 +1,6 @@ @ECHO OFF REM -REM Copyright (c) Contributors to the Open 3D Engine Project +REM 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. REM REM SPDX-License-Identifier: Apache-2.0 OR MIT REM diff --git a/scripts/o3de.py b/scripts/o3de.py index 0405288c5f..72a241b387 100755 --- a/scripts/o3de.py +++ b/scripts/o3de.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de.sh b/scripts/o3de.sh index f8b18446de..63469823e4 100755 --- a/scripts/o3de.sh +++ b/scripts/o3de.sh @@ -1,7 +1,7 @@ #!/bin/sh # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/CMakeLists.txt b/scripts/o3de/CMakeLists.txt index e8c8de36c3..3cce6b1b93 100644 --- a/scripts/o3de/CMakeLists.txt +++ b/scripts/o3de/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/README.txt b/scripts/o3de/README.txt index 37778f01db..84e7bbaaa1 100644 --- a/scripts/o3de/README.txt +++ b/scripts/o3de/README.txt @@ -1,4 +1,4 @@ -Copyright (c) Contributors to the Open 3D Engine Project +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 diff --git a/scripts/o3de/o3de/__init__.py b/scripts/o3de/o3de/__init__.py index 30503258bc..1fe051b062 100644 --- a/scripts/o3de/o3de/__init__.py +++ b/scripts/o3de/o3de/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/cmake.py b/scripts/o3de/o3de/cmake.py index 8ba2d3fad7..99d2f67b98 100644 --- a/scripts/o3de/o3de/cmake.py +++ b/scripts/o3de/o3de/cmake.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/disable_gem.py b/scripts/o3de/o3de/disable_gem.py index ff4edc19dd..1d3d16d3aa 100644 --- a/scripts/o3de/o3de/disable_gem.py +++ b/scripts/o3de/o3de/disable_gem.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/download.py b/scripts/o3de/o3de/download.py index 14fa4dd2a4..db453ae23c 100644 --- a/scripts/o3de/o3de/download.py +++ b/scripts/o3de/o3de/download.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/enable_gem.py b/scripts/o3de/o3de/enable_gem.py index 9f5cc282bf..0bafcda480 100644 --- a/scripts/o3de/o3de/enable_gem.py +++ b/scripts/o3de/o3de/enable_gem.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/engine_template.py b/scripts/o3de/o3de/engine_template.py index 54ec8aced4..e424288eb5 100755 --- a/scripts/o3de/o3de/engine_template.py +++ b/scripts/o3de/o3de/engine_template.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # @@ -1649,7 +1649,7 @@ def create_project(project_path: pathlib.Path, with open(cmakelists_file_name, 'w') as d: if keep_license_text: d.write('# {BEGIN_LICENSE}\n') - d.write('# Copyright (c) Contributors to the Open 3D Engine Project\n') + d.write('# 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.\n') d.write('#\n') d.write('# SPDX-License-Identifier: Apache-2.0 OR MIT\n') d.write('# {END_LICENSE}\n') @@ -2041,7 +2041,7 @@ def create_gem(gem_path: pathlib.Path, with open(cmakelists_file_name, 'w') as d: if keep_license_text: d.write('# {BEGIN_LICENSE}\n') - d.write('# Copyright (c) Contributors to the Open 3D Engine Project\n') + d.write('# 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.\n') d.write('#\n') d.write('# SPDX-License-Identifier: Apache-2.0 OR MIT\n') d.write('# {END_LICENSE}\n') diff --git a/scripts/o3de/o3de/get_registration.py b/scripts/o3de/o3de/get_registration.py index 584aaa93f6..145f3da044 100644 --- a/scripts/o3de/o3de/get_registration.py +++ b/scripts/o3de/o3de/get_registration.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/global_project.py b/scripts/o3de/o3de/global_project.py index fde76b8230..2c56e991a7 100644 --- a/scripts/o3de/o3de/global_project.py +++ b/scripts/o3de/o3de/global_project.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/manifest.py b/scripts/o3de/o3de/manifest.py index c93536c484..832987be3c 100644 --- a/scripts/o3de/o3de/manifest.py +++ b/scripts/o3de/o3de/manifest.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/print_registration.py b/scripts/o3de/o3de/print_registration.py index 52cb2379c7..cd0d65fd56 100644 --- a/scripts/o3de/o3de/print_registration.py +++ b/scripts/o3de/o3de/print_registration.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/project_properties.py b/scripts/o3de/o3de/project_properties.py index 51cac57421..251787bb01 100644 --- a/scripts/o3de/o3de/project_properties.py +++ b/scripts/o3de/o3de/project_properties.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/register.py b/scripts/o3de/o3de/register.py index 16c539c358..7ad341784e 100644 --- a/scripts/o3de/o3de/register.py +++ b/scripts/o3de/o3de/register.py @@ -1,6 +1,6 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/repo.py b/scripts/o3de/o3de/repo.py index 3851987449..fc124a85f6 100644 --- a/scripts/o3de/o3de/repo.py +++ b/scripts/o3de/o3de/repo.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/sha256.py b/scripts/o3de/o3de/sha256.py index cf61478b72..2f8fef29af 100644 --- a/scripts/o3de/o3de/sha256.py +++ b/scripts/o3de/o3de/sha256.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/utils.py b/scripts/o3de/o3de/utils.py index 29035ee43f..5702ed7d00 100755 --- a/scripts/o3de/o3de/utils.py +++ b/scripts/o3de/o3de/utils.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/o3de/validation.py b/scripts/o3de/o3de/validation.py index 50c8000c9c..7b7e202055 100644 --- a/scripts/o3de/o3de/validation.py +++ b/scripts/o3de/o3de/validation.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/setup.py b/scripts/o3de/setup.py index 5d0a56fb1f..afcc8306e7 100644 --- a/scripts/o3de/setup.py +++ b/scripts/o3de/setup.py @@ -1,5 +1,5 @@ """ -Copyright (c) Contributors to the Open 3D Engine Project +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 """ diff --git a/scripts/o3de/tests/CMakeLists.txt b/scripts/o3de/tests/CMakeLists.txt index df4cd874e4..823f9f8b71 100644 --- a/scripts/o3de/tests/CMakeLists.txt +++ b/scripts/o3de/tests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/tests/__init__.py b/scripts/o3de/tests/__init__.py index 30503258bc..1fe051b062 100644 --- a/scripts/o3de/tests/__init__.py +++ b/scripts/o3de/tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/tests/unit_test_cmake.py b/scripts/o3de/tests/unit_test_cmake.py index ea68a0923a..4aecd16f21 100644 --- a/scripts/o3de/tests/unit_test_cmake.py +++ b/scripts/o3de/tests/unit_test_cmake.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/tests/unit_test_engine_template.py b/scripts/o3de/tests/unit_test_engine_template.py index d8b1a73267..27311dba64 100755 --- a/scripts/o3de/tests/unit_test_engine_template.py +++ b/scripts/o3de/tests/unit_test_engine_template.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # @@ -15,7 +15,7 @@ from unittest.mock import patch CPP_LICENSE_TEXT = """// {BEGIN_LICENSE} /* - * Copyright (c) Contributors to the Open 3D Engine Project + * 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 * diff --git a/scripts/o3de/tests/unit_test_global_project.py b/scripts/o3de/tests/unit_test_global_project.py index ec8ad3f1f1..1d1a89a600 100644 --- a/scripts/o3de/tests/unit_test_global_project.py +++ b/scripts/o3de/tests/unit_test_global_project.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/tests/unit_test_manifest.py b/scripts/o3de/tests/unit_test_manifest.py index f851fae8e3..267d0d67da 100644 --- a/scripts/o3de/tests/unit_test_manifest.py +++ b/scripts/o3de/tests/unit_test_manifest.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/tests/unit_test_register.py b/scripts/o3de/tests/unit_test_register.py index c5f2246e70..fa60f0a782 100644 --- a/scripts/o3de/tests/unit_test_register.py +++ b/scripts/o3de/tests/unit_test_register.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/o3de/tests/unit_test_utils.py b/scripts/o3de/tests/unit_test_utils.py index 2e4b91469c..c6b27a596a 100755 --- a/scripts/o3de/tests/unit_test_utils.py +++ b/scripts/o3de/tests/unit_test_utils.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/scrubbing/scrubbing_job.py b/scripts/scrubbing/scrubbing_job.py index e0910f3e92..191bfec0d8 100755 --- a/scripts/scrubbing/scrubbing_job.py +++ b/scripts/scrubbing/scrubbing_job.py @@ -1,5 +1,5 @@ # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/scrubbing/validator.py b/scripts/scrubbing/validator.py index 188d5a3a11..21295bfff9 100755 --- a/scripts/scrubbing/validator.py +++ b/scripts/scrubbing/validator.py @@ -3,7 +3,7 @@ references or code that should not be published. Can be used to scan any directory.""" # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # diff --git a/scripts/scrubbing/validator_data_LEGAL_REVIEW_REQUIRED.py b/scripts/scrubbing/validator_data_LEGAL_REVIEW_REQUIRED.py index 9fd1205684..cf28e43032 100755 --- a/scripts/scrubbing/validator_data_LEGAL_REVIEW_REQUIRED.py +++ b/scripts/scrubbing/validator_data_LEGAL_REVIEW_REQUIRED.py @@ -1,7 +1,7 @@ # This python file contains the data used to drive the validator. """Data for Validator tool""" # -# Copyright (c) Contributors to the Open 3D Engine Project +# 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 # From 658c974db95675d6896c2c414f71ec9c3f186ddc Mon Sep 17 00:00:00 2001 From: dmcdiar Date: Wed, 30 Jun 2021 20:15:30 -0700 Subject: [PATCH 076/111] Properly handled reinitializing the cubemap asset when it is changed between Baked and Authored Signed-off-by: dmcdiar --- .../ReflectionProbeComponentController.cpp | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp index b2d842c82b..b99613e923 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/ReflectionProbe/ReflectionProbeComponentController.cpp @@ -214,11 +214,25 @@ namespace AZ void ReflectionProbeComponentController::UpdateCubeMap() { + // disconnect the asset bus since we might reconnect with a different asset + Data::AssetBus::MultiHandler::BusDisconnect(); + Data::Asset& cubeMapAsset = m_configuration.m_useBakedCubemap ? m_configuration.m_bakedCubeMapAsset : m_configuration.m_authoredCubeMapAsset; - // this will invoke OnAssetReady() - Data::AssetBus::MultiHandler::BusConnect(cubeMapAsset.GetId()); + if (cubeMapAsset.GetId().IsValid()) + { + cubeMapAsset.QueueLoad(); + + // this will invoke OnAssetReady() + Data::AssetBus::MultiHandler::BusConnect(cubeMapAsset.GetId()); + } + else + { + // clear the current cubemap + Data::Instance image = nullptr; + m_featureProcessor->SetProbeCubeMap(m_handle, image, {}); + } } void ReflectionProbeComponentController::OnTransformChanged([[maybe_unused]] const AZ::Transform& local, const AZ::Transform& world) From c6b86e3c40f782647e3d34859d633158a52cc072 Mon Sep 17 00:00:00 2001 From: moudgils <47460854+moudgils@users.noreply.github.com> Date: Wed, 30 Jun 2021 23:23:55 -0700 Subject: [PATCH 077/111] Remove an assert (#1712) Signed-off-by: moudgils Remove this assert as it was firing for swapchain imageview. --- Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp index 6e0ea961f0..652f60e2fc 100644 --- a/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp +++ b/Gems/Atom/RHI/Metal/Code/Source/RHI/ImageView.cpp @@ -61,7 +61,6 @@ namespace AZ //If view format is invalid use the base texture's format if(textureViewFormat == MTLPixelFormatInvalid) { - AZ_Assert(false,"View format is invalid"); textureViewFormat = textureFormat; } From 899350b5c72c05c86d3ce5d41b25dbe2d1918ead Mon Sep 17 00:00:00 2001 From: greerdv Date: Thu, 1 Jul 2021 11:24:10 +0100 Subject: [PATCH 078/111] bring across lua raycast improvements from 1.x Signed-off-by: greerdv --- .../Physics/Collision/CollisionGroups.cpp | 26 ++- .../Physics/Common/PhysicsSceneQueries.cpp | 17 +- .../AzFramework/AzFramework/Physics/Utils.cpp | 29 ++-- Gems/PhysX/Code/Source/Shape.cpp | 6 + Gems/PhysX/Code/Tests/PhysXScriptTest.cpp | 154 ++++++++++++++++++ Gems/PhysX/Code/physx_tests_files.cmake | 1 + 6 files changed, 214 insertions(+), 19 deletions(-) create mode 100644 Gems/PhysX/Code/Tests/PhysXScriptTest.cpp diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp index 36bd7178c1..f8cc37156e 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp @@ -34,6 +34,28 @@ namespace AzPhysics const CollisionGroup CollisionGroup::All_NoTouchBend = CollisionGroup::All.GetMask() & ~CollisionLayer::TouchBend.GetMask(); #endif + void CollisionGroupScriptConstructor(CollisionGroup* thisPtr, AZ::ScriptDataContext& scriptDataContext) + { + int numArgs = scriptDataContext.GetNumArguments(); + if (numArgs != 1) + { + scriptDataContext.GetScriptContext()->Error(AZ::ScriptContext::ErrorType::Error, true, + "CollisionGroup() accepts only 1 argument, not %d", numArgs); + return; + } + + if (!scriptDataContext.IsString(0)) + { + scriptDataContext.GetScriptContext()->Error(AZ::ScriptContext::ErrorType::Error, true, + "Argument to CollisionGroup() should be string"); + return; + } + + AZStd::string groupName; + scriptDataContext.ReadArg(0, groupName); + *thisPtr = CollisionGroup(groupName); + } + void CollisionGroup::Reflect(AZ::ReflectContext* context) { if (auto* serializeContext = azrtti_cast(context)) @@ -50,7 +72,9 @@ namespace AzPhysics ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) ->Attribute(AZ::Script::Attributes::Module, "physics") ->Attribute(AZ::Script::Attributes::Category, "AzPhysics") - ->Constructor() + ->Constructor() + ->Attribute(AZ::Script::Attributes::Storage, AZ::Script::Attributes::StorageType::Value) + ->Attribute(AZ::Script::Attributes::ConstructorOverride, &CollisionGroupScriptConstructor) ; } } diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp index 92cd89a801..30e0cde9df 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Common/PhysicsSceneQueries.cpp @@ -88,6 +88,19 @@ namespace AzPhysics ; } } + + if (auto* behaviorContext = azdynamic_cast(context)) + { + behaviorContext->Class("SceneQueryRequest") + ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) + ->Attribute(AZ::Script::Attributes::Module, "physics") + ->Attribute(AZ::Script::Attributes::Category, "PhysX") + ->Property("Collision", BehaviorValueProperty(&SceneQueryRequest::m_collisionGroup)) + // Until enum class support for behavior context is done, expose this as an int + ->Property("QueryType", [](const SceneQueryRequest& self) { return static_cast(self.m_queryType); }, + [](SceneQueryRequest& self, int newQueryType) { self.m_queryType = SceneQuery::QueryType(newQueryType); }) + ; + } } /*static*/ void RayCastRequest::Reflect(AZ::ReflectContext* context) @@ -123,10 +136,6 @@ namespace AzPhysics ->Property("Distance", BehaviorValueProperty(&RayCastRequest::m_distance)) ->Property("Start", BehaviorValueProperty(&RayCastRequest::m_start)) ->Property("Direction", BehaviorValueProperty(&RayCastRequest::m_direction)) - ->Property("Collision", BehaviorValueProperty(&RayCastRequest::m_collisionGroup)) - // Until enum class support for behavior context is done, expose this as an int - ->Property("QueryType", [](const RayCastRequest& self) { return static_cast(self.m_queryType); }, - [](RayCastRequest& self, int newQueryType) { self.m_queryType = SceneQuery::QueryType(newQueryType); }) ; } } diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp index 809b4a2b0f..6498b6afce 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Utils.cpp @@ -73,21 +73,22 @@ namespace Physics { if (auto behaviorContext = azrtti_cast(context)) { - behaviorContext->EBus("CharacterControllerRequestBus", "Character Controller") - ->Attribute(AZ::Script::Attributes::Storage, AZ::Script::Attributes::StorageType::RuntimeOwn) + behaviorContext->EBus("CharacterControllerRequestBus") + ->Attribute(AZ::Script::Attributes::Scope, AZ::Script::Attributes::ScopeFlags::Common) + ->Attribute(AZ::Script::Attributes::Module, "physics") ->Attribute(AZ::Edit::Attributes::Category, "PhysX") - ->Event("GetBasePosition", &Physics::CharacterRequests::GetBasePosition, "Get Base Position") - ->Event("SetBasePosition", &Physics::CharacterRequests::SetBasePosition, "Set Base Position") - ->Event("GetCenterPosition", &Physics::CharacterRequests::GetCenterPosition, "Get Center Position") - ->Event("GetStepHeight", &Physics::CharacterRequests::GetStepHeight, "Get Step Height") - ->Event("SetStepHeight", &Physics::CharacterRequests::SetStepHeight, "Set Step Height") - ->Event("GetUpDirection", &Physics::CharacterRequests::GetUpDirection, "Get Up Direction") - ->Event("GetSlopeLimitDegrees", &Physics::CharacterRequests::GetSlopeLimitDegrees, "Get Slope Limit (Degrees)") - ->Event("SetSlopeLimitDegrees", &Physics::CharacterRequests::SetSlopeLimitDegrees, "Set Slope Limit (Degrees)") - ->Event("GetMaximumSpeed", &Physics::CharacterRequests::GetMaximumSpeed, "Get Maximum Speed") - ->Event("SetMaximumSpeed", &Physics::CharacterRequests::SetMaximumSpeed, "Set Maximum Speed") - ->Event("GetVelocity", &Physics::CharacterRequests::GetVelocity, "Get Velocity") - ->Event("AddVelocity", &Physics::CharacterRequests::AddVelocity, "Add Velocity") + ->Event("GetBasePosition", &CharacterRequests::GetBasePosition, "Get Base Position") + ->Event("SetBasePosition", &CharacterRequests::SetBasePosition, "Set Base Position") + ->Event("GetCenterPosition", &CharacterRequests::GetCenterPosition, "Get Center Position") + ->Event("GetStepHeight", &CharacterRequests::GetStepHeight, "Get Step Height") + ->Event("SetStepHeight", &CharacterRequests::SetStepHeight, "Set Step Height") + ->Event("GetUpDirection", &CharacterRequests::GetUpDirection, "Get Up Direction") + ->Event("GetSlopeLimitDegrees", &CharacterRequests::GetSlopeLimitDegrees, "Get Slope Limit (Degrees)") + ->Event("SetSlopeLimitDegrees", &CharacterRequests::SetSlopeLimitDegrees, "Set Slope Limit (Degrees)") + ->Event("GetMaximumSpeed", &CharacterRequests::GetMaximumSpeed, "Get Maximum Speed") + ->Event("SetMaximumSpeed", &CharacterRequests::SetMaximumSpeed, "Set Maximum Speed") + ->Event("GetVelocity", &CharacterRequests::GetVelocity, "Get Velocity") + ->Event("AddVelocity", &CharacterRequests::AddVelocity, "Add Velocity") ; } } diff --git a/Gems/PhysX/Code/Source/Shape.cpp b/Gems/PhysX/Code/Source/Shape.cpp index b29e407e0c..129bfa9774 100644 --- a/Gems/PhysX/Code/Source/Shape.cpp +++ b/Gems/PhysX/Code/Source/Shape.cpp @@ -326,6 +326,12 @@ namespace PhysX AzPhysics::SceneQueryHit Shape::RayCastInternal(const AzPhysics::RayCastRequest& worldSpaceRequest, const physx::PxTransform& pose) { + if (const bool shouldCollide = worldSpaceRequest.m_collisionGroup.GetMask() & m_collisionLayer.GetMask(); + !shouldCollide) + { + return AzPhysics::SceneQueryHit(); + } + const physx::PxVec3 start = PxMathConvert(worldSpaceRequest.m_start); const physx::PxVec3 unitDir = PxMathConvert(worldSpaceRequest.m_direction); const physx::PxU32 maxHits = 1; diff --git a/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp b/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp new file mode 100644 index 0000000000..ac9a731d54 --- /dev/null +++ b/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp @@ -0,0 +1,154 @@ +/* + * Copyright (c) Contributors to the Open 3D Engine Project + * + * SPDX-License-Identifier: Apache-2.0 OR MIT + * + */ + +#include +#include "PhysXTestFixtures.h" +#include "PhysXTestUtil.h" +#include "PhysXTestCommon.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace PhysX +{ + static AZStd::map s_testEntities; + + AZ::EntityId GetTestEntityId(const char* name) + { + if (auto it = s_testEntities.find(name); + it != s_testEntities.end()) + { + return it->second->GetId(); + } + + return AZ::EntityId(); + } + + void ExpectTrue(bool check) + { + EXPECT_TRUE(check); + } + + class PhysXScriptTest + : public PhysXDefaultWorldTest + { + public: + AZ_TYPE_INFO(PhysXScriptTest, "{337A9DB4-ACF7-42A7-92E5-48A9FF14B49C}"); + + void SetUp() override + { + PhysXDefaultWorldTest::SetUp(); + + m_behaviorContext = AZStd::make_unique(); + AZ::Entity::Reflect(m_behaviorContext.get()); + AZ::MathReflect(m_behaviorContext.get()); + AzFramework::EntityContext::Reflect(m_behaviorContext.get()); + Physics::ReflectionUtils::ReflectPhysicsApi(m_behaviorContext.get()); + m_behaviorContext->Method("ExpectTrue", &ExpectTrue); + m_behaviorContext->Method("GetTestEntityId", &GetTestEntityId); + m_scriptContext = AZStd::make_unique(); + m_scriptContext->BindTo(m_behaviorContext.get()); + } + + void TearDown() override + { + s_testEntities.clear(); + + m_scriptContext.reset(); + m_behaviorContext.reset(); + + PhysXDefaultWorldTest::TearDown(); + } + + AZ::BehaviorContext* GetBehaviorContext() + { + return m_behaviorContext.get(); + } + + AZ::ScriptContext* GetScriptContext() + { + return m_scriptContext.get(); + } + + private: + AZStd::unique_ptr m_behaviorContext; + AZStd::unique_ptr m_scriptContext; + }; + + TEST_F(PhysXScriptTest, ScriptedRaycast_RaycastNotIntersectingBox_ReturnsNoHits) + { + s_testEntities.insert( + { + "Box", + TestUtils::AddStaticUnitTestObject(GetDefaultSceneHandle(), AZ::Vector3::CreateZero(), "Box") + }); + + const char luaCode[] = + R"( + boxId = GetTestEntityId("Box") + request = RayCastRequest() + request.Start = Vector3(5.0, 0.0, 5.0) + request.Direction = Vector3(0.0, 0.0, -1.0) + request.Distance = 10.0 + hit = SimulatedBodyComponentRequestBus.Event.RayCast(boxId, request) + ExpectTrue(hit.EntityId == EntityId()) + )"; + + EXPECT_TRUE(GetScriptContext()->Execute(luaCode)); + } + + TEST_F(PhysXScriptTest, ScriptedRaycast_RaycastIntersectingBox_ReturnsHitOnBox) + { + s_testEntities.insert( + { + "Box", + TestUtils::AddStaticUnitTestObject(GetDefaultSceneHandle(), AZ::Vector3::CreateZero(), "Box") + }); + + const char luaCode[] = + R"( + boxId = GetTestEntityId("Box") + request = RayCastRequest() + request.Start = Vector3(0.0, 0.0, 5.0) + request.Direction = Vector3(0.0, 0.0, -1.0) + request.Distance = 10.0 + hit = SimulatedBodyComponentRequestBus.Event.RayCast(boxId, request) + ExpectTrue(hit.EntityId == boxId) + )"; + + EXPECT_TRUE(GetScriptContext()->Execute(luaCode)); + } + + TEST_F(PhysXScriptTest, ScriptedRaycast_RaycastNotInteractingCollisionFilters_ReturnsNoHit) + { + s_testEntities.insert( + { + "Box", + TestUtils::AddStaticUnitTestObject(GetDefaultSceneHandle(), AZ::Vector3::CreateZero(), "Box") + }); + + const char luaCode[] = + R"( + boxId = GetTestEntityId("Box") + request = RayCastRequest() + request.Start = Vector3(0.0, 0.0, 5.0) + request.Direction = Vector3(0.0, 0.0, -1.0) + request.Distance = 10.0 + request.Collision = CollisionGroup("None") + hit = SimulatedBodyComponentRequestBus.Event.RayCast(boxId, request) + ExpectTrue(hit.EntityId == EntityId()) + )"; + + EXPECT_TRUE(GetScriptContext()->Execute(luaCode)); + } +} // namespace PhysX diff --git a/Gems/PhysX/Code/physx_tests_files.cmake b/Gems/PhysX/Code/physx_tests_files.cmake index 09ecf19de5..d42e872d5d 100644 --- a/Gems/PhysX/Code/physx_tests_files.cmake +++ b/Gems/PhysX/Code/physx_tests_files.cmake @@ -29,6 +29,7 @@ set(FILES Tests/PhysXTestUtil.h Tests/PhysXTestUtil.cpp Tests/PhysXMultithreadingTest.cpp + Tests/PhysXScriptTest.cpp Tests/CharacterControllerTests.cpp Tests/RagdollConfiguration.xml Tests/RagdollTestData.h From 05a2ce4fe19fbc014975b1802b5408ac939d49d7 Mon Sep 17 00:00:00 2001 From: greerdv Date: Thu, 1 Jul 2021 13:35:57 +0100 Subject: [PATCH 079/111] update based on PR feedback Signed-off-by: greerdv --- .../AzFramework/Physics/Collision/CollisionGroups.cpp | 4 ++-- Gems/PhysX/Code/Tests/PhysXScriptTest.cpp | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp index 3aab358aa4..a8c8c4470f 100644 --- a/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp +++ b/Code/Framework/AzFramework/AzFramework/Physics/Collision/CollisionGroups.cpp @@ -36,8 +36,8 @@ namespace AzPhysics void CollisionGroupScriptConstructor(CollisionGroup* thisPtr, AZ::ScriptDataContext& scriptDataContext) { - int numArgs = scriptDataContext.GetNumArguments(); - if (numArgs != 1) + if (int numArgs = scriptDataContext.GetNumArguments(); + numArgs != 1) { scriptDataContext.GetScriptContext()->Error(AZ::ScriptContext::ErrorType::Error, true, "CollisionGroup() accepts only 1 argument, not %d", numArgs); diff --git a/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp b/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp index ac9a731d54..7491ffe2f4 100644 --- a/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp @@ -34,6 +34,8 @@ namespace PhysX return AZ::EntityId(); } + // this allows EXPECT_TRUE to be exposed to the behavior context and used inside blocks of lua code which + // are executed in tests void ExpectTrue(bool check) { EXPECT_TRUE(check); From ef1c6732c8f174ccdb1941d898ee6e5651972cee Mon Sep 17 00:00:00 2001 From: greerdv Date: Thu, 1 Jul 2021 14:11:47 +0100 Subject: [PATCH 080/111] fix licence on new file Signed-off-by: greerdv --- Gems/PhysX/Code/Tests/PhysXScriptTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp b/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp index 7491ffe2f4..40213dedcf 100644 --- a/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp +++ b/Gems/PhysX/Code/Tests/PhysXScriptTest.cpp @@ -1,6 +1,6 @@ /* - * Copyright (c) Contributors to the Open 3D Engine Project - * + * 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 * */ From a02ecefab911984310e06edd0250769de74c6646 Mon Sep 17 00:00:00 2001 From: amzn-sean <75276488+amzn-sean@users.noreply.github.com> Date: Thu, 1 Jul 2021 14:47:51 +0100 Subject: [PATCH 081/111] short term fix for editor/game mode/launcher tick times consistency (#1720) Signed-off-by: amzn-sean <75276488+amzn-sean@users.noreply.github.com> --- Code/Editor/CryEdit.cpp | 33 ++++++------------- Code/Editor/MainWindow.cpp | 5 --- .../Code/Source/Mesh/MeshFeatureProcessor.cpp | 6 +++- 3 files changed, 15 insertions(+), 29 deletions(-) diff --git a/Code/Editor/CryEdit.cpp b/Code/Editor/CryEdit.cpp index 75e6e8cb9a..e78febab05 100644 --- a/Code/Editor/CryEdit.cpp +++ b/Code/Editor/CryEdit.cpp @@ -2302,13 +2302,6 @@ int CCryEditApp::IdleProcessing(bool bBackgroundUpdate) m_bPrevActive = bActive; - AZStd::chrono::system_clock::time_point now = AZStd::chrono::system_clock::now(); - static AZStd::chrono::system_clock::time_point lastUpdate = now; - - AZStd::chrono::duration delta = now - lastUpdate; - - lastUpdate = now; - // Don't tick application if we're doing idle processing during an assert. const bool isErrorWindowVisible = (gEnv && gEnv->pSystem->IsAssertDialogVisible()); if (isErrorWindowVisible) @@ -2320,30 +2313,24 @@ int CCryEditApp::IdleProcessing(bool bBackgroundUpdate) } else if (bActive || (bBackgroundUpdate && !bIsAppWindow)) { - if (GetIEditor()->IsInGameMode()) - { - // Update Game - GetIEditor()->GetGameEngine()->Update(); - } - else - { - GetIEditor()->GetGameEngine()->Update(); + // Update Game + GetIEditor()->GetGameEngine()->Update(); + if (!GetIEditor()->IsInGameMode()) + { if (m_pEditor) { m_pEditor->Update(); } GetIEditor()->Notify(eNotify_OnIdleUpdate); + } - // Since the rendering is done based on the eNotify_OnIdleUpdate, we should trigger a TickSystem as well. - // To ensure that there's a system tick for every render done in Idle - AZ::ComponentApplication* componentApplication = nullptr; - AZ::ComponentApplicationBus::BroadcastResult(componentApplication, &AZ::ComponentApplicationRequests::GetApplication); - if (componentApplication) - { - componentApplication->TickSystem(); - } + AZ::ComponentApplication* componentApplication = nullptr; + AZ::ComponentApplicationBus::BroadcastResult(componentApplication, &AZ::ComponentApplicationRequests::GetApplication); + if (componentApplication) + { + componentApplication->TickSystem(); } } else if (GetIEditor()->GetSystem() && GetIEditor()->GetSystem()->GetILog()) diff --git a/Code/Editor/MainWindow.cpp b/Code/Editor/MainWindow.cpp index 249949573f..10dfddbf8c 100644 --- a/Code/Editor/MainWindow.cpp +++ b/Code/Editor/MainWindow.cpp @@ -489,11 +489,6 @@ void MainWindow::Initialize() ActionOverrideRequestBus::Event( GetEntityContextId(), &ActionOverrideRequests::SetupActionOverrideHandler, this); - // This function only happens after we're pretty sure that the engine has successfully started - so now would be a good time to start ticking the message pumps/etc. - AzToolsFramework::Ticker* ticker = new AzToolsFramework::Ticker(this); - ticker->Start(); - connect(ticker, &AzToolsFramework::Ticker::Tick, this, &MainWindow::SystemTick); - AzToolsFramework::EditorEventsBus::Broadcast(&AzToolsFramework::EditorEvents::NotifyMainWindowInitialized, this); } diff --git a/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp b/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp index 94ae528633..ca0bc73998 100644 --- a/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp +++ b/Gems/Atom/Feature/Common/Code/Source/Mesh/MeshFeatureProcessor.cpp @@ -8,6 +8,7 @@ #include #include +#include #include #include #include @@ -526,7 +527,10 @@ namespace AZ } else { - AZ_Error("MeshDataInstance::OnAssetReady", false, "Failed to create model instance for '%s'", asset.GetHint().c_str()); + //when running with null renderer, the RPI::Model::FindOrCreate(...) is expected to return nullptr, so suppress this error. + AZ_Error( + "MeshDataInstance::OnAssetReady", RHI::IsNullRenderer(), "Failed to create model instance for '%s'", + asset.GetHint().c_str()); } } From 4c4be73bd55d38ee2147e3ad08ffde6ba6afdac0 Mon Sep 17 00:00:00 2001 From: AMZN-stankowi <4838196+AMZN-stankowi@users.noreply.github.com> Date: Thu, 1 Jul 2021 08:53:47 -0700 Subject: [PATCH 082/111] First pass FBX -> Scene File conversion. (#1699) This is the simple pass, minimizing code changes and focused on comments. Signed-off-by: stankowi <4838196+AMZN-stankowi@users.noreply.github.com> --- .../RPI.Builders/Model/MaterialAssetBuilderComponent.cpp | 6 +++--- .../RPI.Builders/Model/ModelAssetBuilderComponent.cpp | 2 +- .../Source/Material/EditorMaterialComponentExporter.cpp | 2 +- .../Code/Source/Material/MaterialThumbnail.cpp | 2 +- .../EMotionFXAtom/Code/Source/ActorAsset.cpp | 2 +- Gems/Blast/Code/Source/Asset/BlastAsset.cpp | 2 +- .../EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp | 2 +- .../SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp | 2 +- .../EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h | 2 +- .../Code/EMotionFX/Source/MotionData/MotionData.h | 2 +- .../EMotionFX/Source/MotionData/NonUniformMotionData.cpp | 2 +- .../EMotionFX/Source/MotionData/NonUniformMotionData.h | 2 +- .../EMotionFX/Source/MotionData/UniformMotionData.cpp | 2 +- .../Code/EMotionFX/Source/MotionData/UniformMotionData.h | 2 +- .../Source/Editor/PropertyWidgets/MotionDataHandler.cpp | 2 +- .../Integration/Editor/Components/EditorActorComponent.h | 2 +- .../Code/Source/Integration/System/SystemComponent.cpp | 2 +- Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp | 4 ++-- Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp | 4 ++-- .../Code/include/LmbrCentral/Rendering/MaterialAsset.h | 4 ++-- .../Code/Source/Components/EditorClothComponent.cpp | 2 +- Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp | 6 +++--- .../Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp | 2 +- .../Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp | 2 +- .../Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h | 2 +- Gems/PhysX/Code/Source/EditorColliderComponent.cpp | 2 +- Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp | 2 +- Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp | 8 ++++---- Gems/PhysX/Code/Source/Pipeline/MeshExporter.h | 2 +- .../Code/Include/Config/SceneProcessingConfigBus.h | 2 +- .../Components/SceneProcessingConfigSystemComponent.cpp | 4 ++-- .../TangentGenerator/TangentGenerateComponent.cpp | 8 ++++---- .../Code/Source/SceneBuilder/SceneBuilderWorker.cpp | 4 ++-- 33 files changed, 48 insertions(+), 48 deletions(-) diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp index a7ee299989..91c9803955 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/MaterialAssetBuilderComponent.cpp @@ -69,7 +69,7 @@ namespace AZ void MaterialAssetDependenciesComponent::ReportJobDependencies(SceneAPI::JobDependencyList& jobDependencyList, const char* platformIdentifier) { AssetBuilderSDK::SourceFileDependency materialTypeSource; - // Right now, FBX importing only supports a single material type, once that changes, this will have to be re-designed, see ATOM-3554 + // Right now, scene file importing only supports a single material type, once that changes, this will have to be re-designed, see ATOM-3554 RPI::MaterialConverterBus::BroadcastResult(materialTypeSource.m_sourceFileDependencyPath, &RPI::MaterialConverterBus::Events::GetMaterialTypePath); AssetBuilderSDK::JobDependency jobDependency; @@ -94,7 +94,7 @@ namespace AZ { // [GFX TODO] I am suggesting we use the first two 16bits for different kind of assets generated from a Scene // For example, 0x10000 for mesh, 0x20000 for material, 0x30000 for animation, 0x40000 for scene graph and etc. - // so the subid can be evaluated for reference across different assets generate within this fbx. + // so the subid can be evaluated for reference across different assets generate within this scene file. /*const uint32_t materialPrefix = 0x20000; AZ_Assert(materialPrefix > materialId, "materialId should be smaller than materialPrefix"); return materialPrefix + materialId;*/ @@ -148,7 +148,7 @@ namespace AZ // The source data for generating material asset MaterialSourceData sourceData; - // User hook to create their materials based on the data from Fbx pipeline + // User hook to create their materials based on the data from the scene pipeline bool result = false; RPI::MaterialConverterBus::BroadcastResult(result, &RPI::MaterialConverterBus::Events::ConvertMaterial, *materialData, sourceData); if (result) diff --git a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp index 0b5cbb96ca..bfb0979d5c 100644 --- a/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp +++ b/Gems/Atom/RPI/Code/Source/RPI.Builders/Model/ModelAssetBuilderComponent.cpp @@ -995,7 +995,7 @@ namespace AZ if (numInfluencesExcess > 0) { AZ_Warning(s_builderName, warnedExcessOfSkinInfluences, - "Mesh %s has more skin influences (%d) than the maximum (%d). Skinning influences won't be normalized. Maximum number of skin influences can be increased with a Skin Modifier in FBX Settings.", + "Mesh %s has more skin influences (%d) than the maximum (%d). Skinning influences won't be normalized. Maximum number of skin influences can be increased with a Skin Modifier in Scene Settings.", sourceMesh.m_name.GetCStr(), m_numSkinJointInfluencesPerVertex + numInfluencesExcess, m_numSkinJointInfluencesPerVertex); diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp index f917a4bcc2..0a311a4a81 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialComponentExporter.cpp @@ -41,7 +41,7 @@ namespace AZ AZStd::string label; if (assetId.IsValid()) { - // Material assets that are exported through the FBX pipeline have their filenames generated by adding + // Material assets that are exported through the scene pipeline have their filenames generated by adding // the DCC material name as a prefix and a unique number to the end of the source file name. // Rather than storing the DCC material name inside of the material asset we can reproduce it by removing // the prefix and suffix from the product file name. diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp index ff37a51bfc..a850a5c9e8 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialThumbnail.cpp @@ -100,7 +100,7 @@ namespace AZ { return GetAssetId(key, RPI::MaterialAsset::RTTI_Type()).IsValid() && - // in case it's a source fbx, it will contain both material and model products + // in case it's a source scene file, it will contain both material and model products // model thumbnails are handled by MeshThumbnail !GetAssetId(key, RPI::ModelAsset::RTTI_Type()).IsValid(); } diff --git a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp index 9d686f9bba..7a32fdc385 100644 --- a/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp +++ b/Gems/AtomLyIntegration/EMotionFXAtom/Code/Source/ActorAsset.cpp @@ -95,7 +95,7 @@ namespace AZ skinnedSubMesh.m_vertexCount = aznumeric_cast(subMeshVertexCount); lodVertexCount += aznumeric_cast(subMeshVertexCount); - // The default material id used by a sub-mesh is the guid of the source .fbx plus the subId which is a unique material ID from the scene API + // The default material id used by a sub-mesh is the guid of the source scene file plus the subId which is a unique material ID from the scene API AZ::u32 subId = modelMesh.GetMaterialAsset().GetId().m_subId; AZ::Data::AssetId materialId{ actorAssetId.m_guid, subId }; diff --git a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp index dc5f315a7f..932bb79bcb 100644 --- a/Gems/Blast/Code/Source/Asset/BlastAsset.cpp +++ b/Gems/Blast/Code/Source/Asset/BlastAsset.cpp @@ -62,7 +62,7 @@ namespace Blast } else { - // in this case we'll want to extract the physics meshes from the fbx. + // in this case we'll want to extract the physics meshes from the scene file. // We don't necessarily have access to the mesh data though, so if we want to support this, // we'll need to come up with a way to associate with the mesh data // See BlastAssetModel in the SDK sample for how to create that data diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp index 64ca2b68dc..7f5558c1da 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/RCExt/Actor/ActorGroupExporter.cpp @@ -160,7 +160,7 @@ namespace EMotionFX } } - // Default to the first mesh group until we get a way to choose it via the FBX settings (ATOM-13590). + // Default to the first mesh group until we get a way to choose it via the scene settings (ATOM-13590). AZStd::optional meshAssetId = AZStd::nullopt; AZ_Error("EMotionFX", atomModelAssets.size() <= 1, "Ambigious mesh for actor asset. More than one mesh group found. Defaulting to the first one."); if (!atomModelAssets.empty()) diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp index e2847ac75c..083fd49d3e 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Behaviors/MotionRangeRuleBehavior.cpp @@ -96,7 +96,7 @@ namespace EMotionFX const AZ::u32 frameCount = aznumeric_caster(animation->GetKeyFrameCount()); if (motionRangeRule->GetStartFrame() == 0 && motionRangeRule->GetEndFrame() == frameCount - 1) { - // if the startframe/endframe matches the fbx animation length, remove it. + // if the startframe/endframe matches the scene file's animation length, remove it. rules.RemoveRule(motionRangeRule); updated = true; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h index ec8e926544..29c561051b 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Groups/IMotionGroup.h @@ -25,7 +25,7 @@ namespace EMotionFX ~IMotionGroup() override = default; // Ability to specify root bone can be useful if there are multiple skeletons - // stored in an fbx file or if the user wants to override the root bone automatically + // stored in a scene file or if the user wants to override the root bone automatically // selected by the code. virtual const AZStd::string& GetSelectedRootBone() const = 0; diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h index d018e8c50d..fbbd50be68 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/MotionData.h @@ -158,7 +158,7 @@ namespace EMotionFX virtual size_t CalcStreamSaveSizeInBytes(const SaveSettings& saveSettings) const = 0; virtual AZ::u32 GetStreamSaveVersion() const = 0; virtual bool GetSupportsOptimizeSettings() const { return true; } - virtual const char* GetFbxSettingsName() const = 0; + virtual const char* GetSceneSettingsName() const = 0; // Sampling virtual Transform SampleJointTransform(const SampleSettings& settings, AZ::u32 jointSkeletonIndex) const = 0; diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp index 9368e74950..f9e0911d51 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.cpp @@ -35,7 +35,7 @@ namespace EMotionFX return aznew NonUniformMotionData(); } - const char* NonUniformMotionData::GetFbxSettingsName() const + const char* NonUniformMotionData::GetSceneSettingsName() const { return "Reduced Keyframes (slower, mostly smaller)"; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h index abb633f1a7..ec2ddff0ad 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/NonUniformMotionData.h @@ -52,7 +52,7 @@ namespace EMotionFX bool Save(MCore::Stream* stream, const SaveSettings& saveSettings) const override; size_t CalcStreamSaveSizeInBytes(const SaveSettings& saveSettings) const override; AZ::u32 GetStreamSaveVersion() const override; - const char* GetFbxSettingsName() const override; + const char* GetSceneSettingsName() const override; Transform SampleJointTransform(const SampleSettings& settings, AZ::u32 jointSkeletonIndex) const override; void SamplePose(const SampleSettings& settings, Pose* outputPose) const override; diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp index a74ee8c45f..296f4adf62 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.cpp @@ -36,7 +36,7 @@ namespace EMotionFX return aznew UniformMotionData(); } - const char* UniformMotionData::GetFbxSettingsName() const + const char* UniformMotionData::GetSceneSettingsName() const { return "Evenly Spaced Keyframes (faster, mostly larger)"; } diff --git a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h index 3b8ff21d58..c92ce192b2 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h +++ b/Gems/EMotionFX/Code/EMotionFX/Source/MotionData/UniformMotionData.h @@ -49,7 +49,7 @@ namespace EMotionFX size_t CalcStreamSaveSizeInBytes(const SaveSettings& saveSettings) const override; AZ::u32 GetStreamSaveVersion() const override; bool GetSupportsOptimizeSettings() const override { return false; } - const char* GetFbxSettingsName() const override; + const char* GetSceneSettingsName() const override; // Overloaded. Transform SampleJointTransform(const SampleSettings& settings, AZ::u32 jointSkeletonIndex) const override; diff --git a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp index e3dbe7efb4..94c90f4676 100644 --- a/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp +++ b/Gems/EMotionFX/Code/Source/Editor/PropertyWidgets/MotionDataHandler.cpp @@ -76,7 +76,7 @@ namespace EMotionFX const MotionDataFactory& factory = GetEMotionFX().GetMotionManager()->GetMotionDataFactory(); for (size_t i = 0; i < factory.GetNumRegistered(); ++i) { - GUI->addItem(factory.GetRegistered(i)->GetFbxSettingsName()); + GUI->addItem(factory.GetRegistered(i)->GetSceneSettingsName()); m_typeIds.emplace_back(factory.GetRegistered(i)->RTTI_GetType()); } diff --git a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h index 6d7d876954..1629e07fdd 100644 --- a/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h +++ b/Gems/EMotionFX/Code/Source/Integration/Editor/Components/EditorActorComponent.h @@ -161,7 +161,7 @@ namespace EMotionFX bool m_forceUpdateJointsOOV = false; // \todo attachmentTarget node nr - // Note: LOD work in progress. For now we use one material instead of a list of material, because we don't have the support for LOD with multiple FBXs. + // Note: LOD work in progress. For now we use one material instead of a list of material, because we don't have the support for LOD with multiple scene files. // We purposely kept a materialList in actorComponent and actorRenderNode for the flexibility in future. // At the moment, the materialList stores duplicates of the same material. AzFramework::SimpleAssetReference m_materialPerActor; diff --git a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp index 131ff2ff7c..b0384c7577 100644 --- a/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp +++ b/Gems/EMotionFX/Code/Source/Integration/System/SystemComponent.cpp @@ -485,7 +485,7 @@ namespace EMotionFX SetMediaRoot("@assets@"); // \todo Right now we're pointing at the @devassets@ location (source) and working from there, because .actor and .motion (motion) aren't yet processed through - // the FBX pipeline. Once they are, we'll need to update various segments of the Tool to always read from the @assets@ cache, but write to the @devassets@ data/metadata. + // the scene pipeline. Once they are, we'll need to update various segments of the Tool to always read from the @assets@ cache, but write to the @devassets@ data/metadata. EMotionFX::GetEMotionFX().InitAssetFolderPaths(); // Register EMotionFX event handler diff --git a/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp b/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp index 87f4b46955..96e5014304 100644 --- a/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp +++ b/Gems/EMotionFX/Code/Tests/Game/SamplePerformanceTests.cpp @@ -770,13 +770,13 @@ namespace EMotionFX TEST_F(PerformanceTestFixture, DISABLED_MotionSamplingPerformanceNonUniform) { - // Make sure that the motion is set to use NonUniform sampling! Change this in the Fbx settings! Otherwise you get wrong results. + // Make sure that the motion is set to use NonUniform sampling! Change this in the scene settings! Otherwise you get wrong results. TestMotionSamplingPerformance("@assets@\\animationsamples\\advanced_rinlocomotion\\motions\\rin_idle.motion"); } TEST_F(PerformanceTestFixture, DISABLED_MotionSamplingPerformanceUniform) { - // Make sure that the motion is set to use Uniform sampling! Change this in the Fbx settings! Otherwise you get wrong results. + // Make sure that the motion is set to use Uniform sampling! Change this in the scene settings! Otherwise you get wrong results. TestMotionSamplingPerformance("@assets@\\animationsamples\\advanced_rinlocomotion\\motions\\rin_walk_kick_01.motion"); } diff --git a/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp b/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp index f599985cfa..53b9ec8aa4 100644 --- a/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp +++ b/Gems/EMotionFX/Code/Tests/UI/CanUseFileMenu.cpp @@ -249,7 +249,7 @@ namespace EMotionFX LoadActor(actorFilename.toUtf8().data(), false); ASSERT_EQ(EMotionFX::GetActorManager().GetNumActorInstances(), 2) << "Failed to merge Actor."; - // We can't test Save Selected Actor as we would it would involve mocking fbx scene handling. + // We can't test Save Selected Actor as we would it would involve mocking source scene handling. // Add the filename to the recent actorsa anyway, so we can test that functionality. EMStudio::GetMainWindow()->AddRecentActorFile(actorFilename); @@ -634,7 +634,7 @@ namespace EMotionFX motionSet->SetFilename(motionsetFilename.toUtf8().constData()); motionSet->SetDirtyFlag(true); - // Don't create an actor or motion as we can't save that due to fbx scene requirements. + // Don't create an actor or motion as we can't save that due to source scene requirements. EMStudio::Workspace* workspace = EMStudio::GetManager()->GetWorkspace(); const QString workspaceFilename = GenerateTempWorkspaceFilename(); diff --git a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h index 22c41863a8..6ce3861233 100644 --- a/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h +++ b/Gems/LmbrCentral/Code/include/LmbrCentral/Rendering/MaterialAsset.h @@ -28,8 +28,8 @@ namespace LmbrCentral }; /*! - * FBX Material asset type configuration. - * Reflect as: AzFramework::SimpleAssetReference + * Source scene file Material asset type configuration. + * Reflect as: AzFramework::SimpleAssetReference */ class DccMaterialAsset { diff --git a/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp b/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp index f2730b0bac..a71866fc6f 100644 --- a/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp +++ b/Gems/NvCloth/Code/Source/Components/EditorClothComponent.cpp @@ -68,7 +68,7 @@ namespace NvCloth // Mesh Node ->DataElement(Editor::MeshNodeSelector, &ClothConfiguration::m_meshNode, "Mesh node", - "List of mesh nodes with cloth simulation data. These are the nodes selected inside Cloth Modifiers in FBX Editor Settings.") + "List of mesh nodes with cloth simulation data. These are the nodes selected inside Cloth Modifiers in Scene Settings.") ->Attribute(AZ::Edit::UIHandlers::EntityId, &ClothConfiguration::GetEntityId) ->Attribute(AZ::Edit::Attributes::StringList, &ClothConfiguration::PopulateMeshNodeList) ->Attribute(AZ::Edit::Attributes::ChangeNotify, AZ::Edit::PropertyRefreshLevels::EntireTree) diff --git a/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp b/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp index 168a5348c1..20a6c91c89 100644 --- a/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp +++ b/Gems/NvCloth/Code/Source/Editor/MeshNodeHandler.cpp @@ -25,8 +25,8 @@ namespace NvCloth { widget_t* picker = new widget_t(parent); - // Set edit button appearance to go to FBX Settings dialog - picker->GetEditButton()->setToolTip("Open FBX Settings to setup Cloth Modifiers"); + // Set edit button appearance to go to Scene Settings dialog + picker->GetEditButton()->setToolTip("Open Scene Settings to setup Cloth Modifiers"); picker->GetEditButton()->setText(""); picker->GetEditButton()->setEnabled(false); @@ -106,7 +106,7 @@ namespace NvCloth AZ::Data::Asset meshAsset = GetMeshAsset(GUI->GetEntityId()); if (meshAsset) { - // Open the asset with the preferred asset editor, which for Mesh and Actor Assets it's FBX Settings. + // Open the asset with the preferred asset editor, which for Mesh and Actor Assets it's Scene Settings. bool handled = false; AzToolsFramework::AssetBrowser::AssetBrowserInteractionNotificationBus::Broadcast( &AzToolsFramework::AssetBrowser::AssetBrowserInteractionNotifications::OpenAssetInAssociatedEditor, meshAsset.GetId(), handled); diff --git a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp index d99797751e..9870dd1f96 100644 --- a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp +++ b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRule.cpp @@ -19,7 +19,7 @@ namespace NvCloth namespace Pipeline { // It's necessary for the rule to specify the system allocator, otherwise - // the editor crashes when deleting the cloth modifier from FBX Settings. + // the editor crashes when deleting the cloth modifier from Scene Settings. AZ_CLASS_ALLOCATOR_IMPL(ClothRule, AZ::SystemAllocator, 0) const char* const ClothRule::DefaultChooseNodeName = "Choose a node"; diff --git a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp index 15e3e34df0..c9df74ff61 100644 --- a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp +++ b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.cpp @@ -61,7 +61,7 @@ namespace NvCloth [[maybe_unused]] const AZ::SceneAPI::Containers::Scene& scene, AZ::SceneAPI::DataTypes::IManifestObject& target) { - // When a cloth rule is created in the FBX Editor Settings... + // When a cloth rule is created in the Scene Settings... if (target.RTTI_IsTypeOf(ClothRule::TYPEINFO_Uuid())) { ClothRule* clothRule = azrtti_cast(&target); diff --git a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h index 04dbc34eb1..eff6e8990d 100644 --- a/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h +++ b/Gems/NvCloth/Code/Source/Pipeline/SceneAPIExt/ClothRuleBehavior.h @@ -39,7 +39,7 @@ namespace NvCloth //! It specifies the valid Scene Groups that are allowed to have //! cloth rules (aka cloth modifiers), these are Mesh and Actor groups. //! It also validates the cloth rules data for the manifest (asset containing - //! all the Scene information from the FBX Editor Settings). + //! all the Scene information from the Scene Settings). class ClothRuleBehavior : public AZ::SceneAPI::SceneCore::BehaviorComponent , public AZ::SceneAPI::Events::ManifestMetaInfoBus::Handler diff --git a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp index 0e476546ee..46598a13a4 100644 --- a/Gems/PhysX/Code/Source/EditorColliderComponent.cpp +++ b/Gems/PhysX/Code/Source/EditorColliderComponent.cpp @@ -56,7 +56,7 @@ namespace PhysX ->Attribute(AZ::Edit::Attributes::AutoExpand, true) ->DataElement(AZ::Edit::UIHandlers::Default, &EditorProxyAssetShapeConfig::m_pxAsset, "PhysX Mesh", "PhysX mesh collider asset") ->Attribute(AZ_CRC_CE("EditButton"), "") - ->Attribute(AZ_CRC_CE("EditDescription"), "Open in FBX Settings") + ->Attribute(AZ_CRC_CE("EditDescription"), "Open in Scene Settings") ->DataElement(AZ::Edit::UIHandlers::Default, &EditorProxyAssetShapeConfig::m_configuration, "Configuration", "Configuration of asset shape") ->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly); } diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp index fcc07e2eed..a04b9327ac 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshAssetHandler.cpp @@ -165,7 +165,7 @@ namespace PhysX ; // Note: This class needs to have edit context reflection so PropertyAssetCtrl::OnEditButtonClicked - // can open the asset with the preferred asset editor (FBX Settings). + // can open the asset with the preferred asset editor (Scene Settings). if (auto* editContext = serializeContext->GetEditContext()) { editContext->Class("PhysX Mesh Asset", "") diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp index f92b2d30e6..c2b80051fe 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp @@ -63,7 +63,7 @@ namespace PhysX } } pxDefaultErrorCallback; - // A struct to store the geometry data per FBX node + // A struct to store the geometry data per scene node struct NodeCollisionGeomExportData { AZStd::vector m_vertices; @@ -500,10 +500,10 @@ namespace PhysX assetData.m_materialNames = meshGroup.GetMaterialSlots(); assetData.m_physicsMaterialNames = meshGroup.GetPhysicsMaterials(); - // Updating materials lists from new materials gathered from fbx - // because this exporter runs when the FBX is being processed, which + // Updating materials lists from new materials gathered from the source scene file + // because this exporter runs when the source scene is being processed, which // could have a different content from when the mesh group info was - // entered in FBX Settings Editor. + // entered in Scene Settings Editor. if (!Utils::UpdateAssetPhysicsMaterials(assetMaterialsData.m_fbxMaterialNames, assetData.m_materialNames, assetData.m_physicsMaterialNames)) { return SceneEvents::ProcessingResult::Failure; diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h index 8307e8289b..3bb6bea456 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h +++ b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h @@ -59,7 +59,7 @@ namespace PhysX //! A struct to store the materials of the mesh nodes selected in a mesh group. struct AssetMaterialsData { - //! Material names coming from FBX. + //! Material names coming from the source scene file. AZStd::vector m_fbxMaterialNames; //! Look-up table for fbxMaterialNames. diff --git a/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h b/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h index 24e36d6830..c6ebdd9870 100644 --- a/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h +++ b/Gems/SceneProcessing/Code/Include/Config/SceneProcessingConfigBus.h @@ -70,7 +70,7 @@ namespace AZ * AddFileSoftName("_anim", PatternMatcher::MatchApproach::PostFix, "Ignore", false, * SceneAPI::DataTypes::IAnimationData::TYPEINFO_Name()) * If the filename ends with "_anim" this will mark all nodes as "Ignore" unless they're derived from IAnimationData. - * This will cause only animations to be exported from the .fbx file even if there's other data available. + * This will cause only animations to be exported from the source scene file even if there's other data available. */ virtual bool AddFileSoftName(const char* pattern, SceneAPI::SceneCore::PatternMatcher::MatchApproach approach, const char* virtualType, bool inclusive, const AZStd::string& graphObjectTypeName) = 0; diff --git a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp index 6f1aab3e04..747253d5b1 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp @@ -42,7 +42,7 @@ namespace AZ m_softNames.push_back(aznew NodeSoftNameSetting("^.*_[Pp][Hh][Yy][Ss](_optimized)?$", PatternMatcher::MatchApproach::Regex, "PhysicsMesh", true)); m_softNames.push_back(aznew NodeSoftNameSetting("_ignore", PatternMatcher::MatchApproach::PostFix, "Ignore", false)); // If the filename ends with "_anim" this will mark all nodes as "Ignore" unless they're derived from IAnimationData. This will - // cause only animations to be exported from the .fbx file even if there's other data available. + // cause only animations to be exported from the source scene file even if there's other data available. m_softNames.push_back(aznew FileSoftNameSetting("_anim", PatternMatcher::MatchApproach::PostFix, "Ignore", false, { FileSoftNameSetting::GraphType(SceneAPI::DataTypes::IAnimationData::TYPEINFO_Name()) })); @@ -166,7 +166,7 @@ namespace AZ "Soft naming conventions", "Update the naming conventions to suit your project.") ->Attribute(AZ::Edit::Attributes::AutoExpand, false) ->DataElement(AZ::Edit::UIHandlers::Default, &SceneProcessingConfigSystemComponent::m_UseCustomNormals, - "Use Custom Normals", "When enabled, Open 3D Engine will use the DCC assets custom or tangent space normals. When disabled, the normals will be averaged. This setting can be overridden on individual FBX asset settings.") + "Use Custom Normals", "When enabled, Open 3D Engine will use the DCC assets custom or tangent space normals. When disabled, the normals will be averaged. This setting can be overridden on an individual scene file's asset settings.") ->Attribute(AZ::Edit::Attributes::AutoExpand, false); } } diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp index 9ada34a270..e8798de0b6 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp @@ -107,7 +107,7 @@ namespace AZ::SceneGenerationComponents return AZ::SceneAPI::Events::ProcessingResult::Failure; } - // Now that we have the tangents and bitangents, calculate the tangent w values for the ones that we imported from Fbx, as they only have xyz. + // Now that we have the tangents and bitangents, calculate the tangent w values for the ones that we imported from the scene file, as they only have xyz. UpdateFbxTangentWValues(graph, nodeIndex, mesh); } @@ -122,7 +122,7 @@ namespace AZ::SceneGenerationComponents size_t uvSetIndex = 0; while (uvData) { - // Get the tangents and bitangents from Fbx. + // Get the tangents and bitangents from the source scene. AZ::SceneAPI::DataTypes::IMeshVertexTangentData* fbxTangentData = AZ::SceneAPI::SceneData::TangentsRule::FindTangentData(graph, nodeIndex, uvSetIndex, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); AZ::SceneAPI::DataTypes::IMeshVertexBitangentData* fbxBitangentData = AZ::SceneAPI::SceneData::TangentsRule::FindBitangentData(graph, nodeIndex, uvSetIndex, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); @@ -197,7 +197,7 @@ namespace AZ::SceneGenerationComponents return true; // No fatal error } - // Check if we had tangents inside the Fbx file. + // Check if we had tangents inside the source scene file. AZ::SceneAPI::DataTypes::IMeshVertexTangentData* fbxTangentData = AZ::SceneAPI::SceneData::TangentsRule::FindTangentData(graph, nodeIndex, 0, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); AZ::SceneAPI::DataTypes::IMeshVertexBitangentData* fbxBitangentData = AZ::SceneAPI::SceneData::TangentsRule::FindBitangentData(graph, nodeIndex, 0, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); @@ -211,7 +211,7 @@ namespace AZ::SceneGenerationComponents requiredSpaces.emplace_back(AZ::SceneAPI::DataTypes::TangentSpace::MikkT); } - // If all we need is import from FBX, and we have tangent data from Fbx already, then skip generating. + // If all we need is import from the source scene, and we have tangent data from the source scene already, then skip generating. if ((requiredSpaces.size() == 1 && requiredSpaces[0] == AZ::SceneAPI::DataTypes::TangentSpace::FromFbx) && fbxTangentData && fbxBitangentData) { return true; diff --git a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp index 20c0dece37..6f1e54aa82 100644 --- a/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneBuilder/SceneBuilderWorker.cpp @@ -50,7 +50,7 @@ namespace SceneBuilder if (m_cachedFingerprint.empty()) { // put them in an ORDERED set so that changing the reflection - // or the gems loaded does not invalidate FBX files due to order of reflection changing. + // or the gems loaded does not invalidate scene files due to order of reflection changing. AZStd::set fragments; AZ::SerializeContext* context = nullptr; @@ -350,7 +350,7 @@ namespace SceneBuilder AZ::u32 SceneBuilderWorker::BuildSubId(const AZ::SceneAPI::Events::ExportProduct& product) const { // Instead of the just the lower 16-bits, use the full 32-bits that are available. There are production examples of - // uber-fbx files that contain hundreds of meshes that need to be split into individual mesh objects as an example. + // uber-scene files that contain hundreds of meshes that need to be split into individual mesh objects as an example. AZ::u32 id = static_cast(product.m_id.GetHash()); if (product.m_lod.has_value()) From f492949626d1f5a6af83480a2b9fb2c9ed0e9d95 Mon Sep 17 00:00:00 2001 From: Alex Peterson <26804013+AMZN-alexpete@users.noreply.github.com> Date: Thu, 1 Jul 2021 09:09:56 -0700 Subject: [PATCH 083/111] Removed mention of sample project from welcome screen (#1664) --- Code/Tools/ProjectManager/Source/ProjectsScreen.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp index 9ea0b3ec2c..b1db77ea83 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp @@ -92,8 +92,7 @@ namespace O3DE::ProjectManager QLabel* introLabel = new QLabel(this); introLabel->setObjectName("introLabel"); - introLabel->setText(tr("Welcome to O3DE! Start something new by creating a project. Not sure what to create? \nExplore what's " - "available by downloading our sample project.")); + introLabel->setText(tr("Welcome to O3DE! Start something new by creating a project.")); layout->addWidget(introLabel); QHBoxLayout* buttonLayout = new QHBoxLayout(); From ea42ef78b864943977c72a1f3eda19d6e1632af7 Mon Sep 17 00:00:00 2001 From: Benjamin Jillich <43751992+amzn-jillich@users.noreply.github.com> Date: Thu, 1 Jul 2021 09:44:28 -0700 Subject: [PATCH 084/111] [LYN-4938] Prism: Paths in Engine settings page do not use consistent slashes (#1721) * Corrected focus for form line edit widgets. * Consistent slash usage for folder browse edit widgets. Signed-off-by: Benjamin Jillich --- .../ProjectManager/Source/FormBrowseEditWidget.cpp | 5 +++++ .../ProjectManager/Source/FormBrowseEditWidget.h | 1 + .../Source/FormFolderBrowseEditWidget.cpp | 11 +++++++++-- .../Source/FormFolderBrowseEditWidget.h | 2 ++ .../ProjectManager/Source/FormLineEditWidget.cpp | 10 ++++++++++ Code/Tools/ProjectManager/Source/FormLineEditWidget.h | 5 +++++ 6 files changed, 32 insertions(+), 2 deletions(-) diff --git a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp index be60638cbf..a81c65719c 100644 --- a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp +++ b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.cpp @@ -21,4 +21,9 @@ namespace O3DE::ProjectManager connect(browseButton, &QPushButton::pressed, this, &FormBrowseEditWidget::HandleBrowseButton); m_frameLayout->addWidget(browseButton); } + + FormBrowseEditWidget::FormBrowseEditWidget(const QString& labelText, QWidget* parent) + : FormBrowseEditWidget(labelText, "", parent) + { + } } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h index 1d698c0052..26dbb43bba 100644 --- a/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h +++ b/Code/Tools/ProjectManager/Source/FormBrowseEditWidget.h @@ -20,6 +20,7 @@ namespace O3DE::ProjectManager public: explicit FormBrowseEditWidget(const QString& labelText, const QString& valueText = "", QWidget* parent = nullptr); + explicit FormBrowseEditWidget(const QString& labelText = "", QWidget* parent = nullptr); ~FormBrowseEditWidget() = default; protected slots: diff --git a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp index 8053cfbfe6..1f3f1e34c1 100644 --- a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp +++ b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.cpp @@ -15,8 +15,9 @@ namespace O3DE::ProjectManager { FormFolderBrowseEditWidget::FormFolderBrowseEditWidget(const QString& labelText, const QString& valueText, QWidget* parent) - : FormBrowseEditWidget(labelText, valueText, parent) + : FormBrowseEditWidget(labelText, parent) { + setText(valueText); } void FormFolderBrowseEditWidget::HandleBrowseButton() @@ -30,8 +31,14 @@ namespace O3DE::ProjectManager QString directory = QDir::toNativeSeparators(QFileDialog::getExistingDirectory(this, tr("Browse"), defaultPath)); if (!directory.isEmpty()) { - m_lineEdit->setText(directory); + setText(directory); } } + + void FormFolderBrowseEditWidget::setText(const QString& text) + { + QString path = QDir::toNativeSeparators(text); + FormBrowseEditWidget::setText(path); + } } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h index 5ad3025c39..d8ef5edd4f 100644 --- a/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h +++ b/Code/Tools/ProjectManager/Source/FormFolderBrowseEditWidget.h @@ -22,6 +22,8 @@ namespace O3DE::ProjectManager explicit FormFolderBrowseEditWidget(const QString& labelText, const QString& valueText = "", QWidget* parent = nullptr); ~FormFolderBrowseEditWidget() = default; + void setText(const QString& text) override; + protected: void HandleBrowseButton() override; }; diff --git a/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp b/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp index 25c76ddd6b..11932e6d5b 100644 --- a/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp +++ b/Code/Tools/ProjectManager/Source/FormLineEditWidget.cpp @@ -123,4 +123,14 @@ namespace O3DE::ProjectManager child->style()->polish(child); } } + + void FormLineEditWidget::setText(const QString& text) + { + m_lineEdit->setText(text); + } + + void FormLineEditWidget::mousePressEvent([[maybe_unused]] QMouseEvent* event) + { + m_lineEdit->setFocus(); + } } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/FormLineEditWidget.h b/Code/Tools/ProjectManager/Source/FormLineEditWidget.h index 2d3802d6f6..cc8c0e3685 100644 --- a/Code/Tools/ProjectManager/Source/FormLineEditWidget.h +++ b/Code/Tools/ProjectManager/Source/FormLineEditWidget.h @@ -15,6 +15,7 @@ QT_FORWARD_DECLARE_CLASS(QLineEdit) QT_FORWARD_DECLARE_CLASS(QLabel) QT_FORWARD_DECLARE_CLASS(QFrame) QT_FORWARD_DECLARE_CLASS(QHBoxLayout) +QT_FORWARD_DECLARE_CLASS(QMouseEvent) namespace AzQtComponents { @@ -39,6 +40,8 @@ namespace O3DE::ProjectManager //! Returns a pointer to the underlying LineEdit. QLineEdit* lineEdit() const; + virtual void setText(const QString& text); + protected: QLabel* m_errorLabel = nullptr; QFrame* m_frame = nullptr; @@ -51,6 +54,8 @@ namespace O3DE::ProjectManager void onFocusOut(); private: + void mousePressEvent(QMouseEvent* event) override; + void refreshStyle(); }; } // namespace O3DE::ProjectManager From 74de7f785c4c9e3e0afbd78d193a432de47aefd1 Mon Sep 17 00:00:00 2001 From: amzn-hdoke <61443753+hdoke@users.noreply.github.com> Date: Thu, 1 Jul 2021 09:51:32 -0700 Subject: [PATCH 085/111] Fix reading AWSAttribution checkbox state (#1698) Signed-off-by: dhrudesh --- .../Source/Editor/Attribution/AWSCoreAttributionManager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp index 895ae4fec7..f2ff7ed816 100644 --- a/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp +++ b/Gems/AWSCore/Code/Source/Editor/Attribution/AWSCoreAttributionManager.cpp @@ -25,6 +25,7 @@ #include #include +#include namespace AWSCore @@ -170,7 +171,7 @@ namespace AWSCore switch (ret) { case QMessageBox::Save: - m_settingsRegistry->Set(AWSAttributionEnabledKey, msgBox->checkBox()); + m_settingsRegistry->Set(AWSAttributionEnabledKey, msgBox->checkBox()->checkState() == Qt::Checked); break; case QMessageBox::Cancel: default: From 1586c00fc8e630298fa2c601ee28fa28772e1486 Mon Sep 17 00:00:00 2001 From: Benjamin Jillich <43751992+amzn-jillich@users.noreply.github.com> Date: Thu, 1 Jul 2021 09:53:17 -0700 Subject: [PATCH 086/111] [LYN-4929] Correct gems not showing as enabled for a template (#1722) * When there are multiple project templates present, we re-gather the gems when changing the selected the project template. * In case the user enabled or disabled any gem and they select a new project template, we show a warning dialog where users can either cancel the operation or proceed to the new project template. The warning dialog will only appear in case the enabled gems actually differ from the currently used template's default. * New helper function to select the used project template. * Storing the currently used project template index and only update the template details and emitting the changed event in case the user has actually chosen another template. This avoids emitting signals in case the user clicks on the already selected template. Signed-off-by: Benjamin Jillich --- .../Source/CreateProjectCtrl.cpp | 46 +++++++++++++++++-- .../ProjectManager/Source/CreateProjectCtrl.h | 1 + .../Source/GemCatalog/GemCatalogScreen.h | 2 + .../Source/NewProjectSettingsScreen.cpp | 41 +++++++++++++++-- .../Source/NewProjectSettingsScreen.h | 8 ++++ 5 files changed, 89 insertions(+), 9 deletions(-) diff --git a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp index 0ec395a6df..9c0b4726ed 100644 --- a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp +++ b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include @@ -46,6 +47,40 @@ namespace O3DE::ProjectManager m_stack->addWidget(m_gemCatalogScreen); vLayout->addWidget(m_stack); + // When there are multiple project templates present, we re-gather the gems when changing the selected the project template. + connect(m_newProjectSettingsScreen, &NewProjectSettingsScreen::OnTemplateSelectionChanged, this, [=](int oldIndex, [[maybe_unused]] int newIndex) + { + const GemModel* gemModel = m_gemCatalogScreen->GetGemModel(); + const QVector toBeAdded = gemModel->GatherGemsToBeAdded(); + const QVector toBeRemoved = gemModel->GatherGemsToBeRemoved(); + if (!toBeAdded.isEmpty() || !toBeRemoved.isEmpty()) + { + // In case the user enabled or disabled any gem and the current selection does not match the default from the + // // project template anymore, we need to ask the user if they want to proceed as their modifications will be lost. + const QString title = tr("Modifications will be lost"); + const QString text = tr("You selected a new project template after modifying the enabled gems.\n\n" + "All modifications will be lost and the default from the new project template will be used.\n\n" + "Do you want to proceed?"); + if (QMessageBox::warning(this, title, text, QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) + { + // The users wants to proceed. Reinitialize based on the newly selected project template. + ReinitGemCatalogForSelectedTemplate(); + } + else + { + // Roll-back to the previously selected project template and + // block signals so that we don't end up in this same callback again. + m_newProjectSettingsScreen->SelectProjectTemplate(oldIndex, /*blockSignals=*/true); + } + } + else + { + // In case the user did not enable or disable any gem and the currently enabled gems matches the previously selected + // ones from the project template, we can just reinitialize based on the newly selected project template. + ReinitGemCatalogForSelectedTemplate(); + } + }); + QDialogButtonBox* buttons = new QDialogButtonBox(); buttons->setObjectName("footer"); vLayout->addWidget(buttons); @@ -81,10 +116,8 @@ namespace O3DE::ProjectManager currentScreen->NotifyCurrentScreen(); } - // Gather the gems from the project template. When we will have multiple project templates, we need to re-gather them - // on changing the template and let the user know that any further changes on top of the template will be lost. - QString projectTemplatePath = m_newProjectSettingsScreen->GetProjectTemplatePath(); - m_gemCatalogScreen->ReinitForProject(projectTemplatePath + "/Template", /*isNewProject=*/true); + // Gather the enabled gems from the default project template when starting the create new project workflow. + ReinitGemCatalogForSelectedTemplate(); } void CreateProjectCtrl::HandleBackButton() @@ -223,4 +256,9 @@ namespace O3DE::ProjectManager } } + void CreateProjectCtrl::ReinitGemCatalogForSelectedTemplate() + { + const QString projectTemplatePath = m_newProjectSettingsScreen->GetProjectTemplatePath(); + m_gemCatalogScreen->ReinitForProject(projectTemplatePath + "/Template", /*isNewProject=*/true); + } } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h index c2b4528802..c453e2d500 100644 --- a/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h +++ b/Code/Tools/ProjectManager/Source/CreateProjectCtrl.h @@ -40,6 +40,7 @@ namespace O3DE::ProjectManager #ifdef TEMPLATE_GEM_CONFIGURATION_ENABLED void OnChangeScreenRequest(ProjectManagerScreen screen); void HandleSecondaryButton(); + void ReinitGemCatalogForSelectedTemplate(); #endif // TEMPLATE_GEM_CONFIGURATION_ENABLED private: diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h index 0fdfc6bdf5..b7fcf8446e 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemCatalogScreen.h @@ -30,6 +30,8 @@ namespace O3DE::ProjectManager void ReinitForProject(const QString& projectPath, bool isNewProject); bool EnableDisableGemsForProject(const QString& projectPath); + GemModel* GetGemModel() const { return m_gemModel; } + private: void FillModel(const QString& projectPath, bool isNewProject); diff --git a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp index efecb2d901..26e5e074e5 100644 --- a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.cpp @@ -81,8 +81,14 @@ namespace O3DE::ProjectManager { if (button && button->property(k_templateIndexProperty).isValid()) { - int projectIndex = button->property(k_templateIndexProperty).toInt(); - UpdateTemplateDetails(m_templates.at(projectIndex)); + int projectTemplateIndex = button->property(k_templateIndexProperty).toInt(); + if (m_selectedTemplateIndex != projectTemplateIndex) + { + const int oldIndex = m_selectedTemplateIndex; + m_selectedTemplateIndex = projectTemplateIndex; + UpdateTemplateDetails(m_templates.at(m_selectedTemplateIndex)); + emit OnTemplateSelectionChanged(/*oldIndex=*/oldIndex, /*newIndex=*/m_selectedTemplateIndex); + } } }); @@ -115,7 +121,8 @@ namespace O3DE::ProjectManager flowLayout->addWidget(templateButton); } - m_projectTemplateButtonGroup->buttons().first()->setChecked(true); + // Select the first project template (default selection). + SelectProjectTemplate(0, /*blockSignals=*/true); } containerLayout->addWidget(templatesScrollArea); } @@ -159,8 +166,9 @@ namespace O3DE::ProjectManager QString NewProjectSettingsScreen::GetProjectTemplatePath() { - const int templateIndex = m_projectTemplateButtonGroup->checkedButton()->property(k_templateIndexProperty).toInt(); - return m_templates.at(templateIndex).m_path; + AZ_Assert(m_selectedTemplateIndex == m_projectTemplateButtonGroup->checkedButton()->property(k_templateIndexProperty).toInt(), + "Selected template index not in sync with the currently checked project template button."); + return m_templates.at(m_selectedTemplateIndex).m_path; } QFrame* NewProjectSettingsScreen::CreateTemplateDetails(int margin) @@ -216,4 +224,27 @@ namespace O3DE::ProjectManager m_templateSummary->setText(templateInfo.m_summary); m_templateIncludedGems->Update(templateInfo.m_includedGems); } + + void NewProjectSettingsScreen::SelectProjectTemplate(int index, bool blockSignals) + { + const QList buttons = m_projectTemplateButtonGroup->buttons(); + if (index >= buttons.size()) + { + return; + } + + if (blockSignals) + { + m_projectTemplateButtonGroup->blockSignals(true); + } + + QAbstractButton* button = buttons.at(index); + button->setChecked(true); + m_selectedTemplateIndex = button->property(k_templateIndexProperty).toInt(); + + if (blockSignals) + { + m_projectTemplateButtonGroup->blockSignals(false); + } + } } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h index 4238ef98be..d812bfd091 100644 --- a/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h +++ b/Code/Tools/ProjectManager/Source/NewProjectSettingsScreen.h @@ -22,6 +22,8 @@ namespace O3DE::ProjectManager class NewProjectSettingsScreen : public ProjectSettingsScreen { + Q_OBJECT + public: explicit NewProjectSettingsScreen(QWidget* parent = nullptr); ~NewProjectSettingsScreen() = default; @@ -31,6 +33,11 @@ namespace O3DE::ProjectManager void NotifyCurrentScreen() override; + void SelectProjectTemplate(int index, bool blockSignals = false); + + signals: + void OnTemplateSelectionChanged(int oldIndex, int newIndex); + private: QString GetDefaultProjectPath(); QFrame* CreateTemplateDetails(int margin); @@ -41,6 +48,7 @@ namespace O3DE::ProjectManager QLabel* m_templateSummary; TagContainerWidget* m_templateIncludedGems; QVector m_templates; + int m_selectedTemplateIndex = -1; inline constexpr static int s_spacerSize = 20; inline constexpr static int s_templateDetailsContentMargin = 20; From af9f1aaae0257c41465823c37326dc898890f046 Mon Sep 17 00:00:00 2001 From: Shirang Jia Date: Thu, 1 Jul 2021 10:21:48 -0700 Subject: [PATCH 087/111] Remove unused package filelist (#1687) --- .../package/Platform/Windows/package_env.json | 23 --- .../Windows/package_filelists/atom.json | 162 ------------------ 2 files changed, 185 deletions(-) delete mode 100644 scripts/build/package/Platform/Windows/package_filelists/atom.json diff --git a/scripts/build/package/Platform/Windows/package_env.json b/scripts/build/package/Platform/Windows/package_env.json index 371bee18f6..970361bacc 100644 --- a/scripts/build/package/Platform/Windows/package_env.json +++ b/scripts/build/package/Platform/Windows/package_env.json @@ -30,29 +30,6 @@ "TYPE": "profile_vs2019" } ] - }, - "atom":{ - "PACKAGE_TARGETS":[ - { - "FILE_LIST": "atom.json", - "FILE_LIST_TYPE": "Windows", - "PACKAGE_NAME": "${PACKAGE_NAME_PATTERN}-windows-atom-${BUILD_NUMBER}.zip" - }, - { - "FILE_LIST": "symbols.json", - "FILE_LIST_TYPE": "All", - "PACKAGE_NAME": "${PACKAGE_NAME_PATTERN}-windows-atom-symbols-${BUILD_NUMBER}.zip" - } - ], - "BOOTSTRAP_CFG_GAME_FOLDER":"AtomSampleViewer;AtomTest", - "SKIP_BUILD": 1, - "BUILD_TARGETS":[ - { - "BUILD_CONFIG_FILENAME": "build_config.json", - "PLATFORM": "Windows", - "TYPE": "profile_vs2019_atom" - } - ] } } } diff --git a/scripts/build/package/Platform/Windows/package_filelists/atom.json b/scripts/build/package/Platform/Windows/package_filelists/atom.json deleted file mode 100644 index 7f049981a7..0000000000 --- a/scripts/build/package/Platform/Windows/package_filelists/atom.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "@lyengine": { - "**/*.pyc": "#exclude", - "*": "#include", - ".gitattributes": "#exclude", - ".gitignore": "#exclude", - ".gitmodules": "#exclude", - ".lfsconfig": "#exclude", - ".p4ignore": "#exclude", - ".submodules": "#exclude", - "AtomTest": - { - "**":"#include", - "**/*.ma":"#exclude", - "**/*.max":"#exclude", - "**/*.mb":"#exclude", - "**/*.psd":"#exclude" - }, - "AtomSampleViewer": - { - "**":"#include", - "**/*.ma":"#exclude", - "**/*.max":"#exclude", - "**/*.mb":"#exclude", - "**/*.psd":"#exclude" - }, - "cmake/**": "#include", - "Code": { - "Legacy/**": "#include", - "Framework/**": "#include", - "LauncherUnified/**": "#include", - "Editor/**": "#include", - "Tools": { - "Android/**": "#include", - "AWSNativeSDKInit/**": "#include", - "AssetProcessor*/**": "#include", - "AssetBundler/**": "#include", - "AzTestRunner/**": "#include", - "CrashHandler/**": "#include", - "DeltaCataloger/**": "#include", - "GridHub/**": "#include", - "News/**": "#include", - "PythonBindingsExample/**": "#include", - "RemoteConsole/**": "#include", - "SceneAPI/**": "#include", - "SerializeContextTools/**": "#include", - "CMakeLists.txt": "#include" - }, - "CMakeLists.txt": "#include" - }, - "ctest_scripts/**": "#include", - "Editor/**": "#include", - "Engine/**": "#include", - "Gems": { - "Achievements": "#include", - "AssetMemoryAnalyzer": "#include", - "AssetValidation": "#include", - "Atom": "#include", - "AtomLyIntegration": "#include", - "AudioEngineWwise": "#include", - "AudioSystem": "#include", - "AutomatedLauncherTesting": "#include", - "Blast": "#include", - "Camera": "#include", - "CameraFramework": "#include", - "CertificateManager": "#include", - "ChatPlay": "#include", - "Clouds": "#include", - "CrashReporting": "#include", - "CustomAssetExample": "#include", - "DebugDraw": "#include", - "EditorPythonBindings": "#include", - "EMotionFX": "#include", - "ExpressionEvaluation": "#include", - "FastNoise": "#include", - "GameEffectSystem": "#include", - "GameState": "#include", - "GameStateSamples": "#include", - "Gestures": "#include", - "GradientSignal": "#include", - "GraphCanvas": "#include", - "GraphModel": "#include", - "HttpRequestor": "#include", - "ImGui": "#include", - "InAppPurchases": "#include", - "LandscapeCanvas": "#include", - "LegacyTerrain": "#include", - "LmbrCentral": "#include", - "LocalUser": "#include", - "LyShine": "#include", - "LyShineExamples": "#include", - "Maestro": "#include", - "MessagePopup": "#include", - "Metastream": "#include", - "Microphone": "#include", - "Multiplayer": "#include", - "MultiplayerImGui": "#include", - "NvCloth": "#include", - "PhysX": "#include", - "PhysXDebug": "#include", - "Presence": "#include", - "QtForPython": "#include", - "RADTelemetry": "#include", - "RenderToTexture": "#include", - "SaveData": "#include", - "SceneLoggingExample": "#include", - "SceneProcessing": "#include", - "ScriptCanvas": "#include", - "ScriptCanvasDeveloper": "#include", - "ScriptCanvasDiagnosticLibrary": "#include", - "ScriptCanvasPhysics": "#include", - "ScriptCanvasTesting": "#include", - "ScriptedEntityTweener": "#include", - "ScriptEvents": "#include", - "SliceFavorites": "#include", - "StartingPointCamera": "#include", - "StartingPointInput": "#include", - "StartingPointMovement": "#include", - "Substance": "#include", - "SurfaceData": "#include", - "SVOGI": "#include", - "TestAssetBuilder": "#include", - "TextureAtlas": "#include", - "TickBusOrderViewer": "#include", - "TouchBending": "#include", - "Twitch": "#include", - "Vegetation": "#include", - "VideoPlayback": "#include", - "VideoPlaybackBink": "#include", - "VideoPlaybackFramework": "#include", - "VirtualGamepad": "#include", - "Visibility": "#include", - "Water": "#include", - "WhiteBox": "#include", - "CMakeLists.txt": "#include" - }, - "Tools": { - "3dsmax/**": "#include", - "7za.exe": "#include", - "7za_legal_notice.txt": "#include", - "PakShaders/**": "#include", - "Python/**": "#include", - "Redistributables": { - "**": "#include", - "ANGLE/**": "#exclude", - "D3DCompiler/**": "#exclude", - "DbgHelp/**": "#exclude", - "FFMpeg/**": "#exclude", - "LuaCompiler/**": "#exclude", - "MSVC90/**": "#exclude", - "OpenGL32/**": "#exclude", - "SSLEAY/**": "#exclude" - }, - "RemoteConsole/**": "#include", - "__init__.py": "#include", - "lmbr_aws/**": "#include", - "maxscript/**": "#include", - "maya/**": "#include", - "photoshop/**": "#include" - } - } -} \ No newline at end of file From d34d08819103a8ace0498e87f7a4485af3f4663f Mon Sep 17 00:00:00 2001 From: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> Date: Thu, 1 Jul 2021 13:53:17 -0500 Subject: [PATCH 088/111] Miscellaneous prefab/converter bugfixes to support TrackView (#1701) This has a small bundle of bugfixes and improvements all based around improving prefab TrackView support: * JsonMerger - improved the error message when patch remove operations fail to make the specific failure more obvious Instance - swapped the order of destroying entities vs clearing the lookup tables so that lookups still produce valid results during destruction. (This could happen while creating undo caches) * InstanceEntityIdMapper - in the case where an id isn't found, it now returns an invalid id instead of an "attempted-valid" one that still generally turned out to be not-valid * PrefabUndo - downgraded a potential crash to an error message if for some reason the patch contains changes to an entity that doesn't currently have an alias. (This case can be caused occasionally by other bugs and error conditions) * EditorSequenceComponent - downgraded a potential crash to an assert for the times when it tries to remove components, fails, but thinks it succeeded. (This case can currently be caused by using Maestro with Prefabs enabled) * EditorSequenceAgentComponent - added an undo cache refresh whenever the component deletes itself, so that deleting itself during an EditorSequenceComponent destruction chain of events leaves the undo cache in the correct state. * SliceConverter - fixed the conversion of entity references in top-level slice instance entities that refer down to nested slice entities. There was a chicken-and-egg problem in terms of which entities need to be created first to make the references and the prefab patching & serialization happy. This was worked around by creating placeholder top-level entities, then the nested slice entities, then replacing the top-level entities with the fully-realized ones. Specific changes: * Added more informative error message. Signed-off-by: mbalfour (cherry picked from commit 672608a6c833c07295996cd9b3449825222b74d0) * Changed the error condition to produce a "valid" invalid id instead of a deterministic but not-valid id Signed-off-by: mbalfour (cherry picked from commit 3673950c949de8e067b32ddafaffd07e648a13d8) * Guard against invalid reference assert/crash Signed-off-by: mbalfour (cherry picked from commit 268d4ef3447f268a1372d07e028b9e67bac5c64e) * Downgrade an invalid reference crash to an assert Signed-off-by: mbalfour (cherry picked from commit 38c9303770845f4e863273dd6fb8fc7e83380425) * Improved logic for handling entity references across nested slices. Signed-off-by: mbalfour (cherry picked from commit 7e89a016d95fb72cb5f119e1e3768daa60e6bfb4) * Changed order of entities.clear() call so that instance lookups are still valid during entity destruction. Signed-off-by: mbalfour * Add undo cache notification when removing Maestro components. Signed-off-by: mbalfour --- .../AzCore/Serialization/Json/JsonMerger.cpp | 7 +- .../Prefab/Instance/Instance.cpp | 4 +- .../Instance/InstanceEntityIdMapper.cpp | 2 +- .../AzToolsFramework/Prefab/PrefabUndo.cpp | 10 +- .../SerializeContextTools/SliceConverter.cpp | 161 +++++++++++++----- .../EditorSequenceAgentComponent.cpp | 12 +- .../Components/EditorSequenceComponent.cpp | 26 ++- 7 files changed, 169 insertions(+), 53 deletions(-) diff --git a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp index be20a46626..61869b7eb5 100644 --- a/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp +++ b/Code/Framework/AzCore/AzCore/Serialization/Json/JsonMerger.cpp @@ -403,7 +403,12 @@ namespace AZ { if (!parentValue->EraseMember(tokens[path.GetTokenCount() - 1].name)) { - return settings.m_reporting(R"(The "remove" operation failed to remove member from object.)", + rapidjson::StringBuffer pathString; + path.Stringify(pathString); + return settings.m_reporting( + AZStd::string::format( + R"(The "remove" operation failed to remove member '%s' from object at path '%s'.)", + tokens[path.GetTokenCount() - 1].name, pathString.GetString()), ResultCode(Tasks::Merge, Outcomes::Invalid), element); } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp index b229fb7f9d..1bacc11df3 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.cpp @@ -280,9 +280,11 @@ namespace AzToolsFramework } } + // Destroy the entities *before* clearing the lookup maps so that any lookups triggered during an entity's destructor + // are still valid. + m_entities.clear(); m_instanceToTemplateEntityIdMap.clear(); m_templateToInstanceEntityIdMap.clear(); - m_entities.clear(); } bool Instance::RegisterEntity(const AZ::EntityId& entityId, const EntityAlias& entityAlias) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp index c000dd9349..33cbe67608 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/InstanceEntityIdMapper.cpp @@ -157,7 +157,7 @@ namespace AzToolsFramework "Prefab - EntityIdMapper: Entity with Id %s has no registered owning instance", entityId.ToString().c_str()); - return AZStd::string::format("Entity_%s", entityId.ToString().c_str()); + return {}; } Instance* owningInstance = &(owningInstanceReference->get()); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp index fef43fbfcc..e29c33a21f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabUndo.cpp @@ -70,7 +70,15 @@ namespace AzToolsFramework "Failed to find an owning instance for the entity with id %llu.", static_cast(entityId)); Instance& instance = instanceReference->get(); m_templateId = instance.GetTemplateId(); - m_entityAlias = (instance.GetEntityAlias(entityId)).value(); + auto aliasReference = instance.GetEntityAlias(entityId); + if (!aliasReference.has_value()) + { + AZ_Error( + "Prefab", aliasReference.has_value(), "Failed to find the entity alias for entity %s.", entityId.ToString().c_str()); + return; + } + + m_entityAlias = aliasReference.value(); //generate undo/redo patches m_instanceToTemplateInterface->GeneratePatch(m_redoPatch, initialState, endState); diff --git a/Code/Tools/SerializeContextTools/SliceConverter.cpp b/Code/Tools/SerializeContextTools/SliceConverter.cpp index 5672f20543..0ffe7427e7 100644 --- a/Code/Tools/SerializeContextTools/SliceConverter.cpp +++ b/Code/Tools/SerializeContextTools/SliceConverter.cpp @@ -208,13 +208,6 @@ namespace AZ bool SliceConverter::ConvertSliceToPrefab( AZ::SerializeContext* serializeContext, AZ::IO::PathView outputPath, bool isDryRun, AZ::Entity* rootEntity) { - /* Given a root slice entity, we convert it to a prefab by doing the following: - * - Locate the SliceComponent - * - Take all the entities directly located on the slice, and put them into a prefab - * - Fix up any top-level entities to have the prefab container entity as their parent - * - If there are any nested slice instances, convert the nested slices to prefabs, then convert the instances. - */ - auto prefabSystemComponentInterface = AZ::Interface::Get(); // Find the slice from the root entity. @@ -233,23 +226,47 @@ namespace AZ sliceComponent->RemoveAllEntities(deleteEntities, removeEmptyInstances); AZ_Printf("Convert-Slice", " Slice contains %zu entities.\n", sliceEntities.size()); - // Create the Prefab with the entities from the slice. + // Create an empty Prefab as the start of our conversion. // The entities are added in a separate step so that we can give them deterministic entity aliases that match their entity Ids AZStd::unique_ptr sourceInstance( prefabSystemComponentInterface->CreatePrefab({}, {}, outputPath)); + + // Add entities into our prefab. + // In slice->prefab conversions, there's a chicken-and-egg problem that occurs with entity references, so we're initially + // going to add empty dummy entities with the right IDs and aliases. + // The problem is that we can have entities in this root list that have references to nested slice instance entities that we + // haven't created yet, and we will have nested slice entities that need to reference these entities as parents. + // If we create these entities as fully-formed first, they will fail to serialize correctly when adding each nested instance, + // due to the references not pointing to valid entities yet. And if we *wait* to create these and build the nested instances + // first, they'll fail to serialize correctly due to referencing these as parents. + // So our solution is that we'll initially create these entities as empty placeholders with no references, *then* we'll build + // up the nested instances, *then* we'll finish building these entities out. + + // prefabPlaceholderEntities will hold onto pointers to the entities we're building up in the prefab. The prefab will own + // the lifetime of them, but we'll use the references here for convenient access. + AZStd::vector prefabPlaceholderEntities; + // entityAliases will hold onto the alias we want to use for each of those entities. We'll need to use the same alias when + // we replace the entities at the end. + AZStd::vector entityAliases; for (auto& entity : sliceEntities) { - sourceInstance->AddEntity(*entity, AZStd::string::format("Entity_%s", entity->GetId().ToString().c_str())); + auto id = entity->GetId(); + prefabPlaceholderEntities.emplace_back(aznew AZ::Entity(id)); + entityAliases.emplace_back(AZStd::string::format("Entity_%s", id.ToString().c_str())); + sourceInstance->AddEntity(*(prefabPlaceholderEntities.back()), entityAliases.back()); + + // Save off a mapping of the original slice entity IDs to the new prefab template entity aliases. + // We'll need this mapping for fixing up all the entity references in this slice as well as any nested instances. + auto result = m_aliasIdMapper.emplace(id, SliceEntityMappingInfo(sourceInstance->GetTemplateId(), entityAliases.back())); + if (!result.second) + { + AZ_Printf("Convert-Slice", " Duplicate entity alias -> entity id entries found, conversion may not be successful.\n"); + } } // Dispatch events here, because prefab creation might trigger asset loads in rare circumstances. AZ::Data::AssetManager::Instance().DispatchEvents(); - // Fix up the container entity to have the proper components and fix up the slice entities to have the proper hierarchy - // with the container as the top-most parent. - AzToolsFramework::Prefab::EntityOptionalReference container = sourceInstance->GetContainerEntity(); - FixPrefabEntities(container->get(), sliceEntities); - // Keep track of the template Id we created, we're going to remove it at the end of slice file conversion to make sure // the data doesn't stick around between file conversions. auto templateId = sourceInstance->GetTemplateId(); @@ -260,26 +277,8 @@ namespace AZ } m_createdTemplateIds.emplace(templateId); - // Save off a mapping of the original slice entity IDs to the new prefab template entity aliases. - // When converting nested slices, this mapping will be needed to fix up the parent entity hierarchy correctly. - auto entityAliases = sourceInstance->GetEntityAliases(); - for (auto& alias : entityAliases) - { - auto id = sourceInstance->GetEntityId(alias); - auto result = m_aliasIdMapper.emplace(id, SliceEntityMappingInfo(templateId, alias)); - if (!result.second) - { - AZ_Printf("Convert-Slice", " Duplicate entity alias -> entity id entries found, conversion may not be successful.\n"); - } - } - - // Save off a mapping of the slice's metadata entity ID as well, even though we never converted the entity itself. - // This will help us better detect entity ID mapping errors for nested slice instances. - AZ::Entity* metadataEntity = sliceComponent->GetMetadataEntity(); - constexpr bool isMetadataEntity = true; - m_aliasIdMapper.emplace(metadataEntity->GetId(), SliceEntityMappingInfo(templateId, "MetadataEntity", isMetadataEntity)); - - // Update the prefab template with the fixed-up data in our prefab instance. + // Save off the the first version of this prefab template with our empty placeholder entities. + // As it saves off, the entities will all change IDs during serialization / propagation, but the aliases will remain the same. AzToolsFramework::Prefab::PrefabDom prefabDom; bool storeResult = AzToolsFramework::Prefab::PrefabDomUtils::StoreInstanceInPrefabDom(*sourceInstance, prefabDom); if (storeResult == false) @@ -288,10 +287,20 @@ namespace AZ return false; } prefabSystemComponentInterface->UpdatePrefabTemplate(templateId, prefabDom); + AZ::Interface::Get()->UpdateTemplateInstancesInQueue(); // Dispatch events here, because prefab serialization might trigger asset loads in rare circumstances. AZ::Data::AssetManager::Instance().DispatchEvents(); + // Save off a mapping of the slice's metadata entity ID as well, even though we never converted the entity itself. + // This will help us better detect entity ID mapping errors for nested slice instances. + AZ::Entity* metadataEntity = sliceComponent->GetMetadataEntity(); + constexpr bool isMetadataEntity = true; + m_aliasIdMapper.emplace(metadataEntity->GetId(), SliceEntityMappingInfo(templateId, "MetadataEntity", isMetadataEntity)); + + // Also save off a mapping of the prefab's container entity ID. + m_aliasIdMapper.emplace(sourceInstance->GetContainerEntityId(), SliceEntityMappingInfo(templateId, "ContainerEntity")); + // If this slice has nested slices, we need to loop through those, convert them to prefabs as well, and // set up the new nesting relationships correctly. const SliceComponent::SliceList& sliceList = sliceComponent->GetSlices(); @@ -305,6 +314,51 @@ namespace AZ } } + // *After* converting the nested slices, remove our placeholder entities and replace them with the correct ones. + // The placeholder entity IDs will have changed from what we originally created, so we need to make sure our replacement + // entities have the same IDs and aliases as the placeholders so that any instance references that have already been fixed + // up continue to reference the correct entities here. + for (size_t curEntityIdx = 0; curEntityIdx < sliceEntities.size(); curEntityIdx++) + { + auto& sliceEntity = sliceEntities[curEntityIdx]; + auto& prefabEntity = prefabPlaceholderEntities[curEntityIdx]; + sliceEntity->SetId(prefabEntity->GetId()); + } + // Remove and delete our placeholder entities. + // (By using an empty callback on DetachEntities, the unique_ptr will auto-delete the placeholder entities) + sourceInstance->DetachEntities([](AZStd::unique_ptr){}); + prefabPlaceholderEntities.clear(); + for (size_t curEntityIdx = 0; curEntityIdx < sliceEntities.size(); curEntityIdx++) + { + sourceInstance->AddEntity(*(sliceEntities[curEntityIdx]), entityAliases[curEntityIdx]); + } + + // Fix up the container entity to have the proper components and fix up the slice entities to have the proper hierarchy + // with the container as the top-most parent. + AzToolsFramework::Prefab::EntityOptionalReference container = sourceInstance->GetContainerEntity(); + FixPrefabEntities(container->get(), sliceEntities); + + // Also save off a mapping of the prefab's container entity ID. + m_aliasIdMapper.emplace(sourceInstance->GetContainerEntityId(), SliceEntityMappingInfo(templateId, "ContainerEntity")); + + // Remap all of the entity references that exist in these top-level slice entities. + SliceComponent::InstantiatedContainer instantiatedEntities(false); + instantiatedEntities.m_entities = sliceEntities; + RemapIdReferences(m_aliasIdMapper, sourceInstance.get(), sourceInstance.get(), &instantiatedEntities, serializeContext); + + // Finally, store the completed slice->prefab conversion back into the template. + storeResult = AzToolsFramework::Prefab::PrefabDomUtils::StoreInstanceInPrefabDom(*sourceInstance, prefabDom); + if (storeResult == false) + { + AZ_Printf("Convert-Slice", " Failed to convert prefab instance data to a PrefabDom.\n"); + return false; + } + prefabSystemComponentInterface->UpdatePrefabTemplate(templateId, prefabDom); + AZ::Interface::Get()->UpdateTemplateInstancesInQueue(); + + // Dispatch events here, because prefab serialization might trigger asset loads in rare circumstances. + AZ::Data::AssetManager::Instance().DispatchEvents(); + if (isDryRun) { PrintPrefab(templateId); @@ -417,7 +471,7 @@ namespace AZ auto instances = slice.GetInstances(); AZ_Printf( - "Convert-Slice", " Attaching %zu instances of nested slice '%s'.\n", instances.size(), + "Convert-Slice", "Attaching %zu instances of nested slice '%s'.\n", instances.size(), nestedPrefabPath.Native().c_str()); // Before processing any further, save off all the known entity IDs from all the instances and how they map back to @@ -435,14 +489,20 @@ namespace AZ } // Now that we have all the entity ID mappings, convert all the instances. + size_t curInstance = 0; for (auto& instance : instances) { + AZ_Printf("Convert-Slice", " Converting instance %zu.\n", curInstance++); bool instanceConvertResult = ConvertSliceInstance(instance, sliceAsset, nestedTemplate, sourceInstance); if (!instanceConvertResult) { return false; } } + + AZ_Printf( + "Convert-Slice", "Finished attaching %zu instances of nested slice '%s'.\n", instances.size(), + nestedPrefabPath.Native().c_str()); } return true; @@ -507,6 +567,10 @@ namespace AZ return false; } + // Save off a mapping of the new nested Instance's container ID + m_aliasIdMapper.emplace(nestedInstance->GetContainerEntityId(), + SliceEntityMappingInfo(nestedInstance->GetTemplateId(), "ContainerEntity")); + // Get the DOM for the unmodified nested instance. This will be used later below for generating the correct patch // to the top-level template DOM. AzToolsFramework::Prefab::PrefabDom unmodifiedNestedInstanceDom; @@ -595,7 +659,7 @@ namespace AZ auto parentId = transformComponent->GetParentId(); if (parentId.IsValid()) { - // Look to see if the parent ID exists in the same instance (i.e. an entity in the nested slice is a + // Look to see if the parent ID exists in a different instance (i.e. an entity in the nested slice is a // child of an entity in the containing slice). If this case exists, we need to adjust the parents so that // the child entity connects to the prefab container, and the *container* is the child of the entity in the // containing slice. (i.e. go from A->B to A->container->B) @@ -607,6 +671,7 @@ namespace AZ { if (topLevelInstance->GetTemplateId() == parentMappingInfo.m_templateId) { + // This entity has a parent from the topLevelInstance, so get its parent ID. parentId = topLevelInstance->GetEntityId(parentMappingInfo.m_entityAlias); } else @@ -630,15 +695,23 @@ namespace AZ } // Set the container's parent to this entity's parent, and set this entity's parent to the container - // auto newParentId = topLevelInstance->GetEntityId(parentMappingInfo.m_entityAlias); SetParentEntity(containerEntity->get(), parentId, false); onlySetIfInvalid = false; } + else + { + // If the parent ID is valid and exists inside the same slice instance (i.e. template IDs are equal) + // then it's just a nested entity hierarchy inside the slice and we don't need to adjust anything. + // "onlySetIfInvalid" will still be true, which means we won't change the parent ID below. + } + } + else + { + // If the parent ID is set to something valid, but we can't find it in our ID mapper, something went wrong. + // We'll assert, but don't change the container entity's parent below. + AZ_Assert(false, "Could not find parent entity id: %s", parentId.ToString().c_str()); } - // If the parent ID is valid, but NOT in the top-level instance, then it's just a nested hierarchy inside - // the slice and we don't need to adjust anything. "onlySetIfInvalid" will still be true, which means we - // won't change the parent ID below. } SetParentEntity(*entity, containerEntityId, onlySetIfInvalid); @@ -846,9 +919,10 @@ namespace AZ { auto entityEntry = idMapper.find(sourceId); - // Since we've already remapped transform hierarchies to include container entities, it's possible that our entity - // reference is pointing to a container, which means it won't be in our slice mapping table. In that case, just - // return it as-is. + // The id mapping table should include all of our known slice entities, slice metadata entities, and prefab + // container entities. If we can't find the entity reference, it should either be because it's actually invalid + // in the source data or because it's a transform parent id that we've already remapped prior to this point. + // Either way, just keep it as-is and return it. if (entityEntry == idMapper.end()) { return sourceId; @@ -876,6 +950,7 @@ namespace AZ else { AZ_Error("Convert-Slice", false, " Couldn't find source ID %s", sourceId.ToString().c_str()); + newId = sourceId; } } else diff --git a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp index dceeac3238..f80c1edb81 100644 --- a/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/EditorSequenceAgentComponent.cpp @@ -21,6 +21,7 @@ #include #include #include +#include namespace Maestro { @@ -161,9 +162,18 @@ namespace Maestro return; } + AZ::EntityId curEntityId = GetEntityId(); + // remove this SequenceAgent from this entity if no sequenceComponents are connected to it AzToolsFramework::EntityCompositionRequestBus::Broadcast(&AzToolsFramework::EntityCompositionRequests::RemoveComponents, AZ::Entity::ComponentArrayType{this}); - + + // Let any currently-active undo operations know that this entity has changed state. + auto undoCacheInterface = AZ::Interface::Get(); + if (undoCacheInterface) + { + undoCacheInterface->UpdateCache(curEntityId); + } + // CAUTION! // THIS CLASS INSTANCE IS NOW DEAD DUE TO DELETION BY THE ENTITY DURING RemoveComponents! } diff --git a/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp b/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp index e62d801cf6..acb8b78067 100644 --- a/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp +++ b/Gems/Maestro/Code/Source/Components/EditorSequenceComponent.cpp @@ -205,15 +205,31 @@ namespace Maestro if (addComponentResult.IsSuccess()) { - // We need to register our Entity and Component Ids with the SequenceAgentComponent so we can communicate over EBuses with it. - // We can't do this registration over an EBus because we haven't registered with it yet - do it with pointers? Is this safe? - agentComponent = static_cast(addComponentResult.GetValue()[entityToAnimate].m_componentsAdded[0]); + if (!addComponentResult.GetValue()[entityToAnimate].m_componentsAdded.empty()) + { + // We need to register our Entity and Component Ids with the SequenceAgentComponent so we can communicate over EBuses + // with it. We can't do this registration over an EBus because we haven't registered with it yet - do it with pointers? + // Is this safe? + agentComponent = static_cast( + addComponentResult.GetValue()[entityToAnimate].m_componentsAdded[0]); + } + else + { + AZ_Assert( + !addComponentResult.GetValue()[entityToAnimate].m_componentsAdded.empty(), + "Add component result was successful, but the EditorSequenceAgentComponent wasn't added. " + "This can happen if the entity id isn't found for some reason: entity id = %s", + entityToAnimate.ToString().c_str()); + } } } - AZ_Assert(agentComponent, "EditorSequenceComponent::AddEntityToAnimate unable to create or find sequenceAgentComponent.") + AZ_Assert(agentComponent, "EditorSequenceComponent::AddEntityToAnimate unable to create or find sequenceAgentComponent."); // Notify the SequenceAgentComponent that we're connected to it - after this call, all communication with the Agent is over an EBus - agentComponent->ConnectSequence(GetEntityId()); + if (agentComponent) + { + agentComponent->ConnectSequence(GetEntityId()); + } } /////////////////////////////////////////////////////////////////////////////////////////////////////// From bab4e5eaf3721017cfa8c5b0a73d442683b1532b Mon Sep 17 00:00:00 2001 From: srikappa Date: Thu, 1 Jul 2021 12:11:27 -0700 Subject: [PATCH 089/111] Improved function comments Signed-off-by: srikappa --- .../AzFramework/Entity/GameEntityContextBus.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h index b70e933922..e6fbbffd8b 100644 --- a/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h +++ b/Code/Framework/AzFramework/AzFramework/Entity/GameEntityContextBus.h @@ -91,9 +91,9 @@ namespace AzFramework virtual void DestroyGameEntity(const AZ::EntityId& /*id*/) = 0; /** - * Destroys an entity only in slice mode (when prefabs are disabled). This request is only added as a stop-gap solution to - * prevent the editor from crashing when prefabs are enabled. This will be removed soon. Please use 'DestroyGameEntity' if your - * intention is to destroy a game entity in slice mode. + * Destroys an entity only in slice mode (when prefabs are disabled). This request is only added as a stop-gap solution + * to prevent the editor from crashing when prefabs are enabled and must only be called through the BehaviorContext binding + * for 'DestroyGameEntity'. No code should be written to directly call this method. This will be removed soon. * * @param id The ID of the entity to destroy. */ @@ -109,8 +109,8 @@ namespace AzFramework /** * Destroys an entity and its descendants only in slice mode (when prefabs are disabled). This request is only added as a stop-gap - * solution to prevent the editor from crashing when prefabs are enabled. This will be removed soon. Please use - * 'DestroyGameEntityAndDescendants' if your intention is to destroy a game entity and its descendants in slice mode. + * solution to prevent the editor from crashing when prefabs are enabled and must only be called through the BehaviorContext + * binding for 'DestroyGameEntityAndDescendants'.No code should be written to directly call this method. This will be removed soon. * * @param id The ID of the entity to destroy. */ From 9ef25cb5c47a6032e6ade9e91cc155e73a8e16d3 Mon Sep 17 00:00:00 2001 From: alexmontAmazon <85521892+alexmontAmazon@users.noreply.github.com> Date: Thu, 1 Jul 2021 13:59:10 -0700 Subject: [PATCH 090/111] rewrite of the filter code to fix [LYN-4156][LYN-4545] (#1640) (#1726) * rewrite of the filter code to fix [LYN-4156][LYN-4545] Signed-off-by: Alex Montgomery * improved onRowCountChanged() per comments Signed-off-by: Alex Montgomery --- .../UI/Outliner/OutlinerSearchWidget.cpp | 24 +- .../UI/Outliner/OutlinerSearchWidget.h | 4 +- .../Components/FilteredSearchWidget.cpp | 273 +++++++++--------- .../Components/FilteredSearchWidget.h | 44 ++- .../Components/Widgets/ColorPicker.cpp | 4 +- .../Outliner/EntityOutlinerSearchWidget.cpp | 23 +- .../UI/Outliner/EntityOutlinerSearchWidget.h | 4 +- 7 files changed, 216 insertions(+), 160 deletions(-) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp index ed65d609c9..b76f0826b2 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.cpp @@ -32,21 +32,31 @@ namespace AzQtComponents { } - bool OutlinerSearchTypeSelector::filterItemOut(int unfilteredDataIndex, bool itemMatchesFilter, bool categoryMatchesFilter) + bool OutlinerSearchTypeSelector::filterItemOut(const QModelIndex& sourceIndex, bool filteredByBase) { - bool unfilteredIndexInvalid = (unfilteredDataIndex >= static_cast(OutlinerSearchWidget::GlobalSearchCriteria::FirstRealFilter)); - return SearchTypeSelector::filterItemOut(unfilteredDataIndex, itemMatchesFilter, categoryMatchesFilter) && unfilteredIndexInvalid; + auto* currItem = m_model->itemFromIndex(sourceIndex); + if (currItem != nullptr) + { + int unfilteredIndex = getUnfilteredDataIndex(currItem); + if (unfilteredIndex >= 0 && unfilteredIndex < aznumeric_cast(OutlinerSearchWidget::GlobalSearchCriteria::FirstRealFilter)) + { + // never filter out the categories before FirstRealFilter (unlocked/locked, visible/hidden, etc.) + return false; + } + } + // no special case, return the result of the base filter + return filteredByBase; } void OutlinerSearchTypeSelector::initItem(QStandardItem* item, const SearchTypeFilter& filter, int unfilteredDataIndex) { - if (filter.displayName != "--------") + SearchTypeSelector::initItem(item, filter, unfilteredDataIndex); + if (filter.displayName == "--------") { - item->setCheckable(true); - item->setCheckState(filter.enabled ? Qt::Checked : Qt::Unchecked); + item->setCheckable(false); } - if (unfilteredDataIndex < static_cast(OutlinerSearchWidget::GlobalSearchCriteria::FirstRealFilter)) + if (unfilteredDataIndex >= 0 && unfilteredDataIndex < static_cast(OutlinerSearchWidget::GlobalSearchCriteria::FirstRealFilter)) { item->setIcon(OutlinerIcons::GetInstance().GetIcon(unfilteredDataIndex)); } diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h index f1c4ca227a..6b95068af5 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerSearchWidget.h @@ -37,8 +37,8 @@ namespace AzQtComponents OutlinerSearchTypeSelector(QWidget* parent = nullptr); protected: - // can be used to override the logic when adding items in RepopulateDataModel - bool filterItemOut(int unfilteredDataIndex, bool itemMatchesFilter, bool categoryMatchesFilter) override; + // override the logic of accepting filter categories + bool filterItemOut(const QModelIndex& sourceIndex, bool filteredByBase) override; void initItem(QStandardItem* item, const SearchTypeFilter& filter, int unfilteredDataIndex) override; int GetNumFixedItems() override; }; diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp index db8b184c0a..15f371bdaf 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.cpp @@ -135,7 +135,6 @@ namespace AzQtComponents SearchTypeSelector::SearchTypeSelector(QWidget* parent /* = nullptr */) : QMenu(parent) - , m_unfilteredData(nullptr) { Q_ASSERT(parent != nullptr); @@ -196,7 +195,17 @@ namespace AzQtComponents itemLayout->addWidget(m_tree); m_model = new QStandardItemModel(this); - m_tree->setModel(m_model); + m_filterModel = new SearchTypeSelectorFilterModel(this); + m_filterModel->setFilterCaseSensitivity(Qt::CaseInsensitive); + m_filterModel->setRecursiveFilteringEnabled(true); + m_filterModel->setSourceModel(m_model); + + // make sure all entries enter the view expanded + connect(m_filterModel, &QAbstractItemModel::rowsInserted, this, [this]() + { + m_tree->expandAll(); + }); + m_tree->setModel(m_filterModel); m_tree->setHeaderHidden(true); connect(m_model, &QStandardItemModel::itemChanged, this, [this](QStandardItem* item) @@ -205,11 +214,6 @@ namespace AzQtComponents if (!m_settingUp) { int index = item->data().toInt(); - if (index < m_filteredItemIndices.size()) - { - index = m_filteredItemIndices[item->data().toInt()]; - } - bool enabled = item->checkState() == Qt::Checked; emit TypeToggled(index, enabled); } @@ -228,169 +232,116 @@ namespace AzQtComponents QMenu::showEvent(e); } - void SearchTypeSelector::resetData() - { - m_estimatedTableHeight = 0; - m_estimatedTableWidth = 0; - - m_filteredItemIndices.clear(); - m_model->clear(); - } - void SearchTypeSelector::initItem(QStandardItem* item, const SearchTypeFilter& filter, int unfilteredDataIndex) { Q_UNUSED(filter); - Q_UNUSED(unfilteredDataIndex); + item->setData(unfilteredDataIndex); + item->setEditable(false); item->setCheckable(true); item->setCheckState(filter.enabled ? Qt::Checked : Qt::Unchecked); } - bool SearchTypeSelector::filterItemOut(int unfilteredDataIndex, bool itemMatchesFilter, bool categoryMatchesFilter) + int SearchTypeSelector::getUnfilteredDataIndex(QStandardItem* item) { - Q_UNUSED(unfilteredDataIndex); - - return !itemMatchesFilter && !categoryMatchesFilter; - } - - void SearchTypeSelector::RepopulateDataModel() - { - resetData(); - - if (!m_unfilteredData) + const QVariant itemData = item->data(); + if (itemData.isValid()) { - return; + return item->data().toInt(); } + return -1; + } - bool amFiltering = !m_filterString.isEmpty(); + void SearchTypeSelector::RepopulateDataModel(const SearchTypeFilterList& unfilteredData) + { + m_estimatedTableHeight = 0; + m_estimatedTableWidth = 0; + m_model->clear(); + m_filterModel->setNoResultsMessageRow(-1); // reset the index for the "no results" message QScopedValueRollback setupGuard(m_settingUp, true); - QMap categories; - QStandardItem* firstCategory = nullptr; - QStandardItem* firstItem = nullptr; - int numCategories = 0; - int numItems = 0; - int numItemsAdded = 0; + QVector categoriesInOrder; // categories in originally specified order + QMap> categoryToEntryItems; // category name to sub-items that will be added + - for (int unfilteredDataIndex = 0, length = m_unfilteredData->length(); unfilteredDataIndex < length; ++unfilteredDataIndex) + const int numItems = unfilteredData.length(); + for (int unfilteredDataIndex = 0; unfilteredDataIndex < numItems; ++unfilteredDataIndex) { - const SearchTypeFilter& filter = m_unfilteredData->at(unfilteredDataIndex); - bool addItem = true; - - bool itemMatchesFilter = true; - bool categoryMatchesFilter = true; - - if (amFiltering) - { - itemMatchesFilter = filter.displayName.contains(m_filterString, Qt::CaseSensitivity::CaseInsensitive); - categoryMatchesFilter = filter.category.contains(m_filterString, Qt::CaseSensitivity::CaseInsensitive); - } - - if (filterItemOut(unfilteredDataIndex, itemMatchesFilter, categoryMatchesFilter)) - { - addItem = false; - } - - QStandardItem* categoryItem = nullptr; - if (categories.contains(filter.category)) - { - categoryItem = categories[filter.category]; - } - else - { - if (categoryMatchesFilter || addItem) - { - categoryItem = new QStandardItem(filter.category); - categories[filter.category] = categoryItem; - m_model->appendRow(categoryItem); - categoryItem->setEditable(false); - - numCategories++; - if (!firstCategory) - { - firstCategory = firstCategory ? firstCategory : categoryItem; - } - } - } - - // count the item even if we filter it out, so that the estimated height includes what it could be if the filter changes - numItems++; - - if (!addItem) - { - continue; - } - - numItemsAdded++; - - m_filteredItemIndices.append(unfilteredDataIndex); + const SearchTypeFilter& filter = unfilteredData.at(unfilteredDataIndex); + // create each item, but don't add them yet, as we don't know if we will be adding to the category items, + // or to the model directly QStandardItem* item = new QStandardItem(filter.displayName); - item->setData(unfilteredDataIndex); - item->setEditable(false); - initItem(item, filter, unfilteredDataIndex); - - if (categoryItem) - { - categoryItem->appendRow(item); - } - else + categoryToEntryItems[filter.category].push_back(item); + + if (categoriesInOrder.indexOf(filter.category) == -1) { - m_model->appendRow(item); + // need to add these category items as they are first encountered so + // that the original category ordering is maintained + categoriesInOrder.push_back(filter.category); } int textWidth = fontMetrics().horizontalAdvance(filter.displayName); if (textWidth > m_estimatedTableWidth) { - m_estimatedTableWidth = textWidth; - } - - - if (!firstItem) - { - firstItem = item; + m_estimatedTableWidth = textWidth; } } - if (numItemsAdded == GetNumFixedItems()) + const int numCategories = categoriesInOrder.size(); + + // If there is only one category and its name is empty, discard it, + // and add its children directly to the model as one big column of N rows + if (numCategories == 1 && categoriesInOrder[0].isEmpty()) { - QStandardItem* item = new QStandardItem(QObject::tr("No result found.")); - m_model->appendRow(item); - item->setEditable(false); - ++numItems; + auto& entryItems = categoryToEntryItems.begin().value(); + m_model->appendColumn(entryItems); } - - // If there is only one category and its name is empty, let put everything at root. - if (categories.count() == 1 && categories.begin().key().isEmpty()) + else { - m_tree->setRootIndex(categories.begin().value()->index()); + for (int categoryIndex = 0; categoryIndex < numCategories; ++categoryIndex) + { + const QString& currCategory = categoriesInOrder[categoryIndex]; + QStandardItem* categoryItem = new QStandardItem(currCategory); + auto& entryItems = categoryToEntryItems[currCategory]; - numCategories = 0; + categoryItem->appendColumn(entryItems); + m_model->appendRow(categoryItem); // add the parent last, so the model just gets one row add per category + } } - estimateTableHeight(firstCategory, numCategories, firstItem, numItems); + // add a special row that indicates that no categories (other than the fixed ones) match the filter + // this row itself will be filtered out when there are other matching categories + m_filterModel->setNoResultsMessageRow(m_model->rowCount()); + QStandardItem* noResultsMessage = new QStandardItem(QObject::tr("No result found.")); + noResultsMessage->setEditable(false); + m_model->appendRow(new QStandardItem(QObject::tr("No result found."))); + + estimateTableHeight(numCategories, numItems); } - void SearchTypeSelector::estimateTableHeight(QStandardItem* firstCategory, int numCategories, QStandardItem* firstItem, int numItems) + void SearchTypeSelector::estimateTableHeight(int numCategories, int numItems) { m_tree->expandAll(); int totalCategoryHeight = 0; int totalItemHeight = 0; - if (firstItem) + auto* theModel = m_tree->model(); + QModelIndex firstIndex(theModel->index(0, 0)); + QModelIndex firstChild(theModel->index(0, 0, firstIndex)); + + if (firstIndex.isValid()) { - QModelIndex index = m_model->indexFromItem(firstItem); - int itemHeight = m_tree->fetchRowHeight(index); + int itemHeight = m_tree->fetchRowHeight(firstIndex); totalItemHeight += (itemHeight * numItems); } - if (firstCategory) + if (firstChild.isValid()) { - QModelIndex index = m_model->indexFromItem(firstCategory); - int categoryHeight = m_tree->fetchRowHeight(index); + int categoryHeight = m_tree->fetchRowHeight(firstChild); totalCategoryHeight += (categoryHeight * numCategories); } @@ -504,10 +455,7 @@ namespace AzQtComponents void SearchTypeSelector::Setup(const SearchTypeFilterList& searchTypes) { - m_unfilteredData = &searchTypes; - - RepopulateDataModel(); - + RepopulateDataModel(searchTypes); setFixedWidth(m_estimatedTableWidth + FilterWindowWidthPadding); } @@ -578,8 +526,75 @@ namespace AzQtComponents void SearchTypeSelector::FilterTextChanged(const QString& newFilter) { m_filterString = newFilter; + m_filterModel->setFilterWildcard(m_filterString); + } + + SearchTypeSelectorFilterModel::SearchTypeSelectorFilterModel(SearchTypeSelector* searchTypeSelector) + : QSortFilterProxyModel(searchTypeSelector), m_searchTypeSelector(searchTypeSelector) + { + // use queued connections so that the normal sort/filter operations get a chance to finish the index remapping before we act + connect(this, &QAbstractItemModel::rowsInserted, this, &SearchTypeSelectorFilterModel::onRowCountChanged, Qt::QueuedConnection); + connect(this, &QAbstractItemModel::rowsRemoved, this, &SearchTypeSelectorFilterModel::onRowCountChanged, Qt::QueuedConnection); + } + + void SearchTypeSelectorFilterModel::setNoResultsMessageRow(int row) + { + m_noResultsRow = row; + invalidateFilter(); + } - RepopulateDataModel(); + + void SearchTypeSelectorFilterModel::onRowCountChanged() + { + // see if we need to hide or show the "no results" message item + const int numLeafNodes = getNumLeafNodes(); + + // check if we're down to the (never filtered) fixed items, and should show the "no results" message, + // or if we were already showing that message, check if we have more than the fixed items plus the message itself + const bool hasResultsChanged = (m_showingNoResultsMessage ? numLeafNodes > m_searchTypeSelector->GetNumFixedItems() + 1 + : numLeafNodes <= m_searchTypeSelector->GetNumFixedItems()); + + if (hasResultsChanged) + { + m_showingNoResultsMessage = !m_showingNoResultsMessage; + QModelIndex noResultsMessageIndex = sourceModel()->index(m_noResultsRow, 0); + + // The no results row is in the source model, so trigger dataChanged to allow us to re-filter it + emit sourceModel()->dataChanged(noResultsMessageIndex, noResultsMessageIndex); + } + } + + bool SearchTypeSelectorFilterModel::filterAcceptsRow(int source_row, const QModelIndex& source_parent) const + { + // if we're considering the "no results" item, accept it only if we're m_showingNoResultsMessage + if (!source_parent.isValid() && source_row == m_noResultsRow) + { + return m_showingNoResultsMessage; + } + + const bool filteredByBase = ! QSortFilterProxyModel::filterAcceptsRow(source_row, source_parent); + + // allow searchTypeSelector to make the final decision whether to filter out this item + return !(m_searchTypeSelector->filterItemOut(m_searchTypeSelector->m_model->index(source_row, 0, source_parent), filteredByBase)); + } + + int SearchTypeSelectorFilterModel::getNumLeafNodes(const QModelIndex& theIndex) + { + // count the number of leaf nodes descending from this index, not including itself + int numLeafNodes = 0; + for (int childRow = 0, numChildRows = rowCount(theIndex); childRow < numChildRows; ++childRow) + { + QModelIndex childIndex = index(childRow, 0, theIndex); + if (rowCount(childIndex) == 0) + { + ++numLeafNodes; + } + else + { + numLeafNodes += getNumLeafNodes(childIndex); + } + } + return numLeafNodes; } FilteredSearchWidget::Config FilteredSearchWidget::loadConfig(QSettings& settings) @@ -929,7 +944,7 @@ namespace AzQtComponents { { QSignalBlocker blocker(this); - ConfigHelpers::GroupGuard(&settings, widgetName); + ConfigHelpers::GroupGuard guard(&settings, widgetName); const auto textFilter = settings.value(g_textFilterKey); if (textFilter.isValid()) { @@ -953,7 +968,7 @@ namespace AzQtComponents void FilteredSearchWidget::writeSettings(QSettings& settings, const QString& widgetName) { - ConfigHelpers::GroupGuard(&settings, widgetName); + ConfigHelpers::GroupGuard guard(&settings, widgetName); settings.setValue(g_textFilterKey, textFilter()); const int size = m_typeFilters.size(); diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h index a86d63ad95..4e74d3b410 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/FilteredSearchWidget.h @@ -17,6 +17,8 @@ #include #include #include +#include +#include #include #endif @@ -28,9 +30,7 @@ namespace Ui class FlowLayout; class QTreeView; -class QSortFilterProxyModel; class QStandardItemModel; -class QStandardItem; class QSettings; class QLineEdit; class QToolButton; @@ -43,6 +43,7 @@ namespace AzQtComponents { class Style; class FilteredSearchItemDelegate; + class SearchTypeSelectorFilterModel; class AZ_QT_COMPONENTS_API FilterCriteriaButton : public QFrame @@ -160,28 +161,27 @@ namespace AzQtComponents void FilterTextChanged(const QString& newFilter); protected: - void estimateTableHeight(QStandardItem* firstCategory, int numCategories, QStandardItem* firstItem, int numItems); - void resetData(); + void estimateTableHeight(int numCategories, int numItems); - // can be used to override the logic when adding items in RepopulateDataModel - virtual bool filterItemOut(int index, bool itemMatchesFilter, bool categoryMatchesFilter); + // allows child classes to override the logic of accepting filter categories + virtual bool filterItemOut(const QModelIndex& sourceIndex, bool filteredByBase) { Q_UNUSED(sourceIndex); return filteredByBase; } virtual void initItem(QStandardItem* item, const SearchTypeFilter& filter, int unfilteredDataIndex); + int getUnfilteredDataIndex(QStandardItem* item); // get the original filter index from the item itself // Returns the number of items that always appear in the list, regardless of the filtering. virtual int GetNumFixedItems() { return 0; } void showEvent(QShowEvent* e) override; - virtual void RepopulateDataModel(); + void RepopulateDataModel(const SearchTypeFilterList& unfilteredData); void maximizeGeometryToFitScreen(); SearchTypeSelectorTreeView* m_tree; QStandardItemModel* m_model; - const SearchTypeFilterList* m_unfilteredData; - AZ_PUSH_DISABLE_WARNING(4127 4251, "-Wunknown-warning-option") // conditional expression is constant, needs to have dll-interface to be used by clients of class 'AzQtComponents::SearchTypeSelector' - QVector m_filteredItemIndices; - AZ_POP_DISABLE_WARNING - QString m_filterString; + + friend class SearchTypeSelectorFilterModel; + SearchTypeSelectorFilterModel* m_filterModel; + QString m_filterString; bool m_settingUp = false; int m_fixedWidth = 256; QLineEdit* m_searchField = nullptr; @@ -193,6 +193,26 @@ namespace AzQtComponents bool m_lineEditSearchVisible = true; }; + class SearchTypeSelectorFilterModel : public QSortFilterProxyModel + { + Q_OBJECT + + public: + SearchTypeSelectorFilterModel(SearchTypeSelector* searchTypeSelector); + void setNoResultsMessageRow(int row); // row of specialized "no results" message in the source model + + protected slots: + void onRowCountChanged(); + + protected: + bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const override; + int getNumLeafNodes(const QModelIndex& theIndex = QModelIndex()); // gets the number of leaf node descendants of current index. Current index is *not* considered + + SearchTypeSelector* m_searchTypeSelector = nullptr; + int m_noResultsRow = -1; // row of specialized "no results" message in the source model + bool m_showingNoResultsMessage = false; + }; + class AZ_QT_COMPONENTS_API FilteredSearchWidget : public QFrame { diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp index e513c23d54..bab5044d8f 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Components/Widgets/ColorPicker.cpp @@ -109,13 +109,13 @@ namespace AzQtComponents void ReadColorGridConfig(QSettings& settings, const QString& name, ColorPicker::ColorGridConfig& colorGrid) { - ConfigHelpers::GroupGuard(&settings, name); + ConfigHelpers::GroupGuard guard(&settings, name); ConfigHelpers::read(settings, QStringLiteral("MinimumSize"), colorGrid.minimumSize); } void ReadDialoButtonsConfig(QSettings& settings, const QString& name, ColorPicker::DialogButtonsConfig& dialogButtons) { - ConfigHelpers::GroupGuard(&settings, name); + ConfigHelpers::GroupGuard guard(&settings, name); ConfigHelpers::read(settings, QStringLiteral("TopPadding"), dialogButtons.topPadding); } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp index 157a49bd6a..ff7a43431f 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.cpp @@ -36,18 +36,29 @@ namespace AzToolsFramework { } - bool EntityOutlinerSearchTypeSelector::filterItemOut(int unfilteredDataIndex, bool itemMatchesFilter, bool categoryMatchesFilter) + bool EntityOutlinerSearchTypeSelector::filterItemOut(const QModelIndex& sourceIndex, bool filteredByBase) { - bool unfilteredIndexInvalid = (unfilteredDataIndex >= aznumeric_cast(EntityOutlinerSearchWidget::GlobalSearchCriteria::FirstRealFilter)); - return SearchTypeSelector::filterItemOut(unfilteredDataIndex, itemMatchesFilter, categoryMatchesFilter) && unfilteredIndexInvalid; + auto* currItem = m_model->itemFromIndex(sourceIndex); + if (currItem != nullptr) + { + int unfilteredIndex = getUnfilteredDataIndex(currItem); + if (unfilteredIndex >= 0 && unfilteredIndex < aznumeric_cast(EntityOutlinerSearchWidget::GlobalSearchCriteria::FirstRealFilter)) + { + // never filter out the categories before FirstRealFilter (unlocked/locked, visible/hidden, etc.) + return false; + } + } + // no special case, return the result of the base filter + return filteredByBase; } void EntityOutlinerSearchTypeSelector::initItem(QStandardItem* item, const AzQtComponents::SearchTypeFilter& filter, int unfilteredDataIndex) { - if (filter.displayName != "--------") + SearchTypeSelector::initItem(item, filter, unfilteredDataIndex); + if (filter.displayName == "--------") { - item->setCheckable(true); - item->setCheckState(filter.enabled ? Qt::Checked : Qt::Unchecked); + SearchTypeSelector::initItem(item, filter, unfilteredDataIndex); + item->setCheckable(false); } if (unfilteredDataIndex < aznumeric_cast(EntityOutlinerSearchWidget::GlobalSearchCriteria::FirstRealFilter)) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h index 7c11a34e53..3776f17eba 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerSearchWidget.h @@ -39,8 +39,8 @@ namespace AzToolsFramework EntityOutlinerSearchTypeSelector(QWidget* parent = nullptr); protected: - // can be used to override the logic when adding items in RepopulateDataModel - bool filterItemOut(int unfilteredDataIndex, bool itemMatchesFilter, bool categoryMatchesFilter) override; + // override the logic of accepting filter categories + bool filterItemOut(const QModelIndex& sourceIndex, bool filteredByBase) override; void initItem(QStandardItem* item, const AzQtComponents::SearchTypeFilter& filter, int unfilteredDataIndex) override; int GetNumFixedItems() override; }; From 73522e90c94608bee6a618781f35a9b0d2ee68a4 Mon Sep 17 00:00:00 2001 From: AMZN-stankowi <4838196+AMZN-stankowi@users.noreply.github.com> Date: Thu, 1 Jul 2021 15:46:55 -0700 Subject: [PATCH 091/111] FBX -> Scene, part 2. Code changes, file renames (#1704) * First pass FBX -> Scene File conversion. This is the simple pass, minimizing code changes and focused on comments. Signed-off-by: stankowi <4838196+AMZN-stankowi@users.noreply.github.com> * Step 1 of part 2 of the FBX -> Scene rename Signed-off-by: stankowi <4838196+AMZN-stankowi@users.noreply.github.com> * Renaming FbxSceneBuilder folder to SceneBuilder Signed-off-by: stankowi <4838196+AMZN-stankowi@users.noreply.github.com> * Renamed files Signed-off-by: stankowi <4838196+AMZN-stankowi@users.noreply.github.com> * More FBX -> Scene Signed-off-by: stankowi <4838196+AMZN-stankowi@users.noreply.github.com> --- .../native/utilities/ApplicationManager.cpp | 2 +- Code/Tools/SceneAPI/CMakeLists.txt | 2 +- .../FbxImportRequestHandler.cpp | 106 ------------------ .../FbxSceneBuilder/FbxImportRequestHandler.h | 55 --------- .../SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp | 4 +- .../SceneAPI/SDKWrapper/AssImpNodeWrapper.h | 2 +- .../SceneAPI/SDKWrapper/MaterialWrapper.cpp | 15 +-- .../SceneAPI/SDKWrapper/MaterialWrapper.h | 9 -- .../Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp | 15 +-- Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h | 8 -- .../SceneAPI/SDKWrapper/SceneWrapper.cpp | 14 +-- Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h | 8 -- .../CMakeLists.txt | 24 ++-- .../DllMain.cpp | 44 ++++---- .../ImportContexts/AssImpImportContexts.cpp | 18 +-- .../ImportContexts/AssImpImportContexts.h | 24 ++-- .../ImportContexts/ImportContexts.cpp | 6 +- .../ImportContexts/ImportContexts.h | 4 +- .../Importers/AssImpAnimationImporter.cpp | 14 +-- .../Importers/AssImpAnimationImporter.h | 6 +- .../AssImpBitangentStreamImporter.cpp | 10 +- .../Importers/AssImpBitangentStreamImporter.h | 6 +- .../Importers/AssImpBlendShapeImporter.cpp | 14 +-- .../Importers/AssImpBlendShapeImporter.h | 6 +- .../Importers/AssImpBoneImporter.cpp | 12 +- .../Importers/AssImpBoneImporter.h | 6 +- .../Importers/AssImpColorStreamImporter.cpp | 10 +- .../Importers/AssImpColorStreamImporter.h | 6 +- .../Importers/AssImpImporterUtilities.cpp | 6 +- .../Importers/AssImpImporterUtilities.h | 2 +- .../Importers/AssImpMaterialImporter.cpp | 18 +-- .../Importers/AssImpMaterialImporter.h | 6 +- .../Importers/AssImpMeshImporter.cpp | 10 +- .../Importers/AssImpMeshImporter.h | 6 +- .../Importers/AssImpSkinImporter.cpp | 10 +- .../Importers/AssImpSkinImporter.h | 6 +- .../Importers/AssImpSkinWeightsImporter.cpp | 12 +- .../Importers/AssImpSkinWeightsImporter.h | 11 +- .../Importers/AssImpTangentStreamImporter.cpp | 10 +- .../Importers/AssImpTangentStreamImporter.h | 6 +- .../Importers/AssImpTransformImporter.cpp | 14 +-- .../Importers/AssImpTransformImporter.h | 6 +- .../Importers/AssImpUvMapImporter.cpp | 14 +-- .../Importers/AssImpUvMapImporter.h | 6 +- .../Importers/ImporterUtilities.cpp | 8 +- .../Importers/ImporterUtilities.h | 10 +- .../Importers/ImporterUtilities.inl | 6 +- .../Utilities/AssImpMeshImporterUtilities.cpp | 10 +- .../Utilities/AssImpMeshImporterUtilities.h | 11 +- .../Importers/Utilities/RenamedNodesMap.cpp | 8 +- .../Importers/Utilities/RenamedNodesMap.h | 9 +- .../Platform/Linux/platform_linux_files.cmake | 0 .../Platform/Mac/platform_mac_files.cmake | 0 .../Windows/platform_windows_files.cmake | 0 .../SceneBuilderConfiguration.h} | 8 +- .../SceneImportRequestHandler.cpp | 103 +++++++++++++++++ .../SceneBuilder/SceneImportRequestHandler.h | 52 +++++++++ .../SceneImporter.cpp} | 42 +++---- .../SceneImporter.h} | 18 +-- .../SceneSystem.cpp} | 20 ++-- .../SceneSystem.h} | 10 +- .../SceneImporterUtilitiesTests.cpp} | 22 ++-- .../Utilities/RenamedNodesMapTests.cpp | 6 +- .../Tests/TestFbxMesh.cpp | 0 .../Tests/TestFbxMesh.h | 0 .../Tests/TestFbxNode.cpp | 0 .../Tests/TestFbxNode.h | 0 .../Tests/TestFbxSkin.cpp | 0 .../Tests/TestFbxSkin.h | 0 .../Tests/TestsMain.cpp | 20 ++-- .../scenebuilder_files.cmake} | 14 +-- .../scenebuilder_shared_files.cmake} | 0 .../scenebuilder_testing_files.cmake} | 2 +- .../SceneCore/Containers/SceneGraph.h | 6 +- .../SceneCore/DataTypes/GraphData/IMeshData.h | 4 +- .../Code/Source/Pipeline/MeshExporter.cpp | 30 ++--- .../PhysX/Code/Source/Pipeline/MeshExporter.h | 4 +- Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp | 2 +- Gems/SceneLoggingExample/ReadMe.txt | 2 +- Gems/SceneProcessing/Code/CMakeLists.txt | 2 +- .../SceneProcessingConfigSystemComponent.cpp | 6 +- .../Code/Source/SceneProcessingModule.cpp | 4 +- .../Code/Source/SceneProcessingModule.h | 2 +- 83 files changed, 475 insertions(+), 559 deletions(-) delete mode 100644 Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp delete mode 100644 Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/CMakeLists.txt (70%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/DllMain.cpp (71%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/ImportContexts/AssImpImportContexts.cpp (92%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/ImportContexts/AssImpImportContexts.h (91%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/ImportContexts/ImportContexts.cpp (97%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/ImportContexts/ImportContexts.h (99%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpAnimationImporter.cpp (98%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpAnimationImporter.h (90%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpBitangentStreamImporter.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpBitangentStreamImporter.h (87%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpBlendShapeImporter.cpp (96%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpBlendShapeImporter.h (86%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpBoneImporter.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpBoneImporter.h (86%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpColorStreamImporter.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpColorStreamImporter.h (87%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpImporterUtilities.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpImporterUtilities.h (96%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpMaterialImporter.cpp (94%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpMaterialImporter.h (88%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpMeshImporter.cpp (87%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpMeshImporter.h (86%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpSkinImporter.cpp (87%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpSkinImporter.h (86%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpSkinWeightsImporter.cpp (94%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpSkinWeightsImporter.h (91%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpTangentStreamImporter.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpTangentStreamImporter.h (87%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpTransformImporter.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpTransformImporter.h (87%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpUvMapImporter.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/AssImpUvMapImporter.h (87%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/ImporterUtilities.cpp (98%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/ImporterUtilities.h (88%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/ImporterUtilities.inl (94%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/Utilities/AssImpMeshImporterUtilities.cpp (93%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/Utilities/AssImpMeshImporterUtilities.h (84%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/Utilities/RenamedNodesMap.cpp (97%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Importers/Utilities/RenamedNodesMap.h (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Platform/Linux/platform_linux_files.cmake (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Platform/Mac/platform_mac_files.cmake (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Platform/Windows/platform_windows_files.cmake (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/FbxSceneBuilderConfiguration.h => SceneBuilder/SceneBuilderConfiguration.h} (67%) create mode 100644 Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.cpp create mode 100644 Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.h rename Code/Tools/SceneAPI/{FbxSceneBuilder/FbxImporter.cpp => SceneBuilder/SceneImporter.cpp} (88%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/FbxImporter.h => SceneBuilder/SceneImporter.h} (70%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/FbxSceneSystem.cpp => SceneBuilder/SceneSystem.cpp} (89%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/FbxSceneSystem.h => SceneBuilder/SceneSystem.h} (81%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp => SceneBuilder/Tests/Importers/SceneImporterUtilitiesTests.cpp} (83%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/Importers/Utilities/RenamedNodesMapTests.cpp (95%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/TestFbxMesh.cpp (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/TestFbxMesh.h (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/TestFbxNode.cpp (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/TestFbxNode.h (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/TestFbxSkin.cpp (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/TestFbxSkin.h (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder => SceneBuilder}/Tests/TestsMain.cpp (67%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/fbxscenebuilder_files.cmake => SceneBuilder/scenebuilder_files.cmake} (91%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/fbxscenebuilder_shared_files.cmake => SceneBuilder/scenebuilder_shared_files.cmake} (100%) rename Code/Tools/SceneAPI/{FbxSceneBuilder/fbxscenebuilder_testing_files.cmake => SceneBuilder/scenebuilder_testing_files.cmake} (85%) diff --git a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp index 33f5f43962..28d1850b40 100644 --- a/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp +++ b/Code/Tools/AssetProcessor/native/utilities/ApplicationManager.cpp @@ -446,7 +446,7 @@ void ApplicationManager::PopulateApplicationDependencies() // any of those should cause AP to drop. for (const QString& pathName : { "CrySystem", "SceneCore", "SceneData", - "FbxSceneBuilder", "AzQtComponents" + "SceneBuilder", "AzQtComponents" }) { QString pathWithPlatformExtension = pathName + QString(AZ_DYNAMIC_LIBRARY_EXTENSION); diff --git a/Code/Tools/SceneAPI/CMakeLists.txt b/Code/Tools/SceneAPI/CMakeLists.txt index 6085b7a691..f86fd71e28 100644 --- a/Code/Tools/SceneAPI/CMakeLists.txt +++ b/Code/Tools/SceneAPI/CMakeLists.txt @@ -5,7 +5,7 @@ # # -add_subdirectory(FbxSceneBuilder) +add_subdirectory(SceneBuilder) add_subdirectory(SceneCore) add_subdirectory(SceneData) add_subdirectory(SceneUI) diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp deleted file mode 100644 index 8df2ca71c2..0000000000 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.cpp +++ /dev/null @@ -1,106 +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 - * - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace AZ -{ - namespace SceneAPI - { - namespace FbxSceneImporter - { - void SceneImporterSettings::Reflect(AZ::ReflectContext* context) - { - if (auto serializeContext = azrtti_cast(context); serializeContext) - { - serializeContext->Class() - ->Version(2) - ->Field("SupportedFileTypeExtensions", &SceneImporterSettings::m_supportedFileTypeExtensions); - } - } - - void FbxImportRequestHandler::Activate() - { - if (auto* settingsRegistry = AZ::SettingsRegistry::Get()) - { - settingsRegistry->GetObject(m_settings, "/O3DE/SceneAPI/AssetImporter"); - } - - BusConnect(); - } - - void FbxImportRequestHandler::Deactivate() - { - BusDisconnect(); - } - - void FbxImportRequestHandler::Reflect(ReflectContext* context) - { - SceneImporterSettings::Reflect(context); - - SerializeContext* serializeContext = azrtti_cast(context); - if (serializeContext) - { - serializeContext->Class()->Version(1)->Attribute( - AZ::Edit::Attributes::SystemComponentTags, - AZStd::vector( - {AssetBuilderSDK::ComponentTags::AssetBuilder, - AssetImportRequest::GetAssetImportRequestComponentTag()})); - - } - } - - void FbxImportRequestHandler::GetSupportedFileExtensions(AZStd::unordered_set& extensions) - { - extensions.insert(m_settings.m_supportedFileTypeExtensions.begin(), m_settings.m_supportedFileTypeExtensions.end()); - } - - Events::LoadingResult FbxImportRequestHandler::LoadAsset(Containers::Scene& scene, const AZStd::string& path, const Uuid& guid, [[maybe_unused]] RequestingApplication requester) - { - AZStd::string extension; - StringFunc::Path::GetExtension(path.c_str(), extension); - AZStd::to_lower(extension.begin(), extension.end()); - - if (!m_settings.m_supportedFileTypeExtensions.contains(extension)) - { - return Events::LoadingResult::Ignored; - } - - scene.SetSource(path, guid); - - // Push contexts - Events::ProcessingResultCombiner contextResult; - contextResult += Events::Process(path); - contextResult += Events::Process(path, scene); - contextResult += Events::Process(scene); - - if (contextResult.GetResult() == Events::ProcessingResult::Success) - { - return Events::LoadingResult::AssetLoaded; - } - else - { - return Events::LoadingResult::AssetFailure; - } - } - - void FbxImportRequestHandler::GetProvidedServices(ComponentDescriptor::DependencyArrayType& provided) - { - provided.emplace_back(AZ_CRC_CE("AssetImportRequestHandler")); - } - } // namespace Import - } // namespace SceneAPI -} // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h b/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h deleted file mode 100644 index 88c7322807..0000000000 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImportRequestHandler.h +++ /dev/null @@ -1,55 +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 AZ -{ - namespace SceneAPI - { - namespace FbxSceneImporter - { - struct SceneImporterSettings - { - AZ_TYPE_INFO(SceneImporterSettings, "{8BB6C7AD-BF99-44DC-9DA1-E7AD3F03DC10}"); - - static void Reflect(AZ::ReflectContext* context); - - AZStd::unordered_set m_supportedFileTypeExtensions; - }; - - class FbxImportRequestHandler - : public AZ::Component - , public Events::AssetImportRequestBus::Handler - { - public: - AZ_COMPONENT(FbxImportRequestHandler, "{9F4B189C-0A96-4F44-A5F0-E087FF1561F8}"); - - ~FbxImportRequestHandler() override = default; - - void Activate() override; - void Deactivate() override; - static void Reflect(ReflectContext* context); - - void GetSupportedFileExtensions(AZStd::unordered_set& extensions) override; - Events::LoadingResult LoadAsset(Containers::Scene& scene, const AZStd::string& path, const Uuid& guid, - RequestingApplication requester) override; - - static void GetProvidedServices(ComponentDescriptor::DependencyArrayType& provided); - - private: - - SceneImporterSettings m_settings; - - static constexpr const char* SettingsFilename = "AssetImporterSettings.json"; - }; - } // namespace FbxSceneImporter - } // namespace SceneAPI -} // namespace AZ diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp index 8819053152..f1ae433bca 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.cpp @@ -15,8 +15,8 @@ namespace AZ { namespace AssImpSDKWrapper { - AssImpNodeWrapper::AssImpNodeWrapper(aiNode* fbxNode) - :SDKNode::NodeWrapper(fbxNode) + AssImpNodeWrapper::AssImpNodeWrapper(aiNode* sourceNode) + :SDKNode::NodeWrapper(sourceNode) { AZ_Assert(m_assImpNode, "Asset Importer Node cannot be null"); } diff --git a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h index 203f0a5fa5..a2345b09a8 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/AssImpNodeWrapper.h @@ -18,7 +18,7 @@ namespace AZ { public: AZ_RTTI(AssImpNodeWrapper, "{1043260B-9076-49B7-AD38-EF62E85F7C1D}", SDKNode::NodeWrapper); - AssImpNodeWrapper(aiNode* fbxNode); + AssImpNodeWrapper(aiNode* sourceNode); ~AssImpNodeWrapper() override; const char* GetName() const override; AZ::u64 GetUniqueId() const override; diff --git a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp index efcab5cc2c..9adc9b414e 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.cpp @@ -11,29 +11,16 @@ namespace AZ { namespace SDKMaterial { - MaterialWrapper::MaterialWrapper(fbxsdk::FbxSurfaceMaterial* fbxMaterial) - :m_fbxMaterial(fbxMaterial) - , m_assImpMaterial(nullptr) - { - } - MaterialWrapper::MaterialWrapper(aiMaterial* assImpMaterial) - :m_fbxMaterial(nullptr) - , m_assImpMaterial(assImpMaterial) + : m_assImpMaterial(assImpMaterial) { } MaterialWrapper::~MaterialWrapper() { - m_fbxMaterial = nullptr; m_assImpMaterial = nullptr; } - fbxsdk::FbxSurfaceMaterial* MaterialWrapper::GetFbxMaterial() - { - return m_fbxMaterial; - } - aiMaterial* MaterialWrapper::GetAssImpMaterial() { return m_assImpMaterial; diff --git a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h index 7ad4148ad8..4cdcd5a627 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/MaterialWrapper.h @@ -10,14 +10,8 @@ #include #include -namespace fbxsdk -{ - class FbxSurfaceMaterial; -} - struct aiMaterial; - namespace AZ { namespace SDKMaterial @@ -39,11 +33,9 @@ namespace AZ BaseColor }; - MaterialWrapper(fbxsdk::FbxSurfaceMaterial* fbxMaterial); MaterialWrapper(aiMaterial* assImpmaterial); virtual ~MaterialWrapper(); - fbxsdk::FbxSurfaceMaterial* GetFbxMaterial(); aiMaterial* GetAssImpMaterial(); virtual AZStd::string GetName() const; @@ -56,7 +48,6 @@ namespace AZ virtual float GetShininess() const; protected: - fbxsdk::FbxSurfaceMaterial* m_fbxMaterial = nullptr; aiMaterial* m_assImpMaterial = nullptr; }; } // namespace SDKMaterial diff --git a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp index 9adc93ff69..bdc428840c 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.cpp @@ -11,29 +11,16 @@ namespace AZ { namespace SDKNode { - NodeWrapper::NodeWrapper(fbxsdk::FbxNode* fbxNode) - :m_fbxNode(fbxNode) - , m_assImpNode(nullptr) - { - } - NodeWrapper::NodeWrapper(aiNode* aiNode) - :m_fbxNode(nullptr) - , m_assImpNode(aiNode) + : m_assImpNode(aiNode) { } NodeWrapper::~NodeWrapper() { - m_fbxNode = nullptr; m_assImpNode = nullptr; } - fbxsdk::FbxNode* NodeWrapper::GetFbxNode() - { - return m_fbxNode; - } - aiNode* NodeWrapper::GetAssImpNode() { return m_assImpNode; diff --git a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h index 1863bc3751..abda330b10 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/NodeWrapper.h @@ -6,10 +6,6 @@ */ #pragma once #include -namespace fbxsdk -{ - class FbxNode; -} struct aiNode; @@ -23,7 +19,6 @@ namespace AZ AZ_RTTI(NodeWrapper, "{5EB0897B-9728-44B7-B056-BA34AAF14715}"); NodeWrapper() = default; - NodeWrapper(fbxsdk::FbxNode* fbxNode); NodeWrapper(aiNode* aiNode); virtual ~NodeWrapper(); @@ -34,7 +29,6 @@ namespace AZ Component_Z }; - fbxsdk::FbxNode* GetFbxNode(); aiNode* GetAssImpNode(); virtual const char* GetName() const; @@ -44,8 +38,6 @@ namespace AZ virtual int GetChildCount()const; virtual const std::shared_ptr GetChild(int childIndex) const; - - fbxsdk::FbxNode* m_fbxNode = nullptr; aiNode* m_assImpNode = nullptr; }; } //namespace Node diff --git a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp index 2329221a2c..e14173c163 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp +++ b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.cpp @@ -12,15 +12,8 @@ namespace AZ { const char* SceneWrapperBase::s_defaultSceneName = "myScene"; - SceneWrapperBase::SceneWrapperBase(fbxsdk::FbxScene* fbxScene) - :m_fbxScene(fbxScene) - , m_assImpScene(nullptr) - { - } - SceneWrapperBase::SceneWrapperBase(aiScene* aiScene) - :m_fbxScene(nullptr) - , m_assImpScene(aiScene) + : m_assImpScene(aiScene) { } @@ -47,11 +40,6 @@ namespace AZ { } - fbxsdk::FbxScene* SceneWrapperBase::GetFbxScene() const - { - return m_fbxScene; - } - const aiScene* SceneWrapperBase::GetAssImpScene() const { return m_assImpScene; diff --git a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h index f5dcc0d862..2a8c6d6c14 100644 --- a/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h +++ b/Code/Tools/SceneAPI/SDKWrapper/SceneWrapper.h @@ -8,14 +8,9 @@ #include #include #include -namespace fbxsdk -{ - class FbxScene; -} struct aiScene; - namespace AZ { namespace SDKScene @@ -25,7 +20,6 @@ namespace AZ public: AZ_RTTI(SceneWrapperBase, "{703CD344-2C75-4F30-8CE2-6BDEF2511AFD}"); SceneWrapperBase() = default; - SceneWrapperBase(fbxsdk::FbxScene* fbxScene); virtual ~SceneWrapperBase() = default; SceneWrapperBase(aiScene* aiScene); @@ -37,10 +31,8 @@ namespace AZ virtual void Clear(); - virtual fbxsdk::FbxScene* GetFbxScene() const; virtual const aiScene* GetAssImpScene() const; - fbxsdk::FbxScene* m_fbxScene = nullptr; const aiScene* m_assImpScene = nullptr; static const char* s_defaultSceneName; diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/CMakeLists.txt b/Code/Tools/SceneAPI/SceneBuilder/CMakeLists.txt similarity index 70% rename from Code/Tools/SceneAPI/FbxSceneBuilder/CMakeLists.txt rename to Code/Tools/SceneAPI/SceneBuilder/CMakeLists.txt index 5df1777048..029a254527 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/CMakeLists.txt +++ b/Code/Tools/SceneAPI/SceneBuilder/CMakeLists.txt @@ -10,14 +10,14 @@ if (NOT PAL_TRAIT_BUILD_HOST_TOOLS) endif() ly_add_target( - NAME FbxSceneBuilder.Static STATIC + NAME SceneBuilder.Static STATIC NAMESPACE AZ FILES_CMAKE - fbxscenebuilder_files.cmake + scenebuilder_files.cmake Platform/${PAL_PLATFORM_NAME}/platform_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake COMPILE_DEFINITIONS PRIVATE - FBX_SCENE_BUILDER_EXPORTS + SCENE_BUILDER_EXPORTS INCLUDE_DIRECTORIES PUBLIC ../.. @@ -33,40 +33,40 @@ ly_add_target( ) ly_add_target( - NAME FbxSceneBuilder MODULE + NAME SceneBuilder MODULE NAMESPACE AZ FILES_CMAKE - fbxscenebuilder_shared_files.cmake + scenebuilder_shared_files.cmake COMPILE_DEFINITIONS PRIVATE - FBX_SCENE_BUILDER_EXPORTS + SCENE_BUILDER_EXPORTS INCLUDE_DIRECTORIES PUBLIC ../.. BUILD_DEPENDENCIES PUBLIC - AZ::FbxSceneBuilder.Static + AZ::SceneBuilder.Static PRIVATE AZ::AzCore ) -ly_add_dependencies(AssetBuilder AZ::FbxSceneBuilder) +ly_add_dependencies(AssetBuilder AZ::SceneBuilder) if(PAL_TRAIT_BUILD_TESTS_SUPPORTED) ly_add_target( - NAME FbxSceneBuilder.Tests ${PAL_TRAIT_TEST_TARGET_TYPE} + NAME SceneBuilder.Tests ${PAL_TRAIT_TEST_TARGET_TYPE} NAMESPACE AZ FILES_CMAKE - fbxscenebuilder_testing_files.cmake + scenebuilder_testing_files.cmake INCLUDE_DIRECTORIES PRIVATE Tests BUILD_DEPENDENCIES PRIVATE AZ::AzTest - AZ::FbxSceneBuilder + AZ::SceneBuilder ) ly_add_googletest( - NAME AZ::FbxSceneBuilder.Tests + NAME AZ::SceneBuilder.Tests ) endif() diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp b/Code/Tools/SceneAPI/SceneBuilder/DllMain.cpp similarity index 71% rename from Code/Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp rename to Code/Tools/SceneAPI/SceneBuilder/DllMain.cpp index a9ff537910..2f6e0e1d07 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/DllMain.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/DllMain.cpp @@ -11,27 +11,27 @@ #include #include #include -#include +#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { static AZStd::vector g_componentDescriptors; @@ -40,13 +40,13 @@ namespace AZ // Descriptor registration is done in Reflect instead of Initialize because the ResourceCompilerScene initializes the libraries before // there's an application. using namespace AZ::SceneAPI; - using namespace AZ::SceneAPI::FbxSceneBuilder; + using namespace AZ::SceneAPI::SceneBuilder; if (g_componentDescriptors.empty()) { // Global importer and behavior - g_componentDescriptors.push_back(FbxSceneBuilder::FbxImporter::CreateDescriptor()); - g_componentDescriptors.push_back(FbxSceneImporter::FbxImportRequestHandler::CreateDescriptor()); + g_componentDescriptors.push_back(SceneBuilder::SceneImporter::CreateDescriptor()); + g_componentDescriptors.push_back(SceneImportRequestHandler::CreateDescriptor()); // Node and attribute importers g_componentDescriptors.push_back(AssImpBitangentStreamImporter::CreateDescriptor()); @@ -94,7 +94,7 @@ namespace AZ g_componentDescriptors.shrink_to_fit(); } } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ @@ -104,15 +104,15 @@ extern "C" AZ_DLL_EXPORT void InitializeDynamicModule(void* env) } extern "C" AZ_DLL_EXPORT void Reflect(AZ::SerializeContext* context) { - AZ::SceneAPI::FbxSceneBuilder::Reflect(context); + AZ::SceneAPI::SceneBuilder::Reflect(context); } extern "C" AZ_DLL_EXPORT void ReflectBehavior(AZ::BehaviorContext* context) { - AZ::SceneAPI::FbxSceneBuilder::ReflectBehavior(context); + AZ::SceneAPI::SceneBuilder::ReflectBehavior(context); } extern "C" AZ_DLL_EXPORT void UninitializeDynamicModule() { - AZ::SceneAPI::FbxSceneBuilder::Uninitialize(); + AZ::SceneAPI::SceneBuilder::Uninitialize(); AZ::Environment::Detach(); } diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.cpp b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/AssImpImportContexts.cpp similarity index 92% rename from Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.cpp rename to Code/Tools/SceneAPI/SceneBuilder/ImportContexts/AssImpImportContexts.cpp index a3ba23065d..eea929f2f1 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/AssImpImportContexts.cpp @@ -5,7 +5,7 @@ * */ -#include +#include #include #include @@ -13,10 +13,10 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { AssImpImportContext::AssImpImportContext(const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode) : m_sourceScene(sourceScene) , m_sourceSceneSystem(sourceSceneSystem) @@ -27,7 +27,7 @@ namespace AZ AssImpNodeEncounteredContext::AssImpNodeEncounteredContext(Containers::Scene& scene, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode) : AssImpImportContext(sourceScene, sourceSceneSystem, sourceNode) @@ -39,7 +39,7 @@ namespace AZ Events::ImportEventContext& parent, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode) : AssImpImportContext(sourceScene, sourceSceneSystem, sourceNode) @@ -57,7 +57,7 @@ namespace AZ AssImpSceneDataPopulatedContext::AssImpSceneDataPopulatedContext(Containers::Scene& scene, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode, const AZStd::shared_ptr& nodeData, const AZStd::string& dataName) @@ -76,7 +76,7 @@ namespace AZ AssImpSceneNodeAppendedContext::AssImpSceneNodeAppendedContext(Containers::Scene& scene, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode) : AssImpImportContext(sourceScene, sourceSceneSystem, sourceNode) , SceneNodeAppendedContextBase(scene, currentGraphPosition, nodeNameMap) @@ -111,7 +111,7 @@ namespace AZ AssImpFinalizeSceneContext::AssImpFinalizeSceneContext(Containers::Scene& scene, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap) : FinalizeSceneContextBase(scene, nodeNameMap) , m_sourceScene(sourceScene) @@ -120,5 +120,5 @@ namespace AZ } } // namespace SceneAPI - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.h b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/AssImpImportContexts.h similarity index 91% rename from Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.h rename to Code/Tools/SceneAPI/SceneBuilder/ImportContexts/AssImpImportContexts.h index 99002d1528..c620a8ced2 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/AssImpImportContexts.h +++ b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/AssImpImportContexts.h @@ -9,7 +9,7 @@ #include #include -#include +#include #include namespace AZ @@ -22,8 +22,8 @@ namespace AZ namespace SceneAPI { - class FbxSceneSystem; - namespace FbxSceneBuilder + class SceneSystem; + namespace SceneBuilder { class RenamedNodesMap; @@ -36,12 +36,12 @@ namespace AZ AZ_RTTI(AssImpImportContext, "{B1076AFF-991B-423C-8D3E-D5C9230434AB}"); AssImpImportContext(const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode); const AssImpSDKWrapper::AssImpSceneWrapper& m_sourceScene; AssImpSDKWrapper::AssImpNodeWrapper& m_sourceNode; - const FbxSceneSystem& m_sourceSceneSystem; // Needed for unit and axis conversion + const SceneSystem& m_sourceSceneSystem; // Needed for unit and axis conversion }; // AssImpNodeEncounteredContext @@ -56,14 +56,14 @@ namespace AZ AssImpNodeEncounteredContext(Containers::Scene& scene, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode); AssImpNodeEncounteredContext(Events::ImportEventContext& parent, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode); }; @@ -85,7 +85,7 @@ namespace AZ AssImpSceneDataPopulatedContext(Containers::Scene& scene, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode, const AZStd::shared_ptr& nodeData, @@ -106,7 +106,7 @@ namespace AZ AssImpSceneNodeAppendedContext(Containers::Scene& scene, Containers::SceneGraph::NodeIndex currentGraphPosition, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap, AssImpSDKWrapper::AssImpNodeWrapper& sourceNode); }; @@ -170,13 +170,13 @@ namespace AZ AssImpFinalizeSceneContext( Containers::Scene& scene, const AssImpSDKWrapper::AssImpSceneWrapper& sourceScene, - const FbxSceneSystem& sourceSceneSystem, + const SceneSystem& sourceSceneSystem, RenamedNodesMap& nodeNameMap); const AssImpSDKWrapper::AssImpSceneWrapper& m_sourceScene; - const FbxSceneSystem& m_sourceSceneSystem; // Needed for unit and axis conversion + const SceneSystem& m_sourceSceneSystem; // Needed for unit and axis conversion }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.cpp b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/ImportContexts.cpp similarity index 97% rename from Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.cpp rename to Code/Tools/SceneAPI/SceneBuilder/ImportContexts/ImportContexts.cpp index 130501533d..ae57ad5b9f 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/ImportContexts.cpp @@ -5,14 +5,14 @@ * */ -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { ImportContext::ImportContext(Containers::Scene& scene, Containers::SceneGraph::NodeIndex currentGraphPosition, @@ -103,5 +103,5 @@ namespace AZ { } } // namespace SceneAPI - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.h b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/ImportContexts.h similarity index 99% rename from Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.h rename to Code/Tools/SceneAPI/SceneBuilder/ImportContexts/ImportContexts.h index 590b585661..db873f5eae 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/ImportContexts/ImportContexts.h +++ b/Code/Tools/SceneAPI/SceneBuilder/ImportContexts/ImportContexts.h @@ -33,7 +33,7 @@ namespace AZ class ImportEventContext; } - namespace FbxSceneBuilder + namespace SceneBuilder { class RenamedNodesMap; @@ -173,7 +173,7 @@ namespace AZ FinalizeSceneContextBase(Containers::Scene& scene, RenamedNodesMap& nodeNameMap); }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.cpp similarity index 98% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.cpp index 071f17a687..e7726de502 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.cpp @@ -12,11 +12,11 @@ #include #include #include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include #include #include @@ -26,7 +26,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { const char* AssImpAnimationImporter::s_animationNodeName = "animation"; @@ -670,6 +670,6 @@ namespace AZ return Events::ProcessingResult::Success; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.h similarity index 90% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.h index 07a4fe362f..c8e7415378 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpAnimationImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpAnimationImporter.h @@ -8,7 +8,7 @@ #pragma once #include -#include +#include struct aiAnimation; struct aiMesh; @@ -18,7 +18,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpAnimationImporter : public SceneCore::LoadingComponent @@ -43,6 +43,6 @@ namespace AZ protected: static const char* s_animationNodeName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.cpp index 214ced0dc3..d822ee148e 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.cpp @@ -8,9 +8,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -24,7 +24,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { const char* AssImpBitangentStreamImporter::m_defaultNodeName = "Bitangent"; @@ -125,6 +125,6 @@ namespace AZ return bitangentResults; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.h similarity index 87% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.h index 363beabcf6..a5359ab7db 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBitangentStreamImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.h @@ -6,14 +6,14 @@ */ -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpBitangentStreamImporter : public SceneCore::LoadingComponent { @@ -30,6 +30,6 @@ namespace AZ protected: static const char* m_defaultNodeName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBlendShapeImporter.cpp similarity index 96% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBlendShapeImporter.cpp index dbf431a50a..efd5744378 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBlendShapeImporter.cpp @@ -9,11 +9,11 @@ #include #include #include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include #include #include @@ -27,7 +27,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { AssImpBlendShapeImporter::AssImpBlendShapeImporter() { @@ -234,6 +234,6 @@ namespace AZ return combinedBlendShapeResult.GetResult(); } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBlendShapeImporter.h similarity index 86% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBlendShapeImporter.h index fd1b18f812..a5fbd1b817 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBlendShapeImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBlendShapeImporter.h @@ -7,14 +7,14 @@ #pragma once -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpBlendShapeImporter : public SceneCore::LoadingComponent @@ -29,6 +29,6 @@ namespace AZ Events::ProcessingResult ImportBlendShapes(AssImpSceneNodeAppendedContext& context); }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBoneImporter.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBoneImporter.cpp index 58da14ca58..1e46485f1d 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBoneImporter.cpp @@ -9,10 +9,10 @@ #include #include #include -#include -#include -#include -#include +#include +#include +#include +#include #include #include #include @@ -24,7 +24,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { AssImpBoneImporter::AssImpBoneImporter() { @@ -170,6 +170,6 @@ namespace AZ return Events::ProcessingResult::Success; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBoneImporter.h similarity index 86% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBoneImporter.h index 9b1fc6c390..10b5964cdf 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpBoneImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBoneImporter.h @@ -7,14 +7,14 @@ #pragma once -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpBoneImporter : public SceneCore::LoadingComponent @@ -29,6 +29,6 @@ namespace AZ Events::ProcessingResult ImportBone(AssImpNodeEncounteredContext& context); }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.cpp index f220f861e3..c1720ec362 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.cpp @@ -9,9 +9,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -26,7 +26,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { const char* AssImpColorStreamImporter::m_defaultNodeName = "Col"; @@ -126,6 +126,6 @@ namespace AZ return combinedVertexColorResults.GetResult(); } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.h similarity index 87% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.h index 6551f6434c..c871a93c63 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpColorStreamImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpColorStreamImporter.h @@ -6,14 +6,14 @@ */ -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpColorStreamImporter : public SceneCore::LoadingComponent { @@ -30,6 +30,6 @@ namespace AZ protected: static const char* m_defaultNodeName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpImporterUtilities.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpImporterUtilities.cpp index 706f0bda29..929fde19eb 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpImporterUtilities.cpp @@ -5,7 +5,7 @@ * */ -#include +#include #include #include @@ -16,7 +16,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { bool IsSkinnedMesh(const aiNode& node, const aiScene& scene) { @@ -84,6 +84,6 @@ namespace AZ return combinedTransform; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpImporterUtilities.h similarity index 96% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpImporterUtilities.h index a7bb2d3c7c..deba1b0279 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpImporterUtilities.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpImporterUtilities.h @@ -15,7 +15,7 @@ struct aiScene; struct aiString; -namespace AZ::SceneAPI::FbxSceneBuilder +namespace AZ::SceneAPI::SceneBuilder { inline constexpr char PivotNodeMarker[] = "_$AssimpFbx$_"; diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMaterialImporter.cpp similarity index 94% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMaterialImporter.cpp index 57ae04cc19..f2194c352b 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMaterialImporter.cpp @@ -5,16 +5,16 @@ * */ -#include +#include #include #include #include #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -27,7 +27,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { AssImpMaterialImporter::AssImpMaterialImporter() { @@ -164,7 +164,7 @@ namespace AZ if (materialResult != Events::ProcessingResult::Failure) { - materialResult = SceneAPI::FbxSceneBuilder::AddAttributeDataNodeWithContexts(dataPopulated); + materialResult = SceneAPI::SceneBuilder::AddAttributeDataNodeWithContexts(dataPopulated); } combinedMaterialImportResults += materialResult; @@ -186,7 +186,7 @@ namespace AZ AZ::StringFunc::Path::StripFullName(cleanedUpSceneFilePath); AZ::StringFunc::Path::Join(cleanedUpSceneFilePath.c_str(), textureFilePath.c_str(), texturePathRelativeToScene); - // If the texture did start with marker to change directories upward, then it's relative to the FBX file, + // If the texture did start with marker to change directories upward, then it's relative to the scene file, // and that path needs to be resolved. It can't be resolved later. This was handled internally by FBX SDK, // but is not handled by AssImp. if (textureFilePath.starts_with("..")) @@ -196,7 +196,7 @@ namespace AZ } // The engine only supports relative paths to scan folders. - // FBX files may have paths to textures, relative to the FBX file. Check for those, first. + // Scene files may have paths to textures, relative to the scene file. Check for those, first. if (AZ::IO::FileIOBase::GetInstance()->Exists(texturePathRelativeToScene.c_str())) { return texturePathRelativeToScene; @@ -205,6 +205,6 @@ namespace AZ return textureFilePath; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMaterialImporter.h similarity index 88% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMaterialImporter.h index 1879159432..e4e75eff3c 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMaterialImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMaterialImporter.h @@ -7,14 +7,14 @@ #pragma once -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpMaterialImporter : public SceneCore::LoadingComponent @@ -32,6 +32,6 @@ namespace AZ private: AZStd::string ResolveTexturePath(const AZStd::string& sceneFilePath, const AZStd::string& textureFilePath) const; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMeshImporter.cpp similarity index 87% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMeshImporter.cpp index 1f1f2c3567..b3c4cf68db 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMeshImporter.cpp @@ -9,9 +9,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -20,7 +20,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { AssImpMeshImporter::AssImpMeshImporter() { @@ -57,6 +57,6 @@ namespace AZ return Events::ProcessingResult::Failure; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMeshImporter.h similarity index 86% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMeshImporter.h index b7da6e375f..2337400d13 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpMeshImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpMeshImporter.h @@ -7,14 +7,14 @@ #pragma once -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpMeshImporter : public SceneCore::LoadingComponent @@ -29,6 +29,6 @@ namespace AZ Events::ProcessingResult ImportMesh(AssImpNodeEncounteredContext& context); }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinImporter.cpp similarity index 87% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinImporter.cpp index a8e954cf35..5dff07aae7 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinImporter.cpp @@ -9,9 +9,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -20,7 +20,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { AssImpSkinImporter::AssImpSkinImporter() { @@ -57,6 +57,6 @@ namespace AZ return Events::ProcessingResult::Failure; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinImporter.h similarity index 86% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinImporter.h index 3183acb665..31548d670d 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinImporter.h @@ -7,14 +7,14 @@ #pragma once -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpSkinImporter : public SceneCore::LoadingComponent @@ -29,6 +29,6 @@ namespace AZ Events::ProcessingResult ImportSkin(AssImpNodeEncounteredContext& context); }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinWeightsImporter.cpp similarity index 94% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinWeightsImporter.cpp index b83ec3872e..532a397f88 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinWeightsImporter.cpp @@ -9,10 +9,10 @@ #include #include #include -#include -#include -#include -#include +#include +#include +#include +#include #include #include #include @@ -23,7 +23,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { const AZStd::string AssImpSkinWeightsImporter::s_skinWeightName = "SkinWeight_"; @@ -142,6 +142,6 @@ namespace AZ m_pendingSkinWeights.clear(); return result; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinWeightsImporter.h similarity index 91% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinWeightsImporter.h index 76b196b8e2..be54db5530 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpSkinWeightsImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpSkinWeightsImporter.h @@ -9,17 +9,12 @@ #include #include -#include +#include #include #include namespace AZ { - namespace FbxSDKWrapper - { - class FbxMeshWrapper; - } - namespace SceneData { namespace GraphData @@ -35,7 +30,7 @@ namespace AZ class PostImportEventContext; } - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpSkinWeightsImporter : public SceneCore::LoadingComponent @@ -68,6 +63,6 @@ namespace AZ static const AZStd::string s_skinWeightName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.cpp index e4a85b15b9..97c9c6c004 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.cpp @@ -9,9 +9,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -26,7 +26,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { const char* AssImpTangentStreamImporter::m_defaultNodeName = "Tangent"; @@ -127,6 +127,6 @@ namespace AZ return tangentResults; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.h similarity index 87% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.h index 91a479f341..6cd830a8b5 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTangentStreamImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.h @@ -6,14 +6,14 @@ */ -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpTangentStreamImporter : public SceneCore::LoadingComponent { @@ -30,6 +30,6 @@ namespace AZ protected: static const char* m_defaultNodeName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTransformImporter.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTransformImporter.cpp index 1a7d0e5e8a..09f8575351 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTransformImporter.cpp @@ -4,27 +4,27 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include +#include #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include #include #include #include -#include +#include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { const char* AssImpTransformImporter::s_transformNodeName = "transform"; @@ -198,6 +198,6 @@ namespace AZ return Events::ProcessingResult::Ignored; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTransformImporter.h similarity index 87% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTransformImporter.h index 418c673dd4..f6afa4742c 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpTransformImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTransformImporter.h @@ -7,14 +7,14 @@ #pragma once -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpTransformImporter : public SceneCore::LoadingComponent @@ -30,6 +30,6 @@ namespace AZ Events::ProcessingResult ImportTransform(AssImpSceneNodeAppendedContext& context); static const char* s_transformNodeName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpUvMapImporter.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpUvMapImporter.cpp index 7c3569a159..f8319330ac 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpUvMapImporter.cpp @@ -11,10 +11,10 @@ #include #include #include -#include -#include -#include -#include +#include +#include +#include +#include #include #include #include @@ -28,7 +28,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { const char* AssImpUvMapImporter::m_defaultNodeName = "UV"; @@ -141,7 +141,7 @@ namespace AZ { AZ::Vector2 vertexUV( mesh->mTextureCoords[texCoordIndex][v].x, - // The engine's V coordinate is reverse of how it's stored in the FBX file. + // The engine's V coordinate is reverse of how it's coming in from the SDK. 1.0f - mesh->mTextureCoords[texCoordIndex][v].y); uvMap->AppendUV(vertexUV); } @@ -175,6 +175,6 @@ namespace AZ return combinedUvMapResults.GetResult(); } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpUvMapImporter.h similarity index 87% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpUvMapImporter.h index 21ef69c8bc..249e305a50 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/AssImpUvMapImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpUvMapImporter.h @@ -7,14 +7,14 @@ #pragma once -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class AssImpUvMapImporter : public SceneCore::LoadingComponent @@ -32,6 +32,6 @@ namespace AZ protected: static const char* m_defaultNodeName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.cpp similarity index 98% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.cpp index 89ec1142d8..48c00f5114 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.cpp @@ -7,8 +7,8 @@ #include #include -#include -#include +#include +#include #include #include #include @@ -25,7 +25,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { static const float g_sceneUtilityEqualityEpsilon = 0.001f; @@ -429,6 +429,6 @@ namespace AZ return true; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.h similarity index 88% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.h index 2f6ce68561..c85812b420 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.h @@ -7,7 +7,7 @@ #pragma once -#include +#include #include #include #include @@ -19,9 +19,9 @@ namespace AZ namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { - struct FbxImportContext; + struct SceneImportContext; using CoreScene = Containers::Scene; using CoreSceneGraph = Containers::SceneGraph; @@ -41,8 +41,8 @@ namespace AZ bool IsGraphDataEqual(const AZStd::shared_ptr& lhs, const AZStd::shared_ptr& rhs); - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ -#include +#include diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.inl b/Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.inl similarity index 94% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.inl rename to Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.inl index aede722b0b..3cbade4c98 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/ImporterUtilities.inl +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/ImporterUtilities.inl @@ -5,7 +5,7 @@ * */ -#include +#include #include #include @@ -13,7 +13,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { bool NodeIsOfType(const CoreSceneGraph& sceneGraph, CoreGraphNodeIndex nodeIndex, const AZ::Uuid& uuid) { @@ -63,6 +63,6 @@ namespace AZ return true; } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp similarity index 93% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp index 9ced6af005..5c42122056 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.cpp @@ -10,17 +10,17 @@ #include #include #include -#include -#include -#include +#include +#include +#include #include #include #include #include -namespace AZ::SceneAPI::FbxSceneBuilder +namespace AZ::SceneAPI::SceneBuilder { - bool BuildSceneMeshFromAssImpMesh(const aiNode* currentNode, const aiScene* scene, const FbxSceneSystem& sceneSystem, AZStd::vector>& meshes, + bool BuildSceneMeshFromAssImpMesh(const aiNode* currentNode, const aiScene* scene, const SceneSystem& sceneSystem, AZStd::vector>& meshes, const AZStd::function()>& makeMeshFunc) { AZStd::unordered_map assImpMatIndexToLYIndex; diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h similarity index 84% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h index a57fbb98ae..b04777134f 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/AssImpMeshImporterUtilities.h @@ -14,11 +14,6 @@ struct aiScene; namespace AZ { - namespace FbxSDKWrapper - { - class FbxMeshWrapper; - } - namespace SceneData { namespace GraphData @@ -35,11 +30,11 @@ namespace AZ class IGraphObject; } struct AssImpSceneNodeAppendedContext; - class FbxSceneSystem; + class SceneSystem; - namespace FbxSceneBuilder + namespace SceneBuilder { - bool BuildSceneMeshFromAssImpMesh(const aiNode* currentNode, const aiScene* scene, const FbxSceneSystem& sceneSystem, AZStd::vector>& meshes, + bool BuildSceneMeshFromAssImpMesh(const aiNode* currentNode, const aiScene* scene, const SceneSystem& sceneSystem, AZStd::vector>& meshes, const AZStd::function()>& makeMeshFunc); typedef AZ::Outcome GetMeshDataFromParentResult; diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/RenamedNodesMap.cpp similarity index 97% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/RenamedNodesMap.cpp index d87c81bcb6..a85e3686de 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/RenamedNodesMap.cpp @@ -9,14 +9,14 @@ #include #include #include -#include +#include #include namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { bool RenamedNodesMap::SanitizeNodeName(AZStd::string& name, const Containers::SceneGraph& graph, Containers::SceneGraph::NodeIndex parentNode, const char* defaultName) @@ -94,7 +94,7 @@ namespace AZ { AZ_TraceContext("New node name", name); - // Only register if the name is updated, otherwise the name in the fbx node can be returned. + // Only register if the name is updated, otherwise the name in the source scene's node can be returned. auto entry = m_idToName.find(node.GetUniqueId()); if (entry == m_idToName.end()) { @@ -153,6 +153,6 @@ namespace AZ return node.GetName(); } } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.h b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/RenamedNodesMap.h similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.h rename to Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/RenamedNodesMap.h index 8bbba5c8c8..1428731469 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Importers/Utilities/RenamedNodesMap.h +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/Utilities/RenamedNodesMap.h @@ -15,14 +15,9 @@ namespace AZ { - namespace FbxSDKWrapper - { - class FbxNodeWrapper; - } - namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { class RenamedNodesMap { @@ -60,6 +55,6 @@ namespace AZ AZStd::unordered_map m_idToName; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Linux/platform_linux_files.cmake b/Code/Tools/SceneAPI/SceneBuilder/Platform/Linux/platform_linux_files.cmake similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Linux/platform_linux_files.cmake rename to Code/Tools/SceneAPI/SceneBuilder/Platform/Linux/platform_linux_files.cmake diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Mac/platform_mac_files.cmake b/Code/Tools/SceneAPI/SceneBuilder/Platform/Mac/platform_mac_files.cmake similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Mac/platform_mac_files.cmake rename to Code/Tools/SceneAPI/SceneBuilder/Platform/Mac/platform_mac_files.cmake diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Windows/platform_windows_files.cmake b/Code/Tools/SceneAPI/SceneBuilder/Platform/Windows/platform_windows_files.cmake similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Platform/Windows/platform_windows_files.cmake rename to Code/Tools/SceneAPI/SceneBuilder/Platform/Windows/platform_windows_files.cmake diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneBuilderConfiguration.h b/Code/Tools/SceneAPI/SceneBuilder/SceneBuilderConfiguration.h similarity index 67% rename from Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneBuilderConfiguration.h rename to Code/Tools/SceneAPI/SceneBuilder/SceneBuilderConfiguration.h index 6f1bed9665..aee0ed7f47 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneBuilderConfiguration.h +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneBuilderConfiguration.h @@ -10,11 +10,11 @@ #include #if defined(AZ_MONOLITHIC_BUILD) - #define FBX_SCENE_BUILDER_API + #define SCENE_BUILDER_API #else - #ifdef FBX_SCENE_BUILDER_EXPORTS - #define FBX_SCENE_BUILDER_API AZ_DLL_EXPORT + #ifdef SCENE_BUILDER_EXPORTS + #define SCENE_BUILDER_API AZ_DLL_EXPORT #else - #define FBX_SCENE_BUILDER_API AZ_DLL_IMPORT + #define SCENE_BUILDER_API AZ_DLL_IMPORT #endif #endif // AZ_MONOLITHIC_BUILD diff --git a/Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.cpp b/Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.cpp new file mode 100644 index 0000000000..2881b355cd --- /dev/null +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.cpp @@ -0,0 +1,103 @@ +/* + * 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 + +namespace AZ +{ + namespace SceneAPI + { + void SceneImporterSettings::Reflect(AZ::ReflectContext* context) + { + if (auto serializeContext = azrtti_cast(context); serializeContext) + { + serializeContext->Class() + ->Version(2) + ->Field("SupportedFileTypeExtensions", &SceneImporterSettings::m_supportedFileTypeExtensions); + } + } + + void SceneImportRequestHandler::Activate() + { + if (auto* settingsRegistry = AZ::SettingsRegistry::Get()) + { + settingsRegistry->GetObject(m_settings, "/O3DE/SceneAPI/AssetImporter"); + } + + BusConnect(); + } + + void SceneImportRequestHandler::Deactivate() + { + BusDisconnect(); + } + + void SceneImportRequestHandler::Reflect(ReflectContext* context) + { + SceneImporterSettings::Reflect(context); + + SerializeContext* serializeContext = azrtti_cast(context); + if (serializeContext) + { + serializeContext->Class()->Version(1)->Attribute( + AZ::Edit::Attributes::SystemComponentTags, + AZStd::vector( + {AssetBuilderSDK::ComponentTags::AssetBuilder, + AssetImportRequest::GetAssetImportRequestComponentTag()})); + + } + } + + void SceneImportRequestHandler::GetSupportedFileExtensions(AZStd::unordered_set& extensions) + { + extensions.insert(m_settings.m_supportedFileTypeExtensions.begin(), m_settings.m_supportedFileTypeExtensions.end()); + } + + Events::LoadingResult SceneImportRequestHandler::LoadAsset(Containers::Scene& scene, const AZStd::string& path, const Uuid& guid, [[maybe_unused]] RequestingApplication requester) + { + AZStd::string extension; + StringFunc::Path::GetExtension(path.c_str(), extension); + AZStd::to_lower(extension.begin(), extension.end()); + + if (!m_settings.m_supportedFileTypeExtensions.contains(extension)) + { + return Events::LoadingResult::Ignored; + } + + scene.SetSource(path, guid); + + // Push contexts + Events::ProcessingResultCombiner contextResult; + contextResult += Events::Process(path); + contextResult += Events::Process(path, scene); + contextResult += Events::Process(scene); + + if (contextResult.GetResult() == Events::ProcessingResult::Success) + { + return Events::LoadingResult::AssetLoaded; + } + else + { + return Events::LoadingResult::AssetFailure; + } + } + + void SceneImportRequestHandler::GetProvidedServices(ComponentDescriptor::DependencyArrayType& provided) + { + provided.emplace_back(AZ_CRC_CE("AssetImportRequestHandler")); + } + } // namespace SceneAPI +} // namespace AZ diff --git a/Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.h b/Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.h new file mode 100644 index 0000000000..f59f197683 --- /dev/null +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneImportRequestHandler.h @@ -0,0 +1,52 @@ +/* + * 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 AZ +{ + namespace SceneAPI + { + struct SceneImporterSettings + { + AZ_TYPE_INFO(SceneImporterSettings, "{8BB6C7AD-BF99-44DC-9DA1-E7AD3F03DC10}"); + + static void Reflect(AZ::ReflectContext* context); + + AZStd::unordered_set m_supportedFileTypeExtensions; + }; + + class SceneImportRequestHandler + : public AZ::Component + , public Events::AssetImportRequestBus::Handler + { + public: + AZ_COMPONENT(SceneImportRequestHandler, "{9F4B189C-0A96-4F44-A5F0-E087FF1561F8}"); + + ~SceneImportRequestHandler() override = default; + + void Activate() override; + void Deactivate() override; + static void Reflect(ReflectContext* context); + + void GetSupportedFileExtensions(AZStd::unordered_set& extensions) override; + Events::LoadingResult LoadAsset(Containers::Scene& scene, const AZStd::string& path, const Uuid& guid, + RequestingApplication requester) override; + + static void GetProvidedServices(ComponentDescriptor::DependencyArrayType& provided); + + private: + + SceneImporterSettings m_settings; + + static constexpr const char* SettingsFilename = "AssetImporterSettings.json"; + }; + } // namespace SceneAPI +} // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/SceneImporter.cpp similarity index 88% rename from Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.cpp rename to Code/Tools/SceneAPI/SceneBuilder/SceneImporter.cpp index 0a2df783f1..cd6ffb8b29 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneImporter.cpp @@ -14,11 +14,11 @@ #include #include #include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include #include #include @@ -29,7 +29,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { struct QueueNode { @@ -44,23 +44,23 @@ namespace AZ } }; - FbxImporter::FbxImporter() - : m_sceneSystem(new FbxSceneSystem()) + SceneImporter::SceneImporter() + : m_sceneSystem(new SceneSystem()) { m_sceneWrapper = AZStd::make_unique(); - BindToCall(&FbxImporter::ImportProcessing); + BindToCall(&SceneImporter::ImportProcessing); } - void FbxImporter::Reflect(ReflectContext* context) + void SceneImporter::Reflect(ReflectContext* context) { SerializeContext* serializeContext = azrtti_cast(context); if (serializeContext) { - serializeContext->Class()->Version(2); // SPEC-5776 + serializeContext->Class()->Version(2); // SPEC-5776 } } - Events::ProcessingResult FbxImporter::ImportProcessing(Events::ImportEventContext& context) + Events::ProcessingResult SceneImporter::ImportProcessing(Events::ImportEventContext& context) { m_sceneWrapper->Clear(); @@ -77,7 +77,7 @@ namespace AZ return Events::ProcessingResult::Failure; } - convertFunc = AZStd::bind(&FbxImporter::ConvertFbxScene, this, AZStd::placeholders::_1); + convertFunc = AZStd::bind(&SceneImporter::ConvertScene, this, AZStd::placeholders::_1); if (convertFunc(context.GetScene())) { @@ -89,10 +89,10 @@ namespace AZ } } - bool FbxImporter::ConvertFbxScene(Containers::Scene& scene) const + bool SceneImporter::ConvertScene(Containers::Scene& scene) const { - std::shared_ptr fbxRoot = m_sceneWrapper->GetRootNode(); - if (!fbxRoot) + std::shared_ptr sceneRoot = m_sceneWrapper->GetRootNode(); + if (!sceneRoot) { return false; } @@ -123,13 +123,13 @@ namespace AZ break; } - AZStd::queue nodes; - nodes.emplace(AZStd::move(fbxRoot), scene.GetGraph().GetRoot()); + AZStd::queue nodes; + nodes.emplace(AZStd::move(sceneRoot), scene.GetGraph().GetRoot()); RenamedNodesMap nodeNameMap; while (!nodes.empty()) { - FbxSceneBuilder::QueueNode& node = nodes.front(); + SceneBuilder::QueueNode& node = nodes.front(); AZ_Assert(node.m_node, "Empty asset importer node queued"); if (!nodeNameMap.RegisterNode(node.m_node, scene.GetGraph(), node.m_parent)) { @@ -240,12 +240,12 @@ namespace AZ return true; } - void FbxImporter::SanitizeNodeName(AZStd::string& nodeName) const + void SceneImporter::SanitizeNodeName(AZStd::string& nodeName) const { // Replace % with something else so it is safe for use in printfs. AZStd::replace(nodeName.begin(), nodeName.end(), '%', '_'); } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.h b/Code/Tools/SceneAPI/SceneBuilder/SceneImporter.h similarity index 70% rename from Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.h rename to Code/Tools/SceneAPI/SceneBuilder/SceneImporter.h index 9eb85e4f2d..669ae7abdd 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxImporter.h +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneImporter.h @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include namespace AZ @@ -24,28 +24,28 @@ namespace AZ class Scene; } - namespace FbxSceneBuilder + namespace SceneBuilder { - class FbxImporter + class SceneImporter : public SceneCore::LoadingComponent { public: - AZ_COMPONENT(FbxImporter, "{D5EE21B6-8B73-45BF-B711-31346E0BEDB3}", SceneCore::LoadingComponent); + AZ_COMPONENT(SceneImporter, "{D5EE21B6-8B73-45BF-B711-31346E0BEDB3}", SceneCore::LoadingComponent); - FbxImporter(); - ~FbxImporter() override = default; + SceneImporter(); + ~SceneImporter() override = default; static void Reflect(ReflectContext* context); Events::ProcessingResult ImportProcessing(Events::ImportEventContext& context); protected: - bool ConvertFbxScene(Containers::Scene& scene) const; + bool ConvertScene(Containers::Scene& scene) const; void SanitizeNodeName(AZStd::string& nodeName) const; AZStd::unique_ptr m_sceneWrapper; - AZStd::shared_ptr m_sceneSystem; + AZStd::shared_ptr m_sceneSystem; }; - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.cpp b/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.cpp similarity index 89% rename from Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.cpp rename to Code/Tools/SceneAPI/SceneBuilder/SceneSystem.cpp index bb1f0e71b1..8adb0ac0c0 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.cpp @@ -6,7 +6,7 @@ */ #include -#include +#include #include #include #include @@ -17,7 +17,7 @@ namespace AZ { namespace SceneAPI { - FbxSceneSystem::FbxSceneSystem() : + SceneSystem::SceneSystem() : m_unitSizeInMeters(1.0f), m_originalUnitSizeInMeters(1.0f), m_adjustTransform(nullptr), @@ -25,15 +25,15 @@ namespace AZ { } - void FbxSceneSystem::Set(const SDKScene::SceneWrapperBase* fbxScene) + void SceneSystem::Set(const SDKScene::SceneWrapperBase* scene) { // Get unit conversion factor to meter. - if (!azrtti_istypeof(fbxScene)) + if (!azrtti_istypeof(scene)) { return; } - const AssImpSDKWrapper::AssImpSceneWrapper* assImpScene = azrtti_cast(fbxScene); + const AssImpSDKWrapper::AssImpSceneWrapper* assImpScene = azrtti_cast(scene); // If either meta data piece is not available, the default of 1 will be used. assImpScene->GetAssImpScene()->mMetaData->Get("UnitScaleFactor", m_unitSizeInMeters); @@ -111,7 +111,7 @@ namespace AZ } } - void FbxSceneSystem::SwapVec3ForUpAxis(Vector3& swapVector) const + void SceneSystem::SwapVec3ForUpAxis(Vector3& swapVector) const { if (m_adjustTransform) { @@ -119,7 +119,7 @@ namespace AZ } } - void FbxSceneSystem::SwapTransformForUpAxis(DataTypes::MatrixType& inOutTransform) const + void SceneSystem::SwapTransformForUpAxis(DataTypes::MatrixType& inOutTransform) const { if (m_adjustTransform) { @@ -127,19 +127,19 @@ namespace AZ } } - void FbxSceneSystem::ConvertUnit(Vector3& scaleVector) const + void SceneSystem::ConvertUnit(Vector3& scaleVector) const { scaleVector *= m_unitSizeInMeters; } - void FbxSceneSystem::ConvertUnit(DataTypes::MatrixType& inOutTransform) const + void SceneSystem::ConvertUnit(DataTypes::MatrixType& inOutTransform) const { Vector3 translation = inOutTransform.GetTranslation(); translation *= m_unitSizeInMeters; inOutTransform.SetTranslation(translation); } - void FbxSceneSystem::ConvertBoneUnit(DataTypes::MatrixType& inOutTransform) const + void SceneSystem::ConvertBoneUnit(DataTypes::MatrixType& inOutTransform) const { diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.h b/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.h similarity index 81% rename from Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.h rename to Code/Tools/SceneAPI/SceneBuilder/SceneSystem.h index 0667b9969e..48c5dd152c 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/FbxSceneSystem.h +++ b/Code/Tools/SceneAPI/SceneBuilder/SceneSystem.h @@ -8,7 +8,7 @@ */ #include -#include +#include #include namespace AZ @@ -22,10 +22,10 @@ namespace AZ namespace SceneAPI { - class FBX_SCENE_BUILDER_API FbxSceneSystem + class SCENE_BUILDER_API SceneSystem { public: - FbxSceneSystem(); + SceneSystem(); void Set(const SDKScene::SceneWrapperBase* sceneWrapper); void SwapVec3ForUpAxis(Vector3& swapVector) const; @@ -34,11 +34,11 @@ namespace AZ void ConvertUnit(DataTypes::MatrixType& inOutTransform) const; void ConvertBoneUnit(DataTypes::MatrixType& inOutTransform) const; - //! Get effect unit size in meters of this Fbx Scene, internally FBX saves it in the following manner + //! Get effect unit size in meters of this scene, internally FBX saves it in the following manner //! GlobalSettings: { //! P : "UnitScaleFactor", "double", "Number", "", 2.54 float GetUnitSizeInMeters() const { return m_unitSizeInMeters; } - //! Get original unit size in meters of this Fbx Scene, internally FBX saves it in the following manner + //! Get original unit size in meters of this scene, internally FBX saves it in the following manner //! GlobalSettings: { //! P : "OriginalUnitScaleFactor", "double", "Number", "", 2.54 float GetOriginalUnitSizeInMeters() const { return m_originalUnitSizeInMeters; } diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp b/Code/Tools/SceneAPI/SceneBuilder/Tests/Importers/SceneImporterUtilitiesTests.cpp similarity index 83% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Tests/Importers/SceneImporterUtilitiesTests.cpp index ed606e32b1..f26ae4f5e3 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/FbxImporterUtilitiesTests.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Tests/Importers/SceneImporterUtilitiesTests.cpp @@ -8,7 +8,7 @@ #include #include #include -#include +#include #include #include #include @@ -18,9 +18,9 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { - TEST(FbxImporterUtilityTests, AreSceneGraphsEqual_EmptySceneGraphs_ReturnsTrue) + TEST(SceneImporterUtilityTests, AreSceneGraphsEqual_EmptySceneGraphs_ReturnsTrue) { Containers::SceneGraph lhsGraph; Containers::SceneGraph rhsGraph; @@ -31,7 +31,7 @@ namespace AZ EXPECT_TRUE(sceneGraphsEqual); } - TEST(FbxImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeBothNull_ReturnsTrue) + TEST(SceneImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeBothNull_ReturnsTrue) { Containers::SceneGraph lhsGraph; lhsGraph.AddChild(lhsGraph.GetRoot(), "testChild"); @@ -44,7 +44,7 @@ namespace AZ EXPECT_TRUE(sceneGraphsEqual); } - TEST(FbxImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeSameType_ReturnsTrue) + TEST(SceneImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeSameType_ReturnsTrue) { Containers::SceneGraph lhsGraph; AZStd::shared_ptr lhsData = AZStd::make_shared(); @@ -59,7 +59,7 @@ namespace AZ EXPECT_TRUE(sceneGraphsEqual); } - TEST(FbxImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeOneNull_ReturnsFalse) + TEST(SceneImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeOneNull_ReturnsFalse) { Containers::SceneGraph lhsGraph; AZStd::shared_ptr lhsData = AZStd::make_shared(); @@ -73,7 +73,7 @@ namespace AZ EXPECT_FALSE(sceneGraphsEqual); } - TEST(FbxImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeDifferentTypes_ReturnsFalse) + TEST(SceneImporterUtilityTests, AreSceneGraphsEqual_SameNameSingleNodeDifferentTypes_ReturnsFalse) { Containers::SceneGraph lhsGraph; AZStd::shared_ptr lhsData = AZStd::make_shared(); @@ -88,7 +88,7 @@ namespace AZ EXPECT_FALSE(sceneGraphsEqual); } - TEST(FbxImporterUtilityTests, AreSceneGraphsEqual_SameNameOneEmptyOneSingleNode_ReturnsFalse) + TEST(SceneImporterUtilityTests, AreSceneGraphsEqual_SameNameOneEmptyOneSingleNode_ReturnsFalse) { Containers::SceneGraph lhsGraph; AZStd::shared_ptr lhsData = AZStd::make_shared(); @@ -101,7 +101,7 @@ namespace AZ EXPECT_FALSE(sceneGraphsEqual); } - TEST(FbxImpoterUtilityTests, AreSceneGraphsEqual_DifferentNamesSingleNodeBothNull_ReturnsFalse) + TEST(SceneImpoterUtilityTests, AreSceneGraphsEqual_DifferentNamesSingleNodeBothNull_ReturnsFalse) { Containers::SceneGraph lhsGraph; lhsGraph.AddChild(lhsGraph.GetRoot(), "testChild"); @@ -114,7 +114,7 @@ namespace AZ EXPECT_FALSE(sceneGraphsEqual); } - TEST(FbxImporterUtilityTests, AreSceneGraphsEqual_SecondGraphExtraChild_ReturnsFalse) + TEST(SceneImporterUtilityTests, AreSceneGraphsEqual_SecondGraphExtraChild_ReturnsFalse) { Containers::SceneGraph lhsGraph; lhsGraph.AddChild(lhsGraph.GetRoot(), "testChild"); @@ -127,6 +127,6 @@ namespace AZ EXPECT_FALSE(sceneGraphsEqual); } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp b/Code/Tools/SceneAPI/SceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp similarity index 95% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp index 7f25508b5d..6b1279cccc 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Tests/Importers/Utilities/RenamedNodesMapTests.cpp @@ -8,7 +8,7 @@ #include #include #include -#include +#include #include #include #include @@ -17,7 +17,7 @@ namespace AZ { namespace SceneAPI { - namespace FbxSceneBuilder + namespace SceneBuilder { TEST(RenamedNodesMapTests, SanitizeNodeName_ValidNameProvided_ReturnsFalseAndNameUnchanged) { @@ -79,6 +79,6 @@ namespace AZ EXPECT_TRUE(result); EXPECT_STREQ("Child_2", name.c_str()); } - } // namespace FbxSceneBuilder + } // namespace SceneBuilder } // namespace SceneAPI } // namespace AZ diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.cpp b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxMesh.cpp similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxMesh.cpp diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.h b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxMesh.h similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxMesh.h rename to Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxMesh.h diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.cpp b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxNode.cpp similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxNode.cpp diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.h b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxNode.h similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxNode.h rename to Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxNode.h diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.cpp b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxSkin.cpp similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxSkin.cpp diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.h b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxSkin.h similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestFbxSkin.h rename to Code/Tools/SceneAPI/SceneBuilder/Tests/TestFbxSkin.h diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestsMain.cpp b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestsMain.cpp similarity index 67% rename from Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestsMain.cpp rename to Code/Tools/SceneAPI/SceneBuilder/Tests/TestsMain.cpp index 841e76da4c..4b49c0ead8 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/Tests/TestsMain.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Tests/TestsMain.cpp @@ -10,11 +10,11 @@ #include #include -class FbxSceneBuilderTestEnvironment +class SceneBuilderTestEnvironment : public AZ::Test::ITestEnvironment { public: - virtual ~FbxSceneBuilderTestEnvironment() + virtual ~SceneBuilderTestEnvironment() {} protected: @@ -23,31 +23,31 @@ protected: AZ::AllocatorInstance::Create(); sceneCoreModule = AZ::DynamicModuleHandle::Create("SceneCore"); - AZ_Assert(sceneCoreModule, "FbxSceneBuilder unit tests failed to create SceneCore module."); + AZ_Assert(sceneCoreModule, "SceneBuilder unit tests failed to create SceneCore module."); bool loaded = sceneCoreModule->Load(false); - AZ_Assert(loaded, "FbxSceneBuilder unit tests failed to load SceneCore module."); + AZ_Assert(loaded, "SceneBuilder unit tests failed to load SceneCore module."); auto init = sceneCoreModule->GetFunction(AZ::InitializeDynamicModuleFunctionName); - AZ_Assert(init, "FbxSceneBuilder unit tests failed to find the initialization function the SceneCore module."); + AZ_Assert(init, "SceneBuilder unit tests failed to find the initialization function the SceneCore module."); (*init)(AZ::Environment::GetInstance()); sceneDataModule = AZ::DynamicModuleHandle::Create("SceneData"); AZ_Assert(sceneDataModule, "SceneData unit tests failed to create SceneData module."); loaded = sceneDataModule->Load(false); - AZ_Assert(loaded, "FbxSceneBuilder unit tests failed to load SceneData module."); + AZ_Assert(loaded, "SceneBuilder unit tests failed to load SceneData module."); init = sceneDataModule->GetFunction(AZ::InitializeDynamicModuleFunctionName); - AZ_Assert(init, "FbxSceneBuilder unit tests failed to find the initialization function the SceneData module."); + AZ_Assert(init, "SceneBuilder unit tests failed to find the initialization function the SceneData module."); (*init)(AZ::Environment::GetInstance()); } void TeardownEnvironment() override { auto uninit = sceneDataModule->GetFunction(AZ::UninitializeDynamicModuleFunctionName); - AZ_Assert(uninit, "FbxSceneBuilder unit tests failed to find the uninitialization function the SceneData module."); + AZ_Assert(uninit, "SceneBuilder unit tests failed to find the uninitialization function the SceneData module."); (*uninit)(); sceneDataModule.reset(); uninit = sceneCoreModule->GetFunction(AZ::UninitializeDynamicModuleFunctionName); - AZ_Assert(uninit, "FbxSceneBuilder unit tests failed to find the uninitialization function the SceneCore module."); + AZ_Assert(uninit, "SceneBuilder unit tests failed to find the uninitialization function the SceneCore module."); (*uninit)(); sceneCoreModule.reset(); @@ -59,5 +59,5 @@ private: AZStd::unique_ptr sceneDataModule; }; -AZ_UNIT_TEST_HOOK(new FbxSceneBuilderTestEnvironment); +AZ_UNIT_TEST_HOOK(new SceneBuilderTestEnvironment); diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_files.cmake b/Code/Tools/SceneAPI/SceneBuilder/scenebuilder_files.cmake similarity index 91% rename from Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_files.cmake rename to Code/Tools/SceneAPI/SceneBuilder/scenebuilder_files.cmake index 0e3a793af1..5bd6748399 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_files.cmake +++ b/Code/Tools/SceneAPI/SceneBuilder/scenebuilder_files.cmake @@ -6,13 +6,13 @@ # set(FILES - FbxSceneBuilderConfiguration.h - FbxImportRequestHandler.h - FbxImportRequestHandler.cpp - FbxImporter.h - FbxImporter.cpp - FbxSceneSystem.h - FbxSceneSystem.cpp + SceneBuilderConfiguration.h + SceneImportRequestHandler.h + SceneImportRequestHandler.cpp + SceneImporter.h + SceneImporter.cpp + SceneSystem.h + SceneSystem.cpp ImportContexts/ImportContexts.h ImportContexts/ImportContexts.cpp ImportContexts/AssImpImportContexts.h diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_shared_files.cmake b/Code/Tools/SceneAPI/SceneBuilder/scenebuilder_shared_files.cmake similarity index 100% rename from Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_shared_files.cmake rename to Code/Tools/SceneAPI/SceneBuilder/scenebuilder_shared_files.cmake diff --git a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_testing_files.cmake b/Code/Tools/SceneAPI/SceneBuilder/scenebuilder_testing_files.cmake similarity index 85% rename from Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_testing_files.cmake rename to Code/Tools/SceneAPI/SceneBuilder/scenebuilder_testing_files.cmake index 8f84805438..c4d970e4e3 100644 --- a/Code/Tools/SceneAPI/FbxSceneBuilder/fbxscenebuilder_testing_files.cmake +++ b/Code/Tools/SceneAPI/SceneBuilder/scenebuilder_testing_files.cmake @@ -7,6 +7,6 @@ set(FILES Tests/TestsMain.cpp - Tests/Importers/FbxImporterUtilitiesTests.cpp + Tests/Importers/SceneImporterUtilitiesTests.cpp Tests/Importers/Utilities/RenamedNodesMapTests.cpp ) diff --git a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h index 2b0cb968a8..3b62341dce 100644 --- a/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h +++ b/Code/Tools/SceneAPI/SceneCore/Containers/SceneGraph.h @@ -27,7 +27,7 @@ namespace AZ { class IGraphObject; } - namespace FbxSceneBuilder + namespace SceneBuilder { struct QueueNode; struct ImportContext; @@ -58,8 +58,8 @@ namespace AZ class NodeIndex { friend class SceneGraph; - friend struct FbxSceneBuilder::QueueNode; - friend struct FbxSceneBuilder::ImportContext; + friend struct SceneBuilder::QueueNode; + friend struct SceneBuilder::ImportContext; public: // Type needs to be able to store an index in a NodeHeader (currently 21-bits). using IndexType = uint32_t; diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h index 16a5f509e0..7b8ea30c3c 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshData.h @@ -80,11 +80,11 @@ namespace AZ virtual unsigned int GetVertexIndex(int faceIndex, int vertexIndexInFace) const = 0; static const int s_invalidMaterialId = 0; - // Set the unit size of the mesh, from the point of FBX SDK + // Set the unit size of the mesh, from the point of the source SDK void SetUnitSizeInMeters(float size) { m_unitSizeInMeters = size; } float GetUnitSizeInMeters() const { return m_unitSizeInMeters; } - // Set the original unit size of the mesh, from the point of FBX SDK + // Set the original unit size of the mesh, from the point of the source SDK void SetOriginalUnitSizeInMeters(float size) { m_originalUnitSizeInMeters = size; } float GetOriginalUnitSizeInMeters() const { return m_originalUnitSizeInMeters; } diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp index c2b80051fe..8f4b3d9c63 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.cpp @@ -144,10 +144,10 @@ namespace PhysX namespace Utils { - // Utility function doing look-up in fbxMaterialNames and inserting the name if it's not found + // Utility function doing look-up in sourceSceneMaterialNames and inserting the name if it's not found AZ::u16 InsertMaterialIndexByName(const AZStd::string& materialName, AssetMaterialsData& materials) { - AZStd::vector& fbxMaterialNames = materials.m_fbxMaterialNames; + AZStd::vector& sourceSceneMaterialNames = materials.m_sourceSceneMaterialNames; AZStd::unordered_map& materialIndexByName = materials.m_materialIndexByName; // Check if we have this material in the list @@ -159,9 +159,9 @@ namespace PhysX } // Add it to the list otherwise - fbxMaterialNames.push_back(materialName); + sourceSceneMaterialNames.push_back(materialName); - AZ::u16 newIndex = fbxMaterialNames.size() - 1; + AZ::u16 newIndex = sourceSceneMaterialNames.size() - 1; materialIndexByName[materialName] = newIndex; return newIndex; @@ -284,8 +284,8 @@ namespace PhysX AZStd::string_view nodeName = sceneGraph.GetNodeName(nodeIndex).GetName(); - const AZStd::vector localFbxMaterialsList = GenerateLocalNodeMaterialMap(sceneGraph, nodeIndex); - if (localFbxMaterialsList.empty()) + const AZStd::vector localSourceSceneMaterialsList = GenerateLocalNodeMaterialMap(sceneGraph, nodeIndex); + if (localSourceSceneMaterialsList.empty()) { AZ_TracePrintf( AZ::SceneAPI::Utilities::WarningWindow, @@ -304,26 +304,26 @@ namespace PhysX for (AZ::u32 faceIndex = 0; faceIndex < faceCount; ++faceIndex) { AZStd::string materialName = DefaultMaterialName; - if (!localFbxMaterialsList.empty()) + if (!localSourceSceneMaterialsList.empty()) { const int materialId = nodeMesh->GetFaceMaterialId(faceIndex); - if (materialId >= localFbxMaterialsList.size()) + if (materialId >= localSourceSceneMaterialsList.size()) { AZ_TracePrintf(AZ::SceneAPI::Utilities::ErrorWindow, - "materialId %d for face %d is out of bound for localFbxMaterialsList (size %d).", - materialId, faceIndex, localFbxMaterialsList.size()); + "materialId %d for face %d is out of bound for localSourceSceneMaterialsList (size %d).", + materialId, faceIndex, localSourceSceneMaterialsList.size()); return AZStd::nullopt; } - materialName = localFbxMaterialsList[materialId]; + materialName = localSourceSceneMaterialsList[materialId]; // Keep using the first material when it has to be limited to one. if (limitToOneMaterial && - assetMaterialData.m_fbxMaterialNames.size() == 1 && - assetMaterialData.m_fbxMaterialNames[0] != materialName) + assetMaterialData.m_sourceSceneMaterialNames.size() == 1 && + assetMaterialData.m_sourceSceneMaterialNames[0] != materialName) { - materialName = assetMaterialData.m_fbxMaterialNames[0]; + materialName = assetMaterialData.m_sourceSceneMaterialNames[0]; } } @@ -504,7 +504,7 @@ namespace PhysX // because this exporter runs when the source scene is being processed, which // could have a different content from when the mesh group info was // entered in Scene Settings Editor. - if (!Utils::UpdateAssetPhysicsMaterials(assetMaterialsData.m_fbxMaterialNames, assetData.m_materialNames, assetData.m_physicsMaterialNames)) + if (!Utils::UpdateAssetPhysicsMaterials(assetMaterialsData.m_sourceSceneMaterialNames, assetData.m_materialNames, assetData.m_physicsMaterialNames)) { return SceneEvents::ProcessingResult::Failure; } diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h index 3bb6bea456..fa12eb6f56 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h +++ b/Gems/PhysX/Code/Source/Pipeline/MeshExporter.h @@ -60,9 +60,9 @@ namespace PhysX struct AssetMaterialsData { //! Material names coming from the source scene file. - AZStd::vector m_fbxMaterialNames; + AZStd::vector m_sourceSceneMaterialNames; - //! Look-up table for fbxMaterialNames. + //! Look-up table for sourceSceneMaterialNames. AZStd::unordered_map m_materialIndexByName; //! Map of mesh nodes to their list of material indices associated to each face. diff --git a/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp b/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp index 9fe9256019..e0d9eb1e96 100644 --- a/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp +++ b/Gems/PhysX/Code/Source/Pipeline/MeshGroup.cpp @@ -763,7 +763,7 @@ namespace PhysX return; } - Utils::UpdateAssetPhysicsMaterials(assetMaterialData->m_fbxMaterialNames, m_materialSlots, m_physicsMaterials); + Utils::UpdateAssetPhysicsMaterials(assetMaterialData->m_sourceSceneMaterialNames, m_materialSlots, m_physicsMaterials); } AZ::SceneAPI::Containers::RuleContainer& MeshGroup::GetRuleContainer() diff --git a/Gems/SceneLoggingExample/ReadMe.txt b/Gems/SceneLoggingExample/ReadMe.txt index f7c398c78d..62fe755ddf 100644 --- a/Gems/SceneLoggingExample/ReadMe.txt +++ b/Gems/SceneLoggingExample/ReadMe.txt @@ -2,7 +2,7 @@ The Scene Logging Example demonstrates how to extend the SceneAPI by adding addi a collection of libraries that handle loading scene files and converting content to data that the Open 3D Engine and its editor can load. The following approach is used: - 1. The FbxSceneBuilder and SceneData load and convert the scene file (for example, .fbx) into a graph that is stored in memory. + 1. The SceneBuilder and SceneData load and convert the scene file (for example, .fbx) into a graph that is stored in memory. 2. SceneCore and SceneData are used to create a manifest with instructions about how to export the file. 3. SceneData analyzes the manifest and memory graph and creates defaults. 4. Scene Settings allows updates to the manifest through a UI. diff --git a/Gems/SceneProcessing/Code/CMakeLists.txt b/Gems/SceneProcessing/Code/CMakeLists.txt index 02603a57a3..9aa5bc6763 100644 --- a/Gems/SceneProcessing/Code/CMakeLists.txt +++ b/Gems/SceneProcessing/Code/CMakeLists.txt @@ -39,7 +39,7 @@ if (PAL_TRAIT_BUILD_HOST_TOOLS) AZ::SceneCore AZ::SceneData AZ::AzFramework - AZ::FbxSceneBuilder + AZ::SceneBuilder AZ::AssetBuilderSDK ) diff --git a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp index 747253d5b1..72513b509f 100644 --- a/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Config/Components/SceneProcessingConfigSystemComponent.cpp @@ -31,7 +31,7 @@ namespace AZ ActivateSceneModule(SceneProcessing::s_sceneCoreModule); ActivateSceneModule(SceneProcessing::s_sceneDataModule); - ActivateSceneModule(SceneProcessing::s_fbxSceneBuilderModule); + ActivateSceneModule(SceneProcessing::s_sceneBuilderModule); // Defaults in case there's no config setup in the Project Configurator. m_softNames.push_back(aznew NodeSoftNameSetting("^.*_[Ll][Oo][Dd]1(_optimized)?$", PatternMatcher::MatchApproach::Regex, "LODMesh1", true)); @@ -65,7 +65,7 @@ namespace AZ SceneProcessingConfigSystemComponent::~SceneProcessingConfigSystemComponent() { - DeactivateSceneModule(SceneProcessing::s_fbxSceneBuilderModule); + DeactivateSceneModule(SceneProcessing::s_sceneBuilderModule); DeactivateSceneModule(SceneProcessing::s_sceneDataModule); DeactivateSceneModule(SceneProcessing::s_sceneCoreModule); } @@ -140,7 +140,7 @@ namespace AZ { ReflectSceneModule(context, SceneProcessing::s_sceneCoreModule); ReflectSceneModule(context, SceneProcessing::s_sceneDataModule); - ReflectSceneModule(context, SceneProcessing::s_fbxSceneBuilderModule); + ReflectSceneModule(context, SceneProcessing::s_sceneBuilderModule); SoftNameSetting::Reflect(context); NodeSoftNameSetting::Reflect(context); diff --git a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp index 2839c8037d..bff43b9518 100644 --- a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp +++ b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.cpp @@ -33,7 +33,7 @@ namespace AZ { LoadSceneModule(s_sceneCoreModule, "SceneCore"); LoadSceneModule(s_sceneDataModule, "SceneData"); - LoadSceneModule(s_fbxSceneBuilderModule, "FbxSceneBuilder"); + LoadSceneModule(s_sceneBuilderModule, "SceneBuilder"); m_descriptors.insert(m_descriptors.end(), { @@ -59,7 +59,7 @@ namespace AZ ~SceneProcessingModule() { - UnloadModule(s_fbxSceneBuilderModule); + UnloadModule(s_sceneBuilderModule); UnloadModule(s_sceneDataModule); UnloadModule(s_sceneCoreModule); } diff --git a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h index 674d3b449b..3491d1a702 100644 --- a/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h +++ b/Gems/SceneProcessing/Code/Source/SceneProcessingModule.h @@ -12,5 +12,5 @@ namespace AZ::SceneProcessing { inline AZStd::unique_ptr s_sceneCoreModule; inline AZStd::unique_ptr s_sceneDataModule; - inline AZStd::unique_ptr s_fbxSceneBuilderModule; + inline AZStd::unique_ptr s_sceneBuilderModule; } // namespace AZ::SceneProcessing From b331eea9ca54b2df09c719f10a3462b058931b09 Mon Sep 17 00:00:00 2001 From: Terry Michaels Date: Thu, 1 Jul 2021 19:25:08 -0500 Subject: [PATCH 092/111] Removed the AmazonStyle executable and files as they are old/invalid (#1733) * signoff Signed-off-by: Terry Michaels --- .../StyleGallery/ConditionGroupWidget.cpp | 145 -- .../StyleGallery/ConditionGroupWidget.h | 36 - .../StyleGallery/ConditionWidget.cpp | 51 - .../StyleGallery/ConditionWidget.h | 30 - .../StyleGallery/DeploymentsWidget.cpp | 57 - .../StyleGallery/DeploymentsWidget.h | 30 - .../AzQtComponents/StyleGallery/MyCombo.cpp | 15 - .../AzQtComponents/StyleGallery/MyCombo.h | 22 - .../StyleGallery/ViewportTitleDlg.cpp | 69 - .../StyleGallery/ViewportTitleDlg.h | 36 - .../StyleGallery/ViewportTitleDlg.ui | 225 -- .../AzQtComponents/StyleGallery/assets.svg | 179 -- .../StyleGallery/deploymentswidget.ui | 176 -- .../AzQtComponents/StyleGallery/main.cpp | 300 --- .../StyleGallery/mainwidget.cpp | 275 --- .../AzQtComponents/StyleGallery/mainwidget.h | 40 - .../AzQtComponents/StyleGallery/mainwidget.ui | 2042 ----------------- .../AzQtComponents/StyleGallery/triangles.svg | 138 -- .../azqtcomponents_style_files.cmake | 25 - Code/Framework/AzQtComponents/CMakeLists.txt | 18 - 20 files changed, 3909 deletions(-) delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.ui delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/assets.svg delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/deploymentswidget.ui delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.ui delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/triangles.svg delete mode 100644 Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp deleted file mode 100644 index ad18668650..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.cpp +++ /dev/null @@ -1,145 +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 - * - */ - -#include "ConditionGroupWidget.h" -#include "ConditionWidget.h" -#include -#include -#include -#include -#include -#include -#include - -enum Action { - ActionAdd, - ActionRemove -}; - -class ActionButton : public QToolButton -{ -public: - explicit ActionButton(QWidget *parent = nullptr) - : QToolButton(parent) - { - setAttribute(Qt::WA_Hover); - } - - void paintEvent(QPaintEvent *) - { - QStyleOptionToolButton opt; - initStyleOption(&opt); - auto state = (opt.state & QStyle::State_Sunken) ? QIcon::Active - : ((opt.state & QStyle::State_MouseOver) ? QIcon::Selected - : QIcon::Normal); - - QPixmap pix = icon().pixmap(QSize(16, 16), state); - QPainter p(this); - QRect pixRect = pix.rect(); - pixRect.moveCenter(rect().center()); - pixRect.adjust(-2, 1, -2, 1); - p.drawPixmap(pixRect , pix); - } -}; - -ConditionGroupWidget::ConditionGroupWidget(QWidget *parent) - : QWidget(parent) - , m_layout(new QGridLayout(this)) -{ - m_addIcon.addPixmap(QPixmap(":/stylesheet/img/condition_add.png"), QIcon::Normal); - m_addIcon.addPixmap(QPixmap(":/stylesheet/img/condition_add_hover.png"), QIcon::Selected); - m_addIcon.addPixmap(QPixmap(":/stylesheet/img/condition_add_pressed.png"), QIcon::Active); - - m_delIcon.addPixmap(QPixmap(":/stylesheet/img/condition_remove.png"), QIcon::Normal); - m_delIcon.addPixmap(QPixmap(":/stylesheet/img/condition_remove_hover.png"), QIcon::Selected); - m_delIcon.addPixmap(QPixmap(":/stylesheet/img/condition_remove_pressed.png"), QIcon::Active); - - setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum); - m_layout->setHorizontalSpacing(0); - - // Lets have at least one condition - appendCondition(); -} - -void ConditionGroupWidget::appendCondition() -{ - auto cond = new ConditionWidget(); - connect(cond, SIGNAL(geometryChanged()), this, SLOT(update())); - m_layout->addWidget(cond, count(), 0); - m_layout->addWidget(new ActionButton(), count() - 1, 1); - updateButtons(); -} - -void ConditionGroupWidget::removeCondition(int n) -{ - if (n >= 0 && n < count() && count() > 1) { - m_layout->removeItem(m_layout->itemAtPosition(n, 0)); - m_layout->removeItem(m_layout->itemAtPosition(n, 1)); - updateButtons(); - } -} - -int ConditionGroupWidget::count() const -{ - return m_layout->rowCount(); -} - -void ConditionGroupWidget::paintEvent(QPaintEvent *) -{ - const int c = count(); - for (int i = 0; i < c - 1; ++i) { - ConditionWidget *cond1 = conditionAt(i); - ConditionWidget *cond2 = conditionAt(i + 1); - if (!cond1 || !cond2) - continue; // defensive, doesn't happen - - const int separatorHeight = 3; - const int y = ((cond1->geometry().bottom() + cond2->y()) / 2) - (separatorHeight / 2); - QPainter p(this); - p.setPen(QColor(50, 52, 53)); - p.setBrush(QColor(94, 96, 96)); - p.drawRoundedRect(QRect(0, y, width() - 1, separatorHeight), 1, 1); - } -} - -ConditionWidget *ConditionGroupWidget::conditionAt(int row) const -{ - if (row < 0 || row >= count()) - return nullptr; - - if (auto item = m_layout->itemAtPosition(row, 0)) - return qobject_cast(item->widget()); - - return nullptr; -} - -void ConditionGroupWidget::updateButtons() -{ - update(); - const int n = count(); - for (int i = 0; i < n; ++i) { - if (auto item = m_layout->itemAtPosition(i, 1)) { - if (auto button = qobject_cast(item->widget())) { - bool isLast = i == n - 1; - button->setCheckable(true); - button->setChecked(true); - button->setIcon(isLast ? m_addIcon : m_delIcon); - button->disconnect(); - - if (isLast) { - connect(button, &QToolButton::clicked, this, &ConditionGroupWidget::appendCondition); - } else { - connect(button, &QToolButton::clicked, this, [this, i] { - removeCondition(i); - }); - } - } - } - } -} - -#include "StyleGallery/moc_ConditionGroupWidget.cpp" diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h deleted file mode 100644 index be0bb76966..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionGroupWidget.h +++ /dev/null @@ -1,36 +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 - * - */ - -#ifndef CONDITIONGROUPWIDGET_H -#define CONDITIONGROUPWIDGET_H - -#if !defined(Q_MOC_RUN) -#include -#include -#endif - -class QGridLayout; -class ConditionWidget; - -class ConditionGroupWidget : public QWidget -{ - Q_OBJECT -public: - explicit ConditionGroupWidget(QWidget *parent = nullptr); - void appendCondition(); - void removeCondition(int n); - int count() const; - void paintEvent(QPaintEvent *) override; -private: - ConditionWidget* conditionAt(int row) const; - void updateButtons(); - QGridLayout *const m_layout; - QIcon m_addIcon; - QIcon m_delIcon; -}; - -#endif diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp deleted file mode 100644 index c9b7648eca..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.cpp +++ /dev/null @@ -1,51 +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 - * - */ - -#include "ConditionWidget.h" -#include -#include -#include -#include - -ConditionWidget::ConditionWidget(QWidget *parent) - : QWidget(parent) -{ - auto layout = new QHBoxLayout(this); - auto checkbox = new QCheckBox(); - auto combo1 = new QComboBox(); - combo1->addItem(QStringLiteral("Asset Type")); - combo1->addItem(QStringLiteral("Asset Name")); - combo1->setProperty("class", "condition"); - auto combo2 = new QComboBox(); - combo2->setFixedWidth(88); - combo2->setProperty("class", "condition"); - combo2->addItem(QStringLiteral("is")); - combo2->addItem(QStringLiteral("is not")); - auto lineedit = new QLineEdit(); - - layout->addWidget(checkbox); - layout->addWidget(combo1); - layout->addWidget(combo2); - layout->addWidget(lineedit); - layout->setSpacing(5); - - setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum); -} - -void ConditionWidget::resizeEvent(QResizeEvent *event) -{ - QWidget::resizeEvent(event); - emit geometryChanged(); -} - -void ConditionWidget::moveEvent(QMoveEvent *event) -{ - QWidget::moveEvent(event); - emit geometryChanged(); -} - -#include "StyleGallery/moc_ConditionWidget.cpp" diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h deleted file mode 100644 index b921f73da7..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ConditionWidget.h +++ /dev/null @@ -1,30 +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 - * - */ - - -#ifndef CONDITIONWIDGET_H -#define CONDITIONWIDGET_H - -#if !defined(Q_MOC_RUN) -#include -#endif - -class ConditionWidget : public QWidget -{ - Q_OBJECT -public: - explicit ConditionWidget(QWidget *parent = nullptr); - -signals: - void geometryChanged(); - -protected: - void resizeEvent(QResizeEvent *event) override; - void moveEvent(QMoveEvent *event) override; -}; - -#endif diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp deleted file mode 100644 index 9f7c670989..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.cpp +++ /dev/null @@ -1,57 +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 - * - */ - -#include "DeploymentsWidget.h" -#include -#include -#include - -using namespace AzQtComponents; - -DeploymentsWidget::DeploymentsWidget(QWidget *parent) - : QWidget(parent) - , ui(new Ui::DeploymentsWidget()) -{ - setFixedSize(263, 238); - ui->setupUi(this); - ui->titlebar->setWindowTitleOverride(tr("Deployments")); - //ui->titlebar->setFrameHackEnabled(true); - ui->titlebar->setForceInactive(true); - ui->deploymentOk->setProperty("class", "Primary"); - ui->contents->setAttribute(Qt::WA_TranslucentBackground); - ui->blueLabel->setProperty("class", "addDeployment"); // Should this label style be more generic ? - ui->blueLabel->installEventFilter(this); - ui->blueLabel->setCursor(Qt::PointingHandCursor); -} - -void DeploymentsWidget::paintEvent(QPaintEvent *) -{ - QPainter p(this); - StyledDockWidget::drawFrame(p, rect(), false); - - p.setPen(QColor(35, 36, 37)); - p.drawLine(1, height()-51, width() - 2, height() - 51); - p.setPen(QColor(66, 67, 68)); - p.drawLine(1, height()-50, width() - 2, height() - 50); -} - -bool DeploymentsWidget::eventFilter(QObject *watched, QEvent *event) -{ - if (event->type() == QEvent::MouseButtonRelease) { - addDeployment(); - return true; - } - - return QWidget::eventFilter(watched, event); -} - -void DeploymentsWidget::addDeployment() -{ - QInputDialog::getText(this, tr("Enter deployment name"), QString()); -} - -#include "StyleGallery/moc_DeploymentsWidget.cpp" diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h deleted file mode 100644 index e8dc6a1658..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/DeploymentsWidget.h +++ /dev/null @@ -1,30 +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 - * - */ - -#ifndef DEPLOYMENTSWIDGET_H -#define DEPLOYMENTSWIDGET_H - -#if !defined(Q_MOC_RUN) -#include - -#include -#include -#endif - -class DeploymentsWidget : public QWidget -{ - Q_OBJECT -public: - explicit DeploymentsWidget(QWidget *parent = 0); - void paintEvent(QPaintEvent *event) override; - bool eventFilter(QObject *watched, QEvent *event) override; - void addDeployment(); -private: - QScopedPointer ui; -}; - -#endif diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp deleted file mode 100644 index f5d0095971..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.cpp +++ /dev/null @@ -1,15 +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 - * - */ -#include "MyCombo.h" - -MyComboBox::MyComboBox(QWidget *parent) - : QComboBox(parent) -{ - -} - -#include "StyleGallery/moc_MyCombo.cpp" diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h deleted file mode 100644 index 3c278754cc..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/MyCombo.h +++ /dev/null @@ -1,22 +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 - * - */ -#ifndef MY_COMBO_H -#define MY_COMBO_H - -#if !defined(Q_MOC_RUN) -#include -#endif - -class MyComboBox : public QComboBox -{ - Q_OBJECT -public: - explicit MyComboBox(QWidget *parent = nullptr); -}; - - -#endif diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp deleted file mode 100644 index 573bb4c040..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.cpp +++ /dev/null @@ -1,69 +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 - * - */ - - -// Description : CViewportTitleDlg implementation file - - -#include "ViewportTitleDlg.h" - -#include -#include - -ViewportTitleDlg::ViewportTitleDlg(QWidget* pParent) - : QWidget(pParent), - m_ui(new Ui::ViewportTitleDlg) -{ - m_ui->setupUi(this); - - OnInitDialog(); - m_ui->m_viewportSearch->setIcon(QIcon(":/stylesheet/img/16x16/Search.png")); - - auto clearAction = new QAction(this); - clearAction->setIcon(QIcon(":/stylesheet/img/16x16/lineedit-clear.png")); - - m_ui->m_viewportSearch->setFixedWidth(190); -} - -ViewportTitleDlg::~ViewportTitleDlg() -{ -} - -void ViewportTitleDlg::OnInitDialog() -{ - m_ui->m_titleBtn->setText(m_title); - m_ui->m_sizeStaticCtrl->setText(QString()); - - connect(m_ui->m_maxBtn, &QToolButton::clicked, this, &ViewportTitleDlg::OnMaximize); - connect(m_ui->m_toggleHelpersBtn, &QToolButton::clicked, this, &ViewportTitleDlg::OnToggleHelpers); - connect(m_ui->m_toggleDisplayInfoBtn, &QToolButton::clicked, this, &ViewportTitleDlg::OnToggleDisplayInfo); - - m_ui->m_maxBtn->setProperty("class", "big"); - m_ui->m_toggleHelpersBtn->setProperty("class", "big"); - m_ui->m_toggleDisplayInfoBtn->setProperty("class", "big"); -} - -void ViewportTitleDlg::SetTitle( const QString &title ) -{ - m_title = title; - m_ui->m_titleBtn->setText(m_title); - m_ui->m_viewportSearch->setVisible(title == QLatin1String("Perspective")); -} - -void ViewportTitleDlg::OnMaximize() -{ -} - -void ViewportTitleDlg::OnToggleHelpers() -{ -} - -void ViewportTitleDlg::OnToggleDisplayInfo() -{ -} - -#include "StyleGallery/moc_ViewportTitleDlg.cpp" diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h deleted file mode 100644 index 8d9640553d..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.h +++ /dev/null @@ -1,36 +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 - -#if !defined(Q_MOC_RUN) -#include -#endif - -namespace Ui -{ - class ViewportTitleDlg; -} - -class ViewportTitleDlg : public QWidget -{ - Q_OBJECT -public: - ViewportTitleDlg(QWidget* pParent = nullptr); - virtual ~ViewportTitleDlg(); -protected slots: - void OnMaximize(); - void OnToggleHelpers(); - void OnToggleDisplayInfo(); -private: - void OnInitDialog(); - void SetTitle(const QString &title); - - QString m_title = QLatin1String("Perspective"); - QScopedPointer m_ui; -}; diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.ui b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.ui deleted file mode 100644 index 066dafe912..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/ViewportTitleDlg.ui +++ /dev/null @@ -1,225 +0,0 @@ - - - ViewportTitleDlg - - - - 0 - 0 - 574 - 29 - - - - - 0 - 0 - - - - - 10 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - Static - - - - - - - - 0 - 0 - - - - - 147 - 22 - - - - - 147 - 22 - - - - - - - - FOV: - - - - - - - - 0 - 0 - - - - 120° - - - - - - - Ratio: - - - - - - - - 0 - 0 - - - - - 40 - 0 - - - - - 40 - 16777215 - - - - 000:000 - - - - - - - - 0 - 0 - - - - - 60 - 0 - - - - - 60 - 16777215 - - - - 0000 x 0000 - - - - - - - - - - Toggle display info - - - - :/stylesheet/img/UI20/Info.svg:/stylesheet/img/UI20/Info.svg - - - true - - - - - - - Toggle display helpers - - - - :/stylesheet/img/UI20/Helpers.svg:/stylesheet/img/UI20/Helpers.svg - - - true - - - - - - - - - - - :/stylesheet/img/16x16/Maximize.png:/stylesheet/img/16x16/Maximize.png - - - - 16 - 16 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 5 - 5 - - - - - - - - - AzQtComponents::ToolButtonLineEdit - QLineEdit -
AzQtComponents/Components/ToolButtonLineEdit.h
-
- - AzQtComponents::ButtonDivider - QWidget -
AzQtComponents/Components/ButtonDivider.h
- 1 -
-
- - -
diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/assets.svg b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/assets.svg deleted file mode 100644 index a64626e47a..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/assets.svg +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/deploymentswidget.ui b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/deploymentswidget.ui deleted file mode 100644 index f02c215e4f..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/deploymentswidget.ui +++ /dev/null @@ -1,176 +0,0 @@ - - - DeploymentsWidget - - - - 0 - 0 - 263 - 238 - - - - - 0 - 0 - - - - - 263 - 238 - - - - - 263 - 238 - - - - Form - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - 0 - - - 1 - - - 1 - - - - - - - - - - - 10 - - - 12 - - - - - You must select a default deployment where -you would like to add these resurces. - - - - - - - Add a deployment - - - - - - - New deployment name 3 - - - true - - - - - - - Deployment name 2 - - - - - - - Deployment name 1 - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - 0 - - - 5 - - - - - Cancel - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Ok - - - - - - - - - - - - - AzQtComponents::TitleBar - QWidget -
AzQtComponents/Components/Titlebar.h
- 1 -
-
- - -
diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp deleted file mode 100644 index 4ce21ebf7e..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/main.cpp +++ /dev/null @@ -1,300 +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 - * - */ -#include "mainwidget.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include "MyCombo.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -using namespace AzQtComponents; - -QToolBar * toolBar() -{ - auto t = new QToolBar(QString()); - QAction *a = nullptr; - QMenu *menu = nullptr; - auto but = new QToolButton(); - menu = new QMenu(); - but->setMenu(menu); - but->setCheckable(true); - but->setPopupMode(QToolButton::MenuButtonPopup); - but->setDefaultAction(new QAction(QStringLiteral("Test"), but)); - but->setIcon(QIcon(":/stylesheet/img/undo.png")); - t->addWidget(but); - - a = t->addAction(QIcon(":/stylesheet/img/select.png"), QString()); - a->setCheckable(true); - t->addSeparator(); - - auto tbcb = new AzQtComponents::ToolButtonComboBox(); - tbcb->setIcon(QIcon(":/stylesheet/img/angle.png")); - tbcb->comboBox()->addItem("1"); - tbcb->comboBox()->addItem("2"); - tbcb->comboBox()->addItem("3"); - tbcb->comboBox()->addItem("4"); - t->addWidget(tbcb); - - auto tble = new AzQtComponents::ToolButtonLineEdit(); - tble->setFixedWidth(130); - tble->setIcon(QIcon(":/stylesheet/img/16x16/Search.png")); - t->addWidget(tble); - - auto combo = new QComboBox(); - combo->addItem("Test1"); - combo->addItem("Test3"); - combo->addItem("Selection,Area"); - t->addWidget(combo); - - const QStringList iconNames = { - "Align_object_to_surface", - "Align_to_grid", - "Align_to_Object", - "Angle", - "Asset_Browser", - "Audio", - "Database_view", - "Delete_named_selection", - "Follow_terrain", - "Freeze", - "Gepetto", - "Get_physics_state", - "Grid", - "layer_editor", - "layers", - "LIghting", - "lineedit-clear", - "LOD_generator", - "LUA", - "Material", - "Maximize", - "Measure", - "Move", - "Object_follow_terrain", - "Object_list", - "Redo", - "Reset_physics_state", - "Scale", - "select_object", - "Select", - "Select_terrain", - "Simulate_Physics_on_selected_objects", - "Substance", - "Terrain", - "Terrain_Texture", - "Texture_browser", - "Time_of_Day", - "Trackview", - "Translate", - "UI_editor", - "undo", - "Unfreeze_all", - "Vertex_snapping" }; - - for (auto name : iconNames) { - auto a2 = t->addAction(QIcon(QString(":/stylesheet/img/16x16/%1.png").arg(name)), nullptr); - a2->setToolTip(name); - a2->setDisabled(name == "Audio"); - } - - combo = new MyComboBox(); - combo->addItem("Test1"); - combo->addItem("Test3"); - combo->addItem("Selection,Area"); - t->addWidget(combo); - - return t; -} - -class MainWindow : public QMainWindow -{ -public: - explicit MainWindow(QWidget *parent = nullptr) - : QMainWindow(parent) - , m_settings("org", "app") - { - setAttribute(Qt::WA_DeleteOnClose); - QVariant geoV = m_settings.value("geo"); - if (geoV.isValid()) { - restoreGeometry(geoV.toByteArray()); - } - } - - ~MainWindow() - { - qDebug() << "Deleted mainwindow"; - auto geo = saveGeometry(); - m_settings.setValue("geo", geo); - } -private: - QSettings m_settings; -}; - -static void addMenu(QMainWindow *w, const QString &name) -{ - auto action = w->menuBar()->addAction(name); - auto menu = new QMenu(); - action->setMenu(menu); - menu->addAction("Item 1"); - menu->addAction("Item 2"); - menu->addAction("Item 3"); - menu->addAction("Longer item 4"); - menu->addAction("Longer item 5"); -} - -int main(int argc, char **argv) -{ - QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); - QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); - QGuiApplication::setHighDpiScaleFactorRoundingPolicy(Qt::HighDpiScaleFactorRoundingPolicy::PassThrough); - - QApplication app(argc, argv); - AzQtComponents::O3DEStylesheet stylesheet(&app); - AZ::IO::FixedMaxPath engineRootPath; - { - AZ::ComponentApplication componentApplication(argc, argv); - auto settingsRegistry = AZ::SettingsRegistry::Get(); - settingsRegistry->Get(engineRootPath.Native(), AZ::SettingsRegistryMergeUtils::FilePathKey_EngineRootFolder); - } - stylesheet.initialize(&app, engineRootPath); - - auto wrapper = new AzQtComponents::WindowDecorationWrapper(); - QMainWindow *w = new MainWindow(); - w->setWindowTitle("Component Gallery"); - auto widget = new MainWidget(w); - w->resize(550, 900); - w->setMinimumWidth(500); - wrapper->setGuest(w); - wrapper->enableSaveRestoreGeometry("app", "org", "windowGeometry"); - w->setCentralWidget(widget); - w->setWindowFlags(w->windowFlags() | Qt::WindowStaysOnTopHint); - w->show(); - - auto action = w->menuBar()->addAction("Menu 1"); - - auto fileMenu = new QMenu(); - action->setMenu(fileMenu); - auto openDock = fileMenu->addAction("Open dockwidget"); - QObject::connect(openDock, &QAction::triggered, w, [&w] { - auto dock = new AzQtComponents::StyledDockWidget(QLatin1String("O3DE"), w); - auto button = new QPushButton("Click to dock"); - auto wid = new QWidget(); - auto widLayout = new QVBoxLayout(wid); - widLayout->addWidget(button); - wid->resize(300, 200); - QObject::connect(button, &QPushButton::clicked, dock, [dock]{ - dock->setFloating(!dock->isFloating()); - }); - w->addDockWidget(Qt::BottomDockWidgetArea, dock); - dock->setWidget(wid); - dock->resize(300, 200); - dock->setFloating(true); - dock->show(); - }); - - - QAction* newAction = fileMenu->addAction("Test StyledDetailsTableView"); - newAction->setShortcut(QKeySequence::Delete); - QObject::connect(newAction, &QAction::triggered, w, [w]() { - QDialog temp(w); - temp.setWindowTitle("StyleTableWidget Test"); - - QVBoxLayout* layout = new QVBoxLayout(&temp); - - AzQtComponents::StyledDetailsTableModel* tableModel = new AzQtComponents::StyledDetailsTableModel(); - tableModel->AddColumn("Status", AzQtComponents::StyledDetailsTableModel::StatusIcon); - tableModel->AddColumn("Platform"); - tableModel->AddColumn("Message"); - tableModel->AddColumnAlias("message", "Message"); - - tableModel->AddPrioritizedKey("Data3"); - tableModel->AddDeprioritizedKey("Data1"); - - auto table = new AzQtComponents::StyledDetailsTableView(); - table->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); - table->setModel(tableModel); - - { - AzQtComponents::StyledDetailsTableModel::TableEntry entry; - entry.Add("Message", "A very very long first message. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus et maximus tortor, ac commodo ante. Maecenas porta posuere mauris, vel consectetur arcu ornare interdum. Praesent rhoncus consequat neque, non volutpat mauris cursus a. Proin a nisl quis dui consectetur malesuada a et diam. Integer finibus luctus nibh nec cursus."); - entry.Add("Platform", "PC"); - entry.Add("Status", AzQtComponents::StyledDetailsTableModel::StatusSuccess); - tableModel->AddEntry(entry); - } - - { - AzQtComponents::StyledDetailsTableModel::TableEntry entry; - entry.Add("Message", "Second message. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus et maximus tortor, ac commodo ante. Maecenas porta posuere mauris, vel consectetur arcu ornare interdum. Praesent rhoncus consequat neque, non volutpat mauris cursus a. Proin a nisl quis dui consectetur malesuada a et diam. Integer finibus luctus nibh nec cursus."); - entry.Add("Platform", "PC"); - entry.Add("Status", AzQtComponents::StyledDetailsTableModel::StatusError); - entry.Add("Data1", "Deprioritized item."); - entry.Add("Data3", "Prioritized item."); - tableModel->AddEntry(entry); - } - - for (int i = 0; i < 4; i++) - { - AzQtComponents::StyledDetailsTableModel::TableEntry entry; - entry.Add("message", "Third message"); - entry.Add("Status", AzQtComponents::StyledDetailsTableModel::StatusWarning); - entry.Add("Platform", "PC"); - entry.Add("Index1", "A smaller detail."); - entry.Add("Index2", "Another small detail."); - entry.Add("Index3", "A final small detail."); - tableModel->AddEntry(entry); - } - - layout->addWidget(table); - - temp.exec(); - }); - - QAction* refreshAction = fileMenu->addAction("Refresh Stylesheet"); - QObject::connect(refreshAction, &QAction::triggered, refreshAction, [&stylesheet]() { - stylesheet.Refresh(); - }); - - - addMenu(w, "Menu 2"); - addMenu(w, "Menu 3"); - addMenu(w, "Menu 4"); - - w->addToolBar(toolBar()); - - QObject::connect(widget, &MainWidget::reloadCSS, widget, [] { - qDebug() << "Reloading CSS"; - qApp->setStyleSheet(QString()); - qApp->setStyleSheet("file:///style.qss"); - }); - - return app.exec(); -} diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp deleted file mode 100644 index 49faac1e19..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.cpp +++ /dev/null @@ -1,275 +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 - * - */ -#include "mainwidget.h" -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -using namespace AzQtComponents; - -MainWidget::MainWidget(QWidget *parent) : - QWidget(parent), - ui(new Ui::MainWidget) -{ - ui->setupUi(this); - - QStringList stripeButtonsNames = QStringList(); - stripeButtonsNames << "Controls" << "ItemViews" << "Styles" << "Layouts"; - ui->buttonStripe->addButtons(stripeButtonsNames, ui->stackedWidget->currentIndex()); - connect(ui->buttonStripe, &AzQtComponents::ButtonStripe::buttonClicked, - ui->stackedWidget, &QStackedWidget::setCurrentIndex); - - initializeControls(); - initializeItemViews(); - - connect(ui->button1, &QPushButton::clicked, this, []{ - auto mainwindow = new QMainWindow(); - auto menu = new QMenu("File"); - auto mb = new QMenuBar(); - menu->addAction("Action1"); - menu->addAction("Action2"); - menu->addAction("Action3"); - mb->addMenu(menu); - mb->addAction("Edit"); - mb->addMenu("Create"); - mb->addMenu("Select"); - mb->addMenu("Modify"); - mb->addMenu("Display"); - mainwindow->setMenuBar(mb); - mainwindow->resize(400, 400); - mainwindow->show(); - mainwindow->raise(); - }); -} - -MainWidget::~MainWidget() -{ - delete ui; - qDebug() << "Deleted main widget"; -} - -void MainWidget::mouseReleaseEvent(QMouseEvent *event) -{ - if (event->button() == Qt::MiddleButton) { - emit reloadCSS(); - } -} - -void MainWidget::initializeControls() -{ - auto menu = new QMenu(); - menu->addAction("Test 1"); - menu->addAction("Test 2"); - ui->button3->setMenu(menu); - - auto menu2 = new QMenu(); - menu2->addAction("Test 1"); - menu2->addAction("Test 2"); - ui->disabledButton3->setMenu(menu2); - - ui->selectedCheckBox->setCheckState(Qt::Checked); - ui->enabledCheckBox->setCheckState(Qt::Unchecked); - ui->tristateCheckBox->setCheckState(Qt::PartiallyChecked); - - // TODO: Move these into subclass, can't be done from .css - // Nicolas: or do it in the proxy style - // Sergio: css doesn't work well with proxy style , says Qt's docs. - ui->progressBar->setFormat(QString()); - ui->progressBar->setMaximumHeight(8); - ui->progressBarFull->setFormat(QString()); - ui->progressBarFull->setMaximumHeight(8); - - ui->button2->setProperty("class", "Primary"); - ui->disabledButton1->setProperty("class", "Primary"); - - ui->invalidLineEdit->setFlavor(AzQtComponents::StyledLineEdit::Invalid); - ui->validLineEdit->setFlavor(AzQtComponents::StyledLineEdit::Valid); - ui->questionLineEdit->setFlavor(AzQtComponents::StyledLineEdit::Question); - ui->infoLineEdit->setFlavor(AzQtComponents::StyledLineEdit::Information); - - // In order to try out validator impact on flavor - ui->invalidLineEdit->setPlaceholderText("Enter 4 digits"); - ui->invalidLineEdit->setValidator(new QRegExpValidator(QRegExp("[1-9]\\d{3,3}"))); - - ui->disabledVectorEdit->setColors(qRgb(84, 190, 93), qRgb(226, 82, 67), qRgb(66, 133, 244)); - ui->vectorEdit->setColors(qRgb(84, 190, 93), qRgb(226, 82, 67), qRgb(66, 133, 244)); - ui->unknownVectorEdit->setColors(qRgb(84, 190, 93), qRgb(226, 82, 67), qRgb(66, 133, 244)); - ui->warningVectorEdit->setColors(qRgb(84, 190, 93), qRgb(226, 82, 67), qRgb(66, 133, 244)); - ui->warningVectorEdit->setFlavor(AzQtComponents::VectorEditElement::Invalid); - - QStringList rpy = {tr("R"), tr("P"), tr("Y")}; - ui->disabledRPYVectorEdit->setLabels(rpy); - ui->rPYVectorEdit->setLabels(rpy); - ui->unknownRPYVectorEdit->setLabels(rpy); - ui->warningRPYVectorEdit->setLabels(rpy); - - ui->filterNameLineEdit->setClearButtonEnabled(true); - - ui->comboBox_4->setEnabled(false); - for (int i = 0; i < 10; ++i) { - ui->comboBox->addItem(QStringLiteral("combo 0: Item %1").arg(i)); - ui->comboBox_2->addItem(QStringLiteral("combo 2: Item %1").arg(i)); - ui->comboBox_3->addItem(QStringLiteral("combo 3: Item %1").arg(i)); - ui->comboBox_4->addItem(QStringLiteral("combo 4: Item %1").arg(i)); - ui->comboBox_5->addItem(QStringLiteral("combo 5: Item %1").arg(i)); - ui->comboBox_6->addItem(QStringLiteral("combo 6: Item %1").arg(i)); - } - - ui->allCombo->setProperty("class", "condition"); - ui->allCombo->setFixedWidth(37); - ui->allCombo->setFixedHeight(21); - ui->allCombo->addItem("all"); - ui->allCombo->addItem("any"); - - - // Construct the available tag list. - const int numAvailableTags = 128; - QVector availableTags; - availableTags.reserve(numAvailableTags+8); - - availableTags.push_back("Healthy"); - availableTags.push_back("Tired"); - availableTags.push_back("Laughing"); - availableTags.push_back("Happy"); - availableTags.push_back("Smiling"); - availableTags.push_back("Weapon Left"); - availableTags.push_back("Weapon Right"); - availableTags.push_back("Loooooooooooooooooong Tag"); - - for (const QString& tag : availableTags) - { - ui->searchWidget->AddTypeFilter("Foo", tag); - } - - for (int i = 0; i < numAvailableTags; ++i) - { - QString tagName = "tag" + QString::number(i + 1); - availableTags.push_back(tagName); - if (i < 10) - { - ui->searchWidget->AddTypeFilter("Bar", tagName); - } - } - - ui->tagSelector->Reinit(availableTags); - - // Pre-select some of the tags. - ui->tagSelector->SelectTag("Healthy"); - ui->tagSelector->SelectTag("Laughing"); - ui->tagSelector->SelectTag("Smiling"); - ui->tagSelector->SelectTag("Happy"); - ui->tagSelector->SelectTag("Weapon Left"); - - - ui->toolButton->setProperty("class", "QToolBar"); - ui->toolButton_2->setProperty("class", "QToolBar"); - ui->toolButton_3->setProperty("class", "QToolBar"); - ui->toolButton_4->setProperty("class", "QToolBar"); - ui->toolButton_5->setProperty("class", "QToolBar"); - ui->toolButton_6->setProperty("class", "QToolBar"); - ui->toolButton_7->setProperty("class", "QToolBar"); - ui->toolButton_8->setProperty("class", "QToolBar"); - ui->toolButton_9->setProperty("class", "QToolBar"); - ui->toolButton_10->setProperty("class", "QToolBar"); - ui->toolButton_11->setProperty("class", "QToolBar"); - ui->toolButton_12->setProperty("class", "QToolBar"); - - ui->conditionGroup->appendCondition(); - - // place the viewportTitle menu into the place holder we prepared in the ui file - /*ViewportTitleDlg* viewPortTitleDlg = new ViewportTitleDlg(ui->ViewportTitle); - auto viewPortTitleLayout = new QHBoxLayout(); - viewPortTitleLayout->addWidget(viewPortTitleDlg); - ui->ViewportTitle->setLayout(viewPortTitleLayout);*/ - - QStringList fontSizeMockup = {"8pt", "9pt", "10pt", "11pt", "12pt", "14pt", "16pt", "18pt", "24pt", "30pt",}; - QStringList viewZoomMockup = {"20", "32", "40", "80", "160", "240"}; - const auto tbcbList = ui->toolButtonsComboBoxWidget->findChildren(); - foreach (auto tbcb, tbcbList) { - if (tbcb->objectName().contains("1")) { - tbcb->setIcon(QIcon(QStringLiteral(":/stylesheet/img/16x16/Font_text.png"))); - tbcb->comboBox()->addItems(fontSizeMockup); - } else if (tbcb->objectName().contains("2")) { - tbcb->setIcon(QIcon(QStringLiteral(":/stylesheet/img/16x16/Picture_view.png"))); - tbcb->comboBox()->addItems(viewZoomMockup); - } else if (tbcb->objectName().contains("3")) { - tbcb->setIcon(QIcon(QStringLiteral(":/stylesheet/img/16x16/List_view.png"))); - tbcb->comboBox()->addItems(fontSizeMockup); - } - } - - ui->WidgetHeader1->setForceInactive(true); - ui->WidgetHeader1->setButtons({ AzQtComponents::DockBarButton::DividerButton, AzQtComponents::DockBarButton::MaximizeButton, - AzQtComponents::DockBarButton::DividerButton, AzQtComponents::DockBarButton::CloseButton }); - ui->WidgetHeader1->setWindowTitleOverride("Widget Header"); - ui->WidgetHeader2->setButtons({AzQtComponents::DockBarButton::DividerButton, AzQtComponents::DockBarButton::MaximizeButton, - AzQtComponents::DockBarButton::DividerButton, AzQtComponents::DockBarButton::CloseButton}); - ui->WidgetHeader2->setWindowTitleOverride("Widget Header"); - - ui->NonDockableWidget1->setForceInactive(true); - ui->NonDockableWidget1->setWindowTitleOverride("Non-Dockable Widget"); - ui->NonDockableWidget1->setButtons({ AzQtComponents::DockBarButton::CloseButton }); - ui->NonDockableWidget1->setTearEnabled(false); - ui->NonDockableWidget1->setDragEnabled(false); - ui->NonDockableWidget2->setWindowTitleOverride("Non-Dockable Widget"); - ui->NonDockableWidget2->setButtons({ AzQtComponents::DockBarButton::CloseButton }); - ui->NonDockableWidget2->setTearEnabled(false); - ui->NonDockableWidget2->setDragEnabled(false); - - const auto rpbList = ui->RoundedButtonWidget->findChildren(); - foreach (auto rpb, rpbList) { - if (rpb->objectName().contains("Small")) - rpb->setProperty("class", "smallRounded"); - else - rpb->setProperty("class", "rounded"); - } - - ui->buttonOrange1->setProperty("class", "Primary"); - ui->buttonOrange2->setProperty("class", "Primary"); - - ui->tabWidget->tabBar()->setTabsClosable(true); - connect(ui->tabWidget->tabBar(), &QTabBar::tabCloseRequested, this, [this](int index) { - ui->tabWidget->removeTab(index); - }); -} - -void MainWidget::initializeItemViews() -{ - auto model = new QStandardItemModel(this); - model->setHorizontalHeaderLabels({QString(), tr("Priority"), tr("State"), tr("ID"), tr("Completed"), tr("Platform")}); - - for (int i = 0; i < 20; ++i) { - auto col0Item = new QStandardItem(); - col0Item->setCheckState(Qt::Checked); - col0Item->setData(QVariant(QSize(10, 20)), Qt::SizeHintRole); - col0Item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsUserCheckable); - auto col1Item = new QStandardItem((i < 10) ? tr("Top"): ""); - model->appendRow({ - col0Item, - col1Item, - new QStandardItem(i == 0 ? tr("Running") : (i < 10 ? tr("Failed") : tr("Waiting"))), - new QStandardItem("Environnment/Sky/Cloud/Cloudy-cloud"), - new QStandardItem(QString::number(i)), - new QStandardItem(i % 2 ? tr("Android") : tr("iPhone")) - }); - } - - ui->treeView->setModel(model); - ui->treeView->setSortingEnabled(true); - ui->treeView->setColumnWidth(0, 50); -} - -#include "StyleGallery/moc_mainwidget.cpp" diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h deleted file mode 100644 index 05fd4e327b..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.h +++ /dev/null @@ -1,40 +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 - * - */ -#ifndef MAINWIDGET_H -#define MAINWIDGET_H - -#if !defined(Q_MOC_RUN) -#include -#endif - -namespace Ui { -class MainWidget; -} - -class MainWidget : public QWidget -{ - Q_OBJECT - -public: - explicit MainWidget(QWidget *parent = 0); - ~MainWidget(); - -protected: - void mouseReleaseEvent(QMouseEvent *event) override; - -private: - void initializeControls(); - void initializeItemViews(); - -signals: - void reloadCSS(); - -private: - Ui::MainWidget *ui; -}; - -#endif // MAINWIDGET_H diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.ui b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.ui deleted file mode 100644 index 0330857418..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/mainwidget.ui +++ /dev/null @@ -1,2042 +0,0 @@ - - - MainWidget - - - - 0 - 0 - 592 - 781 - - - - Form - - - - - - - - Qt::Horizontal - - - - 40 - 10 - - - - - - - - - - - Qt::Horizontal - - - - 40 - 10 - - - - - - - - - - 0 - - - - - 0 - - - 0 - - - 0 - - - 0 - - - 6 - - - 16 - - - - - 6 - - - - - true - - - - - - - - - place holder text - - - - - - - - - - false - - - disabled - - - - - - - simple and enabled - - - true - - - - - - - invalid (need 4 digits) - - - - - - - valid - - - - - - - question - - - - - - - information - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - 2 - - - 6 - - - - - Vector3 - - - - - - - true - - - - - - - Vector3 - - - - - - - - - - Vector3 - - - - - - - false - - - - - - - Vector3 - - - - - - - - - - Vector3 - - - - - - - true - - - - - - - Vector3 - - - - - - - - - - Vector3 - - - - - - - false - - - - - - - Vector3 - - - - - - - - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.</span></p></body></html> - - - - - - - 6 - - - - - false - - - Button 1 - - - - - - - false - - - Button 2 - - - - - - - false - - - Button 1 - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Button 1 - - - - - - - Button 2 - - - - - - - Button 1 - - - - - - - - - 6 - - - - - true - - - - - - - - - - true - - - - - - - true - - - - - - - true - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - 6 - - - - - - 0 - 0 - - - - - - - Selected - - - true - - - - - - - Enabled - - - - - - - false - - - Disabled - - - - - - - - - - - 0 - 0 - - - - - - - Tristate checkbox - - - false - - - true - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - 0 - 0 - - - - - - - Selected - - - true - - - - - - - Enabled - - - - - - - false - - - Disabled - - - - - - - - - - - - 7 - - - - - 24 - - - - - - - 100 - - - - - - - - - - - - -45.500000000000000 - - - 100.519999999999996 - - - 48.700000000000003 - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - -50 - - - 100 - - - 50 - - - - - - - - - - - - - - - 100 - - - 24 - - - Qt::Horizontal - - - false - - - - - - - - - 6 - - - - - - Dropdown Default - - - - - New Selection - - - - - - - - - Selection 1 - - - - - Selection 2 - - - - - Selection 3 - - - - - Selection 4 - - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - 10 - - - 50 - - - 50 - - - 50 - - - - - QFrame::NoFrame - - - QFrame::Plain - - - true - - - - - 0 - 0 - 98 - 512 - - - - - 15 - - - - - - 0 - 0 - - - - - 0 - 320 - - - - - 16777215 - 320 - - - - true - - - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.</span></p></body></html> - - - - - - - - 0 - 0 - - - - - item1 - - - - - item2 - - - - - item3 - - - - - - - - - - - - - - 0 - - - - - - 140 - 160 - - - - - 2 - - - - - false - - - ... - - - - :/stylesheet/img/16x16/Select_right.png:/stylesheet/img/16x16/Select_right.png - - - - - - - false - - - ... - - - - :/stylesheet/img/16x16/Move.png:/stylesheet/img/16x16/Move.png - - - - - - - ... - - - - :/stylesheet/img/16x16/Select_right.png:/stylesheet/img/16x16/Select_right.png - - - true - - - true - - - - - - - ... - - - - :/stylesheet/img/16x16/Move.png:/stylesheet/img/16x16/Move.png - - - true - - - true - - - - - - - false - - - ... - - - - :/stylesheet/img/16x16/Translate.png:/stylesheet/img/16x16/Translate.png - - - - - - - ... - - - - :/stylesheet/img/16x16/Translate.png:/stylesheet/img/16x16/Translate.png - - - true - - - true - - - - - - - ... - - - - :/stylesheet/img/16x16/Move.png:/stylesheet/img/16x16/Move.png - - - true - - - - - - - ... - - - - :/stylesheet/img/16x16/Select_right.png:/stylesheet/img/16x16/Select_right.png - - - true - - - - - - - ... - - - - :/stylesheet/img/16x16/Translate.png:/stylesheet/img/16x16/Translate.png - - - true - - - - - - - false - - - ... - - - - :/stylesheet/img/16x16/Scale.png:/stylesheet/img/16x16/Scale.png - - - - - - - ... - - - - :/stylesheet/img/16x16/Scale.png:/stylesheet/img/16x16/Scale.png - - - true - - - true - - - - - - - ... - - - - :/stylesheet/img/16x16/Scale.png:/stylesheet/img/16x16/Scale.png - - - true - - - - - - - - - - - 16777215 - 180 - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - Sample - - - - :/stylesheet/img/16x16/Audio.png:/stylesheet/img/16x16/Audio.png - - - - - - - - - - - 250 - 50 - - - - - - - Text - - - false - - - - Text - - - - - - - - - Text - - - - - - - - - Text - - - - - - - - - Text - - - - - Item 1 - - - - - Item 2 - - - - - Longer Item 3 - - - - - Longer Item 4 - - - - - Item 5 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 25 - 20 - - - - - - - - - - - - 260 - 400 - - - - - 6 - - - - - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 10 - - - - - - - - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 230 - - - - - - - - 2 - - - - Tab 1 - - - - - Tab 2 - - - - - Tab 3 - - - - - - - - - - - - 250 - 60 - - - - - - - - - - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 300 - 20 - - - - - - - - - 250 - 100 - - - - - 300 - 100 - - - - - 8 - - - - - 8 - - - - - - 0 - 0 - - - - - 24 - 24 - - - - - - - - :/stylesheet/img/question.png:/stylesheet/img/question.png - - - - - - - - - - - 0 - 0 - - - - - 24 - 24 - - - - - - - - :/stylesheet/img/question.png:/stylesheet/img/question.png - - - - - - - Support - - - Qt::AlignCenter - - - - - - - - - - - - - - :/stylesheet/img/question_small.png:/stylesheet/img/question_small.png - - - - - - - Support - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - 8 - - - - - - 0 - 0 - - - - - 24 - 24 - - - - - - - - :/stylesheet/img/question.png:/stylesheet/img/question.png - - - - - - - - - - - 0 - 0 - - - - - 24 - 24 - - - - - - - - :/stylesheet/img/question.png:/stylesheet/img/question.png - - - - - - - Support - - - Qt::AlignCenter - - - - - - - - - - - - - - :/stylesheet/img/question_small.png:/stylesheet/img/question_small.png - - - - - - - Support - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - 8 - - - - - - 0 - 0 - - - - - 24 - 24 - - - - - - - - :/stylesheet/img/question.png:/stylesheet/img/question.png - - - - - - - - - - - 0 - 0 - - - - - 24 - 24 - - - - - - - - :/stylesheet/img/question.png:/stylesheet/img/question.png - - - - - - - Support - - - Qt::AlignCenter - - - - - - - - - - - - - - :/stylesheet/img/question_small.png:/stylesheet/img/question_small.png - - - - - - - Support - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - - - - - false - - - Cancel - - - - - - - Cancel - - - - - - - Button - - - - - - - Button - - - - - - - - - - - - - - - 0 - 0 - - - - - 10 - - - - - - - Filter Name: - - - - - - - - 200 - 0 - - - - - 200 - 23 - - - - character - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - 10 - - - - - Show assets which match - - - - - - - - - - of the following conditions: - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - - - - - - - - - Qt::Vertical - - - QSizePolicy::Fixed - - - - 20 - 25 - - - - - - - - - 300 - 0 - - - - - 300 - 16777215 - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - - - - - AzQtComponents::StyledLineEdit - QLineEdit -
AzQtComponents/Components/StyledLineEdit.h
-
- - AzQtComponents::VectorEdit - QWidget -
AzQtComponents/Components/VectorEdit.h
- 1 -
- - AzQtComponents::StyledDoubleSpinBox - QDoubleSpinBox -
AzQtComponents/Components/StyledSpinBox.h
-
- - AzQtComponents::StyledSpinBox - AzQtComponents::StyledDoubleSpinBox -
AzQtComponents/Components/StyledSpinBox.h
-
- - AzQtComponents::ButtonStripe - QWidget -
AzQtComponents/Components/ButtonStripe.h
- 1 -
- - ConditionGroupWidget - QWidget -
AzQtComponents/StyleGallery/ConditionGroupWidget.h
- 1 -
- - AzQtComponents::TagSelector - QWidget -
AzQtComponents/Components/TagSelector.h
- 1 -
- - DeploymentsWidget - QWidget -
AzQtComponents/StyleGallery/DeploymentsWidget.h
- 1 -
- - AzQtComponents::TabWidget - QTabWidget -
AzQtComponents/Components/Widgets/TabWidget.h
- 1 -
- - AzQtComponents::ToolButtonComboBox - QWidget -
AzQtComponents/Components/ToolButtonComboBox.h
- 1 -
- - AzQtComponents::TitleBar - QWidget -
AzQtComponents/Components/Titlebar.h
- 1 -
- - AzQtComponents::ButtonDivider - QWidget -
AzQtComponents/Components/ButtonDivider.h
- 1 -
- - AzQtComponents::FilteredSearchWidget - QWidget -
AzQtComponents/Components/FilteredSearchWidget.h
- 1 -
-
- - - - horizontalSlider - valueChanged(int) - progressBar - setValue(int) - - - 535 - 403 - - - 535 - 375 - - - - -
diff --git a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/triangles.svg b/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/triangles.svg deleted file mode 100644 index 445aa2a462..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/StyleGallery/triangles.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake b/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake deleted file mode 100644 index 5d33f6d8f0..0000000000 --- a/Code/Framework/AzQtComponents/AzQtComponents/azqtcomponents_style_files.cmake +++ /dev/null @@ -1,25 +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 -# -# - -set(FILES - StyleGallery/ConditionGroupWidget.cpp - StyleGallery/ConditionGroupWidget.h - StyleGallery/ConditionWidget.cpp - StyleGallery/ConditionWidget.h - StyleGallery/DeploymentsWidget.cpp - StyleGallery/DeploymentsWidget.h - StyleGallery/deploymentswidget.ui - StyleGallery/main.cpp - StyleGallery/mainwidget.cpp - StyleGallery/mainwidget.h - StyleGallery/mainwidget.ui - StyleGallery/MyCombo.cpp - StyleGallery/MyCombo.h - StyleGallery/ViewportTitleDlg.cpp - StyleGallery/ViewportTitleDlg.h - StyleGallery/ViewportTitleDlg.ui -) diff --git a/Code/Framework/AzQtComponents/CMakeLists.txt b/Code/Framework/AzQtComponents/CMakeLists.txt index 8514df2616..135781140e 100644 --- a/Code/Framework/AzQtComponents/CMakeLists.txt +++ b/Code/Framework/AzQtComponents/CMakeLists.txt @@ -40,24 +40,6 @@ ly_add_target( AZ::AzCore ) -# DEPRECATED: this target was marked as deprecated in the VS filter -ly_add_target( - NAME AmazonStyle APPLICATION - NAMESPACE AZ - AUTOMOC - AUTOUIC - FILES_CMAKE - AzQtComponents/azqtcomponents_style_files.cmake - INCLUDE_DIRECTORIES - PRIVATE - . - AzQtComponents - BUILD_DEPENDENCIES - PRIVATE - 3rdParty::Qt::Widgets - AZ::AzQtComponents -) - ly_add_target( NAME AmazonQtControlGallery APPLICATION NAMESPACE AZ From 16f9eece76872be37b236367b93dafd5927eb9d0 Mon Sep 17 00:00:00 2001 From: pconroy Date: Thu, 1 Jul 2021 14:12:12 -0700 Subject: [PATCH 093/111] Set correct display text for the default and minimal projects. Signed-off-by: pconroy --- Templates/DefaultProject/template.json | 4 ++-- Templates/MinimalProject/template.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Templates/DefaultProject/template.json b/Templates/DefaultProject/template.json index 98cf0fc815..fabfb0cf18 100644 --- a/Templates/DefaultProject/template.json +++ b/Templates/DefaultProject/template.json @@ -4,8 +4,8 @@ "restricted_platform_relative_path": "Templates", "origin": "The primary repo for DefaultProject goes here: i.e. http://www.mydomain.com", "license": "What license DefaultProject uses goes here: i.e. https://opensource.org/licenses/MIT", - "display_name": "Default", - "summary": "A short description of DefaultProject.", + "display_name": "Standard", + "summary": "This template has everything you need to build a full online 3D game or application.", "included_gems": ["Atom","Camera","EMotionFX","UI","Maestro","Input","ImGui"], "canonical_tags": [], "user_tags": [ diff --git a/Templates/MinimalProject/template.json b/Templates/MinimalProject/template.json index 18b10e8cae..a244904578 100644 --- a/Templates/MinimalProject/template.json +++ b/Templates/MinimalProject/template.json @@ -2,8 +2,8 @@ "template_name": "MinimalProject", "origin": "The primary repo for MinimalProject goes here: i.e. http://www.mydomain.com", "license": "What license MinimalProject uses goes here: i.e. https://opensource.org/licenses/MIT", - "display_name": "MinimalProject", - "summary": "A short description of MinimalProject.", + "display_name": "Minimal", + "summary": "This will be a good starting point for developers who are looking for building the game with the bare minimum of gems in O3DE, and adding more when needed. ", "canonical_tags": [], "user_tags": [ "MinimalProject" From adb3b9366c9a4d9a6cbc83a4ec3069bccfdfb5e1 Mon Sep 17 00:00:00 2001 From: pconroy Date: Thu, 1 Jul 2021 12:28:21 -0700 Subject: [PATCH 094/111] Update icons and launcher images to the O3DE logo Signed-off-by: pconroy --- Code/Editor/res/LegacyLogo.bmp | 3 --- Templates/DefaultProject/Template/Resources/GameSDK.ico | 4 ++-- .../DefaultProject/Template/Resources/LegacyLogoLauncher.bmp | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage1024x768.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage1536x2048.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage2048x1536.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage768x1024.png | 4 ++-- .../LaunchImage.launchimage/iPhoneLaunchImage640x1136.png | 4 ++-- .../LaunchImage.launchimage/iPhoneLaunchImage640x960.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadAppIcon152x152.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadAppIcon76x76.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadProAppIcon167x167.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png | 4 ++-- Templates/MinimalProject/Template/Resources/GameSDK.ico | 4 ++-- .../MinimalProject/Template/Resources/LegacyLogoLauncher.bmp | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png | 4 ++-- .../Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png | 4 ++-- .../Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage1024x768.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage1536x2048.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage2048x1536.png | 4 ++-- .../LaunchImage.launchimage/iPadLaunchImage768x1024.png | 4 ++-- .../LaunchImage.launchimage/iPhoneLaunchImage640x1136.png | 4 ++-- .../LaunchImage.launchimage/iPhoneLaunchImage640x960.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadAppIcon152x152.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadAppIcon76x76.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadProAppIcon167x167.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png | 4 ++-- .../TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png | 4 ++-- .../TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png | 4 ++-- 63 files changed, 124 insertions(+), 127 deletions(-) delete mode 100644 Code/Editor/res/LegacyLogo.bmp diff --git a/Code/Editor/res/LegacyLogo.bmp b/Code/Editor/res/LegacyLogo.bmp deleted file mode 100644 index dd2ea18ecc..0000000000 --- a/Code/Editor/res/LegacyLogo.bmp +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:97f4004da6ec1bf07d522d6675f814e53e36923a45084ff5d7e4113e293d4fec -size 117656 diff --git a/Templates/DefaultProject/Template/Resources/GameSDK.ico b/Templates/DefaultProject/Template/Resources/GameSDK.ico index cb935cd926..0be1f28b6c 100644 --- a/Templates/DefaultProject/Template/Resources/GameSDK.ico +++ b/Templates/DefaultProject/Template/Resources/GameSDK.ico @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61efd8df621780af995fc1250918df5e00364ff00f849bef67702cd4b0a152e1 -size 65537 +oid sha256:41239f8345fa91fe546442208461ad3cd17c7a7a7047af45018b97363bfea204 +size 109783 diff --git a/Templates/DefaultProject/Template/Resources/LegacyLogoLauncher.bmp b/Templates/DefaultProject/Template/Resources/LegacyLogoLauncher.bmp index fe0adc54a4..7a35cddd49 100644 --- a/Templates/DefaultProject/Template/Resources/LegacyLogoLauncher.bmp +++ b/Templates/DefaultProject/Template/Resources/LegacyLogoLauncher.bmp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf6d56fe4c367d39bd78500dd34332fcad57ad41241768b52781dbdb60ddd972 -size 347568 +oid sha256:7c8433178baebafe984ca23d9325d3c71b5a177fc3b3b869afbb01a583542fbe +size 462842 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png index 5970ea34ba..d30f2d3686 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 +oid sha256:094620c172320b062f9a1f8cc758ef4bbee11bc0a6049f46ad6b42f9bf613c92 +size 9679 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png index 9e30e09547..5a73a4a54d 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f41a37d2347a617e93bd97adaf6d4c161c471ca3ef7e04b98c65ddda52396dc -size 27833 +oid sha256:f3c651ca45a83d0f68bdaa466826a29b2ca6f674e225d90e68b7dbadc2ba582d +size 6620 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png index aeb29abd0a..a7ec66841f 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b07984494059bf827bc485cbea06d12e0283811face1a18799495f9ba7ae8af1 -size 20779 +oid sha256:f7d5b15add5104d91a03df7d86898f4bc415d095d11c23555b24440497371948 +size 1061 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png index 445a389d61..474378c926 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:148fdae6493d7b7e1bb6cc6aae1861e0469838f54dcb3c15cc157a548c707fec +size 1910 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png index 0904cf7ce8..f9ff1c15e3 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07631f41b8dea80713d2463f81a713a9a93798975b6fb50afbeeb13d26c57fa2 -size 48899 +oid sha256:934502e242ff7a2e34e21eed1424b5e0953e701761d158520b3297944132328e +size 18716 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png index 5970ea34ba..d30f2d3686 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 +oid sha256:094620c172320b062f9a1f8cc758ef4bbee11bc0a6049f46ad6b42f9bf613c92 +size 9679 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png index 445a389d61..474378c926 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:148fdae6493d7b7e1bb6cc6aae1861e0469838f54dcb3c15cc157a548c707fec +size 1910 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png index 1fad9bda96..3359e99cd4 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad83faf98b49f4e37112baedeae726f4f8d71bcdd1961d9cdad31f043f8ca666 -size 24003 +oid sha256:749bcd29d73e5ef2d1ef8b2d878626d0bca09c6b0d5f1c9dc6cefe7b9082c8cc +size 3758 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png index e1517dddb6..f9ff1c15e3 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68529a6c11d5ffa7ecd9d5bbb11ceea28e6852bd45946b525af09602c9a1e1bf -size 48899 +oid sha256:934502e242ff7a2e34e21eed1424b5e0953e701761d158520b3297944132328e +size 18716 diff --git a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png index b425cb685f..a736c7f6b8 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png +++ b/Templates/DefaultProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a70003840b418848b2ce6c18ed7cbbfcd6fcf76598a6601dca8b98d9b6c1a2f -size 114706 +oid sha256:5719043940db268dccd2e20bd9d6aa13131890d43edf002a173714ae33890422 +size 29510 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png index 1249ef3703..9f586d6af3 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31afa7ed44c5d9844c8d6ce08beccac482c3f43590869a3d190d06e2df377ccc -size 137472 +oid sha256:a4018d9df45b4a04d4cf24a40fe01aa7e30e44a9fdd8ad9a41b0d87791786c12 +size 30442 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png index cdb6d5a82a..c978631c22 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0aac8ef9899442820bec0df8bf6434a46cc787d57c5d6d38a04727b8dc310048 -size 338281 +oid sha256:2eea06cb8ad05acefe9664551af5645d52d9763b82473b1fd4a2b2b6f62e96d3 +size 53550 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png index 954d3084c8..a52e832a42 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c07495891f15b138ba09f142777b0f43217bf8be05cbb74ba938319f3425980c -size 321125 +oid sha256:90991aca91ab7222fdb85c03947cff38f549a6492551e7447e0c8f55022aae48 +size 52467 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png index 021319fbc3..3e441fab3b 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6bf6acb92421a453a36fc143ab6cefda14d631ea5e6dbf95c6e252a445fcbac -size 144797 +oid sha256:6c8439a64d18dbff17dd67f6405bf49f99695e9b22fc2cc541dc72c6e3167307 +size 30564 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png index a15fd777fa..e662e9675c 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9ad650fda925b1c076a67d1ef70315fe4f14db888c9fd36ee4eba1d18c1e7d1 -size 166749 +oid sha256:f752615184160d7a78f28d9eef354c86e544f11eb1dde9f651d7acd315b3f2e6 +size 35934 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png index 2855f4069d..2753529fc2 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16f6e9d7bd15fc528d934c252213de8792812e708b1810191c5f1767f7165852 -size 142331 +oid sha256:1a43f1d893e85aa99d335a657ec0f6c13a741db976c033451ab9a2328b8a5970 +size 35559 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png index b0dd493c11..ad18894411 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4901093fa6190bf37291b0fb6de23fba1be8ebbd742775a8565a4106722fbb6 -size 31942 +oid sha256:ebfc95bd4c0cbcc53d0ef9d314d26e09a347a22dabbf210597f405d9ed8646bf +size 7729 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png index 21aa62e96b..888d8cf785 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4ae97c4f44910121a61686862c8342ce598db4cdf9d46b29e96d3cb9e43bd06 -size 22158 +oid sha256:99cb7da9282cfcfa64598455827f27ca6791d45ca0d2c3c2dc090d82468dac03 +size 4447 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png index 6b696a84b2..86aa72016a 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:061e2d0ce8dc852dd298c80f2aed5fee8ea4b87511c00662aa2d00922c0ba3c2 -size 30162 +oid sha256:101568e946f1d4cea86d666187bbf71116bbf62e6eaf6d80bc3c5e2e184bdb15 +size 7938 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png index f3dfa05839..79331c29b1 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0fb4b4b77620d99dae7473b7bd8affe14630419835bd5719167ed200e657fa4f -size 17504 +oid sha256:cf930ffd4efb0b7b627e05aac6e0f56252ea206623e8b5d097d803aa315cdfb8 +size 1812 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png index 5325b805fd..27c4aaef2e 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8aa9b1194f3244025578225a6a87cbc2dd12c70955ff615c8af640ea7f1334f1 -size 19619 +oid sha256:ba5fea53b349e254b4625035a308d5731cb06f6d0adc278874d14db2627962cb +size 3424 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png index 98d8455838..df1630a95a 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c25ffb1af8160b3202977de8c32aaa235e22c643ffd8004e4546c96868ef3b9 -size 18317 +oid sha256:cf087f357cd439d14651073ac079542c60f0648a30dced2a8d19912124b3f8b6 +size 2310 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png index 7482f6c892..4b7f5d6318 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2db961b8f922a552d8ad374fdb56029efd4049a6cde10399b3d961242c82ce53 -size 22571 +oid sha256:421ad4db14c28ed18666158f9ec30747c5b8c757405c1efb32442978911b0c06 +size 4437 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png index da987b86f9..674c6da124 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f39d897a57d4da0a70ede7c91339660b28e9d8c57b3e7d749807b13baa4b85f3 -size 28559 +oid sha256:0d0044ebf7e0a5dd23ed64a1289c705d8f6c3c41a62d65e5a1371058855b8cec +size 6546 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png index 205e025c36..c0c10c2390 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:263b75d58328499eef1f8fa2e64c30706f546badcc0c4464a043b231da93cd0d -size 34969 +oid sha256:3b8717c5f2109dfce1bf7b017278059d4915b524a6eb7e83cfb1926e54ed6869 +size 7383 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png index 0deb4f4f35..27c4aaef2e 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33522ad8a8e826b22dd9ad214f56e63e24bf55c00bd8c845925d848b855dfb48 -size 19619 +oid sha256:ba5fea53b349e254b4625035a308d5731cb06f6d0adc278874d14db2627962cb +size 3424 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png index 78591751d7..9093e13867 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f405c9f3d908d038aea26049e533b0d10955adfac370c7b3b80209997ea706d0 -size 24407 +oid sha256:a32908a839a6cb0ca2a76d6aa60376ba8a14b4428f06c13149ec277514eb5676 +size 4533 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png index 034dcb9fed..674c6da124 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d110f6e151799a2327bcdf5ef94d6fc82b114783a8cc973a8915896679ba4a80 -size 28559 +oid sha256:0d0044ebf7e0a5dd23ed64a1289c705d8f6c3c41a62d65e5a1371058855b8cec +size 6546 diff --git a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png index f0fa89149c..4b7f5d6318 100644 --- a/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png +++ b/Templates/DefaultProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db8f00568fad4e49b05249aaa7a48c9fbf85c8b7a78489c83dc9b8161778bcef -size 22571 +oid sha256:421ad4db14c28ed18666158f9ec30747c5b8c757405c1efb32442978911b0c06 +size 4437 diff --git a/Templates/MinimalProject/Template/Resources/GameSDK.ico b/Templates/MinimalProject/Template/Resources/GameSDK.ico index cb935cd926..0be1f28b6c 100644 --- a/Templates/MinimalProject/Template/Resources/GameSDK.ico +++ b/Templates/MinimalProject/Template/Resources/GameSDK.ico @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61efd8df621780af995fc1250918df5e00364ff00f849bef67702cd4b0a152e1 -size 65537 +oid sha256:41239f8345fa91fe546442208461ad3cd17c7a7a7047af45018b97363bfea204 +size 109783 diff --git a/Templates/MinimalProject/Template/Resources/LegacyLogoLauncher.bmp b/Templates/MinimalProject/Template/Resources/LegacyLogoLauncher.bmp index fe0adc54a4..7a35cddd49 100644 --- a/Templates/MinimalProject/Template/Resources/LegacyLogoLauncher.bmp +++ b/Templates/MinimalProject/Template/Resources/LegacyLogoLauncher.bmp @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf6d56fe4c367d39bd78500dd34332fcad57ad41241768b52781dbdb60ddd972 -size 347568 +oid sha256:7c8433178baebafe984ca23d9325d3c71b5a177fc3b3b869afbb01a583542fbe +size 462842 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png index 5970ea34ba..d30f2d3686 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128 _2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 +oid sha256:094620c172320b062f9a1f8cc758ef4bbee11bc0a6049f46ad6b42f9bf613c92 +size 9679 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png index 9e30e09547..5a73a4a54d 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_128.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f41a37d2347a617e93bd97adaf6d4c161c471ca3ef7e04b98c65ddda52396dc -size 27833 +oid sha256:f3c651ca45a83d0f68bdaa466826a29b2ca6f674e225d90e68b7dbadc2ba582d +size 6620 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png index aeb29abd0a..a7ec66841f 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b07984494059bf827bc485cbea06d12e0283811face1a18799495f9ba7ae8af1 -size 20779 +oid sha256:f7d5b15add5104d91a03df7d86898f4bc415d095d11c23555b24440497371948 +size 1061 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png index 445a389d61..474378c926 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_16_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:148fdae6493d7b7e1bb6cc6aae1861e0469838f54dcb3c15cc157a548c707fec +size 1910 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png index 0904cf7ce8..f9ff1c15e3 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256 _2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07631f41b8dea80713d2463f81a713a9a93798975b6fb50afbeeb13d26c57fa2 -size 48899 +oid sha256:934502e242ff7a2e34e21eed1424b5e0953e701761d158520b3297944132328e +size 18716 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png index 5970ea34ba..d30f2d3686 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_256.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e38257b6917cdf5d73e90e6009f10c8736d62b20c4e785085305075c7e6320e2 -size 32037 +oid sha256:094620c172320b062f9a1f8cc758ef4bbee11bc0a6049f46ad6b42f9bf613c92 +size 9679 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png index 445a389d61..474378c926 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e645142d284de40aafb7a4a858f3df92b6a5ba9b03fa5f1a2d3cb25211597926 -size 21857 +oid sha256:148fdae6493d7b7e1bb6cc6aae1861e0469838f54dcb3c15cc157a548c707fec +size 1910 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png index 1fad9bda96..3359e99cd4 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_32_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad83faf98b49f4e37112baedeae726f4f8d71bcdd1961d9cdad31f043f8ca666 -size 24003 +oid sha256:749bcd29d73e5ef2d1ef8b2d878626d0bca09c6b0d5f1c9dc6cefe7b9082c8cc +size 3758 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png index e1517dddb6..f9ff1c15e3 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68529a6c11d5ffa7ecd9d5bbb11ceea28e6852bd45946b525af09602c9a1e1bf -size 48899 +oid sha256:934502e242ff7a2e34e21eed1424b5e0953e701761d158520b3297944132328e +size 18716 diff --git a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png index b425cb685f..a736c7f6b8 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png +++ b/Templates/MinimalProject/Template/Resources/Platform/Mac/Images.xcassets/TestDPAppIcon.appiconset/icon_512_2x.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a70003840b418848b2ce6c18ed7cbbfcd6fcf76598a6601dca8b98d9b6c1a2f -size 114706 +oid sha256:5719043940db268dccd2e20bd9d6aa13131890d43edf002a173714ae33890422 +size 29510 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png index 1249ef3703..9f586d6af3 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1024x768.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31afa7ed44c5d9844c8d6ce08beccac482c3f43590869a3d190d06e2df377ccc -size 137472 +oid sha256:a4018d9df45b4a04d4cf24a40fe01aa7e30e44a9fdd8ad9a41b0d87791786c12 +size 30442 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png index cdb6d5a82a..c978631c22 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage1536x2048.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0aac8ef9899442820bec0df8bf6434a46cc787d57c5d6d38a04727b8dc310048 -size 338281 +oid sha256:2eea06cb8ad05acefe9664551af5645d52d9763b82473b1fd4a2b2b6f62e96d3 +size 53550 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png index 954d3084c8..a52e832a42 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage2048x1536.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c07495891f15b138ba09f142777b0f43217bf8be05cbb74ba938319f3425980c -size 321125 +oid sha256:90991aca91ab7222fdb85c03947cff38f549a6492551e7447e0c8f55022aae48 +size 52467 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png index 021319fbc3..3e441fab3b 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPadLaunchImage768x1024.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6bf6acb92421a453a36fc143ab6cefda14d631ea5e6dbf95c6e252a445fcbac -size 144797 +oid sha256:6c8439a64d18dbff17dd67f6405bf49f99695e9b22fc2cc541dc72c6e3167307 +size 30564 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png index a15fd777fa..e662e9675c 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x1136.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9ad650fda925b1c076a67d1ef70315fe4f14db888c9fd36ee4eba1d18c1e7d1 -size 166749 +oid sha256:f752615184160d7a78f28d9eef354c86e544f11eb1dde9f651d7acd315b3f2e6 +size 35934 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png index 2855f4069d..2753529fc2 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/LaunchImage.launchimage/iPhoneLaunchImage640x960.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16f6e9d7bd15fc528d934c252213de8792812e708b1810191c5f1767f7165852 -size 142331 +oid sha256:1a43f1d893e85aa99d335a657ec0f6c13a741db976c033451ab9a2328b8a5970 +size 35559 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png index b0dd493c11..ad18894411 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon152x152.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4901093fa6190bf37291b0fb6de23fba1be8ebbd742775a8565a4106722fbb6 -size 31942 +oid sha256:ebfc95bd4c0cbcc53d0ef9d314d26e09a347a22dabbf210597f405d9ed8646bf +size 7729 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png index 21aa62e96b..888d8cf785 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadAppIcon76x76.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e4ae97c4f44910121a61686862c8342ce598db4cdf9d46b29e96d3cb9e43bd06 -size 22158 +oid sha256:99cb7da9282cfcfa64598455827f27ca6791d45ca0d2c3c2dc090d82468dac03 +size 4447 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png index 6b696a84b2..86aa72016a 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadProAppIcon167x167.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:061e2d0ce8dc852dd298c80f2aed5fee8ea4b87511c00662aa2d00922c0ba3c2 -size 30162 +oid sha256:101568e946f1d4cea86d666187bbf71116bbf62e6eaf6d80bc3c5e2e184bdb15 +size 7938 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png index f3dfa05839..79331c29b1 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon29x29.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0fb4b4b77620d99dae7473b7bd8affe14630419835bd5719167ed200e657fa4f -size 17504 +oid sha256:cf930ffd4efb0b7b627e05aac6e0f56252ea206623e8b5d097d803aa315cdfb8 +size 1812 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png index 5325b805fd..27c4aaef2e 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSettingsIcon58x58.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8aa9b1194f3244025578225a6a87cbc2dd12c70955ff615c8af640ea7f1334f1 -size 19619 +oid sha256:ba5fea53b349e254b4625035a308d5731cb06f6d0adc278874d14db2627962cb +size 3424 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png index 98d8455838..df1630a95a 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon40x40.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c25ffb1af8160b3202977de8c32aaa235e22c643ffd8004e4546c96868ef3b9 -size 18317 +oid sha256:cf087f357cd439d14651073ac079542c60f0648a30dced2a8d19912124b3f8b6 +size 2310 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png index 7482f6c892..4b7f5d6318 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPadSpotlightIcon80x80.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2db961b8f922a552d8ad374fdb56029efd4049a6cde10399b3d961242c82ce53 -size 22571 +oid sha256:421ad4db14c28ed18666158f9ec30747c5b8c757405c1efb32442978911b0c06 +size 4437 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png index da987b86f9..674c6da124 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon120x120.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f39d897a57d4da0a70ede7c91339660b28e9d8c57b3e7d749807b13baa4b85f3 -size 28559 +oid sha256:0d0044ebf7e0a5dd23ed64a1289c705d8f6c3c41a62d65e5a1371058855b8cec +size 6546 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png index 205e025c36..c0c10c2390 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneAppIcon180x180.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:263b75d58328499eef1f8fa2e64c30706f546badcc0c4464a043b231da93cd0d -size 34969 +oid sha256:3b8717c5f2109dfce1bf7b017278059d4915b524a6eb7e83cfb1926e54ed6869 +size 7383 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png index 0deb4f4f35..27c4aaef2e 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon58x58.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33522ad8a8e826b22dd9ad214f56e63e24bf55c00bd8c845925d848b855dfb48 -size 19619 +oid sha256:ba5fea53b349e254b4625035a308d5731cb06f6d0adc278874d14db2627962cb +size 3424 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png index 78591751d7..9093e13867 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSettingsIcon87x87.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f405c9f3d908d038aea26049e533b0d10955adfac370c7b3b80209997ea706d0 -size 24407 +oid sha256:a32908a839a6cb0ca2a76d6aa60376ba8a14b4428f06c13149ec277514eb5676 +size 4533 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png index 034dcb9fed..674c6da124 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon120x120.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d110f6e151799a2327bcdf5ef94d6fc82b114783a8cc973a8915896679ba4a80 -size 28559 +oid sha256:0d0044ebf7e0a5dd23ed64a1289c705d8f6c3c41a62d65e5a1371058855b8cec +size 6546 diff --git a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png index f0fa89149c..4b7f5d6318 100644 --- a/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png +++ b/Templates/MinimalProject/Template/Resources/Platform/iOS/Images.xcassets/TestDPAppIcon.appiconset/iPhoneSpotlightIcon80x80.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db8f00568fad4e49b05249aaa7a48c9fbf85c8b7a78489c83dc9b8161778bcef -size 22571 +oid sha256:421ad4db14c28ed18666158f9ec30747c5b8c757405c1efb32442978911b0c06 +size 4437 From 622139b3d51100827517e842b402c8763c0e075f Mon Sep 17 00:00:00 2001 From: pconroy Date: Thu, 1 Jul 2021 14:26:08 -0700 Subject: [PATCH 095/111] Removed missed reference to deleted file. Signed-off-by: pconroy --- Code/Editor/editor_lib_files.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/Code/Editor/editor_lib_files.cmake b/Code/Editor/editor_lib_files.cmake index dcb169f783..5988d9385b 100644 --- a/Code/Editor/editor_lib_files.cmake +++ b/Code/Editor/editor_lib_files.cmake @@ -229,7 +229,6 @@ set(FILES res/warning16x16.ico res/water.bmp res/work_in_progress_icon.ico - res/LegacyLogo.bmp res/MannFileManagerImageList.bmp res/infobar/CameraCollision-default.svg res/infobar/GotoLocation-default.svg From 02f340abbd8c7b39ba5012c9b18320a2c9799f57 Mon Sep 17 00:00:00 2001 From: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> Date: Thu, 1 Jul 2021 18:37:44 -0700 Subject: [PATCH 096/111] Fix resource registration for the EntityOutlinerWidget class in AzToolsFramework. Also moves icons to a more appropriate location. (#1731) Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> --- .../ComponentEntityEditorOutlinerWindow.qrc | 21 --------------- .../UI/Outliner/EntityOutliner.qss | 24 ++++++++--------- .../Outliner/OutlinerDisplayOptionsMenu.cpp | 6 ++--- .../componententityeditorplugin_files.cmake | 1 - .../Images/Outliner}/lock_default.svg | 0 .../Images/Outliner}/lock_default_hover.svg | 0 .../Outliner}/lock_default_transparent.svg | 0 .../Images/Outliner}/lock_on.svg | 0 .../Images/Outliner}/lock_on_hover.svg | 0 .../Images/Outliner}/lock_on_transparent.svg | 0 .../Images/Outliner}/sort_a_to_z.svg | 0 .../Images/Outliner}/sort_manually.svg | 0 .../Images/Outliner}/sort_z_to_a.svg | 0 .../Images/Outliner}/visibility_default.svg | 0 .../Outliner}/visibility_default_hover.svg | 0 .../visibility_default_transparent.svg | 0 .../Images/Outliner}/visibility_on.svg | 0 .../Images/Outliner}/visibility_on_hover.svg | 0 .../Outliner}/visibility_on_transparent.svg | 0 .../AzQtComponents/Images/resources.qrc | 27 +++++++++++++++---- .../UI/Outliner/EntityOutliner.qss | 24 ++++++++--------- .../EntityOutlinerDisplayOptionsMenu.cpp | 6 ++--- .../UI/Outliner/EntityOutlinerWidget.cpp | 8 ++++++ 23 files changed, 60 insertions(+), 57 deletions(-) delete mode 100644 Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/lock_default.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/lock_default_hover.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/lock_default_transparent.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/lock_on.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/lock_on_hover.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/lock_on_transparent.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/sort_a_to_z.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/sort_manually.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/sort_z_to_a.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/visibility_default.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/visibility_default_hover.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/visibility_default_transparent.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/visibility_on.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/visibility_on_hover.svg (100%) rename Code/{Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons => Framework/AzQtComponents/AzQtComponents/Images/Outliner}/visibility_on_transparent.svg (100%) diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc deleted file mode 100644 index 07f79dcb5c..0000000000 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/ComponentEntityEditorOutlinerWindow.qrc +++ /dev/null @@ -1,21 +0,0 @@ - - - Icons/sort_a_to_z.svg - Icons/sort_manually.svg - Icons/sort_z_to_a.svg - - Icons/visibility_default.svg - Icons/visibility_default_hover.svg - Icons/visibility_default_transparent.svg - Icons/visibility_on.svg - Icons/visibility_on_hover.svg - Icons/visibility_on_transparent.svg - - Icons/lock_default.svg - Icons/lock_default_hover.svg - Icons/lock_default_transparent.svg - Icons/lock_on.svg - Icons/lock_on_hover.svg - Icons/lock_on_transparent.svg - - diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss index e3dadf6f22..624c89aad7 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/EntityOutliner.qss @@ -93,37 +93,37 @@ OutlinerCheckBox#VisibilityMixed::indicator:checked OutlinerCheckBox#Visibility::indicator:checked , OutlinerCheckBox#VisibilityMixed::indicator:checked { - image: url(:/visibility_default.svg); + image: url(:/Outliner/visibility_default.svg); } OutlinerCheckBox#Visibility::indicator:unchecked , OutlinerCheckBox#VisibilityMixed::indicator:unchecked { - image: url(:/visibility_on.svg); + image: url(:/Outliner/visibility_on.svg); } OutlinerCheckBox#VisibilityLayerOverride::indicator:checked { - image: url(:/visibility_default_transparent.svg); + image: url(:/Outliner/visibility_default_transparent.svg); } OutlinerCheckBox#VisibilityLayerOverride::indicator:unchecked { - image: url(:/visibility_on_transparent.svg); + image: url(:/Outliner/visibility_on_transparent.svg); } OutlinerCheckBox#VisibilityHover::indicator:checked , OutlinerCheckBox#VisibilityMixedHover::indicator:checked , OutlinerCheckBox#VisibilityLayerOverrideHover::indicator:checked { - image: url(:/visibility_default_hover.svg); + image: url(:/Outliner/visibility_default_hover.svg); } OutlinerCheckBox#VisibilityHover::indicator:unchecked , OutlinerCheckBox#VisibilityMixedHover::indicator:unchecked , OutlinerCheckBox#VisibilityLayerOverrideHover::indicator:unchecked { - image: url(:/visibility_on_hover.svg); + image: url(:/Outliner/visibility_on_hover.svg); } @@ -132,35 +132,35 @@ OutlinerCheckBox#VisibilityHover::indicator:unchecked OutlinerCheckBox#Lock::indicator:checked , OutlinerCheckBox#LockMixed::indicator:checked { - image: url(:/lock_on.svg); + image: url(:/Outliner/lock_on.svg); } OutlinerCheckBox#Lock::indicator:unchecked , OutlinerCheckBox#LockMixed::indicator:unchecked { - image: url(:/lock_default.svg); + image: url(:/Outliner/lock_default.svg); } OutlinerCheckBox#LockLayerOverride::indicator:checked { - image: url(:/lock_on_transparent.svg); + image: url(:/Outliner/lock_on_transparent.svg); } OutlinerCheckBox#LockLayerOverride::indicator:unchecked { - image: url(:/lock_default_transparent.svg); + image: url(:/Outliner/lock_default_transparent.svg); } OutlinerCheckBox#LockHover::indicator:checked , OutlinerCheckBox#LockMixedHover::indicator:checked , OutlinerCheckBox#LockLayerOverrideHover::indicator:checked { - image: url(:/lock_on_hover.svg); + image: url(:/Outliner/lock_on_hover.svg); } OutlinerCheckBox#LockHover::indicator:unchecked , OutlinerCheckBox#LockMixedHover::indicator:unchecked , OutlinerCheckBox#LockLayerOverrideHover::indicator:unchecked { - image: url(:/lock_default_hover.svg); + image: url(:/Outliner/lock_default_hover.svg); } diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp index edc3950336..c1af8d76d7 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Outliner/OutlinerDisplayOptionsMenu.cpp @@ -16,15 +16,15 @@ namespace EntityOutliner DisplayOptionsMenu::DisplayOptionsMenu(QWidget* parent) : QMenu(parent) { - auto sortManually = addAction(QIcon(QStringLiteral(":/sort_manually.svg")), tr("Sort: Manually")); + auto sortManually = addAction(QIcon(QStringLiteral(":/Outliner/sort_manually.svg")), tr("Sort: Manually")); sortManually->setData(static_cast(DisplaySortMode::Manually)); sortManually->setCheckable(true); - auto sortAtoZ = addAction(QIcon(QStringLiteral(":/sort_a_to_z.svg")), tr("Sort: A to Z")); + auto sortAtoZ = addAction(QIcon(QStringLiteral(":/Outliner/sort_a_to_z.svg")), tr("Sort: A to Z")); sortAtoZ->setData(static_cast(DisplaySortMode::AtoZ)); sortAtoZ->setCheckable(true); - auto sortZtoA = addAction(QIcon(QStringLiteral(":/sort_z_to_a.svg")), tr("Sort: Z to A")); + auto sortZtoA = addAction(QIcon(QStringLiteral(":/Outliner/sort_z_to_a.svg")), tr("Sort: Z to A")); sortZtoA->setData(static_cast(DisplaySortMode::ZtoA)); sortZtoA->setCheckable(true); diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake index c22385dd80..1f7c3c0388 100644 --- a/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake +++ b/Code/Editor/Plugins/ComponentEntityEditorPlugin/componententityeditorplugin_files.cmake @@ -12,7 +12,6 @@ set(FILES SandboxIntegration.h SandboxIntegration.cpp ComponentEntityEditorPlugin_precompiled.h - UI/ComponentEntityEditorOutlinerWindow.qrc UI/QComponentEntityEditorMainWindow.h UI/QComponentEntityEditorMainWindow.cpp UI/QComponentLevelEntityEditorMainWindow.h diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_default.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_default.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_default_hover.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_hover.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_default_hover.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_transparent.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_default_transparent.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_default_transparent.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_default_transparent.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_on.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_on.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_on_hover.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_hover.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_on_hover.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_transparent.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_on_transparent.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/lock_on_transparent.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/lock_on_transparent.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_a_to_z.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/sort_a_to_z.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_a_to_z.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/sort_a_to_z.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_manually.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/sort_manually.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_manually.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/sort_manually.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_z_to_a.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/sort_z_to_a.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/sort_z_to_a.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/sort_z_to_a.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_default.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_default.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_default_hover.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_hover.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_default_hover.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_transparent.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_default_transparent.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_default_transparent.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_default_transparent.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_on.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_on.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_on_hover.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_hover.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_on_hover.svg diff --git a/Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_transparent.svg b/Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_on_transparent.svg similarity index 100% rename from Code/Editor/Plugins/ComponentEntityEditorPlugin/UI/Icons/visibility_on_transparent.svg rename to Code/Framework/AzQtComponents/AzQtComponents/Images/Outliner/visibility_on_transparent.svg diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Images/resources.qrc b/Code/Framework/AzQtComponents/AzQtComponents/Images/resources.qrc index 74610dca90..c72687359b 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Images/resources.qrc +++ b/Code/Framework/AzQtComponents/AzQtComponents/Images/resources.qrc @@ -10,11 +10,6 @@ Level/level.svg - - Notifications/checkmark.svg - Notifications/download.svg - Notifications/link.svg - Menu/resolution.svg Menu/debug.svg @@ -31,4 +26,26 @@ Menu/menu.svg Menu/helpers.svg + + Notifications/checkmark.svg + Notifications/download.svg + Notifications/link.svg + + + Outliner/sort_a_to_z.svg + Outliner/sort_manually.svg + Outliner/sort_z_to_a.svg + Outliner/visibility_default.svg + Outliner/visibility_default_hover.svg + Outliner/visibility_default_transparent.svg + Outliner/visibility_on.svg + Outliner/visibility_on_hover.svg + Outliner/visibility_on_transparent.svg + Outliner/lock_default.svg + Outliner/lock_default_hover.svg + Outliner/lock_default_transparent.svg + Outliner/lock_on.svg + Outliner/lock_on_hover.svg + Outliner/lock_on_transparent.svg + diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss index ce2171d748..a8447ffc00 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutliner.qss @@ -87,24 +87,24 @@ AzToolsFramework--EntityOutlinerCheckBox#VisibilityMixed::indicator:checked AzToolsFramework--EntityOutlinerCheckBox#Visibility::indicator:checked , AzToolsFramework--EntityOutlinerCheckBox#VisibilityMixed::indicator:checked { - image: url(:/visibility_default.svg); + image: url(:/Outliner/visibility_default.svg); } AzToolsFramework--EntityOutlinerCheckBox#Visibility::indicator:unchecked , AzToolsFramework--EntityOutlinerCheckBox#VisibilityMixed::indicator:unchecked { - image: url(:/visibility_on.svg); + image: url(:/Outliner/visibility_on.svg); margin-top: 3px; } AzToolsFramework--EntityOutlinerCheckBox#VisibilityOverridden::indicator:checked { - image: url(:/visibility_default_transparent.svg); + image: url(:/Outliner/visibility_default_transparent.svg); } AzToolsFramework--EntityOutlinerCheckBox#VisibilityOverridden::indicator:unchecked { - image: url(:/visibility_on_transparent.svg); + image: url(:/Outliner/visibility_on_transparent.svg); margin-top: 3px; } @@ -112,7 +112,7 @@ AzToolsFramework--EntityOutlinerCheckBox#VisibilityHover::indicator:checked , AzToolsFramework--EntityOutlinerCheckBox#VisibilityMixedHover::indicator:checked , AzToolsFramework--EntityOutlinerCheckBox#VisibilityOverriddenHover::indicator:checked { - image: url(:/visibility_default_hover.svg); + image: url(:/Outliner/visibility_default_hover.svg); margin-top: 3px; } @@ -120,7 +120,7 @@ AzToolsFramework--EntityOutlinerCheckBox#VisibilityHover::indicator:unchecked , AzToolsFramework--EntityOutlinerCheckBox#VisibilityMixedHover::indicator:unchecked , AzToolsFramework--EntityOutlinerCheckBox#VisibilityOverriddenHover::indicator:unchecked { - image: url(:/visibility_on_hover.svg); + image: url(:/Outliner/visibility_on_hover.svg); margin-top: 3px; } @@ -130,24 +130,24 @@ AzToolsFramework--EntityOutlinerCheckBox#VisibilityHover::indicator:unchecked AzToolsFramework--EntityOutlinerCheckBox#Lock::indicator:checked , AzToolsFramework--EntityOutlinerCheckBox#LockMixed::indicator:checked { - image: url(:/lock_on.svg); + image: url(:/Outliner/lock_on.svg); margin-top: 1px; } AzToolsFramework--EntityOutlinerCheckBox#Lock::indicator:unchecked , AzToolsFramework--EntityOutlinerCheckBox#LockMixed::indicator:unchecked { - image: url(:/lock_default.svg); + image: url(:/Outliner/lock_default.svg); } AzToolsFramework--EntityOutlinerCheckBox#LockOverridden::indicator:checked { - image: url(:/lock_on_transparent.svg); + image: url(:/Outliner/lock_on_transparent.svg); } AzToolsFramework--EntityOutlinerCheckBox#LockOverridden::indicator:unchecked { - image: url(:/lock_default_transparent.svg); + image: url(:/Outliner/lock_default_transparent.svg); margin-top: 1px; } @@ -155,7 +155,7 @@ AzToolsFramework--EntityOutlinerCheckBox#LockHover::indicator:checked , AzToolsFramework--EntityOutlinerCheckBox#LockMixedHover::indicator:checked , AzToolsFramework--EntityOutlinerCheckBox#LockOverriddenHover::indicator:checked { - image: url(:/lock_on_hover.svg); + image: url(:/Outliner/lock_on_hover.svg); margin-top: 1px; } @@ -163,6 +163,6 @@ AzToolsFramework--EntityOutlinerCheckBox#LockHover::indicator:unchecked , AzToolsFramework--EntityOutlinerCheckBox#LockMixedHover::indicator:unchecked , AzToolsFramework--EntityOutlinerCheckBox#LockOverriddenHover::indicator:unchecked { - image: url(:/lock_default_hover.svg); + image: url(:/Outliner/lock_default_hover.svg); margin-top: 1px; } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp index 73d5c5cbc4..d33be96b98 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerDisplayOptionsMenu.cpp @@ -17,15 +17,15 @@ namespace AzToolsFramework DisplayOptionsMenu::DisplayOptionsMenu(QWidget* parent) : QMenu(parent) { - auto sortManually = addAction(QIcon(QStringLiteral(":/sort_manually.svg")), tr("Sort: Manually")); + auto sortManually = addAction(QIcon(QStringLiteral(":/Outliner/sort_manually.svg")), tr("Sort: Manually")); sortManually->setData(static_cast(DisplaySortMode::Manually)); sortManually->setCheckable(true); - auto sortAtoZ = addAction(QIcon(QStringLiteral(":/sort_a_to_z.svg")), tr("Sort: A to Z")); + auto sortAtoZ = addAction(QIcon(QStringLiteral(":/Outliner/sort_a_to_z.svg")), tr("Sort: A to Z")); sortAtoZ->setData(static_cast(DisplaySortMode::AtoZ)); sortAtoZ->setCheckable(true); - auto sortZtoA = addAction(QIcon(QStringLiteral(":/sort_z_to_a.svg")), tr("Sort: Z to A")); + auto sortZtoA = addAction(QIcon(QStringLiteral(":/Outliner/sort_z_to_a.svg")), tr("Sort: Z to A")); sortZtoA->setData(static_cast(DisplaySortMode::ZtoA)); sortZtoA->setCheckable(true); diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp index 8324877d95..96479bb54c 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/UI/Outliner/EntityOutlinerWidget.cpp @@ -48,6 +48,12 @@ #include +// This has to live outside of any namespaces due to issues on Linux with calls to Q_INIT_RESOURCE if they are inside a namespace +void initEntityOutlinerWidgetResources() +{ + Q_INIT_RESOURCE(resources); +} + namespace { const int queuedChangeDelay = 16; // milliseconds @@ -143,6 +149,8 @@ namespace AzToolsFramework , m_sortContentQueued(false) , m_dropOperationInProgress(false) { + initEntityOutlinerWidgetResources(); + m_gui = new Ui::EntityOutlinerWidgetUI(); m_gui->setupUi(this); From e13b9ca8295dbae208ce1a1f819fc5a195910542 Mon Sep 17 00:00:00 2001 From: Ken Pruiksma Date: Thu, 1 Jul 2021 21:49:32 -0500 Subject: [PATCH 097/111] [ATOM-15926] Fixing light delegates which were always calculating the attenuation radius automatically for their debug display instead of respecting the user-set attenuation radius. (#1732) Signed-off-by: Ken Pruiksma --- .../Code/Source/CoreLights/CapsuleLightDelegate.cpp | 2 +- .../Code/Source/CoreLights/PolygonLightDelegate.cpp | 2 +- .../Code/Source/CoreLights/QuadLightDelegate.cpp | 2 +- .../Code/Source/CoreLights/SimplePointLightDelegate.cpp | 4 ++-- .../Code/Source/CoreLights/SphereLightDelegate.cpp | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp index 4b9a9b0223..e8257acef0 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/CapsuleLightDelegate.cpp @@ -69,7 +69,7 @@ namespace AZ if (isSelected) { // Attenuation radius shape is just a capsule with the same internal height, but a radius of the attenuation radius. - float radius = CalculateAttenuationRadius(AreaLightComponentConfig::CutoffIntensity); + float radius = GetConfig()->m_attenuationRadius; // Add on the caps for the attenuation radius float scale = GetTransform().GetUniformScale(); diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp index 1db22b4ad8..0a712dda47 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/PolygonLightDelegate.cpp @@ -79,7 +79,7 @@ namespace AZ debugDisplay.SetColor(color); // Draw a Polygon for the attenuation radius - debugDisplay.DrawWireSphere(transform.GetTranslation(), CalculateAttenuationRadius(AreaLightComponentConfig::CutoffIntensity)); + debugDisplay.DrawWireSphere(transform.GetTranslation(), GetConfig()->m_attenuationRadius); debugDisplay.DrawArrow(transform.GetTranslation(), transform.GetTranslation() + transform.GetBasisZ()); } } diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp index b69df642c9..1818088d2d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/QuadLightDelegate.cpp @@ -65,7 +65,7 @@ namespace AZ debugDisplay.SetColor(color); // Draw a quad for the attenuation radius - debugDisplay.DrawWireSphere(transform.GetTranslation(), CalculateAttenuationRadius(AreaLightComponentConfig::CutoffIntensity)); + debugDisplay.DrawWireSphere(transform.GetTranslation(), GetConfig()->m_attenuationRadius); } } diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp index b2835c7dd9..ce198eb8e2 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SimplePointLightDelegate.cpp @@ -48,9 +48,9 @@ namespace AZ if (isSelected) { debugDisplay.SetColor(color); - + // Draw a sphere for the attenuation radius - debugDisplay.DrawWireSphere(transform.GetTranslation(), CalculateAttenuationRadius(AreaLightComponentConfig::CutoffIntensity)); + debugDisplay.DrawWireSphere(transform.GetTranslation(), GetConfig()->m_attenuationRadius); } } } // namespace Render diff --git a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp index 6ade4347f3..5d5ed4c11d 100644 --- a/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp +++ b/Gems/AtomLyIntegration/CommonFeatures/Code/Source/CoreLights/SphereLightDelegate.cpp @@ -53,9 +53,9 @@ namespace AZ if (isSelected) { debugDisplay.SetColor(color); - + // Draw a sphere for the attenuation radius - debugDisplay.DrawWireSphere(transform.GetTranslation(), CalculateAttenuationRadius(AreaLightComponentConfig::CutoffIntensity)); + debugDisplay.DrawWireSphere(transform.GetTranslation(), GetConfig()->m_attenuationRadius); } } From 6a0b8ae6b6ed98012d0a68c9903c7d0c58b64ca8 Mon Sep 17 00:00:00 2001 From: Ken Pruiksma Date: Thu, 1 Jul 2021 21:50:01 -0500 Subject: [PATCH 098/111] [ATOM-15854] Adjusting alpha on grazing angles so it doesn't affect the diffuse response. (#1708) Signed-off-by: Ken Pruiksma --- .../Types/EnhancedPBR_ForwardPass.azsl | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl index 87afd1936d..4150d213a0 100644 --- a/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl +++ b/Gems/Atom/Feature/Common/Assets/Materials/Types/EnhancedPBR_ForwardPass.azsl @@ -324,16 +324,21 @@ PbrLightingOutput ForwardPassPS_Common(VSOutput IN, bool isFrontFace, out float // Finalize Lighting lightingData.FinalizeLighting(surface.transmission.tint); + PbrLightingOutput lightingOutput = GetPbrLightingOutput(surface, lightingData, alpha); + + // ------- Opacity ------- + if (o_opacity_mode == OpacityMode::Blended || o_opacity_mode == OpacityMode::TintedTransparent) { - float fresnelAlpha = FresnelSchlickWithRoughness(lightingData.NdotV, alpha, surface.roughnessLinear).x; // Increase opacity at grazing angles. + // Increase opacity at grazing angles for surfaces with a low m_opacityAffectsSpecularFactor. + // For m_opacityAffectsSpecularFactor values close to 0, that indicates a transparent surface + // like glass, so it becomes less transparent at grazing angles. For m_opacityAffectsSpecularFactor + // values close to 1.0, that indicates the absence of a surface entirely, so this effect should + // not apply. + float fresnelAlpha = FresnelSchlickWithRoughness(lightingData.NdotV, alpha, surface.roughnessLinear).x; alpha = lerp(fresnelAlpha, alpha, MaterialSrg::m_opacityAffectsSpecularFactor); } - PbrLightingOutput lightingOutput = GetPbrLightingOutput(surface, lightingData, alpha); - - // ------- Opacity ------- - // Note: lightingOutput rendertargets are not always used as named, particularly m_diffuseColor (target 0) and // m_specularColor (target 1). Comments below describe the differences when appropriate. @@ -347,11 +352,13 @@ PbrLightingOutput ForwardPassPS_Common(VSOutput IN, bool isFrontFace, out float // It's done this way because surface transparency doesn't really change specular response (eg, glass). lightingOutput.m_diffuseColor.rgb *= lightingOutput.m_diffuseColor.w; // pre-multiply diffuse - + // Add specular. m_opacityAffectsSpecularFactor controls how much the alpha masks out specular contribution. float3 specular = lightingOutput.m_specularColor.rgb; specular = lerp(specular, specular * lightingOutput.m_diffuseColor.w, MaterialSrg::m_opacityAffectsSpecularFactor); lightingOutput.m_diffuseColor.rgb += specular; + + lightingOutput.m_diffuseColor.w = alpha; } else if (o_opacity_mode == OpacityMode::TintedTransparent) { @@ -374,7 +381,7 @@ PbrLightingOutput ForwardPassPS_Common(VSOutput IN, bool isFrontFace, out float specular = lerp(specular, specular * lightingOutput.m_diffuseColor.w, MaterialSrg::m_opacityAffectsSpecularFactor); lightingOutput.m_diffuseColor.rgb += specular; - lightingOutput.m_specularColor.rgb = baseColor * (1.0 - lightingOutput.m_diffuseColor.w); + lightingOutput.m_specularColor.rgb = baseColor * (1.0 - alpha); } else { From a0a36b867fbd8cfac6c2a44f40be1d6fc541f0db Mon Sep 17 00:00:00 2001 From: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> Date: Thu, 1 Jul 2021 20:55:29 -0700 Subject: [PATCH 099/111] LYN-4920 | The project image on the welcome page is disconnected from the Project manager (#1738) * Display the correct project preview image in the Editor's Welcome Dialog. Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> * Minor fixes to variable naming for clarity. Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> --- .../Editor/WelcomeScreen/DefaultActiveProject.png | 3 --- Code/Editor/WelcomeScreen/DefaultProjectImage.png | 3 +++ Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp | 15 +++++++++++++++ Code/Editor/WelcomeScreen/WelcomeScreenDialog.qrc | 2 +- Code/Editor/WelcomeScreen/WelcomeScreenDialog.ui | 5 +---- 5 files changed, 20 insertions(+), 8 deletions(-) delete mode 100644 Code/Editor/WelcomeScreen/DefaultActiveProject.png create mode 100644 Code/Editor/WelcomeScreen/DefaultProjectImage.png diff --git a/Code/Editor/WelcomeScreen/DefaultActiveProject.png b/Code/Editor/WelcomeScreen/DefaultActiveProject.png deleted file mode 100644 index 89c3a7cd47..0000000000 --- a/Code/Editor/WelcomeScreen/DefaultActiveProject.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:263e95489560dac6e5944ef3caba13e598f83ddead324b943ad7735ba015e1a9 -size 70727 diff --git a/Code/Editor/WelcomeScreen/DefaultProjectImage.png b/Code/Editor/WelcomeScreen/DefaultProjectImage.png new file mode 100644 index 0000000000..82234dbf6b --- /dev/null +++ b/Code/Editor/WelcomeScreen/DefaultProjectImage.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cf8339fb51f82a68d2ab475c0476960e75a79d96d239c5b7cd272fbe4990ffe +size 2770 diff --git a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp index a444b95132..f9560aef55 100644 --- a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp +++ b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.cpp @@ -75,6 +75,21 @@ WelcomeScreenDialog::WelcomeScreenDialog(QWidget* pParent) { ui->setupUi(this); + // Set the project preview image + QString projectPreviewPath = QDir(AZ::Utils::GetProjectPath().c_str()).filePath("preview.png"); + QFileInfo projectPreviewPathInfo(projectPreviewPath); + if (!projectPreviewPathInfo.exists() || !projectPreviewPathInfo.isFile()) + { + projectPreviewPath = ":/WelcomeScreenDialog/DefaultProjectImage.png"; + } + ui->activeProjectIcon->setPixmap( + QPixmap(projectPreviewPath).scaled( + ui->activeProjectIcon->size(), + Qt::KeepAspectRatioByExpanding, + Qt::SmoothTransformation + ) + ); + ui->recentLevelTable->setColumnCount(3); ui->recentLevelTable->setMouseTracking(true); ui->recentLevelTable->setContextMenuPolicy(Qt::CustomContextMenu); diff --git a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.qrc b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.qrc index 9e8ff62f48..131fde4e2b 100644 --- a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.qrc +++ b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.qrc @@ -1,5 +1,5 @@ - DefaultActiveProject.png + DefaultProjectImage.png diff --git a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.ui b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.ui index 680b411121..c8f5a4d67c 100644 --- a/Code/Editor/WelcomeScreen/WelcomeScreenDialog.ui +++ b/Code/Editor/WelcomeScreen/WelcomeScreenDialog.ui @@ -158,11 +158,8 @@ - - :/WelcomeScreenDialog/DefaultActiveProject.png - - Qt::AlignCenter + Qt::AlignHCenter | Qt::AlignVCenter
From 097f99dcc6696747965860bfdb1df910bd812b6f Mon Sep 17 00:00:00 2001 From: antonmic Date: Thu, 1 Jul 2021 21:14:04 -0700 Subject: [PATCH 100/111] [ATOM-15864] Added diffuseResponse to lambertian diffuse calculation --- .../Atom/Features/PBR/Lighting/EnhancedLighting.azsli | 2 +- .../ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli | 2 +- .../Atom/Features/PBR/Lighting/StandardLighting.azsli | 2 +- .../Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli index 1b8d2c3001..58e589e9d8 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/EnhancedLighting.azsli @@ -28,7 +28,7 @@ float3 GetDiffuseLighting(Surface surface, LightingData lightingData, float3 lig } else { - diffuse = DiffuseLambertian(surface.albedo, surface.normal, dirToLight); + diffuse = DiffuseLambertian(surface.albedo, surface.normal, dirToLight, lightingData.diffuseResponse); } if(o_clearCoat_feature_enabled) diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli index a3c13459f4..ef256139c0 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/SkinLighting.azsli @@ -28,7 +28,7 @@ float3 GetDiffuseLighting(Surface surface, LightingData lightingData, float3 lig } else { - diffuse = DiffuseLambertian(surface.albedo, surface.normal, dirToLight); + diffuse = DiffuseLambertian(surface.albedo, surface.normal, dirToLight, lightingData.diffuseResponse); } if(o_clearCoat_feature_enabled) diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli index fa754479a0..201aeca321 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Lighting/StandardLighting.azsli @@ -20,7 +20,7 @@ // Then define the Diffuse and Specular lighting functions float3 GetDiffuseLighting(Surface surface, LightingData lightingData, float3 lightIntensity, float3 dirToLight) { - float3 diffuse = DiffuseLambertian(surface.albedo, surface.normal, dirToLight); + float3 diffuse = DiffuseLambertian(surface.albedo, surface.normal, dirToLight, lightingData.diffuseResponse); if(o_clearCoat_feature_enabled) { diff --git a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli index 31626b60b3..81ab4de1d4 100644 --- a/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli +++ b/Gems/Atom/Feature/Common/Assets/ShaderLib/Atom/Features/PBR/Microfacet/Brdf.azsli @@ -21,10 +21,10 @@ // ------- Diffuse Lighting ------- //! Simple Lambertian BRDF. -float3 DiffuseLambertian(float3 albedo, float3 normal, float3 dirToLight) +float3 DiffuseLambertian(float3 albedo, float3 normal, float3 dirToLight, float diffuseResponse) { float NdotL = saturate(dot(normal, dirToLight)); - return albedo * NdotL * INV_PI; + return albedo * NdotL * INV_PI * diffuseResponse; } // Normalized Disney diffuse function taken from Frostbite's PBR course notes (page 10): From e6cb13f14f70633f698017b6c8fbdc160a056fa6 Mon Sep 17 00:00:00 2001 From: AMZN-nggieber <52797929+AMZN-nggieber@users.noreply.github.com> Date: Thu, 1 Jul 2021 21:41:39 -0700 Subject: [PATCH 101/111] Made intial startup screen text more exciting! (#1743) --- Code/Tools/ProjectManager/Source/ProjectsScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp index b1db77ea83..3639f786b4 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp @@ -86,7 +86,7 @@ namespace O3DE::ProjectManager layout->setAlignment(Qt::AlignTop); frame->setLayout(layout); - QLabel* titleLabel = new QLabel(tr("Ready. Set. Create."), this); + QLabel* titleLabel = new QLabel(tr("Ready? Set. Create!"), this); titleLabel->setObjectName("titleLabel"); layout->addWidget(titleLabel); From 9758aea3d60ae2a0e0afceff36adbe29f7d67fa8 Mon Sep 17 00:00:00 2001 From: AMZN-nggieber <52797929+AMZN-nggieber@users.noreply.github.com> Date: Thu, 1 Jul 2021 21:53:54 -0700 Subject: [PATCH 102/111] Project Manager Can Cancel Project Builds (#1694) * Fixed misc building and project screen bugs, added ability to cancel active builds and queued builds * Cancelling in-progress cmake build working Signed-off-by: nggieber --- .../Platform/Linux/PAL_linux_files.cmake | 1 + .../Linux/ProjectBuilderWorker_linux.cpp | 19 ++ .../Platform/Mac/PAL_mac_files.cmake | 1 + .../Platform/Mac/ProjectBuilderWorker_mac.cpp | 19 ++ .../Platform/Windows/PAL_windows_files.cmake | 1 + .../Windows/ProjectBuilderWorker_windows.cpp | 175 +++++++++++++ .../ProjectManager/Source/ProjectBuilder.cpp | 244 ------------------ .../Source/ProjectBuilderController.cpp | 113 ++++++++ ...ctBuilder.h => ProjectBuilderController.h} | 33 +-- .../Source/ProjectBuilderWorker.cpp | 71 +++++ .../Source/ProjectBuilderWorker.h | 52 ++++ .../Source/ProjectButtonWidget.cpp | 50 +++- .../Source/ProjectButtonWidget.h | 17 +- .../Source/ProjectManagerDefs.h | 3 +- .../ProjectManager/Source/ProjectsScreen.cpp | 117 +++++---- .../ProjectManager/Source/ProjectsScreen.h | 7 +- .../project_manager_files.cmake | 6 +- 17 files changed, 589 insertions(+), 340 deletions(-) create mode 100644 Code/Tools/ProjectManager/Platform/Linux/ProjectBuilderWorker_linux.cpp create mode 100644 Code/Tools/ProjectManager/Platform/Mac/ProjectBuilderWorker_mac.cpp create mode 100644 Code/Tools/ProjectManager/Platform/Windows/ProjectBuilderWorker_windows.cpp delete mode 100644 Code/Tools/ProjectManager/Source/ProjectBuilder.cpp create mode 100644 Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp rename Code/Tools/ProjectManager/Source/{ProjectBuilder.h => ProjectBuilderController.h} (66%) create mode 100644 Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp create mode 100644 Code/Tools/ProjectManager/Source/ProjectBuilderWorker.h diff --git a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake index 4c94567793..e8085de555 100644 --- a/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Linux/PAL_linux_files.cmake @@ -7,4 +7,5 @@ set(FILES Python_linux.cpp + ProjectBuilderWorker_linux.cpp ) diff --git a/Code/Tools/ProjectManager/Platform/Linux/ProjectBuilderWorker_linux.cpp b/Code/Tools/ProjectManager/Platform/Linux/ProjectBuilderWorker_linux.cpp new file mode 100644 index 0000000000..71ade6a009 --- /dev/null +++ b/Code/Tools/ProjectManager/Platform/Linux/ProjectBuilderWorker_linux.cpp @@ -0,0 +1,19 @@ +/* + * 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 + +namespace O3DE::ProjectManager +{ + AZ::Outcome ProjectBuilderWorker::BuildProjectForPlatform() + { + QString error = tr("Automatic building on Linux not currently supported!"); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + +} // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake index f3ecbd9678..01d6b5f112 100644 --- a/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Mac/PAL_mac_files.cmake @@ -7,4 +7,5 @@ set(FILES Python_mac.cpp + ProjectBuilderWorker_mac.cpp ) diff --git a/Code/Tools/ProjectManager/Platform/Mac/ProjectBuilderWorker_mac.cpp b/Code/Tools/ProjectManager/Platform/Mac/ProjectBuilderWorker_mac.cpp new file mode 100644 index 0000000000..bb14bfea6b --- /dev/null +++ b/Code/Tools/ProjectManager/Platform/Mac/ProjectBuilderWorker_mac.cpp @@ -0,0 +1,19 @@ +/* + * 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 + +namespace O3DE::ProjectManager +{ + AZ::Outcome ProjectBuilderWorker::BuildProjectForPlatform() + { + QString error = tr("Automatic building on MacOS not currently supported!"); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + +} // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake index 44023b791b..eb45c61807 100644 --- a/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake +++ b/Code/Tools/ProjectManager/Platform/Windows/PAL_windows_files.cmake @@ -7,4 +7,5 @@ set(FILES Python_windows.cpp + ProjectBuilderWorker_windows.cpp ) diff --git a/Code/Tools/ProjectManager/Platform/Windows/ProjectBuilderWorker_windows.cpp b/Code/Tools/ProjectManager/Platform/Windows/ProjectBuilderWorker_windows.cpp new file mode 100644 index 0000000000..87a8a6c0ec --- /dev/null +++ b/Code/Tools/ProjectManager/Platform/Windows/ProjectBuilderWorker_windows.cpp @@ -0,0 +1,175 @@ +/* + * 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 + +namespace O3DE::ProjectManager +{ + AZ::Outcome ProjectBuilderWorker::BuildProjectForPlatform() + { + // Check if we are trying to cancel task + if (QThread::currentThread()->isInterruptionRequested()) + { + QStringToAZTracePrint(BuildCancelled); + return AZ::Failure(BuildCancelled); + } + + QFile logFile(GetLogFilePath()); + if (!logFile.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)) + { + QString error = tr("Failed to open log file."); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + + EngineInfo engineInfo; + + AZ::Outcome engineInfoResult = PythonBindingsInterface::Get()->GetEngineInfo(); + if (engineInfoResult.IsSuccess()) + { + engineInfo = engineInfoResult.GetValue(); + } + else + { + QString error = tr("Failed to get engine info."); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + + QTextStream logStream(&logFile); + if (QThread::currentThread()->isInterruptionRequested()) + { + logFile.close(); + QStringToAZTracePrint(BuildCancelled); + return AZ::Failure(BuildCancelled); + } + + // Show some kind of progress with very approximate estimates + UpdateProgress(++m_progressEstimate); + + QProcessEnvironment currentEnvironment(QProcessEnvironment::systemEnvironment()); + // Append cmake path to PATH incase it is missing + QDir cmakePath(engineInfo.m_path); + cmakePath.cd("cmake/runtime/bin"); + QString pathValue = currentEnvironment.value("PATH"); + pathValue += ";" + cmakePath.path(); + currentEnvironment.insert("PATH", pathValue); + + m_configProjectProcess = new QProcess(this); + m_configProjectProcess->setProcessChannelMode(QProcess::MergedChannels); + m_configProjectProcess->setWorkingDirectory(m_projectInfo.m_path); + m_configProjectProcess->setProcessEnvironment(currentEnvironment); + + m_configProjectProcess->start( + "cmake", + QStringList{ "-B", QDir(m_projectInfo.m_path).filePath(ProjectBuildPathPostfix), "-S", m_projectInfo.m_path, "-G", + "Visual Studio 16", "-DLY_3RDPARTY_PATH=" + engineInfo.m_thirdPartyPath }); + + if (!m_configProjectProcess->waitForStarted()) + { + QString error = tr("Configuring project failed to start."); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + bool containsGeneratingDone = false; + while (m_configProjectProcess->waitForReadyRead(MaxBuildTimeMSecs)) + { + QString configOutput = m_configProjectProcess->readAllStandardOutput(); + + if (configOutput.contains("Generating done")) + { + containsGeneratingDone = true; + } + + logStream << configOutput; + logStream.flush(); + + UpdateProgress(qMin(++m_progressEstimate, 19)); + + if (QThread::currentThread()->isInterruptionRequested()) + { + logFile.close(); + m_configProjectProcess->close(); + QStringToAZTracePrint(BuildCancelled); + return AZ::Failure(BuildCancelled); + } + } + + if (m_configProjectProcess->exitCode() != 0 || !containsGeneratingDone) + { + QString error = tr("Configuring project failed. See log for details."); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + + UpdateProgress(++m_progressEstimate); + + m_buildProjectProcess = new QProcess(this); + m_buildProjectProcess->setProcessChannelMode(QProcess::MergedChannels); + m_buildProjectProcess->setWorkingDirectory(m_projectInfo.m_path); + m_buildProjectProcess->setProcessEnvironment(currentEnvironment); + + m_buildProjectProcess->start( + "cmake", + QStringList{ "--build", QDir(m_projectInfo.m_path).filePath(ProjectBuildPathPostfix), "--target", + m_projectInfo.m_projectName + ".GameLauncher", "Editor", "--config", "profile" }); + + if (!m_buildProjectProcess->waitForStarted()) + { + QString error = tr("Building project failed to start."); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + + // There are a lot of steps when building so estimate around 800 more steps ((100 - 20) * 10) remaining + m_progressEstimate = 200; + while (m_buildProjectProcess->waitForReadyRead(MaxBuildTimeMSecs)) + { + logStream << m_buildProjectProcess->readAllStandardOutput(); + logStream.flush(); + + // Show 1% progress for every 10 steps completed + UpdateProgress(qMin(++m_progressEstimate / 10, 99)); + + if (QThread::currentThread()->isInterruptionRequested()) + { + // QProcess is unable to kill its child processes so we need to ask the operating system to do that for us + QProcess killBuildProcess; + killBuildProcess.setProcessChannelMode(QProcess::MergedChannels); + killBuildProcess.start( + "cmd.exe", QStringList{ "/C", "taskkill", "/pid", QString::number(m_buildProjectProcess->processId()), "/f", "/t" }); + killBuildProcess.waitForFinished(); + + logStream << "Killing Project Build."; + logStream << killBuildProcess.readAllStandardOutput(); + m_buildProjectProcess->kill(); + logFile.close(); + QStringToAZTracePrint(BuildCancelled); + return AZ::Failure(BuildCancelled); + } + } + + if (m_configProjectProcess->exitCode() != 0) + { + QString error = tr("Building project failed. See log for details."); + QStringToAZTracePrint(error); + return AZ::Failure(error); + } + + return AZ::Success(); + } + +} // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilder.cpp b/Code/Tools/ProjectManager/Source/ProjectBuilder.cpp deleted file mode 100644 index a1dddf818c..0000000000 --- a/Code/Tools/ProjectManager/Source/ProjectBuilder.cpp +++ /dev/null @@ -1,244 +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 - * - */ - -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - - -//#define MOCK_BUILD_PROJECT true - -namespace O3DE::ProjectManager -{ - // QProcess::waitForFinished uses -1 to indicate that the process should not timeout - constexpr int MaxBuildTimeMSecs = -1; - - ProjectBuilderWorker::ProjectBuilderWorker(const ProjectInfo& projectInfo) - : QObject() - , m_projectInfo(projectInfo) - { - } - - void ProjectBuilderWorker::BuildProject() - { -#ifdef MOCK_BUILD_PROJECT - for (int i = 0; i < 10; ++i) - { - QThread::sleep(1); - UpdateProgress(i * 10); - } - Done(m_projectPath); -#else - EngineInfo engineInfo; - - AZ::Outcome engineInfoResult = PythonBindingsInterface::Get()->GetEngineInfo(); - if (engineInfoResult.IsSuccess()) - { - engineInfo = engineInfoResult.GetValue(); - } - else - { - emit Done(tr("Failed to get engine info.")); - return; - } - - // Show some kind of progress with very approximate estimates - UpdateProgress(1); - - QProcessEnvironment currentEnvironment(QProcessEnvironment::systemEnvironment()); - // Append cmake path to PATH incase it is missing - QDir cmakePath(engineInfo.m_path); - cmakePath.cd("cmake/runtime/bin"); - QString pathValue = currentEnvironment.value("PATH"); - pathValue += ";" + cmakePath.path(); - currentEnvironment.insert("PATH", pathValue); - - QProcess configProjectProcess; - configProjectProcess.setProcessChannelMode(QProcess::MergedChannels); - configProjectProcess.setWorkingDirectory(m_projectInfo.m_path); - configProjectProcess.setProcessEnvironment(currentEnvironment); - - configProjectProcess.start( - "cmake", - QStringList - { - "-B", - QDir(m_projectInfo.m_path).filePath(ProjectBuildPathPostfix), - "-S", - m_projectInfo.m_path, - "-G", - "Visual Studio 16", - "-DLY_3RDPARTY_PATH=" + engineInfo.m_thirdPartyPath - }); - - if (!configProjectProcess.waitForStarted()) - { - emit Done(tr("Configuring project failed to start.")); - return; - } - if (!configProjectProcess.waitForFinished(MaxBuildTimeMSecs)) - { - WriteErrorLog(configProjectProcess.readAllStandardOutput()); - emit Done(tr("Configuring project timed out. See log for details")); - return; - } - - QString configProjectOutput(configProjectProcess.readAllStandardOutput()); - if (configProjectProcess.exitCode() != 0 || !configProjectOutput.contains("Generating done")) - { - WriteErrorLog(configProjectOutput); - emit Done(tr("Configuring project failed. See log for details.")); - return; - } - - UpdateProgress(20); - - QProcess buildProjectProcess; - buildProjectProcess.setProcessChannelMode(QProcess::MergedChannels); - buildProjectProcess.setWorkingDirectory(m_projectInfo.m_path); - buildProjectProcess.setProcessEnvironment(currentEnvironment); - - buildProjectProcess.start( - "cmake", - QStringList - { - "--build", - QDir(m_projectInfo.m_path).filePath(ProjectBuildPathPostfix), - "--target", - m_projectInfo.m_projectName + ".GameLauncher", - "Editor", - "--config", - "profile" - }); - - if (!buildProjectProcess.waitForStarted()) - { - emit Done(tr("Building project failed to start.")); - return; - } - if (!buildProjectProcess.waitForFinished(MaxBuildTimeMSecs)) - { - WriteErrorLog(configProjectProcess.readAllStandardOutput()); - emit Done(tr("Building project timed out. See log for details")); - return; - } - - QString buildProjectOutput(buildProjectProcess.readAllStandardOutput()); - if (configProjectProcess.exitCode() != 0) - { - WriteErrorLog(buildProjectOutput); - emit Done(tr("Building project failed. See log for details.")); - } - else - { - emit Done(""); - } -#endif - } - - QString ProjectBuilderWorker::LogFilePath() const - { - QDir logFilePath(m_projectInfo.m_path); - logFilePath.cd(ProjectBuildPathPostfix); - return logFilePath.filePath(ProjectBuildErrorLogPathPostfix); - } - - void ProjectBuilderWorker::WriteErrorLog(const QString& log) - { - QFile logFile(LogFilePath()); - // Overwrite file with truncate - if (logFile.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) - { - QTextStream output(&logFile); - output << log; - logFile.close(); - } - } - - ProjectBuilderController::ProjectBuilderController(const ProjectInfo& projectInfo, ProjectButton* projectButton, QWidget* parent) - : QObject() - , m_projectInfo(projectInfo) - , m_projectButton(projectButton) - , m_parent(parent) - { - m_worker = new ProjectBuilderWorker(m_projectInfo); - m_worker->moveToThread(&m_workerThread); - - connect(&m_workerThread, &QThread::finished, m_worker, &ProjectBuilderWorker::deleteLater); - connect(&m_workerThread, &QThread::started, m_worker, &ProjectBuilderWorker::BuildProject); - connect(m_worker, &ProjectBuilderWorker::Done, this, &ProjectBuilderController::HandleResults); - connect(m_worker, &ProjectBuilderWorker::UpdateProgress, this, &ProjectBuilderController::UpdateUIProgress); - } - - ProjectBuilderController::~ProjectBuilderController() - { - m_workerThread.quit(); - m_workerThread.wait(); - } - - void ProjectBuilderController::Start() - { - m_workerThread.start(); - UpdateUIProgress(0); - } - - void ProjectBuilderController::SetProjectButton(ProjectButton* projectButton) - { - m_projectButton = projectButton; - } - - QString ProjectBuilderController::GetProjectPath() const - { - return m_projectInfo.m_path; - } - - void ProjectBuilderController::UpdateUIProgress(int progress) - { - if (m_projectButton) - { - m_projectButton->SetButtonOverlayText(QString("%1 (%2%)\n\n").arg(tr("Building Project..."), QString::number(progress))); - m_projectButton->SetProgressBarValue(progress); - } - } - - void ProjectBuilderController::HandleResults(const QString& result) - { - if (!result.isEmpty()) - { - if (result.contains(tr("log"))) - { - QMessageBox::StandardButton openLog = QMessageBox::critical( - m_parent, - tr("Project Failed to Build!"), - result + tr("\n\nWould you like to view log?"), - QMessageBox::No | QMessageBox::Yes); - - if (openLog == QMessageBox::Yes) - { - // Open application assigned to this file type - QDesktopServices::openUrl(QUrl("file:///" + m_worker->LogFilePath())); - } - } - else - { - QMessageBox::critical(m_parent, tr("Project Failed to Build!"), result); - } - } - - emit Done(); - } -} // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp b/Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp new file mode 100644 index 0000000000..00e2e5d68d --- /dev/null +++ b/Code/Tools/ProjectManager/Source/ProjectBuilderController.cpp @@ -0,0 +1,113 @@ +/* + * 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 + + +namespace O3DE::ProjectManager +{ + ProjectBuilderController::ProjectBuilderController(const ProjectInfo& projectInfo, ProjectButton* projectButton, QWidget* parent) + : QObject() + , m_projectInfo(projectInfo) + , m_projectButton(projectButton) + , m_lastProgress(0) + , m_parent(parent) + { + m_worker = new ProjectBuilderWorker(m_projectInfo); + m_worker->moveToThread(&m_workerThread); + + connect(&m_workerThread, &QThread::finished, m_worker, &ProjectBuilderWorker::deleteLater); + connect(&m_workerThread, &QThread::started, m_worker, &ProjectBuilderWorker::BuildProject); + connect(m_worker, &ProjectBuilderWorker::Done, this, &ProjectBuilderController::HandleResults); + connect(m_worker, &ProjectBuilderWorker::UpdateProgress, this, &ProjectBuilderController::UpdateUIProgress); + } + + ProjectBuilderController::~ProjectBuilderController() + { + m_workerThread.requestInterruption(); + m_workerThread.quit(); + m_workerThread.wait(); + } + + void ProjectBuilderController::Start() + { + m_workerThread.start(); + UpdateUIProgress(0); + } + + void ProjectBuilderController::SetProjectButton(ProjectButton* projectButton) + { + m_projectButton = projectButton; + + if (projectButton) + { + projectButton->SetProjectButtonAction(tr("Cancel Build"), [this] { HandleCancel(); }); + + if (m_lastProgress != 0) + { + UpdateUIProgress(m_lastProgress); + } + } + } + + const ProjectInfo& ProjectBuilderController::GetProjectInfo() const + { + return m_projectInfo; + } + + void ProjectBuilderController::UpdateUIProgress(int progress) + { + m_lastProgress = progress; + if (m_projectButton) + { + m_projectButton->SetButtonOverlayText(QString("%1 (%2%)\n\n").arg(tr("Building Project..."), QString::number(progress))); + m_projectButton->SetProgressBarValue(progress); + } + } + + void ProjectBuilderController::HandleResults(const QString& result) + { + if (!result.isEmpty()) + { + if (result.contains(tr("log"))) + { + QMessageBox::StandardButton openLog = QMessageBox::critical( + m_parent, + tr("Project Failed to Build!"), + result + tr("\n\nWould you like to view log?"), + QMessageBox::No | QMessageBox::Yes); + + if (openLog == QMessageBox::Yes) + { + // Open application assigned to this file type + QDesktopServices::openUrl(QUrl("file:///" + m_worker->GetLogFilePath())); + } + } + else + { + QMessageBox::critical(m_parent, tr("Project Failed to Build!"), result); + } + + emit Done(false); + return; + } + + emit Done(true); + } + + void ProjectBuilderController::HandleCancel() + { + m_workerThread.quit(); + emit Done(false); + } +} // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilder.h b/Code/Tools/ProjectManager/Source/ProjectBuilderController.h similarity index 66% rename from Code/Tools/ProjectManager/Source/ProjectBuilder.h rename to Code/Tools/ProjectManager/Source/ProjectBuilderController.h index e6a539bb36..c3e3026b34 100644 --- a/Code/Tools/ProjectManager/Source/ProjectBuilder.h +++ b/Code/Tools/ProjectManager/Source/ProjectBuilderController.h @@ -12,32 +12,12 @@ #include #endif +QT_FORWARD_DECLARE_CLASS(QProcess) + namespace O3DE::ProjectManager { QT_FORWARD_DECLARE_CLASS(ProjectButton) - - class ProjectBuilderWorker : public QObject - { - Q_OBJECT - - public: - explicit ProjectBuilderWorker(const ProjectInfo& projectInfo); - ~ProjectBuilderWorker() = default; - - QString LogFilePath() const; - - public slots: - void BuildProject(); - - signals: - void UpdateProgress(int progress); - void Done(QString result); - - private: - void WriteErrorLog(const QString& log); - - ProjectInfo m_projectInfo; - }; + QT_FORWARD_DECLARE_CLASS(ProjectBuilderWorker) class ProjectBuilderController : public QObject { @@ -48,15 +28,16 @@ namespace O3DE::ProjectManager ~ProjectBuilderController(); void SetProjectButton(ProjectButton* projectButton); - QString GetProjectPath() const; + const ProjectInfo& GetProjectInfo() const; public slots: void Start(); void UpdateUIProgress(int progress); void HandleResults(const QString& result); + void HandleCancel(); signals: - void Done(); + void Done(bool success = true); private: ProjectInfo m_projectInfo; @@ -64,5 +45,7 @@ namespace O3DE::ProjectManager QThread m_workerThread; ProjectButton* m_projectButton; QWidget* m_parent; + + int m_lastProgress; }; } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp b/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp new file mode 100644 index 0000000000..7b255e1f46 --- /dev/null +++ b/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp @@ -0,0 +1,71 @@ +/* + * 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 + +//#define MOCK_BUILD_PROJECT true + +namespace O3DE::ProjectManager +{ + const QString ProjectBuilderWorker::BuildCancelled = ProjectBuilderWorker::tr("Build Cancelled."); + + ProjectBuilderWorker::ProjectBuilderWorker(const ProjectInfo& projectInfo) + : QObject() + , m_projectInfo(projectInfo) + , m_progressEstimate(0) + { + } + + void ProjectBuilderWorker::BuildProject() + { +#ifdef MOCK_BUILD_PROJECT + for (int i = 0; i < 10; ++i) + { + QThread::sleep(1); + UpdateProgress(i * 10); + } + Done(""); +#else + auto result = BuildProjectForPlatform(); + + if (result.IsSuccess()) + { + emit Done(); + } + else + { + emit Done(result.GetError()); + } +#endif + } + + QString ProjectBuilderWorker::GetLogFilePath() const + { + QDir logFilePath(m_projectInfo.m_path); + // Make directories if they aren't on disk + if (!logFilePath.cd(ProjectBuildPathPostfix)) + { + logFilePath.mkpath(ProjectBuildPathPostfix); + logFilePath.cd(ProjectBuildPathPostfix); + + } + if (!logFilePath.cd(ProjectBuildPathCmakeFiles)) + { + logFilePath.mkpath(ProjectBuildPathCmakeFiles); + logFilePath.cd(ProjectBuildPathCmakeFiles); + } + return logFilePath.filePath(ProjectBuildErrorLogName); + } + + void ProjectBuilderWorker::QStringToAZTracePrint(const QString& error) + { + AZ_TracePrintf("Project Manager", error.toStdString().c_str()); + } +} // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.h b/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.h new file mode 100644 index 0000000000..0557b21831 --- /dev/null +++ b/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.h @@ -0,0 +1,52 @@ +/* + * 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 + +#if !defined(Q_MOC_RUN) +#include +#include + +#include +#endif + +QT_FORWARD_DECLARE_CLASS(QProcess) + +namespace O3DE::ProjectManager +{ + class ProjectBuilderWorker : public QObject + { + // QProcess::waitForFinished uses -1 to indicate that the process should not timeout + static constexpr int MaxBuildTimeMSecs = -1; + // Build was cancelled + static const QString BuildCancelled; + + Q_OBJECT + + public: + explicit ProjectBuilderWorker(const ProjectInfo& projectInfo); + ~ProjectBuilderWorker() = default; + + QString GetLogFilePath() const; + + public slots: + void BuildProject(); + + signals: + void UpdateProgress(int progress); + void Done(QString result = ""); + + private: + AZ::Outcome BuildProjectForPlatform(); + void QStringToAZTracePrint(const QString& error); + + QProcess* m_configProjectProcess = nullptr; + QProcess* m_buildProjectProcess = nullptr; + ProjectInfo m_projectInfo; + + int m_progressEstimate; + }; +} // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp index fef2639498..68a43b3b52 100644 --- a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.cpp @@ -40,8 +40,8 @@ namespace O3DE::ProjectManager m_overlayLabel->setVisible(false); vLayout->addWidget(m_overlayLabel); - m_buildButton = new QPushButton(tr("Build Project"), this); - m_buildButton->setVisible(false); + m_actionButton = new QPushButton(tr("Project Action"), this); + m_actionButton->setVisible(false); m_progressBar = new QProgressBar(this); m_progressBar->setObjectName("labelButtonProgressBar"); @@ -78,9 +78,9 @@ namespace O3DE::ProjectManager return m_progressBar; } - QPushButton* LabelButton::GetBuildButton() + QPushButton* LabelButton::GetActionButton() { - return m_buildButton; + return m_actionButton; } ProjectButton::ProjectButton(const ProjectInfo& projectInfo, QWidget* parent, bool processing) @@ -135,7 +135,6 @@ namespace O3DE::ProjectManager void ProjectButton::ProcessingSetup() { - m_projectImageLabel->GetOverlayLabel()->setAlignment(Qt::AlignHCenter | Qt::AlignBottom); m_projectImageLabel->SetEnabled(false); m_projectImageLabel->SetOverlayText(tr("Processing...\n\n")); @@ -146,8 +145,6 @@ namespace O3DE::ProjectManager void ProjectButton::ReadySetup() { - connect(m_projectImageLabel->GetBuildButton(), &QPushButton::clicked, [this](){ emit BuildProject(m_projectInfo); }); - QMenu* menu = new QMenu(this); menu->addAction(tr("Edit Project Settings..."), this, [this]() { emit EditProject(m_projectInfo.m_path); }); menu->addAction(tr("Build"), this, [this]() { emit BuildProject(m_projectInfo); }); @@ -168,18 +165,38 @@ namespace O3DE::ProjectManager m_projectFooter->layout()->addWidget(projectMenuButton); } - void ProjectButton::SetLaunchButtonEnabled(bool enabled) + void ProjectButton::SetProjectButtonAction(const QString& text, AZStd::function lambda) { - m_projectImageLabel->SetEnabled(enabled); + QPushButton* projectActionButton = m_projectImageLabel->GetActionButton(); + if (!m_actionButtonConnection) + { + QSpacerItem* buttonSpacer = new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding); + m_projectImageLabel->layout()->addItem(buttonSpacer); + m_projectImageLabel->layout()->addWidget(projectActionButton); + projectActionButton->setVisible(true); + } + else + { + disconnect(m_actionButtonConnection); + } + + projectActionButton->setText(text); + m_actionButtonConnection = connect(projectActionButton, &QPushButton::clicked, lambda); } - void ProjectButton::ShowBuildButton(bool show) + void ProjectButton::SetProjectBuildButtonAction() { - QSpacerItem* buttonSpacer = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Expanding); + SetProjectButtonAction(tr("Build Project"), [this]() { emit BuildProject(m_projectInfo); }); + } - m_projectImageLabel->layout()->addItem(buttonSpacer); - m_projectImageLabel->layout()->addWidget(m_projectImageLabel->GetBuildButton()); - m_projectImageLabel->GetBuildButton()->setVisible(show); + void ProjectButton::BuildThisProject() + { + emit BuildProject(m_projectInfo); + } + + void ProjectButton::SetLaunchButtonEnabled(bool enabled) + { + m_projectImageLabel->SetEnabled(enabled); } void ProjectButton::SetButtonOverlayText(const QString& text) @@ -191,4 +208,9 @@ namespace O3DE::ProjectManager { m_projectImageLabel->GetProgressBar()->setValue(progress); } + + LabelButton* ProjectButton::GetLabelButton() + { + return m_projectImageLabel; + } } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h index fe2fd73324..b3b4b2bcf6 100644 --- a/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h +++ b/Code/Tools/ProjectManager/Source/ProjectButtonWidget.h @@ -9,12 +9,15 @@ #if !defined(Q_MOC_RUN) #include +#include #include +#include +#include +#include #endif QT_FORWARD_DECLARE_CLASS(QPixmap) -QT_FORWARD_DECLARE_CLASS(QPushButton) QT_FORWARD_DECLARE_CLASS(QAction) QT_FORWARD_DECLARE_CLASS(QProgressBar) @@ -34,7 +37,7 @@ namespace O3DE::ProjectManager QLabel* GetOverlayLabel(); QProgressBar* GetProgressBar(); - QPushButton* GetBuildButton(); + QPushButton* GetActionButton(); signals: void triggered(); @@ -45,7 +48,7 @@ namespace O3DE::ProjectManager private: QLabel* m_overlayLabel; QProgressBar* m_progressBar; - QPushButton* m_buildButton; + QPushButton* m_actionButton; bool m_enabled = true; }; @@ -58,10 +61,13 @@ namespace O3DE::ProjectManager explicit ProjectButton(const ProjectInfo& m_projectInfo, QWidget* parent = nullptr, bool processing = false); ~ProjectButton() = default; + void SetProjectButtonAction(const QString& text, AZStd::function lambda); + void SetProjectBuildButtonAction(); + void SetLaunchButtonEnabled(bool enabled); - void ShowBuildButton(bool show); void SetButtonOverlayText(const QString& text); void SetProgressBarValue(int progress); + LabelButton* GetLabelButton(); signals: void OpenProject(const QString& projectName); @@ -75,9 +81,12 @@ namespace O3DE::ProjectManager void BaseSetup(); void ProcessingSetup(); void ReadySetup(); + void BuildThisProject(); ProjectInfo m_projectInfo; LabelButton* m_projectImageLabel; QFrame* m_projectFooter; + + QMetaObject::Connection m_actionButtonConnection; }; } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h b/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h index 0b1b3fba4e..f74233db51 100644 --- a/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h +++ b/Code/Tools/ProjectManager/Source/ProjectManagerDefs.h @@ -14,6 +14,7 @@ namespace O3DE::ProjectManager inline constexpr static int ProjectPreviewImageHeight = 280; static const QString ProjectBuildPathPostfix = "build/windows_vs2019"; - static const QString ProjectBuildErrorLogPathPostfix = "CMakeFiles/CMakeProjectBuildError.log"; + static const QString ProjectBuildPathCmakeFiles = "CMakeFiles"; + static const QString ProjectBuildErrorLogName = "CMakeProjectBuildError.log"; static const QString ProjectPreviewImagePath = "preview.png"; } // namespace O3DE::ProjectManager diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp index 3639f786b4..cc3e386118 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.cpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include @@ -43,8 +43,6 @@ #include #include -//#define DISPLAY_PROJECT_DEV_DATA true - namespace O3DE::ProjectManager { ProjectsScreen::ProjectsScreen(QWidget* parent) @@ -164,43 +162,38 @@ namespace O3DE::ProjectManager projectsScrollArea->setWidget(scrollWidget); projectsScrollArea->setWidgetResizable(true); -#ifndef DISPLAY_PROJECT_DEV_DATA - // Iterate once to insert building project first - if (!buildProjectPath.isEmpty()) + QVector nonProcessingProjects; + buildProjectPath = QDir::fromNativeSeparators(buildProjectPath); + for (auto& project : projectsResult.GetValue()) { - buildProjectPath = QDir::fromNativeSeparators(buildProjectPath); - for (auto project : projectsResult.GetValue()) + if (projectButton && !*projectButton) { if (QDir::fromNativeSeparators(project.m_path) == buildProjectPath) { - ProjectButton* buildingProjectButton = CreateProjectButton(project, flowLayout, true); - - if (projectButton) - { - *projectButton = buildingProjectButton; - } - - break; + *projectButton = CreateProjectButton(project, flowLayout, true); + continue; } } + + nonProcessingProjects.append(project); } - for (auto project : projectsResult.GetValue()) -#else - ProjectInfo project = projectsResult.GetValue().at(0); - for (int i = 0; i < 15; i++) -#endif + for (auto& project : nonProcessingProjects) { - // Add all other projects skipping building project - // Safe if no building project because it is just an empty string - if (project.m_path != buildProjectPath) - { - ProjectButton* projectButtonWidget = CreateProjectButton(project, flowLayout); + ProjectButton* projectButtonWidget = CreateProjectButton(project, flowLayout); - if (RequiresBuildProjectIterator(project.m_path) != m_requiresBuild.end()) - { - projectButtonWidget->ShowBuildButton(true); - } + if (BuildQueueContainsProject(project.m_path)) + { + projectButtonWidget->SetProjectButtonAction(tr("Cancel Queued Build"), + [this, project] + { + UnqueueBuildProject(project); + SuggestBuildProjectMsg(project, false); + }); + } + else if (RequiresBuildProjectIterator(project.m_path) != m_requiresBuild.end()) + { + projectButtonWidget->SetProjectBuildButtonAction(); } } @@ -242,9 +235,9 @@ namespace O3DE::ProjectManager // Make sure to update builder with latest Project Button if (m_currentBuilder) { - ProjectButton* projectButtonPtr; + ProjectButton* projectButtonPtr = nullptr; - m_projectsContent = CreateProjectsContent(m_currentBuilder->GetProjectPath(), &projectButtonPtr); + m_projectsContent = CreateProjectsContent(m_currentBuilder->GetProjectInfo().m_path, &projectButtonPtr); m_currentBuilder->SetProjectButton(projectButtonPtr); } else @@ -412,17 +405,15 @@ namespace O3DE::ProjectManager } } - void ProjectsScreen::SuggestBuildProject(const ProjectInfo& projectInfo) + void ProjectsScreen::SuggestBuildProjectMsg(const ProjectInfo& projectInfo, bool showMessage) { - if (projectInfo.m_needsBuild) + if (RequiresBuildProjectIterator(projectInfo.m_path) == m_requiresBuild.end()) { - if (RequiresBuildProjectIterator(projectInfo.m_path) == m_requiresBuild.end()) - { - m_requiresBuild.append(projectInfo); - } - ResetProjectsContent(); + m_requiresBuild.append(projectInfo); } - else + ResetProjectsContent(); + + if (showMessage) { QMessageBox::information(this, tr("Project Should be rebuilt."), @@ -430,6 +421,11 @@ namespace O3DE::ProjectManager } } + void ProjectsScreen::SuggestBuildProject(const ProjectInfo& projectInfo) + { + SuggestBuildProjectMsg(projectInfo, true); + } + void ProjectsScreen::QueueBuildProject(const ProjectInfo& projectInfo) { auto requiredIter = RequiresBuildProjectIterator(projectInfo.m_path); @@ -443,14 +439,22 @@ namespace O3DE::ProjectManager if (m_buildQueue.empty() && !m_currentBuilder) { StartProjectBuild(projectInfo); + // Projects Content is already reset in fuction } else { m_buildQueue.append(projectInfo); + ResetProjectsContent(); } } } + void ProjectsScreen::UnqueueBuildProject(const ProjectInfo& projectInfo) + { + m_buildQueue.removeAll(projectInfo); + ResetProjectsContent(); + } + void ProjectsScreen::NotifyCurrentScreen() { if (ShouldDisplayFirstTimeContent()) @@ -481,7 +485,7 @@ namespace O3DE::ProjectManager return displayFirstTimeContent; } - void ProjectsScreen::StartProjectBuild(const ProjectInfo& projectInfo) + bool ProjectsScreen::StartProjectBuild(const ProjectInfo& projectInfo) { if (ProjectUtils::IsVS2019Installed()) { @@ -501,25 +505,42 @@ namespace O3DE::ProjectManager } else { - ProjectBuildDone(); + SuggestBuildProjectMsg(projectInfo, false); + return false; } + + return true; } + + return false; } - void ProjectsScreen::ProjectBuildDone() + void ProjectsScreen::ProjectBuildDone(bool success) { + ProjectInfo currentBuilderProject; + if (!success) + { + currentBuilderProject = m_currentBuilder->GetProjectInfo(); + } + delete m_currentBuilder; m_currentBuilder = nullptr; - if (!m_buildQueue.empty()) + if (!success) { - StartProjectBuild(m_buildQueue.front()); - m_buildQueue.pop_front(); + SuggestBuildProjectMsg(currentBuilderProject, false); } - else + + if (!m_buildQueue.empty()) { - ResetProjectsContent(); + while (!StartProjectBuild(m_buildQueue.front()) && m_buildQueue.size() > 1) + { + m_buildQueue.pop_front(); + } + m_buildQueue.pop_front(); } + + ResetProjectsContent(); } QList::iterator ProjectsScreen::RequiresBuildProjectIterator(const QString& projectPath) diff --git a/Code/Tools/ProjectManager/Source/ProjectsScreen.h b/Code/Tools/ProjectManager/Source/ProjectsScreen.h index 12152e908b..1ca8448134 100644 --- a/Code/Tools/ProjectManager/Source/ProjectsScreen.h +++ b/Code/Tools/ProjectManager/Source/ProjectsScreen.h @@ -37,7 +37,7 @@ namespace O3DE::ProjectManager protected: void NotifyCurrentScreen() override; - void ProjectBuildDone(); + void SuggestBuildProjectMsg(const ProjectInfo& projectInfo, bool showMessage); protected slots: void HandleNewProjectButton(); @@ -50,6 +50,9 @@ namespace O3DE::ProjectManager void SuggestBuildProject(const ProjectInfo& projectInfo); void QueueBuildProject(const ProjectInfo& projectInfo); + void UnqueueBuildProject(const ProjectInfo& projectInfo); + + void ProjectBuildDone(bool success = true); void paintEvent(QPaintEvent* event) override; @@ -60,7 +63,7 @@ namespace O3DE::ProjectManager void ResetProjectsContent(); bool ShouldDisplayFirstTimeContent(); - void StartProjectBuild(const ProjectInfo& projectInfo); + bool StartProjectBuild(const ProjectInfo& projectInfo); QList::iterator RequiresBuildProjectIterator(const QString& projectPath); bool BuildQueueContainsProject(const QString& projectPath); bool WarnIfInBuildQueue(const QString& projectPath); diff --git a/Code/Tools/ProjectManager/project_manager_files.cmake b/Code/Tools/ProjectManager/project_manager_files.cmake index 0aa7a6c86c..a5632f082c 100644 --- a/Code/Tools/ProjectManager/project_manager_files.cmake +++ b/Code/Tools/ProjectManager/project_manager_files.cmake @@ -39,8 +39,10 @@ set(FILES Source/ProjectInfo.cpp Source/ProjectUtils.h Source/ProjectUtils.cpp - Source/ProjectBuilder.h - Source/ProjectBuilder.cpp + Source/ProjectBuilderWorker.h + Source/ProjectBuilderWorker.cpp + Source/ProjectBuilderController.h + Source/ProjectBuilderController.cpp Source/UpdateProjectSettingsScreen.h Source/UpdateProjectSettingsScreen.cpp Source/NewProjectSettingsScreen.h From 2478c60793a09b170ea36d34b1f414e8069f945c Mon Sep 17 00:00:00 2001 From: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> Date: Fri, 2 Jul 2021 00:22:12 -0500 Subject: [PATCH 103/111] Fixed several o3de python package and install layout issues (#1714) * Updated the CrashLog directory path to save to the project user directory instead of the engine-root directory Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Removing the custom OUTPUT_NAME for the Multiplayer Gem Builder target Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Changed the default value for the LY_3RDPARTY_PATH cache variable to be ~/.o3de/3rdParty This simplifies the first time user experience when running cmake Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed Windows only issue where using creating a VS Solution for an O3DE project on a different drive resulted in an unloaded ":" entry appearing in the solution explorer Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Refactored install layout logic for External Subdirectories Instead of performing a regular expression over the Gems/* directory, now the each external subdirectory including the project (external) directory is recursied over and scanned for any folders that aren't excluded. By default those folders are the [Cc]ache, [Bb]uild and [Uu]ser directories Afterwards the list files to copy over are then split into a directory list and a file list that is filtered by an include regex Next the directory list is iterated over and the directories are copied to the install layout Finally the file list is iterated and the list of files are also copied to the install layout Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed the o3de.bat script changing the working directory before running the o3de.py script Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed exception in engine-template.py script when the create-gem command is invoked with the --template-name parameter that does not correspond to a registered Template Updated the create-project command to register the project with the o3de_manifest.json and the engine with the project as the final step Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed register.py over-registration of non-engine directories when then --this-engine parameter is supplied. All the projects, gems and templates inside of the default o3de_manifest folder locations were being registered with the engine that was being registered Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed register.py register_project_path() method to return 0 when the project path is successfully registered. This issue was that the save_o3de_manifest method "return" value was being checked and that method doesn't actually return a value Added question mark to the engine_template.py to correct text around notifying the user if the project was registered Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Added doc comment on the new cmke ly_get_vs_folder_directory function() Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Added clarifying comment to the ly_setup_others() command logic to copy over directories and files from any external subdirectories(Gems) that are registered with the engine at the time of install Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> * Fixed infinite recursion when trying to create a template with the source directory used to seed the template Signed-off-by: lumberyard-employee-dm <56135373+lumberyard-employee-dm@users.noreply.github.com> --- Code/Editor/IEditorImpl.cpp | 13 +++- Gems/Multiplayer/Code/CMakeLists.txt | 1 - cmake/3rdParty.cmake | 19 ++++- cmake/LYWrappers.cmake | 39 ++++++++-- cmake/Platform/Common/Install_common.cmake | 89 ++++++++++++++-------- scripts/o3de.bat | 4 +- scripts/o3de/o3de/engine_template.py | 47 +++++------- scripts/o3de/o3de/manifest.py | 6 +- scripts/o3de/o3de/register.py | 6 +- 9 files changed, 142 insertions(+), 82 deletions(-) diff --git a/Code/Editor/IEditorImpl.cpp b/Code/Editor/IEditorImpl.cpp index d9e07f0ec4..f472e12fc9 100644 --- a/Code/Editor/IEditorImpl.cpp +++ b/Code/Editor/IEditorImpl.cpp @@ -22,7 +22,9 @@ AZ_PUSH_DISABLE_WARNING(4251 4355 4996, "-Wunknown-warning-option") AZ_POP_DISABLE_WARNING // AzCore +#include #include +#include // AzFramework #include @@ -195,8 +197,15 @@ CEditorImpl::CEditorImpl() m_pAssetBrowserRequestHandler = nullptr; m_assetEditorRequestsHandler = nullptr; - AZ::IO::SystemFile::CreateDir("SessionStatus"); - QFile::setPermissions(m_crashLogFileName, QFileDevice::ReadOther | QFileDevice::WriteOther); + if (auto settingsRegistry = AZ::SettingsRegistry::Get(); settingsRegistry != nullptr) + { + if (AZ::IO::FixedMaxPath crashLogPath; settingsRegistry->Get(crashLogPath.Native(), AZ::SettingsRegistryMergeUtils::FilePathKey_ProjectUserPath)) + { + crashLogPath /= m_crashLogFileName; + AZ::IO::SystemFile::CreateDir(crashLogPath.ParentPath().FixedMaxPathString().c_str()); + QFile::setPermissions(crashLogPath.c_str(), QFileDevice::ReadOther | QFileDevice::WriteOther); + } + } } void CEditorImpl::Initialize() diff --git a/Gems/Multiplayer/Code/CMakeLists.txt b/Gems/Multiplayer/Code/CMakeLists.txt index 89372025e3..ab6e22225b 100644 --- a/Gems/Multiplayer/Code/CMakeLists.txt +++ b/Gems/Multiplayer/Code/CMakeLists.txt @@ -107,7 +107,6 @@ if (PAL_TRAIT_BUILD_HOST_TOOLS) ly_add_target( NAME Multiplayer.Builders GEM_MODULE NAMESPACE Gem - OUTPUT_NAME Gem.Multiplayer.Builders FILES_CMAKE multiplayer_tools_files.cmake INCLUDE_DIRECTORIES diff --git a/cmake/3rdParty.cmake b/cmake/3rdParty.cmake index 204aaedb79..15dde3c3f8 100644 --- a/cmake/3rdParty.cmake +++ b/cmake/3rdParty.cmake @@ -8,7 +8,24 @@ # Do not overcomplicate searching for the 3rdParty path, if it is not easy to find, # the user should define it. -set(LY_3RDPARTY_PATH "" CACHE PATH "Path to the 3rdParty folder") +#! get_default_third_party_folder: Stores the default 3rdParty directory into the supplied output variable +# +# \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) + cmake_path(SET home_directory "$ENV{USERPROFILE}") # Windows + if(NOT EXISTS ${home_directory}) + cmake_path(SET home_directory "$ENV{HOME}") # Unix + if (NOT EXISTS ${home_directory}) + return() + endif() + endif() + + set(${output_third_party_path} ${home_directory}/.o3de/3rdParty PARENT_SCOPE) +endfunction() + +get_default_third_party_folder(o3de_default_third_party_path) +set(LY_3RDPARTY_PATH "${o3de_default_third_party_path}" CACHE PATH "Path to the 3rdParty folder") if(LY_3RDPARTY_PATH) file(TO_CMAKE_PATH ${LY_3RDPARTY_PATH} LY_3RDPARTY_PATH) diff --git a/cmake/LYWrappers.cmake b/cmake/LYWrappers.cmake index 89a4ab29f0..b6daf8b6d7 100644 --- a/cmake/LYWrappers.cmake +++ b/cmake/LYWrappers.cmake @@ -257,14 +257,7 @@ function(ly_add_target) # IDE organization ly_source_groups_from_folders("${ALLFILES}") source_group("Generated Files" REGULAR_EXPRESSION "(${CMAKE_BINARY_DIR})") # Any file coming from the output folder - file(RELATIVE_PATH project_path ${LY_ROOT_FOLDER} ${CMAKE_CURRENT_SOURCE_DIR}) - # Visual Studio cannot load a project with a FOLDER that starts with a "../" relative path - # Strip away any leading ../ and then add a prefix of ExternalTargets/ as that in this scenario - # A relative directory with ../ would be outside of the Lumberyard Engine Root therefore it is external - set(ide_path ${project_path}) - if (${project_path} MATCHES [[^(\.\./)+(.*)]]) - set(ide_path "${CMAKE_MATCH_2}") - endif() + ly_get_vs_folder_directory(${CMAKE_CURRENT_SOURCE_DIR} ide_path) set_property(TARGET ${project_NAME} PROPERTY FOLDER ${ide_path}) @@ -639,3 +632,33 @@ function(ly_de_alias_target target_name output_variable_name) endif() set(${output_variable_name} ${de_aliased_target_name} PARENT_SCOPE) endfunction() + +#! ly_get_vs_folder_directory: Sets the Visual Studio folder name used for organizing vcxproj +# in the IDE +# +# Visual Studio cannot load projects that with a ".." relative path or contain a colon ":" as part of its FOLDER +# Therefore if the .vcxproj is absolute, the drive letter must be removed from the folder name +# +# What this method does is first check if the target being added to the Visual Studio solution is within +# the LY_ROOT_FOLDER(i.e is the LY_ROOT_FOLDER a prefix of the target source directory) +# If it is a relative path to the target is used as the folder name +# Otherwise the target directory would either +# 1. Be a path outside of the LY_ROOT_FOLDER on the same drive. +# In that case forming a relative path would cause it to start with ".." which will not work +# 2. Be an path outside of the LY_ROOT_FOLDER on a different drive +# Here a relative path cannot be formed and therefore the path would start with ":/Path/To/Project" +# Which shows up as unloaded due to containing a colon +# In this scenario the relative part of the path from the drive letter is used as the FOLDER name +# to make sure the projects show up in the loaded .sln +function(ly_get_vs_folder_directory absolute_target_source_dir output_source_dir) + # Get a relative directory to the LY_ROOT_FOLDER if possible for the Visual Studio solution hierarchy + # If a relative path cannot be formed, then retrieve a path with the drive letter stripped from it + cmake_path(IS_PREFIX LY_ROOT_FOLDER ${absolute_target_source_dir} is_target_prefix_of_engine_root) + if(is_target_prefix_of_engine_root) + cmake_path(RELATIVE_PATH absolute_target_source_dir BASE_DIRECTORY ${LY_ROOT_FOLDER} OUTPUT_VARIABLE relative_target_source_dir) + else() + cmake_path(GET absolute_target_source_dir RELATIVE_PART relative_target_source_dir) + endif() + + set(${output_source_dir} ${relative_target_source_dir} PARENT_SCOPE) +endfunction() diff --git a/cmake/Platform/Common/Install_common.cmake b/cmake/Platform/Common/Install_common.cmake index 4c94aa7fc5..7ab6006220 100644 --- a/cmake/Platform/Common/Install_common.cmake +++ b/cmake/Platform/Common/Install_common.cmake @@ -163,6 +163,7 @@ function(ly_setup_target OUTPUT_CONFIGURED_TARGET ALIAS_TARGET_NAME absolute_tar unset(RUNTIME_DEPENDENCIES_PLACEHOLDER) endif() + get_target_property(inteface_build_dependencies_props ${TARGET_NAME} INTERFACE_LINK_LIBRARIES) unset(INTERFACE_BUILD_DEPENDENCIES_PLACEHOLDER) if(inteface_build_dependencies_props) @@ -522,47 +523,75 @@ function(ly_setup_others) DESTINATION . ) - # Gem Source Assets and Registry + # Gem Source Assets and configuration files # Find all gem directories relative to the CMake Source Dir - file(GLOB_RECURSE - gems_assets_path - LIST_DIRECTORIES TRUE - RELATIVE "${LY_ROOT_FOLDER}/" - "Gems/*" - ) - list(FILTER gems_assets_path INCLUDE REGEX "/(Assets|Registry)$") - foreach (gem_assets_path ${gems_assets_path}) - set(gem_abs_assets_path ${LY_ROOT_FOLDER}/${gem_assets_path}/) - if (EXISTS ${gem_abs_assets_path}) + # This first loop is to filter out transient and .gitignore'd folders that should be added to + # the install layout from the root directory. Such as /Cache. + # This is also done to avoid globbing thousands of files in subdirectories that shouldn't + # be processed. + foreach(gem_candidate_dir IN LISTS LY_EXTERNAL_SUBDIRS LY_PROJECTS) + file(REAL_PATH ${gem_candidate_dir} gem_candidate_dir BASE_DIRECTORY ${LY_ROOT_FOLDER}) + # Don't recurse immediately in order to exclude transient source artifacts + file(GLOB + external_subdir_files + LIST_DIRECTORIES TRUE + "${gem_candidate_dir}/*" + ) + # Exclude transient artifacts that shouldn't be copied to the install layout + list(FILTER external_subdir_files EXCLUDE REGEX "/([Bb]uild|[Cc]ache|[Uu]ser)$") + list(APPEND filtered_asset_paths ${external_subdir_files}) + endforeach() + + # At this point the filtered_assets_paths contains the list of all directories and files + # that are non-excluded candidates that can be scanned for target directories and files + # to copy over to the install layout + foreach(filtered_asset_path IN LISTS filtered_asset_paths) + if(IS_DIRECTORY ${filtered_asset_path}) + file(GLOB_RECURSE + recurse_assets_paths + LIST_DIRECTORIES TRUE + "${filtered_asset_path}/*" + ) + set(gem_file_paths ${recurse_assets_paths}) + # Make sure to prepend the current path iteration to the gem_dirs_path to filter + set(gem_dir_paths ${filtered_asset_path} ${recurse_assets_paths}) + + # Gather directories to copy over + # Currently only the Assets, Registry and Config directories are copied over + list(FILTER gem_dir_paths INCLUDE REGEX "/(Assets|Registry|Config)$") + list(APPEND gems_assets_dir_path ${gem_dir_paths}) + else() + set(gem_file_paths ${filtered_asset_path}) + endif() + + # Gather files to copy over + # Currently only the gem.json file is copied over + list(FILTER gem_file_paths INCLUDE REGEX "/(gem.json)$") + list(APPEND gems_assets_file_path "${gem_file_paths}") + endforeach() + + # gem directories to install + foreach(gem_absolute_dir_path ${gems_assets_dir_path}) + cmake_path(RELATIVE_PATH gem_absolute_dir_path BASE_DIRECTORY ${LY_ROOT_FOLDER} OUTPUT_VARIABLE gem_relative_dir_path) + if (EXISTS ${gem_absolute_dir_path}) # The trailing slash is IMPORTANT here as that is needed to prevent # the "Assets" folder from being copied underneath the /Assets folder - install(DIRECTORY ${gem_abs_assets_path} - DESTINATION ${gem_assets_path} + install(DIRECTORY "${gem_absolute_dir_path}/" + DESTINATION ${gem_relative_dir_path} ) endif() endforeach() - # gem.json files - file(GLOB_RECURSE - gems_json_path - LIST_DIRECTORIES FALSE - RELATIVE "${LY_ROOT_FOLDER}" - "Gems/*/gem.json" - ) - foreach(gem_json_path ${gems_json_path}) - get_filename_component(gem_relative_path ${gem_json_path} DIRECTORY) - install(FILES ${gem_json_path} - DESTINATION ${gem_relative_path} + # gem files to install + foreach(gem_absolute_file_path ${gems_assets_file_path}) + cmake_path(RELATIVE_PATH gem_absolute_file_path BASE_DIRECTORY ${LY_ROOT_FOLDER} OUTPUT_VARIABLE gem_relative_file_path) + cmake_path(GET gem_relative_file_path PARENT_PATH gem_relative_parent_dir) + install(FILES ${gem_absolute_file_path} + DESTINATION ${gem_relative_parent_dir} ) endforeach() - # Additional files needed by gems - install(DIRECTORY - ${LY_ROOT_FOLDER}/Gems/Atom/Asset/ImageProcessingAtom/Config - DESTINATION Gems/Atom/Asset/ImageProcessingAtom - ) - # Templates install(DIRECTORY ${LY_ROOT_FOLDER}/Templates diff --git a/scripts/o3de.bat b/scripts/o3de.bat index 98603bbeb2..b7e3a67261 100644 --- a/scripts/o3de.bat +++ b/scripts/o3de.bat @@ -9,7 +9,7 @@ REM pushd %~dp0% CD %~dp0.. SET "BASE_PATH=%CD%" -CD %~dp0 +popd SET "PYTHON_DIRECTORY=%BASE_PATH%\python" IF EXIST "%PYTHON_DIRECTORY%" GOTO pythonPathAvailable GOTO pythonDirNotFound @@ -25,10 +25,8 @@ GOTO fail ECHO Python executable not found: %PYTHON_EXECUTABLE% GOTO fail :fail -popd EXIT /b 1 :end -popd EXIT /b %ERRORLEVEL% diff --git a/scripts/o3de/o3de/engine_template.py b/scripts/o3de/o3de/engine_template.py index e424288eb5..1bc2cfc9fc 100755 --- a/scripts/o3de/o3de/engine_template.py +++ b/scripts/o3de/o3de/engine_template.py @@ -17,7 +17,7 @@ import uuid import re -from o3de import manifest, validation, utils +from o3de import manifest, register, validation, utils logger = logging.getLogger() logging.basicConfig() @@ -388,10 +388,11 @@ def create_template(source_path: pathlib.Path, if not source_path: logger.error('Src path cannot be empty.') return 1 - if not os.path.isdir(source_path): + if not source_path.is_dir(): logger.error(f'Src path {source_path} is not a folder.') return 1 + source_path = source_path.resolve() # source_name is now the last component of the source_path if not source_name: source_name = os.path.basename(source_path) @@ -401,11 +402,11 @@ def create_template(source_path: pathlib.Path, if not template_path: logger.info(f'Template path empty. Using source name {source_name}') template_path = source_name - if not os.path.isabs(template_path): + if not template_path.is_absolute(): default_templates_folder = manifest.get_registered(default_folder='templates') - template_path = default_templates_folder/ template_path + template_path = default_templates_folder / template_path logger.info(f'Template path not a full path. Using default templates folder {template_path}') - if not force and os.path.isdir(template_path): + if not force and template_path.is_dir(): logger.error(f'Template path {template_path} already exists.') return 1 @@ -415,8 +416,7 @@ def create_template(source_path: pathlib.Path, except ValueError: pass else: - logger.error(f'Template output path {template_path} cannot be a subdirectory of the source_path {source_path}:\n' - f'{err}') + logger.error(f'Template output path {template_path} cannot be a subdirectory of the source_path {source_path}\n') return 1 # template name is now the last component of the template_path @@ -1200,7 +1200,7 @@ def create_from_template(destination_path: pathlib.Path, if not destination_name: # destination name is now the last component of the destination_path - destination_name = os.path.basename(destination_path) + destination_name = destination_path.name # destination name cannot be the same as a restricted platform name if destination_name in restricted_platforms: @@ -1654,28 +1654,10 @@ def create_project(project_path: pathlib.Path, d.write('# SPDX-License-Identifier: Apache-2.0 OR MIT\n') d.write('# {END_LICENSE}\n') - # set the "engine" element of the project.json - engine_json_data = manifest.get_engine_json_data(engine_path=manifest.get_this_engine_path()) - try: - engine_name = engine_json_data['engine_name'] - except KeyError as e: - logger.error(f"engine_name for this engine not found in engine.json.") - return 1 - - project_json_data = manifest.get_project_json_data(project_path=project_path) - if not project_json_data: - # get_project_json_data already logs an error if the project.json is mising - return 1 - - project_json_data.update({"engine": engine_name}) - with open(project_json, 'w') as s: - try: - s.write(json.dumps(project_json_data, indent=4) + '\n') - except OSError as e: - logger.error(f'Failed to write project json at {project_path}.') - return 1 - return 0 + # Register the project with the global o3de_manifest.json and set the project.json "engine" field to match the + # engine.json "engine_name" field + return register.register(project_path=project_path) def create_gem(gem_path: pathlib.Path, @@ -1745,6 +1727,11 @@ def create_gem(gem_path: pathlib.Path, if template_name and not template_path: template_path = manifest.get_registered(template_name=template_name) + if not template_path: + logger.error(f'Could not find the template path using name {template_name}.\n' + 'Has the template been registered yet? It can be registered via the ' + '"o3de.py register --tp " command') + return 1 if not os.path.isdir(template_path): logger.error(f'Could not find the template {template_name}=>{template_path}') return 1 @@ -2068,7 +2055,7 @@ def _run_create_from_template(args: argparse) -> int: return create_from_template(args.destination_path, args.template_path, args.template_name, - args.destination_path, + args.destination_name, args.destination_restricted_path, args.destination_restricted_name, args.template_restricted_path, diff --git a/scripts/o3de/o3de/manifest.py b/scripts/o3de/o3de/manifest.py index 832987be3c..c4a7cf8f36 100644 --- a/scripts/o3de/o3de/manifest.py +++ b/scripts/o3de/o3de/manifest.py @@ -194,9 +194,9 @@ def load_o3de_manifest(manifest_path: pathlib.Path = None) -> dict: return json_data -def save_o3de_manifest(json_data: dict, manifest_path: pathlib.Path = None) -> None: +def save_o3de_manifest(json_data: dict, manifest_path: pathlib.Path = None) -> bool: """ - Save the json dictionary to the supplied manifest file or ~/.o3de/o3de_manifest.json if None + Save the json dictionary to the supplied manifest file or ~/.o3de/o3de_manifest.json if manifest_path is None :param json_data: dictionary to save in json format at the file path :param manifest_path: optional path to manifest file to save @@ -206,8 +206,10 @@ def save_o3de_manifest(json_data: dict, manifest_path: pathlib.Path = None) -> N with manifest_path.open('w') as s: try: s.write(json.dumps(json_data, indent=4) + '\n') + return True except OSError as e: logger.error(f'Manifest json failed to save: {str(e)}') + return False # Data query methods diff --git a/scripts/o3de/o3de/register.py b/scripts/o3de/o3de/register.py index 7ad341784e..40556205de 100644 --- a/scripts/o3de/o3de/register.py +++ b/scripts/o3de/o3de/register.py @@ -341,7 +341,7 @@ def register_o3de_object_path(json_data: dict, try: paths_to_remove.append(o3de_object_path.relative_to(save_path.parent)) except ValueError: - pass # It is OK relative path cannot be formed + pass # It is OK relative path cannot be formed manifest_data[o3de_object_key] = list(filter(lambda p: pathlib.Path(p) not in paths_to_remove, manifest_data.setdefault(o3de_object_key, []))) @@ -425,7 +425,6 @@ def register_project_path(json_data: dict, if not manifest.save_o3de_manifest(project_json_data, project_json_path): return 1 - return 0 @@ -754,9 +753,6 @@ def _run_register(args: argparse) -> int: return repo.refresh_repos() elif args.this_engine: ret_val = register(engine_path=manifest.get_this_engine_path(), force=args.force) - error_code = register_shipped_engine_o3de_objects(force=args.force) - if error_code: - ret_val = error_code return ret_val elif args.all_engines_path: return register_all_engines_in_folder(args.all_engines_path, args.remove, args.force) From f93c2f5b60ea70b87a77fb02850119f11a49bbe9 Mon Sep 17 00:00:00 2001 From: Terry Michaels Date: Fri, 2 Jul 2021 07:08:12 -0500 Subject: [PATCH 104/111] signoff (#1748) Signed-off-by: Terry Michaels --- Code/Framework/AzQtComponents/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Framework/AzQtComponents/CMakeLists.txt b/Code/Framework/AzQtComponents/CMakeLists.txt index 135781140e..d97ad4c59f 100644 --- a/Code/Framework/AzQtComponents/CMakeLists.txt +++ b/Code/Framework/AzQtComponents/CMakeLists.txt @@ -41,7 +41,7 @@ ly_add_target( ) ly_add_target( - NAME AmazonQtControlGallery APPLICATION + NAME O3DEQtControlGallery APPLICATION NAMESPACE AZ AUTOMOC AUTOUIC From 6459375b4e804bc77ee43151a1a8536b58e07988 Mon Sep 17 00:00:00 2001 From: Aaron Ruiz Mora Date: Fri, 2 Jul 2021 13:16:10 +0100 Subject: [PATCH 105/111] Fixed compilation error in release configuration (#1757) Signed-off-by: moraaar --- .../Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp | 5 ++++- Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp index 8c39c37439..2b80a3acbf 100644 --- a/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp +++ b/Code/Tools/AssetProcessor/native/tests/AssetProcessorTest.cpp @@ -84,7 +84,10 @@ namespace AssetProcessor AssetProcessorTest::TearDown(); } - void OnError([[maybe_unused]] const AZ::IO::SystemFile* file, const char* fileName, int errorCode) override + void OnError( + [[maybe_unused]] const AZ::IO::SystemFile* file, + [[maybe_unused]] const char* fileName, + [[maybe_unused]] int errorCode) override { AZ_Error("LegacyTestAdapter", false, "File error detected with %s with code %d", fileName, errorCode); } diff --git a/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp b/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp index 7b255e1f46..45034686c3 100644 --- a/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp +++ b/Code/Tools/ProjectManager/Source/ProjectBuilderWorker.cpp @@ -64,7 +64,7 @@ namespace O3DE::ProjectManager return logFilePath.filePath(ProjectBuildErrorLogName); } - void ProjectBuilderWorker::QStringToAZTracePrint(const QString& error) + void ProjectBuilderWorker::QStringToAZTracePrint([[maybe_unused]] const QString& error) { AZ_TracePrintf("Project Manager", error.toStdString().c_str()); } From 0c43493e29187f16907b76d8c278d563941a3bd7 Mon Sep 17 00:00:00 2001 From: AMZN-stankowi <4838196+AMZN-stankowi@users.noreply.github.com> Date: Fri, 2 Jul 2021 07:56:54 -0700 Subject: [PATCH 106/111] FBX to Scene part 3, tangent generation rule FBX -> SourceScene (#1747) * Tangent space FromFBX -> FromSourceScene Signed-off-by: stankowi <4838196+AMZN-stankowi@users.noreply.github.com> --- .../Importers/AssImpBitangentStreamImporter.cpp | 2 +- .../Importers/AssImpTangentStreamImporter.cpp | 2 +- .../DataTypes/GraphData/IMeshVertexTangentData.h | 6 +++--- .../SceneData/GraphData/MeshVertexBitangentData.cpp | 4 ++-- .../SceneData/GraphData/MeshVertexBitangentData.h | 2 +- .../SceneData/GraphData/MeshVertexTangentData.cpp | 4 ++-- .../SceneData/GraphData/MeshVertexTangentData.h | 2 +- Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp | 4 ++-- .../Tests/GraphData/GraphDataBehaviorTests.cpp | 4 ++-- .../SceneAPIExt/Rules/MotionSamplingRule.cpp | 6 +++--- .../Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h | 4 ++-- .../TangentGenerator/TangentGenerateComponent.cpp | 12 ++++++------ 12 files changed, 26 insertions(+), 26 deletions(-) diff --git a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.cpp index d822ee148e..3acbaba9cc 100644 --- a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpBitangentStreamImporter.cpp @@ -86,7 +86,7 @@ namespace AZ // AssImp only has one bitangentStream per mesh. bitangentStream->SetBitangentSetIndex(0); - bitangentStream->SetTangentSpace(AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); + bitangentStream->SetTangentSpace(AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene); bitangentStream->ReserveContainerSpace(vertexCount); for (int sdkMeshIndex = 0; sdkMeshIndex < currentNode->mNumMeshes; ++sdkMeshIndex) { diff --git a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.cpp b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.cpp index 97c9c6c004..074ca79281 100644 --- a/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.cpp +++ b/Code/Tools/SceneAPI/SceneBuilder/Importers/AssImpTangentStreamImporter.cpp @@ -88,7 +88,7 @@ namespace AZ // AssImp only has one tangentStream per mesh. tangentStream->SetTangentSetIndex(0); - tangentStream->SetTangentSpace(AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); + tangentStream->SetTangentSpace(AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene); tangentStream->ReserveContainerSpace(vertexCount); for (int sdkMeshIndex = 0; sdkMeshIndex < currentNode->mNumMeshes; ++sdkMeshIndex) { diff --git a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h index 908c1a2420..7f3895e5cb 100644 --- a/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h +++ b/Code/Tools/SceneAPI/SceneCore/DataTypes/GraphData/IMeshVertexTangentData.h @@ -23,9 +23,9 @@ namespace AZ { enum class TangentSpace { - FromFbx = 0, - MikkT = 1, - EMotionFX = 2 + FromSourceScene = 0, + MikkT = 1, + EMotionFX = 2 }; enum class BitangentMethod diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp index 9ed9d41824..0dca36763e 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.cpp @@ -20,7 +20,7 @@ namespace AZ SerializeContext* serializeContext = azrtti_cast(context); if (serializeContext) { - serializeContext->Class()->Version(1); + serializeContext->Class()->Version(2); } BehaviorContext* behaviorContext = azrtti_cast(context); @@ -34,7 +34,7 @@ namespace AZ ->Method("GetBitangentSetIndex", &MeshVertexBitangentData::GetBitangentSetIndex) ->Method("GetTangentSpace", &MeshVertexBitangentData::GetTangentSpace) ->Enum<(int)SceneAPI::DataTypes::TangentSpace::EMotionFX>("EMotionFX") - ->Enum<(int)SceneAPI::DataTypes::TangentSpace::FromFbx>("FromFbx") + ->Enum<(int)SceneAPI::DataTypes::TangentSpace::FromSourceScene>("FromSourceScene") ->Enum<(int)SceneAPI::DataTypes::TangentSpace::MikkT>("MikkT"); } } diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h index 8ef10f3e2a..edf4184e94 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexBitangentData.h @@ -50,7 +50,7 @@ namespace AZ SCENE_DATA_API void GetDebugOutput(AZ::SceneAPI::Utilities::DebugOutput& output) const override; protected: AZStd::vector m_bitangents; - AZ::SceneAPI::DataTypes::TangentSpace m_tangentSpace = AZ::SceneAPI::DataTypes::TangentSpace::FromFbx; + AZ::SceneAPI::DataTypes::TangentSpace m_tangentSpace = AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene; size_t m_setIndex = 0; }; diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp index 58d59c04cb..cc9b9c8445 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.cpp @@ -20,7 +20,7 @@ namespace AZ SerializeContext* serializeContext = azrtti_cast(context); if (serializeContext) { - serializeContext->Class()->Version(1); + serializeContext->Class()->Version(2); } BehaviorContext* behaviorContext = azrtti_cast(context); @@ -34,7 +34,7 @@ namespace AZ ->Method("GetTangentSetIndex", &MeshVertexTangentData::GetTangentSetIndex) ->Method("GetTangentSpace", &MeshVertexTangentData::GetTangentSpace) ->Enum<(int)SceneAPI::DataTypes::TangentSpace::EMotionFX>("EMotionFX") - ->Enum<(int)SceneAPI::DataTypes::TangentSpace::FromFbx>("FromFbx") + ->Enum<(int)SceneAPI::DataTypes::TangentSpace::FromSourceScene>("FromSourceScene") ->Enum<(int)SceneAPI::DataTypes::TangentSpace::MikkT>("MikkT"); } } diff --git a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h index 333ab68f7e..7936a16307 100644 --- a/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h +++ b/Code/Tools/SceneAPI/SceneData/GraphData/MeshVertexTangentData.h @@ -49,7 +49,7 @@ namespace AZ SCENE_DATA_API void GetDebugOutput(AZ::SceneAPI::Utilities::DebugOutput& output) const override; protected: AZStd::vector m_tangents; - AZ::SceneAPI::DataTypes::TangentSpace m_tangentSpace = AZ::SceneAPI::DataTypes::TangentSpace::FromFbx; + AZ::SceneAPI::DataTypes::TangentSpace m_tangentSpace = AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene; size_t m_setIndex = 0; }; diff --git a/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp b/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp index 9387d833cc..4b4fc04985 100644 --- a/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp +++ b/Code/Tools/SceneAPI/SceneData/Rules/TangentsRule.cpp @@ -142,7 +142,7 @@ namespace AZ return; } - serializeContext->Class()->Version(1) + serializeContext->Class()->Version(2) ->Field("tangentSpace", &TangentsRule::m_tangentSpace) ->Field("bitangentMethod", &TangentsRule::m_bitangentMethod) ->Field("normalize", &TangentsRule::m_normalize) @@ -156,7 +156,7 @@ namespace AZ ->Attribute("AutoExpand", true) ->Attribute(AZ::Edit::Attributes::NameLabelOverride, "") ->DataElement(AZ::Edit::UIHandlers::ComboBox, &AZ::SceneAPI::SceneData::TangentsRule::m_tangentSpace, "Tangent space", "Specify the tangent space used for normal map baking. Choose 'From Fbx' to extract the tangents and bitangents directly from the Fbx file. When there is no tangents rule or the Fbx has no tangents stored inside it, the 'MikkT' option will be used with orthogonal tangents of unit length, so with the normalize option enabled, using the first UV set.") - ->EnumAttribute(AZ::SceneAPI::DataTypes::TangentSpace::FromFbx, "From Fbx") + ->EnumAttribute(AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene, "From Source Scene") ->EnumAttribute(AZ::SceneAPI::DataTypes::TangentSpace::MikkT, "MikkT") ->EnumAttribute(AZ::SceneAPI::DataTypes::TangentSpace::EMotionFX, "EMotion FX") ->Attribute(AZ::Edit::Attributes::ChangeNotify, AZ::Edit::PropertyRefreshLevels::EntireTree) diff --git a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp index d9827e738a..f5b296aa5f 100644 --- a/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp +++ b/Code/Tools/SceneAPI/SceneData/Tests/GraphData/GraphDataBehaviorTests.cpp @@ -83,7 +83,7 @@ namespace AZ auto* bitangentData = AZStd::any_cast(&data); bitangentData->AppendBitangent(AZ::Vector3{0.12f, 0.34f, 0.56f}); bitangentData->AppendBitangent(AZ::Vector3{0.77f, 0.88f, 0.99f}); - bitangentData->SetTangentSpace(AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); + bitangentData->SetTangentSpace(AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene); bitangentData->SetBitangentSetIndex(1); return true; } @@ -317,7 +317,7 @@ namespace AZ ExpectExecute("TestExpectFloatEquals(bitangentData.y, 0.88)"); ExpectExecute("TestExpectFloatEquals(bitangentData.z, 0.99)"); ExpectExecute("TestExpectIntegerEquals(meshVertexBitangentData:GetBitangentSetIndex(), 1)"); - ExpectExecute("TestExpectTrue(meshVertexBitangentData:GetTangentSpace(), MeshVertexBitangentData.FromFbx)"); + ExpectExecute("TestExpectTrue(meshVertexBitangentData:GetTangentSpace(), MeshVertexBitangentData.FromSourceScene)"); } TEST_F(GrapDatahBehaviorScriptTest, SceneGraph_MeshVertexTangentData_AccessWorks) diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp index 84a951eeed..d9f1a51ffb 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.cpp @@ -129,7 +129,7 @@ namespace EMotionFX return; } - serializeContext->Class()->Version(3) + serializeContext->Class()->Version(4) ->Field("motionDataType", &MotionSamplingRule::m_motionDataType) ->Field("sampleRateMethod", &MotionSamplingRule::m_sampleRateMethod) ->Field("customSampleRate", &MotionSamplingRule::m_customSampleRate) @@ -151,7 +151,7 @@ namespace EMotionFX ->Attribute(AZ::Edit::Attributes::ChangeNotify, AZ::Edit::PropertyRefreshLevels::EntireTree) ->DataElement(AZ::Edit::UIHandlers::ComboBox, &MotionSamplingRule::m_sampleRateMethod, "Sample rate", "Either use the Fbx sample rate or use a custom sample rate. The sample rate is automatically limited to the rate from Fbx.") ->Attribute(AZ::Edit::Attributes::ChangeNotify, AZ::Edit::PropertyRefreshLevels::EntireTree) - ->EnumAttribute(SampleRateMethod::FromFbx, "From Fbx") + ->EnumAttribute(SampleRateMethod::FromSourceScene, "From Source Scene") ->EnumAttribute(SampleRateMethod::Custom, "Custom sample rate") ->DataElement(AZ::Edit::UIHandlers::Default, &MotionSamplingRule::m_keepDuration, "Keep duration", "When enabled this keep the duration the same as the Fbx motion duration, even if no joints are animated. " "When this option is disabled and the motion doesn't animate any joints then the resulting motion will have a duration of zero seconds.") @@ -199,7 +199,7 @@ namespace EMotionFX AZ::Crc32 MotionSamplingRule::GetVisibilityCustomSampleRate() const { - return m_sampleRateMethod == SampleRateMethod::FromFbx ? AZ::Edit::PropertyVisibility::Hide : AZ::Edit::PropertyVisibility::Show; + return m_sampleRateMethod == SampleRateMethod::FromSourceScene ? AZ::Edit::PropertyVisibility::Hide : AZ::Edit::PropertyVisibility::Show; } AZ::Crc32 MotionSamplingRule::GetVisibilityAllowedSizePercentage() const diff --git a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h index f7464bf80c..95cee690d8 100644 --- a/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h +++ b/Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/MotionSamplingRule.h @@ -30,7 +30,7 @@ namespace EMotionFX enum class SampleRateMethod : AZ::u8 { - FromFbx = 0, + FromSourceScene = 0, Custom = 1 }; @@ -71,7 +71,7 @@ namespace EMotionFX AZ::Crc32 GetVisibilityAllowedSizePercentage() const; float m_customSampleRate = 60.0f; - SampleRateMethod m_sampleRateMethod = SampleRateMethod::FromFbx; + SampleRateMethod m_sampleRateMethod = SampleRateMethod::FromSourceScene; AZ::TypeId m_motionDataType = AZ::TypeId::CreateNull(); bool m_keepDuration = true; diff --git a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp index e8798de0b6..67a032f737 100644 --- a/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp +++ b/Gems/SceneProcessing/Code/Source/Generation/Components/TangentGenerator/TangentGenerateComponent.cpp @@ -123,8 +123,8 @@ namespace AZ::SceneGenerationComponents while (uvData) { // Get the tangents and bitangents from the source scene. - AZ::SceneAPI::DataTypes::IMeshVertexTangentData* fbxTangentData = AZ::SceneAPI::SceneData::TangentsRule::FindTangentData(graph, nodeIndex, uvSetIndex, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); - AZ::SceneAPI::DataTypes::IMeshVertexBitangentData* fbxBitangentData = AZ::SceneAPI::SceneData::TangentsRule::FindBitangentData(graph, nodeIndex, uvSetIndex, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); + AZ::SceneAPI::DataTypes::IMeshVertexTangentData* fbxTangentData = AZ::SceneAPI::SceneData::TangentsRule::FindTangentData(graph, nodeIndex, uvSetIndex, AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene); + AZ::SceneAPI::DataTypes::IMeshVertexBitangentData* fbxBitangentData = AZ::SceneAPI::SceneData::TangentsRule::FindBitangentData(graph, nodeIndex, uvSetIndex, AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene); if (fbxTangentData && fbxBitangentData) { @@ -198,8 +198,8 @@ namespace AZ::SceneGenerationComponents } // Check if we had tangents inside the source scene file. - AZ::SceneAPI::DataTypes::IMeshVertexTangentData* fbxTangentData = AZ::SceneAPI::SceneData::TangentsRule::FindTangentData(graph, nodeIndex, 0, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); - AZ::SceneAPI::DataTypes::IMeshVertexBitangentData* fbxBitangentData = AZ::SceneAPI::SceneData::TangentsRule::FindBitangentData(graph, nodeIndex, 0, AZ::SceneAPI::DataTypes::TangentSpace::FromFbx); + AZ::SceneAPI::DataTypes::IMeshVertexTangentData* fbxTangentData = AZ::SceneAPI::SceneData::TangentsRule::FindTangentData(graph, nodeIndex, 0, AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene); + AZ::SceneAPI::DataTypes::IMeshVertexBitangentData* fbxBitangentData = AZ::SceneAPI::SceneData::TangentsRule::FindBitangentData(graph, nodeIndex, 0, AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene); // Check what tangent spaces we need. AZStd::vector requiredSpaces = CollectRequiredTangentSpaces(scene); @@ -212,7 +212,7 @@ namespace AZ::SceneGenerationComponents } // If all we need is import from the source scene, and we have tangent data from the source scene already, then skip generating. - if ((requiredSpaces.size() == 1 && requiredSpaces[0] == AZ::SceneAPI::DataTypes::TangentSpace::FromFbx) && fbxTangentData && fbxBitangentData) + if ((requiredSpaces.size() == 1 && requiredSpaces[0] == AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene) && fbxTangentData && fbxBitangentData) { return true; } @@ -232,7 +232,7 @@ namespace AZ::SceneGenerationComponents switch (space) { // If we want Fbx tangents, we don't need to do anything for that. - case AZ::SceneAPI::DataTypes::TangentSpace::FromFbx: + case AZ::SceneAPI::DataTypes::TangentSpace::FromSourceScene: { allSuccess &= true; } From d365ff51d68a69b3a4d39dc7c52a52f88fbf0e9c Mon Sep 17 00:00:00 2001 From: amzn-hdoke <61443753+hdoke@users.noreply.github.com> Date: Fri, 2 Jul 2021 08:24:42 -0700 Subject: [PATCH 107/111] [AWS][Gems] Fix for Linux Release Monolithic Builds (#1739) * Add missing 3rd party deps to Metrics gem Signed-off-by: dhrudesh * Set AWSNativeSDK-linux revision to 5 Signed-off-by: dhrudesh --- AutomatedTesting/Gem/Code/enabled_gems.cmake | 2 +- Gems/AWSMetrics/Code/CMakeLists.txt | 1 + cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/AutomatedTesting/Gem/Code/enabled_gems.cmake b/AutomatedTesting/Gem/Code/enabled_gems.cmake index fa421b8633..d4f23ede63 100644 --- a/AutomatedTesting/Gem/Code/enabled_gems.cmake +++ b/AutomatedTesting/Gem/Code/enabled_gems.cmake @@ -51,7 +51,7 @@ set(ENABLED_GEMS ) # TODO remove conditional add once AWSNativeSDK libs are fixed for Android and Linux Monolithic release. -set(aws_excluded_platforms Linux Android) +set(aws_excluded_platforms Android) if (NOT (LY_MONOLITHIC_GAME AND ${PAL_PLATFORM_NAME} IN_LIST aws_excluded_platforms)) list(APPEND ENABLED_GEMS AWSCore diff --git a/Gems/AWSMetrics/Code/CMakeLists.txt b/Gems/AWSMetrics/Code/CMakeLists.txt index 153c8bec1b..150e226d14 100644 --- a/Gems/AWSMetrics/Code/CMakeLists.txt +++ b/Gems/AWSMetrics/Code/CMakeLists.txt @@ -21,6 +21,7 @@ ly_add_target( AZ::AzFramework PUBLIC Gem::AWSCore + 3rdParty::AWSNativeSDK::Core ) ly_add_target( diff --git a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake index c0099b8dbe..b0cfb52fb2 100644 --- a/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake +++ b/cmake/3rdParty/Platform/Linux/BuiltInPackages_linux.cmake @@ -31,7 +31,7 @@ ly_associate_package(PACKAGE_NAME PVRTexTool-4.24.0-rev4-multiplatform ly_associate_package(PACKAGE_NAME AWSGameLiftServerSDK-3.4.1-rev1-linux TARGETS AWSGameLiftServerSDK PACKAGE_HASH a8149a95bd100384af6ade97e2b21a56173740d921e6c3da8188cd51554d39af) ly_associate_package(PACKAGE_NAME freetype-2.10.4.14-linux TARGETS freetype PACKAGE_HASH 9ad246873067717962c6b780d28a5ce3cef3321b73c9aea746a039c798f52e93) ly_associate_package(PACKAGE_NAME tiff-4.2.0.15-linux TARGETS tiff PACKAGE_HASH ae92b4d3b189c42ef644abc5cac865d1fb2eb7cb5622ec17e35642b00d1a0a76) -ly_associate_package(PACKAGE_NAME AWSNativeSDK-1.7.167-rev4-linux TARGETS AWSNativeSDK PACKAGE_HASH b4db38de49d35a5f7500aed7f4aee5ec511dd3b584ee06fe9097885690191a5d) +ly_associate_package(PACKAGE_NAME AWSNativeSDK-1.7.167-rev5-linux TARGETS AWSNativeSDK PACKAGE_HASH 0101a4052d9fce83a6f5515e00f366e97b308ecb8261ad23a6e4eb4365212ab6) ly_associate_package(PACKAGE_NAME Lua-5.3.5-rev5-linux TARGETS Lua PACKAGE_HASH 1adc812abe3dd0dbb2ca9756f81d8f0e0ba45779ac85bf1d8455b25c531a38b0) ly_associate_package(PACKAGE_NAME PhysX-4.1.2.29882248-rev3-linux TARGETS PhysX PACKAGE_HASH a110249cbef4f266b0002c4ee9a71f59f373040cefbe6b82f1e1510c811edde6) ly_associate_package(PACKAGE_NAME etc2comp-9cd0f9cae0-rev1-linux TARGETS etc2comp PACKAGE_HASH 9283aa5db5bb7fb90a0ddb7a9f3895317c8ebe8044943124bbb3673a41407430) From 3c959832a3165ce834de3d812f313ce4bbf06d80 Mon Sep 17 00:00:00 2001 From: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> Date: Fri, 2 Jul 2021 08:24:58 -0700 Subject: [PATCH 108/111] Reparenting - introduce loop detection on instance reparenting (DCO fix) (#1752) * Detect loops in reparenting code and assert. Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> * Add warning when detecting a cyclical dependancy. Revert reparenting on loop. Signed-off-by: daimini <82231674+AMZN-daimini@users.noreply.github.com> Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> * Use GetActiveWindow helper to handle window edge cases Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com> --- .../Application/ToolsApplication.cpp | 9 +++- .../Prefab/PrefabPublicHandler.cpp | 43 +++++++++++++++++-- .../Prefab/PrefabPublicHandler.h | 2 +- .../Prefab/PrefabPublicInterface.h | 3 +- 4 files changed, 51 insertions(+), 6 deletions(-) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp index ff0c2c586b..95f13dc649 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Application/ToolsApplication.cpp @@ -45,6 +45,7 @@ #include #include #include +#include #include #include #include @@ -1589,7 +1590,13 @@ namespace AzToolsFramework // Multiple changes to the same entity are just split between different undo nodes. for (AZ::EntityId entityId : m_dirtyEntities) { - prefabPublicInterface->GenerateUndoNodesForEntityChangeAndUpdateCache(entityId, m_currentBatchUndo); + auto outcome = prefabPublicInterface->GenerateUndoNodesForEntityChangeAndUpdateCache(entityId, m_currentBatchUndo); + + if (!outcome.IsSuccess()) + { + QMessageBox::warning( + AzToolsFramework::GetActiveWindow(), QString("Error"), QString(outcome.GetError().c_str()), QMessageBox::Ok, QMessageBox::Ok); + } } } } diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp index cf55a02f65..d479b72e37 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.cpp @@ -587,21 +587,21 @@ namespace AzToolsFramework return AZ::Success(entityId); } - void PrefabPublicHandler::GenerateUndoNodesForEntityChangeAndUpdateCache( + PrefabOperationResult PrefabPublicHandler::GenerateUndoNodesForEntityChangeAndUpdateCache( AZ::EntityId entityId, UndoSystem::URSequencePoint* parentUndoBatch) { // Create Undo node on entities if they belong to an instance InstanceOptionalReference owningInstance = m_instanceEntityMapperInterface->FindOwningInstance(entityId); if (!owningInstance.has_value()) { - return; + return AZ::Success(); } AZ::Entity* entity = GetEntityById(entityId); if (!entity) { m_prefabUndoCache.PurgeCache(entityId); - return; + return AZ::Success(); } PrefabDom beforeState; @@ -633,6 +633,41 @@ namespace AzToolsFramework (&beforeOwningInstance->get() != &afterOwningInstance->get())) { isNewParentOwnedByDifferentInstance = true; + + // Detect loops. Assert if an instance has been reparented in such a way to generate circular dependencies. + AZStd::vector instancesInvolved; + + if (isInstanceContainerEntity) + { + instancesInvolved.push_back(&owningInstance->get()); + } + else + { + // Retrieve all nested instances that are part of the subtree under the current entity. + EntityList entities; + RetrieveAndSortPrefabEntitiesAndInstances({ entity }, beforeOwningInstance->get(), entities, instancesInvolved); + } + + for (Instance* instance : instancesInvolved) + { + const PrefabDom& templateDom = + m_prefabSystemComponentInterface->FindTemplateDom(instance->GetTemplateId()); + AZStd::unordered_set templatePaths; + PrefabDomUtils::GetTemplateSourcePaths(templateDom, templatePaths); + + if (IsCyclicalDependencyFound(afterOwningInstance->get(), templatePaths)) + { + // Cancel the operation by restoring the previous parent + AZ::TransformBus::Event(entityId, &AZ::TransformBus::Events::SetParent, beforeParentId); + m_prefabUndoCache.UpdateCache(entityId); + + // Skip the creation of an undo node + return AZ::Failure(AZStd::string::format( + "Reparent Prefab operation aborted - Cyclical dependency detected\n(%s depends on %s).", + instance->GetTemplateSourcePath().Native().c_str(), + afterOwningInstance->get().GetTemplateSourcePath().Native().c_str())); + } + } } } @@ -673,6 +708,8 @@ namespace AzToolsFramework } m_prefabUndoCache.UpdateCache(entityId); + + return AZ::Success(); } void PrefabPublicHandler::Internal_HandleContainerOverride( diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h index 687c11cd60..7dbb7b1e71 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicHandler.h @@ -46,7 +46,7 @@ namespace AzToolsFramework PrefabOperationResult SavePrefab(AZ::IO::Path filePath) override; PrefabEntityResult CreateEntity(AZ::EntityId parentId, const AZ::Vector3& position) override; - void GenerateUndoNodesForEntityChangeAndUpdateCache(AZ::EntityId entityId, UndoSystem::URSequencePoint* parentUndoBatch) override; + PrefabOperationResult GenerateUndoNodesForEntityChangeAndUpdateCache(AZ::EntityId entityId, UndoSystem::URSequencePoint* parentUndoBatch) override; bool IsInstanceContainerEntity(AZ::EntityId entityId) const override; bool IsLevelInstanceContainerEntity(AZ::EntityId entityId) const override; diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h index e65268dcb2..100e403660 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/PrefabPublicInterface.h @@ -79,8 +79,9 @@ namespace AzToolsFramework * * @param entityId The entity to patch. * @param parentUndoBatch The undo batch the undo nodes should be parented to. + * @return Returns Success if the node was generated correctly, or an error message otherwise. */ - virtual void GenerateUndoNodesForEntityChangeAndUpdateCache( + virtual PrefabOperationResult GenerateUndoNodesForEntityChangeAndUpdateCache( AZ::EntityId entityId, UndoSystem::URSequencePoint* parentUndoBatch) = 0; /** From 2a42e7a0125f33dea661659dcb34e9f6d6a61b65 Mon Sep 17 00:00:00 2001 From: Benjamin Jillich <43751992+amzn-jillich@users.noreply.github.com> Date: Fri, 2 Jul 2021 08:56:34 -0700 Subject: [PATCH 109/111] [LYN-4393] As a dev I want to Enable Gems in O3DE.exe with Keyboard (#1760) Enabling and disabling the selected gem is now possible by pressing the space bar. Signed-off-by: Benjamin Jillich --- .../Source/GemCatalog/GemItemDelegate.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp index 2718165993..035fcb7181 100644 --- a/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp +++ b/Code/Tools/ProjectManager/Source/GemCatalog/GemItemDelegate.cpp @@ -131,6 +131,17 @@ namespace O3DE::ProjectManager return false; } + if (event->type() == QEvent::KeyPress) + { + auto keyEvent = static_cast(event); + if (keyEvent->key() == Qt::Key_Space) + { + const bool isAdded = GemModel::IsAdded(modelIndex); + GemModel::SetIsAdded(*model, modelIndex, !isAdded); + return true; + } + } + if (event->type() == QEvent::MouseButtonPress) { QMouseEvent* mouseEvent = static_cast(event); From d20cf06e1ef7a7396532ee28859fc1c620ae96c7 Mon Sep 17 00:00:00 2001 From: Alex Peterson <26804013+AMZN-alexpete@users.noreply.github.com> Date: Fri, 2 Jul 2021 08:59:44 -0700 Subject: [PATCH 110/111] Update with simpler .lfsconfig instructions (#1730) --- .lfsconfig | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.lfsconfig b/.lfsconfig index e51eb5e7c4..546f34ff1c 100644 --- a/.lfsconfig +++ b/.lfsconfig @@ -2,10 +2,14 @@ # Default LFS endpoint for this repository url=https://d3df09qsjufr6g.cloudfront.net/api/v1 -# To use the endpoint with your fork: -# 1. uncomment the url line below by removing the '#' -# 2. replace 'owner' with the username or organization that owns the fork -# 3. have git ignore your local modification of this file by running -# git update-index --skip-worktree .lfsconfig - -# url=https://d3df09qsjufr6g.cloudfront.net/api/v1/fork/owner +# To use the endpoint with your fork, run the following git command +# in your local repository (without the '#'), replacing 'owner' with +# the username or organization that owns the fork. +# +# git config lfs.url "https://d3df09qsjufr6g.cloudfront.net/api/v1/fork/owner" +# +# For example, if your fork is https://github.com/octocat/o3de use +# git config lfs.url "https://d3df09qsjufr6g.cloudfront.net/api/v1/fork/octocat" +# +# IMPORTANT: authenticate with your GitHub username and personal access token +# not your GitHub password From 1cf6e6dd108211e7c37f255a1e26d20044eceb77 Mon Sep 17 00:00:00 2001 From: Mike Chang <62353586+amzn-changml@users.noreply.github.com> Date: Fri, 2 Jul 2021 09:27:04 -0700 Subject: [PATCH 111/111] Change 3p default CDN endpoint (#1749) Signed-off-by: changml --- cmake/3rdPartyPackages.cmake | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmake/3rdPartyPackages.cmake b/cmake/3rdPartyPackages.cmake index a0124f9a33..c13eecbee4 100644 --- a/cmake/3rdPartyPackages.cmake +++ b/cmake/3rdPartyPackages.cmake @@ -28,8 +28,7 @@ include(cmake/LySet.cmake) # also allowed: # "s3://bucketname" (it will use LYPackage_S3Downloader.cmake to download it from a s3 bucket) -# https://d2c171ws20a1rv.cloudfront.net will be the current "production" CDN until formally moved to the public O3DE repo -set(LY_PACKAGE_SERVER_URLS "https://d2c171ws20a1rv.cloudfront.net" CACHE STRING "Server URLS to fetch packages from") +set(LY_PACKAGE_SERVER_URLS "http://d3t6xeg4fgfoum.cloudfront.net" CACHE STRING "Server URLS to fetch packages from") # Note: if you define the "LY_PACKAGE_SERVER_URLS" environment variable # it will be added to this value in the front, so that users can set # an env var and use that as an "additional" set of servers beyond the default set.